/* =========================================
   HIDE GOOGLE TRANSLATE BANNER
   ========================================= */
body {
    top: 0px !important; 
    position: static !important;
}

.goog-te-banner-frame.skiptranslate,
.skiptranslate > iframe {
    display: none !important;
}

#goog-gt-tt {
    display: none !important; /* Text select karne par aane wala popup hide karega */
}

/* Original text dikhane wale tooltip ko hide karega */
.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}
/* =========================================
   LANGUAGE DROPDOWN STYLING (FIXED)
   ========================================= */
.lang-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 15px;
    padding-bottom: 15px; /* Invisible bridge taaki mouse gap mein drop na ho */
}

.lang-dropbtn {
    background-color: transparent;
    border: none;
    color: var(--brand-blue);
    font-size: 22px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%; /* Button ke theek niche se shuru hoga, koi gap nahi */
    background-color: var(--bg-surface);
    min-width: 120px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 105;
    border: 1px solid var(--border-color);
}

.lang-dropdown-content a {
    color: var(--text-main);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 600;
    background-color: transparent; /* Transparent background */
    transition: color 0.3s ease;
}

/* Hover pe blue background hata diya, ab transparent rahega aur text highlight hoga */
.lang-dropdown-content a:hover {
    background-color: transparent;
    color: var(--action-yellow); /* Text color highlight karne ke liye */
}

.lang-dropdown:hover .lang-dropdown-content {
    display: block;
}

.lang-dropdown:hover .lang-dropbtn {
    color: var(--action-yellow);
}

/* Mobile par screen se bahar nikalne ka fix */
@media (max-width: 768px) {
    .lang-dropdown {
        margin-left: 0;
        padding-bottom: 10px;
    }
    .lang-dropdown-content {
        position: relative; /* Floating element se normal element bana diya */
        top: 0;
        right: 0;
        box-shadow: none;
        border: none;
        min-width: auto;
        padding-left: 10px;
    }
    .lang-dropdown-content a {
        padding: 8px 0;
    }
}
/* language ends here


/* =========================================
   1. GLOBAL VARIABLES & RESETS
   ========================================= */
:root {
    /* Naya Warm/Golden White - Aankhon pe nahi chubhega aur premium lagega */
    --bg-primary: #FDFBF4; 
    
    --bg-surface: #FFFFFF; /* Isko pure white hi rakhna taaki cards/boxes alag se chamkein */
    
    --brand-blue: #224BAA; 
    --brand-blue-light: #E0F2FE;
    
    --action-yellow: #F59E0B; 
    --action-yellow-hover: #D97706;
    
    --text-main: #1E293B;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-main);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px; /* Pehle 20px tha, ab 40px kar diya taaki content thoda right shift ho */
}

/* =========================================
   GLOBAL SECTION DIVIDER (Underline)
   ========================================= */
.section-divider-bottom {
    position: relative;
}

.section-divider-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%; 
    width: 90%; 
    height: 2px; /* Agar line thodi aur moti chahiye to isko 2px kar dena */
    /* Light border hata kar Yellow laga diya hai */
    background: linear-gradient(90deg, transparent 0%, var(--action-yellow) 15%, var(--action-yellow) 85%, transparent 100%);
}

/* =========================================
   2. TOP BAR (Shortcuts)
   ========================================= */
.top-bar {
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end; /* Screenshot ki tarah right side align */
}

.top-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-link {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.top-link i {
    color: var(--brand-blue); /* Icons in Light Blue */
    font-size: 14px;
}

.top-link:hover {
    color: var(--brand-blue);
}

/* Payment Link Highlight for Desktop/Laptop */
.top-links .top-link:first-child {
    color: var(--action-yellow);
    font-size: 14px; /* Baki links se thoda bada */
    font-weight: 700;
}

.top-links .top-link:first-child i {
    color: var(--action-yellow); /* Icon ko bhi yellow kiya */
    font-size: 16px;
}

/* Hover karne par slightly dark yellow hoga, blue nahi */
.top-links .top-link:first-child:hover,
.top-links .top-link:first-child:hover i {
    color: var(--action-yellow-hover);
}

/* Mail truncation jaisa aapne bola tha */
.truncate-text {
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: bottom;
}

/* =========================================
   3. MAIN NAVBAR
   ========================================= */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--bg-surface);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 80px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: scale(0.9, 1.1); 
    transform-origin: left center;
}

.company-name,
.company-sub {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-blue); 
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

/* Seedhe 'a' tags ko target kiya hai taaki koi mismatch na ho */
.nav-links a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

/* Navbar Active aur Hover dono pe Blue aayega */
.nav-links a.active,
.nav-links a:hover {
    color: var(--brand-blue) !important; 
    font-weight: 700;
}

/* =========================================
   STICKY HEADER FIX
   ========================================= */
#header-placeholder {
    display: contents;
}

/* =========================================
   4. DROPDOWN MENU LOGIC
   ========================================= */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-surface);
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 6px;
    border-top: 3px solid var(--action-yellow); /* Yellow touch for finance feel */
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-main);
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: var(--brand-blue-light);
    color: var(--brand-blue);
    padding-left: 25px; /* Subtle hover animation */
}

/* Add this OUTSIDE/ABOVE the @media (max-width: 991px) block */
.mobile-menu-footer {
    display: none;
}

/* =========================================
   5. MOBILE RESPONSIVE (MEDIA QUERIES)
   ========================================= */

/* Button hide on PC, show on Mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--brand-blue);
    cursor: pointer;
}

@media (max-width: 991px) {
   /* Top Bar Adjustments for Mobile */
    .top-bar {
        padding: 8px 0; /* Thodi si padding badhai taaki clean lage */
    }

    .top-bar-content {
        justify-content: center;
    }
    
    .top-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 12px; /* Upar-niche aur left-right ka gap balance kiya */
    }

    /* Mail, Mobile, Location (Upar aayenge) */
    .top-link {
        order: 1; /* Inko 1st priority par upar rakha */
        font-size: 11.5px; /* Thoda chhota kiya taaki teeno ek line mein fit aa jayein */
    }

    /* Mobile pe mail ID zyada badi na dikhe */
    .truncate-text {
        max-width: 100px;
    }

    /* Payment Link (Niche aayega aur bada hoga) */
    .top-links a:nth-child(1) {
        order: 2; 
        width: 100%; 
        justify-content: center; 
        font-size: 15px; 
        font-weight: 700;
        color: var(--action-yellow); /* Blue hatakar Yellow kar diya */
        margin-top: 4px;
        padding-top: 8px;
        border-top: 1px dashed var(--border-color); 
    }
    
    /* Payment ke icon ko bhi yellow karne ke liye */
    .top-links a:nth-child(1) i {
        font-size: 18px; 
        color: var(--action-yellow); 
    }
    /* Mobile button ko menu ke upar rakhne ke liye */
    .mobile-menu-btn {
        display: block;
        position: relative;
        z-index: 1000; /* Ye button hamesha top par rahega */
    }

 /* Right Side Drawer Menu */
    .nav-links {
        position: fixed; 
        top: 0;
        right: -300px; 
        left: auto; 
        width: 280px; 
        height: 100vh;
        height: 100dvh; /* Modern mobile dynamic viewport - browser bar ke hisaab se fit hoga */
        background-color: var(--bg-surface);
        display: flex;
        flex-direction: column;
        align-items: flex-start; 
        padding: 70px 20px 40px 20px; /* Niche 40px padding di hai taaki footer upar uth jaye */
        box-shadow: -4px 0 15px rgba(0,0,0,0.1); 
        border-left: 2px solid var(--action-yellow); 
        transition: right 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto; 
        box-sizing: border-box;
    }

    .nav-links.active {
        right: 0; /* JS active hote hi right se screen par aayega */
    }

    .nav-links > li {
        width: 100%;
        text-align: left; 
    }

    .nav-links > li > a {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
        justify-content: flex-start;
    }

    /* Dropdown fix for mobile */
    .dropdown-menu {
        position: static; 
        box-shadow: none;
        display: none !important; /* Force hide by default on mobile */
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: var(--bg-primary);
        padding-left: 15px; 
        border-top: none;
    }

    /* Ye class JS lagayega dropdown open karne ke liye */
    .dropdown-menu.show {
        display: block !important; /* Force show jab class lage */
    }

    /* Badge styling for mobile */
    .mobile-menu-footer {
        display: block; 
        margin-top: auto; 
        font-size: 12px;
        color: var(--text-muted);
        text-align: left;
        width: 100%;
        padding-top: 15px;
        padding-bottom: 10px;
        margin-bottom: 0;
        border-top: 1px solid var(--border-color);
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    /* Extra small phones (iPhone SE, etc.) */
    .logo-img {
        height: 80px;
    }
    .company-name {
        font-size: 13px;
    }
    .company-sub {
        font-size: 12px;
    }
}

/* =========================================
   6. HERO SLIDER SECTION
   ========================================= */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 550px; /* PC par height */
    overflow: hidden;
    background-color: var(--brand-blue);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

/* Premium Zoom Effect jab slide active ho */
.slide.active {
    opacity: 1;
    visibility: visible;
    animation: smoothZoom 8s linear forwards; 
}

@keyframes smoothZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* Dark Blue Gradient Hata diya, sirf ekdum halka black tint rakha hai text ke liye */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15); /* Pura clear chahiye toh isko 0 kar dena, par 0.15 text padhne me madad karega */
    z-index: 1;
}

/* Content Positioning */
.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
    padding: 0 40px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease-out;
    transition-delay: 0.3s; 
}

/* Image clear hone pe white text padhne ke liye shadow lagaya hai */
.slide-content h1, 
.slide-content p {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); 
}

.slide-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--bg-surface);
    margin-bottom: 20px;
}

.slide-content h1 .highlight {
    color: var(--action-yellow);
}

.slide-content p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--bg-primary);
    opacity: 0.9;
    margin-bottom: 35px;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

/* Typography in Slider */
.slide-badge {
    display: inline-block;
    background-color: rgba(245, 158, 11, 0.2);
    color: var(--action-yellow);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: max-content;
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.slide-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--bg-surface);
    margin-bottom: 20px;
}

.slide-content h1 .highlight {
    color: var(--action-yellow);
}

.slide-content p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--bg-primary);
    opacity: 0.9;
    margin-bottom: 35px;
}

/* Reusable Buttons */
.hero-btns {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 6px;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--action-yellow);
    color: var(--text-main);
}

.btn-primary:hover {
    background-color: var(--action-yellow-hover);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-surface);
    border: 2px solid var(--bg-surface);
}

.btn-secondary:hover {
    background-color: var(--bg-surface);
    color: var(--brand-blue);
}

/* Slider Controls (Arrows & Dots) */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--action-yellow);
    border-color: var(--action-yellow);
    color: var(--text-main);
}

.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--action-yellow);
    transform: scale(1.3);
}

/* --- Responsive Adjustments for Mobile --- */
/* (Is hisse ko apni existing Media Query max-width: 991px ke andar bhi daal sakte ho, ya nayi me) */
@media (max-width: 768px) {
    .hero-slider-section {
        height: 500px;
    }
    .slide-content h1 {
        font-size: 34px;
    }
    .slide-content p {
        font-size: 15px;
    }
    .hero-btns {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .btn { width: 100%; }
    .slider-arrow { display: none; } /* Mobile pe arrows hide, sirf dots dikhenge */
}

/* =========================================
   7. IMPORTANT NOTICE SECTION
   ========================================= */
.notice-section {
    padding: 40px 0;
    background-color: var(--bg-surface); /* Pure white background ke upar warm box badhiya lagega */
}

.notice-header {
    text-align: center;
    margin-bottom: 20px;
}

.notice-header h2 {
    color: var(--brand-blue);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.notice-header p {
    color: var(--action-yellow-hover); /* Darker yellow taaki easily padha jaye */
    font-size: 16px;
    font-weight: 600;
}

/* Warm Box for Notices (3 Lines, increased height) */
.notice-box {
    background-color: var(--bg-primary); 
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--action-yellow); 
    border-radius: 6px;
    padding: 20px 25px; /* Box ki height badha di */
    display: flex;
    flex-direction: column; /* Ek ke niche ek */
    gap: 15px; /* Lines ke beech ka gap */
    overflow: hidden; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.notice-row {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.notice-item {
    display: inline-block;
    padding-left: 100%; /* Ye text ko shuru mein screen ke right me bahar rakhega */
    font-size: 15.5px;
    font-weight: 500;
    color: var(--text-main);
    
    /* Total 45 seconds ka loop (15s chalega, 30s wait karega) */
    animation: staggerScroll 45s linear infinite;
    animation-fill-mode: backwards; /* Delay ke time text ko chhipa ke rakhega */
}

.notice-item i {
    color: var(--brand-blue);
    margin-right: 10px;
    font-size: 14px;
}

/* === SYNC LOGIC (Yahan jadoo hai) === */
.line-1 { animation-delay: 0s; }   /* Ye turant start hoga */
.line-2 { animation-delay: 15s; }  /* Ye 15 second baad start hoga (Jab Line 1 khatam hogi) */
.line-3 { animation-delay: 30s; }  /* Ye 30 second baad start hoga (Jab Line 2 khatam hogi) */

/* 33.33% ka matlab 45 sec ka exactly 15 second. Bacha hua time ye chup rahega */
@keyframes staggerScroll {
    0% { transform: translateX(0); opacity: 1; }
    33.33% { transform: translateX(-100%); opacity: 1; }
    33.34% { opacity: 0; } /* Gayab ho jayega taaki piche aate hue na dikhe */
    100% { transform: translateX(-100%); opacity: 0; }
}

/* Mouse lane par pura box pause ho jayega, sync nahi tutega */
.notice-box:hover .notice-item {
    animation-play-state: paused;
}

/* --- Mobile ke liye adjustments (Space Fix) --- */
@media (max-width: 768px) {
    .notice-section .container {
        padding: 0 10px; /* Mobile me right-left space stretch kar di */
    }
    .notice-box {
        padding: 15px 12px;
        gap: 12px;
    }
    .notice-item {
        font-size: 14px;
    }
}

/* =========================================
   8. OUR PRODUCTS & SERVICES SECTION
   ========================================= */
.services-section {
    padding: 70px 0;
    background-color: var(--bg-surface); /* Pure white background */
}

/* Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 45px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--brand-blue);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase; /* Heading ko strong feel dene ke liye */
}

.section-header h2 .highlight {
    color: var(--action-yellow);
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layout PC: 4 Cards in 1 Row */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card Styling */
.service-card {
    background-color: var(--bg-surface);
    border-radius: 8px;
    overflow: hidden; /* Image ko box ke bahar jane se rokne ke liye */
    border: 2px solid var(--border-color); /* Default light border */
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

/* Hover Effects: Yellow Border & Shadow */
.service-card:hover {
    border-color: var(--action-yellow);
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(34, 75, 170, 0.12);
}

/* Image Wrapper (Pop effect ke liye) */
.service-img-wrapper {
    width: 100%;
    height: 170px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease; /* Smooth zoom transition */
}

/* Hover pe Image Zoom (Pop) hogi */
.service-card:hover .service-img {
    transform: scale(1.1);
}

/* Text Content Area (Bottom Bar) */
.service-content {
    padding: 16px 10px;
    text-align: center;
    background-color: var(--brand-blue); /* Screenshot wale green ko corporate blue se replace kiya */
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 3px solid var(--action-yellow); /* Blue box ke upar patli yellow line */
}

.service-content h3 {
    font-size: 17px;
    color: var(--bg-surface); /* White text */
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
}

/* Hover pe text bhi yellow ho jayega */
.service-card:hover .service-content h3 {
    color: var(--action-yellow);
}

/* =========================================
   MOBILE RESPONSIVE (Services Grid)
   ========================================= */
@media (max-width: 768px) {
    .services-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 14px;
        padding: 0 15px;
    }

    /* Mobile: EXACTLY 2 Cards in 1 Row */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px; /* Gap thoda tight rakha taaki mobile pe clean lage */
    }

    .service-img-wrapper {
        height: 110px; /* Mobile pe box ko compact rakhne ke liye choti image */
    }

    .service-content {
        padding: 12px 8px;
    }

    .service-content h3 {
        font-size: 13px; /* Text size chota kiya taaki single line me fit aaye */
    }
}

/* =========================================
   9. WELCOME / ABOUT INTRO SECTION
   ========================================= */
.about-intro-section {
    padding: 80px 0;
    background-color: var(--bg-primary); /* Warm golden background */
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Right side wale text ko thodi zyada jagah di hai PC pe */
    gap: 60px;
    align-items: center;
}

/* Left Side Styling (Headline) */
.about-left {
    padding-right: 20px;
}

.welcome-text {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--action-yellow-hover); /* Dark yellow taaki clear dikhe */
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-left h2 {
    font-size: 38px;
    color: var(--brand-blue);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-left .sub-heading {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-main);
    display: block;
    margin-top: 8px;
}

/* Ek choti si premium yellow line design ke liye */
.heading-line {
    width: 60px;
    height: 4px;
    background-color: var(--action-yellow);
    border-radius: 2px;
}

/* Right Side Styling (Paragraphs) */
.about-right p {
    font-size: 16.5px;
    line-height: 1.8; /* Padhne mein aaramdayak spacing */
    color: var(--text-muted);
    margin-bottom: 20px;
    text-align: justify; /* Text ekdum box shape me align hoga */
}

.about-right strong {
    color: var(--brand-blue);
    font-weight: 700;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-blue);
    transition: all 0.3s ease;
}

.about-link i {
    transition: transform 0.3s ease;
}

.about-link:hover {
    color: var(--action-yellow-hover);
}

.about-link:hover i {
    transform: translateX(5px);
}

/* =========================================
   MOBILE RESPONSIVE (About Intro)
   ========================================= */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr; /* Mobile pe ek ke niche ek aayega */
        gap: 35px;
    }

    .about-intro-section {
        padding: 50px 0;
    }

    .about-left {
        padding-right: 0;
        text-align: center; /* Mobile pe heading center kardi */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-left h2 {
        font-size: 28px;
    }

    .about-left .sub-heading {
        font-size: 18px;
    }

    .heading-line {
        margin: 0 auto; /* Line bhi center mein */
    }

    .about-right p {
        font-size: 15px;
        text-align: left; /* Mobile pe text left align hi theek lagta hai padhne me */
    }
}

/* =========================================
   10. WHY JOIN US SECTION
   ========================================= */
.why-us-section {
    padding: 70px 0;
    background-color: var(--bg-surface); /* Pure white background */
}

/* Grid for PC: 4 columns */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1000px; /* PC par cards ko zyada failne se rokne ke liye */
    margin: 0 auto;
}

/* Compact Card Styling (Permanent Yellow Border) */
.why-card {
    background-color: var(--bg-primary); 
    padding: 30px 15px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--action-yellow); /* Card border permanent yellow */
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(34, 75, 170, 0.08);
}

/* Circular Image Box */
.why-img-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #d1d5db; /* Default Grey Border */
    transition: all 0.3s ease;
}

/* Hover pe circle ka border Dark Blue ho jayega */
.why-card:hover .why-img-box {
    border-color: var(--brand-blue); /* Yahan blue kar diya */
    transform: scale(1.05);
}

.why-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ye image ko apni jagah ekdum fit rakhega */
}

.why-card h3 {
    font-size: 17px;
    color: var(--brand-blue);
    font-weight: 700;
    margin: 0;
}

/* =========================================
   MOBILE RESPONSIVE (Why Join Us)
   ========================================= */
@media (max-width: 768px) {
    .why-us-section {
        padding: 40px 0;
    }

    /* Mobile: EXACTLY 2 Cards in 1 Row */
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Mobile par aur compact karein */
    .why-card {
        padding: 20px 10px;
        border-radius: 8px;
    }

    .why-img-box {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
        border-width: 2px;
    }

    .why-card h3 {
        font-size: 13.5px; /* Single line me fit aane ke liye */
    }
}

/* =========================================
   11. MANAGING COMMITTEE SECTION (New Layout)
   ========================================= */
.committee-section {
    padding: 80px 0;
    background-color: var(--bg-primary); /* Warm background taaki white cards chamkein */
}

/* 2-Column Layout */
.committee-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; /* Image thodi choti, text area thoda bada */
    gap: 50px;
    align-items: flex-start; /* Pehle center tha, ab flex-start kiya taaki sab top se align ho */
}

/* Specific Header Styling for this section (Left aligned for PC) */
.committee-header-left {
    text-align: left;
    margin-bottom: 30px; /* Text aur image ke beech ki jagah */
}

.committee-header-left p {
    margin: 0; /* Left align text me default margin clear kiya */
    max-width: 100%;
}

/* --- Left Side: Image --- */
.committee-image-side {
    position: relative;
    margin-top: 80px; /* Ye number (60px) tum apne hisaab se kam ya zyada karke balance kar sakte ho */
}

.image-wrapper {
    position: relative;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background-color: var(--bg-surface);
    padding: 10px; /* Image ke bahar ek white frame banega */
}

.trust-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Image ke upar ek chota sa Floating Box */
.image-overlay-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--brand-blue);
    color: var(--bg-surface);
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(34, 75, 170, 0.3);
    border-bottom: 3px solid var(--action-yellow);
}

.image-overlay-box i {
    font-size: 24px;
    color: var(--action-yellow);
}

.image-overlay-box span {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* --- Right Side: Members List --- */
.committee-list-side {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Cards ke beech ka gap */
}

.member-list-card {
    background-color: var(--bg-surface);
    border-radius: 8px;
    padding: 20px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border-left: 4px solid var(--brand-blue-light); /* Normal members ke liye light blue line */
    transition: all 0.3s ease;
    border-right: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* President & Secretary ke liye alag highlight */
.leadership-card {
    border-left: 4px solid var(--action-yellow);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.member-list-card:hover {
    transform: translateX(5px); /* Hover pe right side slide hoga */
    box-shadow: 0 10px 25px rgba(34, 75, 170, 0.08);
    border-left-color: var(--brand-blue); /* Hover pe blue dark ho jayega */
}

.leadership-card:hover {
    border-left-color: var(--action-yellow-hover);
}

.member-text h3 {
    font-size: 19px;
    color: var(--brand-blue);
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.member-text .designation {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    background-color: var(--brand-blue-light);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}

.leadership-card .designation {
    background-color: rgba(245, 158, 11, 0.15); /* Yellow tint */
    color: var(--action-yellow-hover);
}

.member-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* =========================================
   MOBILE RESPONSIVE (New Committee Layout)
   ========================================= */
@media (max-width: 991px) {
    .committee-section {
        padding: 50px 0;
    }
    
    .committee-layout {
        grid-template-columns: 1fr; /* Mobile pe ek ke niche ek */
        gap: 50px;
    }

    /* Mobile me heading wapas center me rahegi */
    .committee-header-left {
        text-align: center;
        margin-bottom: 0px; 
    }

    .image-overlay-box {
        bottom: -15px;
        right: 10px; /* Mobile pe bahar na nikle isliye adjust kiya */
        padding: 12px 20px;
    }

    .member-list-card {
        padding: 18px 20px;
    }

    .committee-image-side {
        margin-top: 0; /* Mobile me wapas normal ho jayega */
    }
}

/* =========================================
   12. VISION / STATEMENT SECTION
   ========================================= */
.vision-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--brand-blue) 0%, #17326b 100%); /* Premium dark blue gradient */
    text-align: center;
}

.vision-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 32px;
    color: var(--bg-surface); /* White text */
    line-height: 1.6;
    font-weight: 400; /* Regular weight for elegant readability */
}

/* Company ka naam alag se highlight karne ke liye */
.vision-text .highlight-name {
    color: var(--action-yellow);
    font-weight: 800; /* Ise ekdum bold rakha hai */
    font-size: 40px; /* Baki text se thoda aur bada */
    display: inline-block;
    margin: 15px 0;
}

/* =========================================
   MOBILE RESPONSIVE (Vision Section)
   ========================================= */
@media (max-width: 991px) {
    .vision-cta-section {
        padding: 60px 0;
    }
    
    .vision-text {
        font-size: 20px;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    .vision-text .highlight-name {
        font-size: 24px;
        margin: 12px 0;
    }
}

/* =========================================
   13. QUERY / CONTACT FORM SECTION (Centered)
   ========================================= */
.query-section {
    padding: 80px 0;
    background-color: var(--bg-primary); /* Warm Background */
}

/* Wrapper to center the form and limit width */
.query-form-wrapper {
    max-width: 800px; /* Form ko zyada failne se rokega */
    margin: 0 auto;   /* Center align karne ke liye */
}

.query-form-card {
    background-color: var(--bg-surface);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 8px;
}

.form-group label .optional {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-main);
    transition: all 0.3s ease;
    background-color: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
    background-color: var(--bg-surface);
    box-shadow: 0 0 0 3px rgba(34, 75, 170, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
}

.form-success-msg {
    margin-top: 20px;
    padding: 15px;
    background-color: #d1fae5;
    color: #065f46;
    border-radius: 6px;
    border: 1px solid #34d399;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

/* =========================================
   MOBILE RESPONSIVE (Query Form)
   ========================================= */
@media (max-width: 991px) {
    .query-section {
        padding: 50px 0;
    }
    
    .query-form-card {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr; /* Mobile me form fields ek ke niche ek */
        gap: 0;
    }
}

/* =========================================
   14. FOOTER SECTION
   ========================================= */
.site-footer {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #17326b 100%); 
    padding: 70px 0 20px 0;
    color: #e5e7eb; /* Soft white text */
}

.footer-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; /* Map side thodi chodi (wider) rakhi hai */
    gap: 60px;
    margin-bottom: 50px;
}

/* --- Left Side: Info --- */
.footer-logo {
    max-width: 100px;
    height: auto;
    margin-bottom: 25px;
    background-color: var(--bg-surface); /* Agar logo transparent hai, toh white box pe chamkega */
    padding: 10px;
    border-radius: 8px;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #9ca3af;
}

/* Contact List & Copy Button */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.05); /* Blue pe halka sa transparent box */
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--bg-surface); /* White text */
}

.contact-icon-text i {
    color: var(--action-yellow);
}

.copy-btn {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.copy-btn:hover {
    color: var(--action-yellow); /* Hover pe yellow hoga */
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--bg-surface);
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--action-yellow);
    color: var(--brand-blue); /* Hover pe contrast ke liye blue */
    transform: translateY(-3px);
}

/* --- Right Side: Map --- */
.map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1); /* Map ke bahar subtle border */
}

/* Floating Address Box */
.floating-address-box {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--bg-surface); /* White box */
    color: var(--text-main); /* Dark text */
    padding: 20px;
    border-radius: 8px;
    width: 280px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-top: 4px solid var(--action-yellow);
}

.floating-address-box h4 {
    font-size: 16px;
    color: var(--brand-blue);
    font-weight: 700;
    margin-bottom: 8px;
}

.floating-address-box p {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.floating-address-box p i {
    color: var(--action-yellow-hover);
    margin-top: 3px;
}

/* --- Bottom Copyright Area --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #9ca3af;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--action-yellow);
}

/* =========================================
   MOBILE RESPONSIVE (Compact Footer)
   ========================================= */
@media (max-width: 991px) {
    .site-footer {
        padding: 40px 0 15px 0; /* Top padding 70px se 40px kardi */
    }

    .footer-layout {
        grid-template-columns: 1fr;
        gap: 25px; /* Column gap 50px se 25px kar diya */
        margin-bottom: 25px;
    }
    
    /* Logo, Desc & List spacing kam ki */
    .footer-logo {
        max-width: 100px; /* Jaisa tune bataya */
        margin-bottom: 15px;
        padding: 5px; 
    }

    .footer-desc {
        font-size: 14px; /* Font thoda chota kiya */
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .footer-contact-list {
        gap: 10px; /* Contact boxes ke beech ka gap kam kiya */
        margin-bottom: 20px;
    }

    .footer-contact-item {
        padding: 10px 15px; /* Box ko compact kiya */
    }

    .contact-icon-text {
        font-size: 14px; /* Text chota kiya */
    }

    .copy-btn {
        font-size: 16px; /* Icon chota kiya */
    }

    /* Map ko compact kiya */
    .map-wrapper {
        min-height: 220px; /* Map ki height 350px se 220px kardi */
    }
    
    .floating-address-box {
        top: 10px;
        left: 50%;
        transform: translateX(-50%); /* Box ko map ke center me set kiya mobile ke liye */
        width: 90%; 
        padding: 12px 15px;
    }

    .floating-address-box h4 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .floating-address-box p {
        font-size: 12px;
    }

    /* Bottom Copyright area */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        font-size: 13px;
        padding-top: 15px;
    }
}

/* =========================================
   STARTING ABOUT US SECTION (About Us Page)
   ========================================= */

.about-hero-section {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.about-content-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-surface);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--action-yellow); /* Upar ek patli yellow strip jo theme match karegi */
}

.about-text-block h3 {
    font-size: 22px;
    color: var(--brand-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text-block p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* =========================================
   MOBILE RESPONSIVE (About Page)
   ========================================= */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 50px 0;
    }
    
    .about-content-card {
        padding: 25px 20px;
    }
    
    .about-text-block h3 {
        font-size: 18px;
    }
    
    .about-text-block p {
        font-size: 14.5px;
    }
}

/* =========================================
   MISSION & VISION SECTION
   ========================================= */
.mission-vision-section {
    padding: 80px 0;
    background-color: #ffffff; /* Ekdum white background */
}

.vm-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.vm-row:last-child {
    margin-bottom: 0;
}

/* Vision ke liye: Text Left, Image Right */
.vm-row.reverse-layout {
    flex-direction: row-reverse;
}

.vm-image {
    flex: 1;
}

.vm-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    object-fit: cover;
    aspect-ratio: 4/3; /* Images ki height/width humesha barabar rahegi */
    display: block;
}

.vm-content {
    flex: 1;
}

.vm-badge {
    display: inline-block;
    background-color: rgba(255, 183, 3, 0.15); /* Brand yellow ki light shade */
    color: var(--action-yellow);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.vm-content h3 {
    font-size: 34px;
    color: var(--brand-blue);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.vm-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

.vm-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vm-list li {
    font-size: 15px;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vm-list li i {
    color: var(--action-yellow); /* Yellow checkmarks taaki blue ke sath contrast banayen */
    background-color: var(--brand-blue);
    padding: 5px;
    border-radius: 50%;
    font-size: 10px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   MOBILE RESPONSIVE (MISSION/VISION)
   ========================================= */
@media (max-width: 991px) {
    .vm-row {
        /* Mobile par Left/Right ki jagah hamesha Upar/Niche aayega */
        flex-direction: column !important; 
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .vm-content h3 {
        font-size: 28px;
    }
}
/* about us ends here


/* =========================================
   MINIMAL FOOTER (For Inner Pages)
   ========================================= */
.minimal-footer {
    background-color: var(--brand-blue); 
    padding: 20px 0;
    margin-top: 0; /* Yahan se margin hata diya taaki gap na aaye */
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #ffffff; /* White text for contrast */
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--action-yellow); /* Hover pe apna Action Yellow */
    opacity: 1;
}

/* =========================================
   MOBILE RESPONSIVE (Minimal Footer)
   ========================================= */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
    }
}
/* every page small footer ends here

/* =========================================
   PAGE HEADER (For all inner pages)
   ========================================= */
.page-header {
    background-color: var(--brand-blue);
    padding: 60px 0;
    text-align: center;
    color: #ffffff;
}

.page-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.page-header .highlight {
    color: var(--action-yellow);
}

.page-header p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   DOCUMENTS SECTION
   ========================================= */
.documents-section {
    padding: 80px 0;
    background-color: var(--bg-surface);
}

.doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.doc-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--brand-blue);
}

.doc-icon {
    font-size: 40px;
    color: #e63946; /* PDF Red icon color */
    margin-bottom: 20px;
}

.doc-info h3 {
    font-size: 18px;
    color: var(--brand-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.doc-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-view {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--brand-blue);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-view:hover {
    background-color: var(--action-yellow);
    color: var(--brand-blue);
}

/* =========================================
   MOBILE RESPONSIVE (DOCUMENTS)
   ========================================= */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 20px;
    }
    
    .page-header h2 {
        font-size: 28px;
    }
    
    .doc-grid {
        grid-template-columns: 1fr;
    }
}
/* about section ends here

/* =========================================
   MEMBERSHIP PAGE STYLES
   ========================================= */
/* Section Backgrounds */
.warm-bg {
    background-color: #FFFDF5; /* Ekdum soft warm yellow */
    border-top: 1px solid rgba(255, 183, 3, 0.1);
    border-bottom: 1px solid rgba(255, 183, 3, 0.1);
}

.join-section, .benefits-section, .fees-section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
}

.sub-badge {
    display: inline-block;
    background-color: rgba(255, 183, 3, 0.15);
    color: var(--action-yellow);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--brand-blue);
    font-weight: 800;
    margin-bottom: 15px;
}

.section-title .highlight {
    color: var(--action-yellow);
}

.section-title p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 1. KYC Card Styling */
.kyc-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
    border-top: 4px solid var(--brand-blue);
}

.kyc-card h3 {
    color: var(--brand-blue);
    font-size: 22px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--bg-surface);
    padding-bottom: 15px;
}

.kyc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kyc-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.6;
}

.kyc-list li:last-child {
    margin-bottom: 0;
}

.kyc-list li i {
    color: var(--action-yellow);
    font-size: 20px;
    margin-top: 3px;
}

/* 2. Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: var(--action-yellow);
}

.b-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(26, 54, 93, 0.05); /* Light Dayamitra Blue */
    color: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px auto;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.benefit-card:hover .b-icon {
    background-color: var(--brand-blue);
    color: var(--action-yellow);
}

.benefit-card h4 {
    color: var(--brand-blue);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* 3. Fee Table Styling */
.fee-table-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
}

.fee-table th {
    background-color: var(--brand-blue);
    color: #ffffff;
    padding: 18px 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
}

.fee-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 15px;
}

.fee-table tr:last-child td {
    border-bottom: none;
}

.fee-table tr:hover td {
    background-color: rgba(255, 183, 3, 0.05); /* Light yellow highlight on hover */
}

.highlight-row td {
    font-weight: 700;
    color: var(--brand-blue);
    background-color: rgba(26, 54, 93, 0.03);
}

.text-blue {
    color: var(--action-yellow);
    margin-right: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .section-title h2 { font-size: 28px; }
    .kyc-card { padding: 25px; }
    .fee-table th, .fee-table td { padding: 12px 15px; font-size: 14px; }
    .kyc-list li { font-size: 14px; }
}

/* =========================================
   FIXES & NEW BENEFITS LAYOUT
   ========================================= */

/* Ye headings aur badges ko perfect center me layega */
.text-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.text-center p {
    text-align: center;
}

/* Middle section ke liye pure white background */
.bg-white {
    background-color: #ffffff !important;
    border-top: none;
    border-bottom: none;
}

/* Naya Benefits Layout */
.benefits-row {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-image {
    flex: 1;
}

.benefits-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    aspect-ratio: 4/3;
    border: 4px solid var(--bg-surface);
}

.benefits-content {
    flex: 1.2;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.6;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.benefits-list li i {
    color: var(--action-yellow);
    background-color: var(--brand-blue);
    padding: 6px;
    border-radius: 50%;
    font-size: 11px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .benefits-row {
        flex-direction: column;
        gap: 40px;
    }
}
/* membership page css ends here 

/* =========================================
   (RD) - (FD) PAGE STYLES (Services page)
   ========================================= */
.text-center-table th,
.text-center-table td {
    text-align: center !important;
}

.disclaimer-text {
    text-align: center;
    margin-top: 25px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.disclaimer-text p {
    margin: 5px 0;
}
/* Ends here

/* =========================================
   PERSONAL LOAN PAGE STYLES
   ========================================= */

/* Loan Features Grid (Section 1) */
.loan-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background-color: var(--bg-surface); /* Very light grey */
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: var(--brand-blue);
}

.feature-box .f-icon {
    width: 50px;
    height: 50px;
    background-color: var(--brand-blue);
    color: var(--action-yellow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.f-content h4 {
    font-size: 18px;
    color: var(--brand-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.f-content p {
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.6;
}

/* Alert Box specific styling */
.alert-box {
    background-color: #fff5f5;
    border-color: #ffd6d6;
}
.alert-box .f-icon {
    background-color: #e63946;
    color: white;
}

/* Required Documents Grid (Section 2) */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.doc-card-premium {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border-top: 4px solid var(--brand-blue);
}

.highlight-doc-card {
    border-top: 4px solid var(--action-yellow);
}

.doc-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.doc-header i {
    font-size: 24px;
    color: var(--brand-blue);
}

.highlight-doc-card .doc-header i {
    color: var(--action-yellow);
}

.doc-header h3 {
    font-size: 18px;
    color: var(--brand-blue);
    font-weight: 700;
}

.doc-header .light-text {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    display: block;
    margin-top: 4px;
}

.doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doc-list li {
    font-size: 14.5px;
    color: var(--text-main);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.doc-list li:last-child {
    margin-bottom: 0;
}

.doc-list li i {
    color: #2a9d8f; /* Professional Green checkmark */
    font-size: 14px;
    margin-top: 3px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .loan-features-grid, .docs-grid {
        grid-template-columns: 1fr;
    }
    .feature-box {
        padding: 20px;
    }
}
/* loan css ends here

/* =========================================
   CONTACT US PAGE STYLES
   ========================================= */

.contact-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

/* Left Side: Cards Grid */
.contact-info-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border-left: 4px solid var(--brand-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-left-color: var(--action-yellow);
}

.contact-card .c-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(26, 54, 93, 0.05); /* Light blue bg */
    color: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card:hover .c-icon {
    background-color: var(--brand-blue);
    color: var(--action-yellow);
}

.c-details h4 {
    font-size: 18px;
    color: var(--brand-blue);
    margin-bottom: 5px;
    font-weight: 700;
}

.c-details p {
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.5;
    margin: 0;
}

/* Right Side: Map */
.contact-map-container {
    flex: 1.2; /* Map ko thodi zyada width di hai */
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
    min-height: 400px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .contact-wrapper {
        flex-direction: column;
    }
    .contact-map-container {
        height: 400px;
        flex: none;
    }
}
@media (max-width: 768px) {
    .contact-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        align-items: center;
        border-left: none;
        border-top: 4px solid var(--brand-blue);
    }
    .contact-card:hover {
        transform: translateY(-5px);
        border-top-color: var(--action-yellow);
    }
}