:root {
    --primary-color: #d4af37;
    --dark-color: #0b1120;
    --text-main: #111827;
    --text-muted: #6b7280;
    --bg-light: #f9fafb;
    --border-soft: #e5e7eb;
}





/* GLOBAL */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
}


.about-main {
    padding-top: 0; /* header खाली gap नको */
}

/* CUSTOM UTILITY CLASSES FOR MOBILE CENTERING */
/* Desktop default, mobile वर center */
.text-center-on-mobile {
    text-align: left;
}
.mx-auto-on-mobile {
    margin-left: unset;
    margin-right: unset;
}
.justify-content-center-on-mobile {
    justify-content: flex-start;
}
.list-centered-on-mobile {
    text-align: left; /* Desktop default */
}
.list-centered-on-mobile li {
    justify-content: flex-start; /* Desktop default */
}
.section-header-centered-mobile {
    text-align: left; /* Desktop default */
}


/* Hover helpers */
.hover-raise {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.hover-raise:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
}

.hover-scale {
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.hover-scale:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.22);
}

/* HERO BANNER */

.about-hero {
    padding: 0;
    background-color: #ffffff;
}

.about-hero-inner {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    min-height: 250px;
    max-height: 320px;
}
.about-hero-inner {
    height: 60vh; /* screen height च्या 60% */
    max-height: 500px; /* फार मोठा होऊ नये म्हणून limit */
}

.about-hero-img {
    height: 100%;
}

.about-hero-img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    max-height: 320px;
    object-fit: cover;
    display: block;
    filter: saturate(1.06);
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.82) 0%,
        rgba(0,0,0,0.6) 35%,
        rgba(0,0,0,0.35) 65%,
        rgba(0,0,0,0.15) 100%
    );
}

.about-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center; /* Desktop & Mobile: horizontally center */
    align-items: center; /* Desktop & Mobile: vertically center */
    color: #ffffff;
}

/* हा wrapper content ला center करेल */
.about-hero-text-container {
    width: 100%;
    max-width: 560px; /* Text block width limit */
    /* Add some default padding, Bootstrap container will manage this */
}

/* Hero text block स्वतः */
.about-hero-text {
    text-align: center; /* Desktop & Mobile: Center align text */
    opacity: 0;
    transform: translateY(18px);
}

/* JS-triggered animation */
.hero-animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.hero-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem; /* वाढवला */
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.6rem; /* वाढवला */
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem; /* वाढवला */
    font-weight: 700; /* जास्त bold */
    margin-bottom: 0.5rem; /* वाढवला */
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem; /* वाढवला */
    color: rgba(255,255,255,0.98);
    line-height: 1.6;
    margin-bottom: 1.2rem; /* वाढवला */
}

.hero-links {
    display: flex;
    align-items: center;
    justify-content: center; /* Desktop & Mobile: Center align links */
    gap: 0.6rem; /* वाढवला */
    font-size: 1.05rem; /* वाढवला */
    font-family: 'Inter', sans-serif;
}

.hero-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}
.hero-link:hover {
    color: #ffffff;
}
.hero-link.active {
    font-weight: 500;
}
.hero-divider {
    color: rgba(255,255,255,0.7);
}

/* SECTION SPACING */

.section-space {
    padding: 4.5rem 0; /* वाढवला */
}

.section-bg-light {
    background-color: var(--bg-light);
}

/* HEADINGS / BODY TEXT */

.section-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem; /* वाढवला */
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
}

.section-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem; /* वाढवला */
    font-weight: 700; /* जास्त bold */
    color: var(--text-main);
    line-height: 1.3;
}

.section-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem; /* वाढवला */
    color: var(--text-muted);
    line-height: 1.7;
}

/* IMAGE CARD */

.image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-card-badge {
    position: absolute;
    bottom: 15px; /* वाढवला */
    left: 15px; /* वाढवला */
    background: rgba(0,0,0,0.78);
    color: #ffffff;
    border-radius: 999px;
    padding: 0.4rem 1rem; /* वाढवला */
    display: inline-flex;
    gap: 0.6rem; /* वाढवला */
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem; /* वाढवला */
    align-items: center;
}

.image-card-badge span {
    white-space: nowrap;
}

/* INFO CARDS (Vision/Mission/Values) */

.info-card {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 2rem 1.8rem; /* वाढवला */
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.info-icon {
    width: 54px; /* वाढवला */
    height: 54px; /* वाढवला */
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.4rem; /* वाढवला */
    margin-bottom: 1rem; /* वाढवला */
}

.info-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem; /* वाढवला */
    font-weight: 600;
    margin-bottom: 0.6rem; /* वाढवला */
    color: var(--text-main);
}

.info-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem; /* वाढवला */
    color: var(--text-muted);
    line-height: 1.7;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0 0 0; /* वाढवला */
    font-family: 'Inter', sans-serif;
    font-size: 1rem; /* वाढवला */
    color: var(--text-muted);
}
.info-list li {
    margin-bottom: 0.5rem; /* वाढवला */
}
.info-list li i {
    font-size: 1.05rem; /* वाढवला */
}

/* FEATURE BOXES */

.feature-box {
    border-radius: 14px;
    padding: 2rem 1.8rem; /* वाढवला */
    background-color: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.feature-icon {
    width: 54px; /* वाढवला */
    height: 54px; /* वाढवला */
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.4rem; /* वाढवला */
    margin-bottom: 1rem; /* वाढवला */
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem; /* वाढवला */
    font-weight: 600;
    margin-bottom: 0.6rem; /* वाढवला */
    color: var(--text-main);
}

.feature-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem; /* वाढवला */
    color: var(--text-muted);
    line-height: 1.6;
}

/* STATS */

.stats-strip {
    padding: 4rem 0; /* वाढवला */
    background: radial-gradient(circle at top, #111827 0, #020617 55%, #000000 100%);
}

.stat-card {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 14px;
    padding: 1.8rem 1.2rem 2rem; /* वाढवला */
    text-align: center;
    border: 1px solid rgba(55, 65, 81, 0.7);
    color: #e5e7eb;
}

.stat-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem; /* वाढवला */
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 0.5rem; /* वाढवला */
}

.stat-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem; /* वाढवला */
    font-weight: 600;
    margin-bottom: 0.3rem; /* वाढवला */
    color: #f9fafb;
}

.stat-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem; /* वाढवला */
    margin-bottom: 0;
    color: #d1d5db;
}

/* CTA */

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem; /* वाढवला */
    font-weight: 500;
    padding: 0.7rem 1.8rem; /* वाढवला */
    border-radius: 999px;
    border: none;
    color: #ffffff;
    background: linear-gradient(135deg, #d4af37, #b3861d);
    box-shadow: 0 8px 20px rgba(180, 140, 40, 0.35);
    text-decoration: none;
}
.btn-primary-custom:hover {
    color: #ffffff;
    filter: brightness(0.97);
}

.cta-card {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 2rem 1.8rem; /* वाढवला */
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.cta-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem; /* वाढवला */
    font-weight: 600;
    margin-bottom: 0.9rem; /* वाढवला */
    color: var(--text-main);
}

.cta-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}
.cta-list li {
    display: flex;
    align-items: flex-start; /* for long text */
    gap: 0.7rem; /* वाढवला */
    font-family: 'Inter', sans-serif;
    font-size: 1rem; /* वाढवला */
    color: var(--text-muted);
    margin-bottom: 0.6rem; /* वाढवला */
}
.cta-list li i {
    color: var(--primary-color);
    font-size: 1.1rem; /* वाढवला */
    margin-top: 0.2rem; /* text सोबत align करण्यासाठी */
}

/* RESPONSIVE */

@media (max-width: 991.98px) {
    .section-space {
        padding: 4rem 0; /* वाढवला */
    }
    .hero-title {
        font-size: 2.4rem;
    }
    .section-heading {
        font-size: 2rem;
    }
}

/* Mobile specific styles (max-width: 768px) */
@media (max-width: 768px) {
    .about-hero-inner {
        min-height: 250px;
        max-height: 280px;
    }

    .about-hero-img {
        min-height: 250px;
        max-height: 280px;
    }

    /* Hero content - center everything */
    .about-hero-text-container {
        max-width: 100%; /* Full width */
        padding: 0 15px; /* Add some default padding */
    }

    .hero-title {
        font-size: 2.1rem; /* Mobile font size */
    }
    .hero-subtitle {
        display: none !important; /* Mobile वर subtitle नाही */
    }

    /* General section text alignment for mobile */
    .section-header-centered-mobile {
        text-align: center;
    }

    /* Card titles/icons center on mobile */
    .text-center-on-mobile {
        text-align: center;
    }
    .mx-auto-on-mobile {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Center CTA button on mobile */
    .justify-content-center-on-mobile {
        justify-content: center;
    }

    /* Center list items in CTA card on mobile */
    .list-centered-on-mobile {
        text-align: center;
    }
    .list-centered-on-mobile li {
        justify-content: center;
    }

    .info-icon, .feature-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .section-space {
        padding: 3.5rem 0; /* थोडा कमी space */
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem; /* Even smaller for very small phones */
    }
    .hero-tag {
        font-size: 0.85rem;
    }
    .hero-links {
        font-size: 0.95rem;
    }

    .image-card-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.65rem;
    }

    .section-space {
        padding: 3rem 0;
    }
    .section-heading {
        font-size: 1.6rem;
    }
    .section-text {
        font-size: 0.95rem;
    }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999; /* high to stay on top */
  background-color: #fff; /* or your navbar color */
  width: 100%;
}
html, body {
  overflow-x: hidden;
}



