/* style.css */
:root { 
    --gold: #D4AF37; 
    --black: #080808; 
    --dark-grey: #121212; 
    --text: #f0f0f0;
}

body { background: var(--black); color: var(--text); font-family: 'Manrope', sans-serif; margin: 0; overflow-x: hidden; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.gold-text { color: var(--gold); }
.serif { font-family: 'Playfair Display', serif; }

/* Navbar */
/* Navbar solid black by default for all pages */
.navbar {
    background: #000 !important; /* Hamesha black rahega */
    border-bottom: 1px solid #222;
    transition: 0.3s;
}

.logo {
    cursor: pointer;
}
.navbar.scrolled { background: rgba(0, 0, 0, 0.95); padding: 12px 0; border-bottom: 1px solid var(--gold); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 800; color: #fff; }
.nav-links a { color: #fff; text-decoration: none; margin-left: 30px; font-size: 0.9rem; text-transform: uppercase; }

/* Hero Slider */
.hero { position: relative; height: 90vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-slider { position: absolute; inset: 0; z-index: 1; filter: brightness(0.6); }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s; }
.slide.active { opacity: 1; }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px; /* Zyada jagah di */
    padding: 20px;     /* Padding kam ki taaki text khul sake */
    margin-top: 100px; /* Header se thoda niche dhakela */
}
.hero-content h1 { font-size: clamp(3rem, 8vw, 6rem); color: var(--gold); text-shadow: 0 5px 15px #000; }
/* Hero Content ka text aur button bada karne ke liye */

.hero-content p {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem); /* Pehle se kafi bada */
    color: #FFFFFF;
    margin: 25px 0 45px;
    letter-spacing: 8px; /* Luxury gap badha diya */
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 0px 4px 15px rgba(0,0,0,1); /* Deep shadow taaki saaf dikhe */
}

.btn-gold {
    font-size: 1.3rem; /* Button ka text bada */
    padding: 20px 50px; /* Button ka size faila diya */
    border-radius: 50px;
    background: linear-gradient(45deg, #D4AF37, #FFE066, #D4AF37);
    color: #000;
    border: none;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-gold:hover {
    transform: translateY(-5px) scale(1.05); /* Upar uthega aur thoda bada hoga */
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.6);
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-links { position: fixed; right: -100%; top: 0; width: 70%; height: 100vh; background: #000; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: 0.5s; }
    .nav-links.mobile-active { right: 0; }
    .menu-icon { display: block; color: #fff; font-size: 1.5rem; cursor: pointer; }
    .service-grid { grid-template-columns: 1fr; }
}

/* Sections *//* === PROFESSIONAL SECTIONS UPGRADE === */

/* 1. Legacy Section - Premium Typography */
.legacy-section { 
    padding: 120px 0; 
    background: var(--black); 
    text-align: center;
    border-bottom: 1px solid #1a1a1a;
}
.legacy-text { 
    font-size: 1.2rem; 
    max-width: 800px; 
    margin: 30px auto; 
    line-height: 1.8; 
    color: #888; 
    font-weight: 300;
}

/* 2. Service Grid - Card Design */
.service-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 40px; 
    margin-top: 50px;
}
/* Hum aage chalke individual service cards ko style karenge, abhi ke liye spacing fix hai */

/* 3. Review/Testimonial Section - Modern Cards */
.reviews-section { 
    padding: 100px 0; 
    background: #0a0a0a; 
}
.review-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 25px; 
}
.review-card { 
    background: #111; 
    padding: 40px; 
    border-radius: 4px; /* Zyada gol nahi, sharp corners professional lagte hain */
    border: 1px solid #222; 
    text-align: left;
    transition: 0.4s ease;
}
.review-card:hover { 
    border-color: var(--gold); 
    transform: translateY(-10px); 
    background: #161616;
}
.review-card p { color: #ccc; line-height: 1.6; font-style: italic; }
.review-card h4 { color: var(--gold); margin-top: 20px; letter-spacing: 1px; }

/* 4. Gallery Section - Cinematic Strip */
/* === WORLD CLASS FLEET GALLERY === */
.gallery-section {
    padding: 100px 0;
    background: #000;
}

/* Gallery Container */
.gallery-grid {
    display: grid;
    /* 4 columns banayenge jo automatic adjust honge */
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px; /* Base height */
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1); /* Deep Cinematic look */
    transition: 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Photo sizes ko alag-alag karna (The Secret Sauce) */
.w-2 { grid-column: span 2; } /* Ye photo 2 column gheregi */
.h-2 { grid-row: span 2; }    /* Ye photo 2 rows gheregi (Lambi dikhegi) */

/* Hover Effects */
.gallery-item:hover .gallery-img {
    filter: brightness(1) contrast(1);
    transform: scale(1.08);
}

/* Mobile Friendly Settings */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* Mobile pe 2 columns */
        grid-auto-rows: 150px;
    }
}

/* Modal */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 99999; align-items: center; justify-content: center; }
.modal-box { background: #111; padding: 40px; border: 1px solid var(--gold); width: 90%; max-width: 500px; }


/* === LEGACY STATS BOXES === */
.stats-grid {
    display: flex;             /* Items ko ek line mein lane ke liye */
    justify-content: center;   /* Center mein rakhne ke liye */
    gap: 30px;                 /* Boxes ke beech ka gap */
    margin-top: 50px;
    flex-wrap: wrap;           /* Mobile pe automatic niche aane ke liye */
}

.stat-item {
    background: #111;          /* Halka grey/black box */
    border: 1px solid #222;    /* Subtle border */
    padding: 40px 20px;
    min-width: 250px;          /* Box ki ek fixed chaudai */
    border-radius: 4px;
    transition: 0.4s;
}

.stat-item:hover {
    border-color: var(--gold); /* Mouse le jane par gold chamkega */
    transform: translateY(-5px);
    background: #161616;
}

.stat-item h2 {
    font-size: 2.5rem;           /* Numbers bade hone chahiye */
    color: var(--gold);
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-top: 10px;
}

/* Mobile Friendly: Agar screen bahut choti ho toh boxes ek ke niche ek ho jayein */
@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        align-items: center;
    }
    .stat-item {
        width: 100%;
        max-width: 350px;
    }
}
/* === PROFESSIONAL FOOTER UPGRADE === */
footer {
    background: #050505;
    padding: 80px 0 30px;
    border-top: 1px solid #1a1a1a;
    color: #888;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr; /* Pehla column bada, baki barabar */
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
}

.footer-about p {
    line-height: 1.6;
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-title {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px; /* Chota sa movement effect */
}

/* Contact Details */
.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--gold);
    width: 20px;
}

/* Bottom Copyright Bar */
.footer-bottom {
    border-top: 1px solid #111;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

/* Mobile Friendly Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Mobile pe ek ke niche ek */
        gap: 40px;
        text-align: center;
    }
    .footer-about p {
        margin: 0 auto;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    /* About page ki grid ko stack karne ke liye */
    section[style*="display: grid"] {
        display: flex !important;
        flex-direction: column !important; /* Image aur Text ek ke niche ek */
        padding: 60px 20px !important;
        gap: 30px !important;
    }

    /* Founder (Suman Yadav) section mein image hamesha upar aaye */
    .founder-card {
        order: -1; /* Ye image ko text se upar dhakel dega */
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Text alignment mobile pe center rakhein luxury feel ke liye */
    section div[style*="flex: 1.5"], 
    section div[style*="flex: 1"] {
        text-align: center !important;
    }

    /* Image frame ka size adjust karein */
    .about-img-frame {
        width: 100%;
        padding: 10px;
    }

    /* Heading sizes mobile ke liye perfect karein */
    .serif[style*="font-size: 3.5rem"] { font-size: 2.2rem !important; }
    .serif[style*="font-size: 3rem"] { font-size: 2rem !important; }
    
    /* Stats Section (150+, 12 Cities) ko barabar set karein */
    section[style*="grid-template-columns: repeat(3, 1fr)"] {
        display: grid !important;
        grid-template-columns: 1fr !important; /* Mobile pe ek line mein ek stat */
        gap: 40px !important;
    }
}
/* === SERVICE HIGHLIGHTS (ZIG-ZAG) === */
.highlight-section {
    padding: 100px 0;
    background: var(--black);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px; /* Do highlights ke beech ka gap */
}

/* HAR DOOSRE ITEM KO ULTA KARO (ZIG-ZAG MAGIC) */
.highlight-item:nth-child(even) {
    flex-direction: row-reverse;
}

.highlight-img-box {
    flex: 1; /* Half screen lega */
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #222;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.highlight-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.highlight-text-box {
    flex: 1; /* Baki half screen */
    padding: 20px;
}

.highlight-text-box h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.highlight-text-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #888;
    margin-bottom: 30px;
}

/* Mobile Friendly: Mobile pe zig-zag hata kar normal ek ke neeche ek kar denge */
@media (max-width: 768px) {
    .highlight-item, .highlight-item:nth-child(even) {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
        text-align: center;
    }
    .highlight-img-box {
        width: 100%;
        height: 300px;
    }
    .highlight-text-box h3 {
        font-size: 1.8rem;
    }
}
/* === OUR PRESENCE: CITY GRID === */
.presence-section {
    padding: 100px 0;
    background: #000;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* PC pe 4 */
    gap: 15px;
    margin-top: 50px;
}

.city-card {
    position: relative;
    height: 200px; /* Chota aur premium box */
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #222;
}

.city-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
    filter: brightness(0.6); /* Shuru mein thoda dark */
}

.city-name {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

/* Hover Effect */
.city-card:hover .city-img {
    transform: scale(1.1);
    filter: brightness(0.9);
}
.city-card:hover {
    border-color: var(--gold);
}

/* MOBILE RESPONSIVE (2 COLUMNS) */
@media (max-width: 768px) {
    .city-grid {
        grid-template-columns: repeat(2, 1fr); /* Mobile pe 2 */
        gap: 10px;
    }
    .city-card {
        height: 150px;
    }
    .city-name {
        font-size: 0.9rem;
        bottom: 10px;
        left: 10px;
    }
}
/* === FLEET SHOWROOM DESIGN === */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.fleet-card {
    background: #0f0f0f;
    border: 1px solid #222;
    border-radius: 4px;
    overflow: hidden;
    transition: 0.5s;
}

.fleet-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.fleet-img-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.fleet-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.fleet-card:hover .fleet-img-box img {
    transform: scale(1.1);
}

.fleet-info {
    padding: 30px;
}

.fleet-tag {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.fleet-info h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.fleet-specs {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 25px;
    border-top: 1px solid #222;
    padding-top: 20px;
}

.fleet-btn {
    width: 100%;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.fleet-btn:hover {
    background: var(--gold);
    color: #000;
}
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.filter-btn {
    background: transparent;
    border: 1px solid #333;
    color: #888;
    padding: 10px 25px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}
.filter-btn.active, .filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}
.modal-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); z-index: 1000; align-items: center; justify-content: center;
}
.modal-content {
    background: #0a0a0a; padding: 40px; border: 1px solid var(--gold);
    width: 90%; max-width: 500px; position: relative; border-radius: 4px;
}
.close-modal {
    position: absolute; top: 20px; right: 20px; color: #fff; font-size: 2rem; cursor: pointer;
}
#enquiryForm input, #enquiryForm select {
    width: 100%; padding: 12px; margin-bottom: 15px; background: #111;
    border: 1px solid #333; color: #fff; border-radius: 4px;
}
#enquiryForm select option { background: #000; }

.contact-hero { padding: 150px 0 60px; text-align: center; background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1493238792000-8113da705763?w=1600'); background-size: cover; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; padding: 80px 0; }
.contact-info .info-item { margin-bottom: 40px; }
.contact-info h3 { margin-bottom: 15px; font-size: 1.5rem; }
.contact-info p { color: #ccc; margin-bottom: 10px; font-size: 1.1rem; }
.contact-info i { margin-right: 15px; width: 20px; }

.contact-form-box { background: #0a0a0a; padding: 40px; border: 1px solid #222; border-radius: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.professional-form input, .professional-form select, .professional-form textarea {
    width: 100%; background: #111; border: 1px solid #333; color: #fff; padding: 15px; margin-bottom: 20px; border-radius: 4px; font-family: 'Manrope', sans-serif;
}
.professional-form input:focus { border-color: var(--gold); outline: none; }

.social-links a { font-size: 1.5rem; color: #fff; margin-right: 25px; transition: 0.3s; }
.social-links a:hover { color: var(--gold); }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}
.about-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1464037866556-6812c9d1c72e?w=1600');
    background-size: cover;
    background-position: center;
}

.about-img-frame {
    position: relative;
    padding: 20px;
}

.about-img-frame::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 100px; height: 100px;
    border-top: 5px solid var(--gold);
    border-right: 5px solid var(--gold);
}

.founder-card img {
    transition: 0.5s ease;
}

.founder-card:hover img {
    filter: grayscale(0); /* Hover karne par CEO ki photo color ho jayegi */
    transform: scale(1.02);
}
/* --- Desktop / Laptop Settings --- */

/* Laptop mein menu icon ko chhupao */
/* style.css mein menu-icon ko dhoond kar ye lines add/update karein */
.menu-icon {
    display: none; 
    cursor: pointer;
    font-size: 1.8rem; /* Thoda bada kiya taaki touch karne mein aasaani ho */
    color: var(--gold);
    position: relative; 
    z-index: 100001; /* Sabse upar rahega */
    padding: 10px;   /* Click area badhane ke liye */
}

/* --- Professional Mobile Menu Style --- */
@media (max-width: 768px) {
    /* Navbar ki height aur position fix */
    .navbar {
        height: 70px;
        z-index: 99999 !important; /* Sabse upar */
    }

    .menu-icon {
        display: block !important;
        z-index: 100001 !important;
        font-size: 1.8rem;
        color: var(--gold);
        padding: 5px;
    }

    /* Side Drawer Design */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Shuru mein screen se bahar */
        width: 80%;   /* 80% screen cover karega */
        height: 100vh;
        background: #000; /* Solid Black */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth Slide */
        z-index: 100000 !important;
        border-left: 1px solid #222;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    /* Jab menu active ho */
    .nav-links.mobile-active {
        right: 0; /* Screen ke andar aa jayega */
    }

    .nav-links a {
        margin: 20px 0;
        font-size: 1.2rem;
        letter-spacing: 2px;
        color: #fff;
        width: 100%;
        text-align: center;
    }

    /* Screen ko dhakne ke liye dark overlay (Optional but Professional) */
    .menu-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.7);
        z-index: 99999;
    }
    .menu-overlay.active { display: block; }
}
/* Laptop mein links hamesha dikhni chahiye */
@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
    }
}
@media (max-width: 768px) {
    .nav-btn {
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
    }
}

/* ============================================================
   MOBILE & TABLET OPTIMIZATION (ONLY FOR SCREENS < 768px)
   ============================================================ */

@media (max-width: 768px) {
    /* 1. Global Container Adjustment */
    .container { padding: 0 15px; }

    /* 2. Hero Section (Text aur Button ko adjust kiya) */
    .hero-content { margin-top: 50px; padding: 15px; }
    .hero-content h1 { font-size: 2.5rem !important; } /* Phone pe bahut bada na dikhe */
    .hero-content p { letter-spacing: 4px !important; font-size: 1rem !important; margin-bottom: 30px; }
    .btn-gold { padding: 15px 35px; font-size: 1rem; width: 90%; } /* Button full width ke karib */

    /* 3. Zig-Zag Highlights (Hamne text aur image ko stack kar diya) */
    .highlight-item, .highlight-item:nth-child(even) {
        flex-direction: column !important;
        gap: 20px;
        margin-bottom: 50px;
        text-align: center;
    }
    .highlight-img-box { height: 250px; width: 100%; }
    .highlight-text-box h3 { font-size: 1.8rem; }

    /* 4. About Page Sections (Founder aur Vision fix) */
    section[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important; /* Grid ko tod kar 1 column kiya */
        gap: 30px !important;
        padding: 50px 0 !important;
    }
    .about-img-frame::after { width: 50px; height: 50px; } /* Corner design chota kiya */
    
    /* 5. Founder Card (Suman Yadav Section) */
    .founder-card { order: -1; } /* Photo text se pehle dikhegi */
    section h2[style*="font-size: 3rem"] { font-size: 2rem !important; }

    /* 6. Stats & City Grid (Adjusting boxes) */
    .stats-grid { gap: 15px; }
    .stat-item { min-width: 100%; padding: 30px 15px; }
    
    /* 7. Fleet Showroom (Cards size fix) */
    .fleet-grid { grid-template-columns: 1fr !important; gap: 25px; }
    .fleet-img-box { height: 200px; }
    .fleet-info h3 { font-size: 1.3rem; }

    /* 8. Contact Form (Side-by-side inputs ko niche kiya) */
    .contact-grid { grid-template-columns: 1fr !important; gap: 40px; }
    .form-row { grid-template-columns: 1fr !important; gap: 0; }
    .contact-form-box { padding: 25px 15px; }

    /* 9. Navbar Mobile Logo Fix */
    .logo { font-size: 1.4rem; }
}

/* Extra Small Devices (Chote Phones) */
@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem !important; }
    .gallery-grid { grid-template-columns: 1fr !important; } /* Gallery 1 column */
    .w-2, .h-2 { grid-column: span 1 !important; grid-row: span 1 !important; } /* Gallery spans reset */
}
/* PC/Laptop View */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-founder { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    /* Grid ko tod kar stack banana */
    .grid-2, .grid-founder, .grid-3 {
        display: flex !important;
        flex-direction: column !important;
        text-align: center;
        gap: 30px !important;
    }

    /* Founder Image ko sabse upar laane ke liye */
    .grid-founder .founder-card {
        order: -1; /* Image text ke upar chali jayegi */
        max-width: 350px;
        margin: 0 auto;
    }

    /* Text adjustments */
    .about-text, .founder-info {
        padding: 0 10px;
    }

    /* Headings ko mobile ke liye adjust karna */
    .grid-2 h2, .grid-founder h2 {
        font-size: 2rem !important;
    }
}
/* Utility Classes */
.py-100 { padding: 100px 0; }
.py-80 { padding: 80px 0; }
.mb-25 { margin-bottom: 25px; }
.img-responsive { width: 100%; border-radius: 5px; display: block; }
.tracking-3 { letter-spacing: 3px; font-weight: 800; font-size: 0.8rem; }

/* Desktop Grid Logic */
.grid-stack, .grid-founder-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-founder-stack { grid-template-columns: 1fr 1.5fr; gap: 80px; }
.grid-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

/* Professional Typography */
.p-lead { line-height: 1.8; color: #ccc; font-size: 1.1rem; }
.p-sub { line-height: 1.7; color: #888; margin-top: 15px; }
.name-title { font-size: 3.5rem; margin: 10px 0; }
.designation { color: var(--gold); letter-spacing: 2px; margin-bottom: 25px; }
.quote-box { border-left: 3px solid var(--gold); padding-left: 20px; margin-bottom: 30px; font-style: italic; color: #eee; }

/* --- MOBILE MASTER FIX --- */
@media (max-width: 768px) {
    .grid-stack, .grid-founder-stack, .grid-stats {
        display: flex !important;
        flex-direction: column !important;
        text-align: center;
        gap: 40px !important;
    }
    
    .grid-founder-stack .founder-card {
        order: -1; /* Image hamesha upar */
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .name-title { font-size: 2.5rem !important; }
    .about-hero h1 { font-size: 2.2rem !important; }
    
    .quote-box { text-align: left; padding-left: 15px; }
}