@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    min-height: 100vh; /* Ye line add karein taki page poora load ho */
    display: flex;
    flex-direction: column;
}

/* Navbar Settings */
nav { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 2000; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    /* Yahan padding 6% se hata kar 2% kar di hai taki logo left mein kishak jaye */
    padding: 25px 5%; 
    background: #ffffff; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    transition: 0.3s;
}

.logo img { 
    /* Height badha di hai taki logo bada aur saaf dikhe */
    height: 90px; 
    width: auto; 
    /* Agar abhi bhi aur left chahiye, toh negative margin use kar sakte hain */
    margin-left: 10px; 
    filter: none !important; 
    display: block;
}

/* Nav links ka color black karna padega kyunki background white hai */
.nav-links a { 
    color: #333 !important; 
    text-decoration: none; 
    margin-left: 35px;
    font-size: 13px; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    font-weight: 600;
}

/* Hero Section - Jahan photo dikhegi */
.hero {
    margin-top: 80px; /* Header ki height ke barabar gap */
    height: calc(100vh - 80px); 
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.intro { padding: 80px 10%; text-align: center; background: white; }

/* Destinations Grid */
.thg-grid { display: flex; flex-wrap: wrap; }
.grid-item { width: 50%; height: 500px; position: relative; overflow: hidden; }
.grid-item img { width: 100%; height: 100%; object-fit: cover; }
.why-choose-thg {
    padding: 80px 10%;
    background-color: #fcfcfc;
    text-align: center;
}

.why-choose-thg .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.why-choose-thg .section-title span {
    color: #004a99; /* Blue shade like THG */
    border-bottom: 2px solid #004a99;
}

.section-subtitle {
    color: #777;
    font-size: 14px;
    margin-bottom: 50px;
}

.why-grid-thg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid #eee;
}

.why-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.why-icon {
    font-size: 30px;
    margin-bottom: 20px;
}

.why-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.why-box p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .why-grid-thg { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .why-grid-thg { grid-template-columns: 1fr; }
}
/* Footer Premium Styling */
.footer-thg {
    background-color: #111111;
    color: #ffffff;
    padding: 80px 10% 30px;
    width: 100%;
    position: relative; /* Ise check karein */
    clear: both; /* Agar koi float use hua hai toh use clear karega */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col a {
    transition: 0.3s;
}

.footer-col a:hover {
    color: #c5a059 !important; /* Gold color on hover */
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 25px;
    color: #c5a059; /* Gold accent color */
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-col p, .footer-col ul li {
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li a {
    color: #aaaaaa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.social-links a {
    display: block;
    color: #c5a059;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #555555;
    font-size: 12px;
    letter-spacing: 1px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}
/* Packages Page Styling */
.packages-header {
    text-align: center;
    padding: 60px 0;
    background: #fcfcfc;
}

.packages-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.packages-header p {
    color: #888;
    font-size: 14px;
    letter-spacing: 1px;
}

.packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 40px 10% 100px;
}

/* Luxury Card Layout */
.package-card {
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.p-image-box {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.p-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.package-card:hover .p-image-box img {
    transform: scale(1.1);
}

.p-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #c5a059;
    color: white;
    padding: 4px 12px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.p-info {
    padding: 25px;
}

.p-category {
    font-size: 10px;
    color: #bfa37e;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.p-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 12px;
    color: #111;
}

.p-info p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.p-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f9f9f9;
    padding-top: 20px;
}

.p-price {
    font-weight: 600;
    color: #111;
    font-size: 15px;
}

.p-btn {
    text-decoration: none;
    color: #c5a059;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid #c5a059;
    padding-bottom: 2px;
}
/* Contact Page Styling */
.contact-section {
    padding: 80px 10%;
    background: #fff;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 20px;
    color: #111;
}

.info-item {
    margin-top: 30px;
}

.info-item h3 {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #c5a059;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 16px;
    color: #555;
}

/* Form Styling */
.contact-form {
    flex: 1;
    background: #f9f9f9;
    padding: 40px;
    border: 1px solid #eee;
}

.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #111;
    color: #fff;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #c5a059;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-container { flex-direction: column; }
    .contact-info h1 { font-size: 32px; }
}
/* Destinations Page Styling */
.dest-header {
    text-align: center;
    padding: 60px 10%;
    background: #fff;
}

.dest-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 45px;
    letter-spacing: 2px;
}

.dest-grid-container {
    padding: 20px 10% 100px;
}

.dest-wide-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.dest-wide-card.reverse {
    flex-direction: row-reverse;
}

.dest-img-side {
    flex: 1.2;
    height: 450px;
    overflow: hidden;
}

.dest-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s ease;
}

.dest-wide-card:hover .dest-img-side img {
    transform: scale(1.05);
}

.dest-text-side {
    flex: 1;
}

.dest-count {
    font-size: 12px;
    color: #c5a059;
    letter-spacing: 3px;
    font-weight: 700;
}

.dest-text-side h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin: 15px 0;
}

.dest-text-side p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 25px;
}

.dest-cities {
    margin-bottom: 30px;
    font-size: 13px;
    color: #999;
    letter-spacing: 1px;
}

.dest-explore-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #111;
    text-decoration: none;
    color: #111;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.dest-explore-btn:hover {
    background: #111;
    color: #fff;
}

/* Mobile setting */
@media (max-width: 768px) {
    .dest-wide-card, .dest-wide-card.reverse { flex-direction: column; gap: 30px; margin-bottom: 60px; }
    .dest-img-side { height: 300px; width: 100%; }
}
/* --- Dropdown Fix Start --- */

/* Nav links ko ek line mein set karne ke liye */
.nav-links {
    display: flex;
    align-items: center;
}

/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown menu jo chhupa rahega jab tak hover na karein */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    z-index: 9999; /* Taaki ye sabse upar dikhe */
    top: 100%;
    left: 0;
    border-top: 3px solid #c5a059; /* Gold touch */
}

/* Hover karne par menu dikhane ke liye */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Menu ke andar ke links */
.dropdown-content a {
    color: #333 !important;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    border-bottom: 1px solid #f5f5f5;
    margin-left: 0 !important; /* Alignment fix */
    text-align: left;
}

/* Link par hover ka effect */
.dropdown-content a:hover {
    background-color: #fcfcfc;
    color: #c5a059 !important;
}

/* --- Dropdown Fix End --- */
/* Hotel Listing Page Styles */
.hotel-listing { padding: 60px 10%; background-color: #ffffff; }

.hotel-header { text-align: center; margin-bottom: 50px; }
.hotel-header h1 { font-family: 'Playfair Display', serif; font-size: 36px; }
.hotel-header h1 span { color: #c5a059; }
.hotel-header p { color: #777; font-size: 14px; letter-spacing: 1px; }

.hotel-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 40px; 
}

.hotel-card { 
    background: #fff; 
    border: 1px solid #f0f0f0; 
    transition: 0.4s; 
}

.hotel-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }

.hotel-img-box { position: relative; height: 250px; overflow: hidden; }
.hotel-img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.hotel-card:hover .hotel-img-box img { transform: scale(1.1); }

.star-rating { 
    position: absolute; top: 15px; left: 15px; 
    background: rgba(255,255,255,0.9); padding: 5px 10px; 
    font-size: 10px; border-radius: 5px; 
}

.hotel-info { padding: 25px; }
.hotel-info h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 10px; }
.h-loc { font-size: 13px; color: #888; margin-bottom: 15px; }

.h-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 25px; }
.h-features span { 
    font-size: 11px; background: #f9f9f9; padding: 5px 10px; 
    border: 1px solid #eee; color: #666; 
}

.h-footer { 
    display: flex; justify-content: space-between; align-items: center; 
    border-top: 1px solid #f0f0f0; padding-top: 20px; 
}

.h-price { font-weight: 600; color: #111; font-size: 15px; }
.h-book-btn { 
    text-decoration: none; color: #c5a059; font-weight: 600; 
    font-size: 12px; text-transform: uppercase; border-bottom: 1px solid #c5a059; 
}
/* Floating Query Button Styling */
.floating-query-wrap {
    position: fixed;
    right: -5px; /* Thoda side se bahar nikla hua classy lagta hai */
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

.query-float-btn {
    background: #111; /* Dark background */
    color: #c5a059; /* Sathi Gold color */
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 30px 0 0 30px; /* Left side se round */
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: -5px 5px 15px rgba(0,0,0,0.2);
    border: 1px solid #c5a059;
    border-right: none;
    transition: 0.3s ease;
}

.query-float-btn:hover {
    right: 0;
    background: #c5a059;
    color: #fff;
}

/* Blink Karne Wala Dot */
.blink-dot {
    height: 10px;
    width: 10px;
    background-color: #c5a059;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-gold 1.5s infinite;
}

@keyframes pulse-gold {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(197, 160, 89, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
    }
}

/* Mobile ke liye size thoda chota */
@media (max-width: 768px) {
    .query-float-btn {
        padding: 10px 15px;
        font-size: 11px;
    }
}
/* Floating Contact Bar Styling */
.sathi-contact-bar {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: 0.3s;
    color: #fff;
}

.call-btn {
    background: #111; /* Black theme for Call */
    border: 1px solid #c5a059;
}

.wa-btn {
    background: #25d366; /* WhatsApp Green */
}

.contact-btn:hover {
    transform: translateY(-3px);
}

/* Mobile View: Bottom Bar layout */
@media (max-width: 768px) {
    .sathi-contact-bar {
        left: 0;
        bottom: 0;
        width: 100%;
        flex-direction: row;
        gap: 0;
        padding: 0;
    }

    .contact-btn {
        flex: 1;
        border-radius: 0;
        justify-content: center;
        padding: 15px;
    }
    
    .call-btn {
        border: none;
        border-right: 1px solid #333;
    }
}
.sathi-floating-stack {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
}

.sathi-btn {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    border-radius: 30px 0 0 30px;
    box-shadow: -2px 2px 10px rgba(0,0,0,0.1);
    width: fit-content;
}

/* Colors */
.sathi-plan { background: #111; color: #c5a059; border: 1px solid #c5a059; border-right: none; }
.sathi-call { background: #c5a059; color: #fff; }
.sathi-wa { background: #25d366; color: #fff; }

/* Hover Effect: Poora button bahar aayega */
.sathi-btn:hover { padding-right: 30px; }

.btn-icon { margin-left: 10px; font-size: 16px; }

/* Blink Dot for Plan My Trip */
.blink-dot {
    height: 8px;
    width: 8px;
    background-color: #c5a059;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse-gold 1.5s infinite;
}
@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(197, 160, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}
/* Slider ko ek box mein rakhne ke liye */
.hotel-slider-container {
    position: relative;
    height: 250px; /* Photo ki height */
    overflow: hidden;
    background: #eee;
}

/* Shuruat mein saari photos chhupane ke liye */
.hotel-slides {
    display: none; 
    height: 100%;
}

.hotel-slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Arrows ki setting */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 10px;
    color: white;
    background: rgba(0,0,0,0.5);
    font-size: 18px;
    text-decoration: none;
    z-index: 10;
}
.next { right: 0; }
.prev { left: 0; }
.hotel-slider-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

/* Ye line sabse zaroori hai: saari photos ko chhupane ke liye */
.hotel-slides {
    display: none; 
    width: 100%;
    height: 100%;
}

.hotel-slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Mobile Optimization - Ye phone par layout ko sahi karega */
@media (max-width: 768px) {
    
    /* 1. Navigation: Menu ko manage karega */
    nav {
        padding: 10px;
        flex-direction: column;
        height: auto !important;
    }
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }
    .nav-links a {
        font-size: 14px;
        padding: 5px 10px;
    }

    /* 2. Hotel Grid: 3 hotels ki jagah 1-1 hotel dikhayega row mein */
    .hotel-grid {
        grid-template-columns: 1fr !important; /* Ek line mein ek hotel */
        padding: 0 15px !important;
    }

    /* 3. Footer: 5 columns ko ek ke niche ek karega */
    .footer-thg div[style*="display: flex"], 
    footer div[style*="display: flex"] {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .footer-thg div[style*="width:"],
    footer div[style*="width:"] {
        width: 100% !important; /* Har column poori width lega */
        margin-bottom: 30px !important;
        padding: 0 !important;
    }

    /* 4. Founder Section: Photo upar aur text niche */
    section div[style*="display: flex"] {
        flex-direction: column !important;
        text-align: center !important;
    }

    /* 5. Floating Buttons: Phone par inko chota aur readable rakhega */
    .sathi-floating-stack {
        bottom: 10px;
        right: 10px;
    }
    .sathi-btn .btn-text {
        display: none; /* Phone par sirf icons dikhenge taaki screen block na ho */
    }
    .sathi-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
    }
}
/* --- GLOBAL MOBILE FIXES --- */
@media (max-width: 768px) {
    /* Menu ko center karne ke liye */
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    /* Footer ko ek ke niche ek karne ke liye */
    footer div[style*="display: flex"] {
        flex-direction: column !important;
        text-align: center !important;
    }

    footer div[style*="width:"] {
        width: 100% !important;
        margin-bottom: 20px;
    }

    /* Floating buttons ko phone par chota karne ke liye */
    .sathi-btn .btn-text {
        display: none; /* Phone par text hide hoga, sirf icon dikhega */
    }
    .sathi-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }
}
/* --- Global Header Style --- */
nav {
    background: #000000 !important; /* Header Black */
}

.nav-links a, .dropbtn {
    color: #d4af37 !important; /* Golden Color */
    font-weight: bold !important; /* Bold Names */
    text-decoration: none;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: #ffffff !important; /* Hover par white hoga */
}
nav {
    padding: 25px 5% !important; /* 12px se badha kar 25px kar diya */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
}
nav img {
    height: 65px !important; /* Pehle 50px tha, ab thoda bada dikhega */
    width: auto;
}
@media (max-width: 768px) {
    nav {
        padding: 15px 5% !important; /* Mobile par itna kafi hai */
    }
    nav img {
        height: 45px !important; /* Mobile par logo ka size */
    }
}
.thg-grid {
    display: flex;
    flex-wrap: wrap; /* Ye zaroori hai taaki extra items niche aa jayein */
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.grid-item {
    flex: 1 1 calc(33.33% - 40px); /* Ek line mein 3 dikhayega */
    min-width: 280px; /* Mobile par apne aap niche shift ho jayega */
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
/* Hotel Grid ko theek karne ke liye */
.hotel-grid { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 30px; 
    justify-content: flex-start; /* Items ko left se start karega, center se nahi */
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 20px;
}

/* Hotel Card ki width fix karne ke liye */
.hotel-card { 
    width: 100%; 
    max-width: 380px; /* Ye zaroori hai taaki photo stretch na ho */
    background: #fff; 
    border: 1px solid #eee; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Photo ko crop karke adjust karne ke liye */
.hotel-slides img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ye photo ko stretch nahi hone dega, zarurat padne par crop karega */
}

.hotel-slider-container { 
    position: relative; 
    width: 100%; 
    height: 280px; /* Aap height thodi badha bhi sakte ho better look ke liye */
    background: #000; 
}
.grid-item {
    position: relative;
    height: 350px; /* Aap apne hisaab se height adjust kar sakte ho */
    overflow: hidden;
    border-radius: 10px;
}

.home-slider {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.home-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Stretch nahi hone dega */
    opacity: 0;
    transition: opacity 1.5s ease-in-out; /* Smooth fade effect */
}

.home-slider img.active {
    opacity: 1;
}

.grid-overlay {
    position: absolute;
    z-index: 5; /* Overlay ko photo ke upar rakhega */
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3); /* Photo thodi dark dikhegi taaki text saaf dikhe */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}