@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700&family=Montserrat:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    background-color: #ffffff; /* Pure White Background */
    color: #333333; /* Dark text for clear reading */
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #ffffff; /* Clean White Background */
    border-bottom: 1px solid #eaeaea;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.header.scrolled {
    background-color: #ffffff;
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #d4af37;
}

.site-branding {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.site-name {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #1a1a1a; /* Dark text for white background */
    font-weight: 700;
    line-height: 1;
}

.site-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #d4af37; /* Premium Gold */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-left: 20px; /* Ye PC ke liye theek hai */
    margin-top: 4px;
    font-weight: 500;
}

/* ==================== MOBILE RESPONSIVE FIXES ==================== */
@media (max-width: 991px) {
    .site-name {
        font-size: 20px;
    }
    
    .site-tagline {
        font-size: 9px;
        letter-spacing: 1px;
        margin-left: 3px; /* MOBILE FIX: Yahan margin 0 kar diya taaki side me na bhage */
        text-align: left; /* Taki mobile me logo ke hisaab se sahi dikhe */
    }
    
    /* Baki ka purana mobile code aise hi rahega... */
    .nav-links a {
        color: #ffffff !important;
    }
    /* ... (rest of your media query code) ... */
}



/* ==================== NAV LINKS & DROPDOWN (WHITE HEADER FIX) ==================== */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

/* PC par text Black hoga taaki White bg par clear dikhe */
.nav-links a {
    color: #1a1a1a; 
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #d4af37; /* Hover par Gold */
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff; /* Dropdown ko bhi White kiya */
    border: 1px solid #eaeaea;
    border-top: 3px solid #d4af37; /* Upar ek premium gold line */
    list-style: none;
    min-width: 220px;
    padding: 10px 0;
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08); /* Halka shadow */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #1a1a1a; /* Dropdown ka text bhi Black */
}

.dropdown-menu li a:hover {
    background: #f9f9f9;
    color: #d4af37;
    padding-left: 25px; /* Hover effect */
}

/* ==================== HAMBURGER (3-LINE) COLOR FIX ==================== */
.hamburger span {
    background-color: #1a1a1a !important; /* Mobile ki 3-lines ab Black dikhengi */
}

/* ==================== MOBILE MENU FIX (Dark background ke liye) ==================== */
@media (max-width: 991px) {
    /* Mobile me side se dark menu aata hai, toh wahan text wapas White chahiye */
    .nav-links a {
        color: #ffffff !important; 
    }
    .hamburger.active span {
        background-color: #ffffff !important; /* X banne par wapas white */
    }
    
    /* Mobile Dropdown adjustments */
    .dropdown-menu {
        position: relative;
        background: transparent;
        box-shadow: none;
        border: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none; /* JS se hide/show hota hai */
    }
    .dropdown-menu.show {
        display: block;
    }
    .dropdown-menu li a {
        color: #d4af37 !important; /* Mobile dropdown text Gold */
        text-align: center;
    }
}




/* Actions */
.desktop-actions, .mobile-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-book {
    background: #d4af37;
    color: #000;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease;
}

.btn-book:hover {
    background: #fff;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.social-icons a {
    color: #fff;
    font-size: 16px;
    margin-left: 10px;
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: #d4af37;
}

.mobile-actions {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: #ffffff;
    transition: 0.3s;
}

/* HERO SLIDER (This fixes the black screen) */
/* ==================== SPLIT-SCREEN HERO SLIDER ==================== */
.split-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

.split-slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.split-slide {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity 0.6s ease-in-out;
}

.split-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

/* Image Side (Left) */
.slide-image {
    flex: 2; /* Pehle 1.2 tha, ab ise badha kar 2 kar diya */
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.split-slide.active .slide-image {
    transform: scale(1);
}

/* Content Side (Right) */
.slide-content-box {
    flex: 1; /* Pehle 0.8 tha, ise 1 rakha hai ratio ke hisaab se */
    background-color: #1a432a; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 4%;
}

.content-inner {
    max-width: 500px;
}

.content-inner .anim-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #d4af37; /* Gold */
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
}

.content-inner .anim-title {
    font-family: 'Cinzel', serif;
    font-size: 3.2rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
}

.btn-split {
    display: inline-block;
    padding: 12px 35px;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: 0.4s;
    opacity: 0;
    transform: translateY(20px);
}

.btn-split:hover {
    background: #ffffff;
    color: #273b30;
}

/* The Decorative Line "Meter" */
.decorative-meter {
    width: 1px;
    height: 120px;
    background-color: rgba(212, 175, 55, 0.6);
    margin: 40px auto 0;
    position: relative;
    opacity: 0;
}

.decorative-meter::before {
    content: '❖'; /* Floral/Diamond element like screenshot */
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: #d4af37;
    font-size: 18px;
}

/* Slide Animations */
.split-slide.active .anim-sub { animation: fadeUp 0.6s ease forwards 0.3s; }
.split-slide.active .anim-title { animation: fadeUp 0.6s ease forwards 0.5s; }
.split-slide.active .anim-btn { animation: fadeUp 0.6s ease forwards 0.7s; }
.split-slide.active .anim-meter { animation: fadeUp 0.6s ease forwards 0.9s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Dots Indicator */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 30%; /* Shifted to image side */
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
}

.dot {
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #d4af37;
    width: 40px;
}

/* ==================== MOBILE RESPONSIVE ==================== */
/* ==================== MOBILE & RESPONSIVE FIXES ==================== */
@media (max-width: 991px) {
    /* --- 1. HEADER FIX (Wapas 3-line menu) --- */
    .desktop-actions { display: none; }
    .hamburger { display: flex; z-index: 1002; position: relative; }
    
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 100px;
        transition: 0.4s ease;
        z-index: 1000;
    }
    
    .navbar.active { right: 0; }
    
    .nav-links {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }



/* Dropdown Overlap Fix */
    .dropdown-menu {
        display: none; 
        position: relative; /* Ye magic trick hai! Absolute se relative kar diya taaki ye contact us ko niche dhake */
        background: transparent;
        border: none;
        padding-top: 10px;
        width: 100%;
        text-align: center;
    }

    .dropdown-menu.show {
        display: block;
        animation: fadeInDown 0.3s ease forwards;
    }

    .dropdown-menu li a {
        padding: 10px 0;
        font-size: 15px;
        color: #d4af37;
    }

    /* Actions aur Icons ko ek dum center karne ke liye */
    .mobile-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
        margin-top: 20px;
    }

    .social-icons {
        margin: 0;
        justify-content: center;
    }




    /* --- 2. BANNER LAYOUT FIX FOR MOBILE --- */
    .split-slide {
        flex-direction: column;
    }
    .slide-image {
        flex: 1;
        min-height: 45vh; /* Image ko height dena zaroori hai mobile me */
    }
    .slide-content-box {
        flex: 1;
        min-height: 55vh;
        padding: 30px 20px;
    }
    .content-inner .anim-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    .slider-dots {
        left: 50%;
        bottom: 55%; /* Dots mobile me theek center me rahenge */
        transform: translateX(-50%);
    }
    .decorative-meter {
        height: 60px;
        margin: 20px auto 0;
    }
}



/* ==================== OUR HOTELS SECTION ==================== */
/* ==================== OUR HOTELS SECTION (PREMIUM BG UPDATE) ==================== */
/* ==================== OUR HOTELS SECTION (WHITE THEME) ==================== */
.our-hotels-section {
    padding: 100px 5%;
    background-color: #ffffff; /* Clean white background */
    position: relative;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05); /* Halka sa border separation ke liye */
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: #1a1a1a; /* Charcoal Dark color taaki white bg par pop kare */
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.section-title p {
    color: #666666; /* Elegant Grey for subheading */
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.hotel-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.hotel-image {
    height: 450px;
    background-size: cover;
    background-position: center;
    background-color: #222; /* Default color agar image na ho */
    transition: transform 0.6s ease;
}

/* Image Zoom Animation on Hover */
.hotel-card:hover .hotel-image {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* Gradient jo niche se dark hota hai taaki text clear dikhe */
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.9));
    transition: 0.4s ease;
}

.hotel-card:hover .card-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.95));
}

.card-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    text-align: left;
    color: white;
    z-index: 2;
}

.card-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Text aur Button ka Animation */
.card-content p {
    font-size: 1.05rem;
    color: #cccccc;
    margin-bottom: 25px;
    font-weight: 300;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.btn-unique {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border: 1px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    transition: 0.4s ease;
    transform: translateY(20px);
    opacity: 0;
}

/* Hover par text aur button upar aayenge */
.hotel-card:hover .card-content p,
.hotel-card:hover .btn-unique {
    transform: translateY(0);
    opacity: 1;
}

.btn-unique:hover {
    background: #d4af37;
    color: #000;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 850px) {
    .hotels-grid {
        grid-template-columns: 1fr; /* Mobile me ek ke niche ek */
        gap: 30px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .hotel-image {
        height: 350px;
    }
    
    .card-content {
        bottom: 25px;
        left: 20px;
        right: 20px;
    }
    
    /* Mobile me touch devices hote hain, isliye content hamesha dikhna chahiye bina hover ke */
    .card-content p,
    .btn-unique {
        transform: translateY(0);
        opacity: 1;
    }
}



/* ==================== FOOTER SECTION ==================== */
/* ==================== FOOTER SECTION ==================== */
.premium-footer {
    background-color: #1a432a; /* Deep Royal Forest Green (Very Attractive & Luxury) */
    border-top: 3px solid #d4af37; /* Thodi moti premium gold line */
    padding: 70px 5% 20px;
    color: #e0e0e0; /* Light text taaki padhne me aasan ho */
    background-image: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05), transparent 50%); /* Halka sa golden glow effect */
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1350px;
    margin: 0 auto;
}

.footer-col {
    flex: 1;
    min-width: 300px; /* Mobile me ek ke niche ek laane ke liye */
}

/* Headings ko Gold kiya aur shadow lagaya */
.footer-col h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #d4af37; /* Dark black hata kar Premium Gold kiya */
    margin-bottom: 20px;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Heading ke niche ek choti gold line */
.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #d4af37;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

/* Links ko Light Grey kiya */
.footer-links a {
    color: #e8e8e8; /* Dark grey hata kar Bright kiya */
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #d4af37;
    padding-left: 8px; /* Thoda slide effect add kiya */
}

/* Address aur details ko light kiya */
.footer-col p {
    font-size: 14.5px;
    color: #dcdcdc; /* Dark grey hata kar Light kiya */
    margin-bottom: 15px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-col i {
    color: #d4af37;
    margin-top: 4px;
    font-size: 16px;
}

/* Map Box Styling - Dark theme ke hisaab se update kiya */
.map-box {
    margin-top: 15px;
    width: 100%;
    height: 150px;
    background-color: #0f1a14;
    border: 1px solid rgba(212, 175, 55, 0.3); /* Halka gold border */
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888888;
    overflow: hidden;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Bottom ko Dark Theme me set kiya */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Dark border hata kar Halka white border kiya */
    font-size: 14px;
    color: #cccccc; /* Bright text */
    letter-spacing: 1px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}


/* ==================== COLORFUL SOCIAL ICONS ==================== */
.social-icons {
    display: flex;
    gap: 15px; 
    margin-left: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; /* Bada size */
    height: 38px; /* Bada size */
    border-radius: 50%;
    font-size: 20px; /* Icon ka size badhaya */
    text-decoration: none;
    /* Bouncy smooth animation */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Instagram Original Colors (Gradient) */
.icon-insta {
    color: #fff !important;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Facebook Original Colors */
.icon-fb {
    color: #fff !important;
    background-color: #1877F2;
}

/* Hover Animation - Upar uthega aur apni color ki glow dega */
.social-icons a:hover {
    transform: translateY(-6px) scale(1.1);
}

.icon-insta:hover {
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.6);
}

.icon-fb:hover {
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.6);
}


/* ==================== FLOATING CONTACT BUTTONS ==================== */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999; /* Sabse upar dikhne ke liye */
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    transition: 0.3s;
}

/* Call Button - Blue */
.call-btn {
    background-color: #007bff;
    animation: pulse-call 2s infinite;
}

/* WhatsApp Button - Green */
.wa-btn {
    background-color: #25d366;
    animation: pulse-wa 2s infinite;
}

.float-btn:hover {
    transform: scale(1.1);
}

/* Blinking/Pulse Animations */
@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-call {
    0% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 123, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); }
}

/* Mobile Responsive Floating Buttons */
@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}


/* ==================== ALL DEVICES MOBILE OPTIMIZATIONS ==================== */
@media (max-width: 768px) {
    /* Mobile me header thoda compact ho jayega */
    .header {
        padding: 15px 0;
    }
    .header.scrolled {
        padding: 8px 0;
    }
    .site-logo {
        width: 38px;
        height: 38px;
    }
    .site-name {
        font-size: 18px;
    }

    /* Floating Buttons thode chote aur side me shift honge */
    .floating-contact {
        bottom: 20px;
        right: 15px;
        gap: 12px;
    }
    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}

/* Aur bhi chote phones ke liye (Jaise purane iPhone ya chote Android) */
@media (max-width: 400px) {
    .site-logo {
        width: 32px;
        height: 32px;
    }
    .site-name {
        font-size: 16px;
    }
    .floating-contact {
        right: 10px;
        bottom: 15px;
        gap: 10px;
    }
    .float-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    /* Mobile menu button (Hamburger) chota karna */
    .hamburger span {
        width: 24px;
        height: 2px;
    }
}


/* ==================== WHY BOOK WITH US SECTION ==================== */
.why-book-section {
    background-color: #ffffff; /* Clean White Background */
    padding: 80px 0 30px;
    position: relative;
    border-bottom: 1px solid #eaeaea;
}

.why-book-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Left Side Styling */
.why-left {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
}

.why-left .section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: #273b30; /* Premium Dark Green matching your banner */
    margin-bottom: 15px;
    line-height: 1.2;
}

.why-left .title-line {
    width: 80px;
    height: 3px;
    background-color: #d4af37; /* Gold Accent */
    margin-bottom: 20px;
}

.why-left .section-subtitle {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.6;
}

/* Right Side Grid Styling */
.why-right {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* PC me 3 columns */
    gap: 30px 20px;
    border-left: 1px solid #eaeaea; /* Bich me ek patli line separation ke liye */
    padding-left: 40px;
}

.feature-item {
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    transform: translateY(-8px); /* Hover par thoda upar uthega */
}

.feature-item i {
    font-size: 42px;
    color: #273b30; /* Dark Green Icons */
    margin-bottom: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover par Icon Gold aur thoda bada ho jayega */
.feature-item:hover i {
    color: #d4af37; 
    transform: scale(1.1);
}

.feature-item p {
    font-size: 1.05rem;
    color: #333333;
    font-weight: 500;
}

.tc-apply {
    text-align: right;
    max-width: 1350px;
    margin: 30px auto 0;
    padding-right: 5%;
    font-size: 13px;
    color: #888888;
}

/* ==================== MOBILE RESPONSIVE (WHY BOOK) ==================== */
@media (max-width: 991px) {
    .why-right {
        border-left: none; /* Mobile me side line hata di */
        padding-left: 0;
        border-top: 1px solid #eaeaea; /* Upar line laga di */
        padding-top: 40px;
    }
}

@media (max-width: 768px) {
    .why-left .section-title {
        font-size: 2.2rem;
    }
    .why-right {
        grid-template-columns: repeat(2, 1fr); /* Mobile me 2 columns ek dum best lagenge */
        gap: 25px 10px;
    }
    .feature-item i {
        font-size: 35px;
    }
    .feature-item p {
        font-size: 0.95rem;
    }
}


/* ==================== NEARBY ATTRACTIONS SECTION ==================== */
.attractions-section {
    background-color: #fcfcfc; /* Halka sa grey taaki white sections se alag dikhe */
    padding: 80px 0;
}

/* Center Heading Styles */
.section-heading-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading-center .title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: #273b30;
    margin-bottom: 15px;
}

.title-line-center {
    width: 80px;
    height: 3px;
    background-color: #d4af37;
    margin: 0 auto 20px;
}

.section-heading-center .subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* Grid Layout */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* PC me 3 Columns */
    gap: 30px;
}

/* Attraction Card Styling */
.attraction-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 320px; /* Sabhi photos ek size ki rahengi */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.attraction-card .attr-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover par photo zoom hogi */
.attraction-card:hover .attr-img {
    transform: scale(1.1);
}

/* ==================== CARD TEXT & GRADIENT FIX ==================== */
/* ==================== CARD OVERLAY (LIGHTER OPACITY) ==================== */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px 20px 15px;
    /* Black overlay opacity bohot kam kar di hai taaki photo bilkul clear dikhe */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0) 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Text ko niche rakhega */
    color: #fff;
    transition: 0.4s ease;
}

.card-overlay h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: #ffffff; /* Plain White for clear visibility */
    margin-bottom: 4px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.9); /* Subtle shadow for text readability */
}

.card-overlay p {
    font-size: 0.9rem;
    line-height: 1.3;
    color: #e0e0e0;
    margin-bottom: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
}

.attraction-card:hover .card-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== MOBILE RESPONSIVE (MAGIC SWIPE SLIDER) ==================== */
@media (max-width: 991px) {
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet me 2 columns */
    }
}

@media (max-width: 768px) {
    .section-heading-center .title {
        font-size: 2.2rem;
    }
    
    /* Yaha se banega Mobile Swipe Slider */
    .attractions-grid {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: none !important; /* Smooth continuous running ke liye snapping hata di */
    }
    
    /* Chrome/Safari me ugly scrollbar chupane ke liye */
    .attractions-grid::-webkit-scrollbar {
        display: none; 
    }

    .attraction-card {
        flex: 0 0 85%; /* Mobile me ek card 85% width lega, taaki agla card thoda sa dikhe (hint ke liye) */
        scroll-snap-align: center; /* Card humesha beech me akar rukega */
        height: 300px;
    }

    /* Mobile me hover nahi hota, isliye text hamesha dikhega */
    .card-overlay p {
        opacity: 1;
        transform: translateY(0);
    }
}






/* ==================== WEDDINGS & CORPORATE EVENTS SECTION ==================== */
.events-section {
    padding: 100px 0;
    background-color: #f7f3e9; /* Halka sa warm white/cream color wedding vibe ke liye */
    overflow: hidden;
}

.event-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 90px; /* Dono blocks ke beech ka gap */
}

.event-row:last-child {
    margin-bottom: 0;
}

/* Image Styling */
.event-img-box {
    flex: 1;
    position: relative;
}

.event-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Photo ke piche Gold Design Line */
.img-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid #d4af37;
    border-radius: 5px;
    z-index: 1;
}

/* Corporate events me image right side hai, toh frame shift karenge */
.event-row.reverse .img-frame {
    left: auto;
    right: -15px;
}

/* Text Content Styling */
.event-content {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.cursive-title {
    font-family: 'Playfair Display', 'Cinzel', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: #d4af37; /* Gold color */
    margin-bottom: 10px;
    font-weight: 500;
}

.event-title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: #273b30; /* Dark Green */
    margin-bottom: 15px;
    line-height: 1.2;
}

/* Screenshot jaisa divider design */
.event-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    color: #273b30;
    font-size: 20px;
}

.event-divider::before, .event-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background-color: #273b30;
    margin: 0 15px;
}

.event-desc {
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-event {
    display: inline-block;
    padding: 12px 35px;
    background-color: #273b30;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    border: 1px solid #273b30;
    transition: 0.4s;
}

.btn-event:hover {
    background-color: transparent;
    color: #273b30;
}

/* ==================== MOBILE RESPONSIVE (EVENTS SECTION) ==================== */
@media (max-width: 991px) {
    .event-row { gap: 40px; }
    .event-title { font-size: 2.4rem; }
}

@media (max-width: 768px) {
    .event-row {
        flex-direction: column; /* Mobile me image upar, text niche */
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .event-row.reverse {
        flex-direction: column-reverse; /* Corporate event me bhi image top par aayegi */
    }
    
    .img-frame, .event-row.reverse .img-frame {
        top: 10px;
        left: 10px;
        right: auto; /* Frame ko mobile me fix karne ke liye */
    }
    
    .event-title {
        font-size: 2.1rem;
    }
}


/* ==================== INNER PAGE BANNER ==================== */
.inner-page-banner {
    width: 100%;
    height: 45vh; 
    min-height: 350px;
    position: relative;
    margin-top: 70px; /* Header ke liye space */
    overflow: hidden; /* Image section se bahar na nikle */
}

.banner-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image apne aap screen ke hisaab se perfect crop hogi */
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.65); /* Dark shadow text padhne ke liye */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    z-index: 1; /* Overlay image ke upar rahega */
}

.banner-overlay h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
}

.banner-overlay p {
    font-size: 1.2rem;
    color: #fdfdfd;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .inner-page-banner {
        height: 35vh;
        min-height: 250px;
    }
    .banner-overlay h1 {
        font-size: 2.2rem;
    }
    .banner-overlay p {
        font-size: 1rem;
    }
}

/* ==================== HOTELS LISTING SECTION ==================== */
.hotels-listing-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* PC me 2 Columns (Aamne-Saamne) */
    gap: 40px;
}

.hotel-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #eaeaea;
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hotel-card-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.hotel-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hotel-card:hover .hotel-card-img img {
    transform: scale(1.08); /* Hover pe image zoom hogi */
}

.hotel-card-content {
    padding: 35px 30px;
}

.hotel-card-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #273b30;
    margin-bottom: 10px;
}

.hotel-card-content .location {
    font-size: 1rem;
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: 500;
}

.hotel-card-content .location i {
    margin-right: 5px;
}

.hotel-card-content .desc {
    color: #555555;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

/* ==================== HOTEL CARD BUTTONS ==================== */
.card-actions {
    display: flex;
    gap: 15px;
}

.card-actions a {
    flex: 1; /* Dono buttons barabar size ke rahenge */
    text-align: center;
    padding: 12px 10px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s ease;
    font-weight: 600;
}

/* View Details - Outline Button */
.btn-outline {
    border: 2px solid #273b30; /* Dark Green Border */
    color: #273b30;
    background: transparent;
}

.btn-outline:hover {
    background: #273b30;
    color: #ffffff;
}

/* Book Now - WhatsApp Green Button */
.btn-solid.wa-color {
    background: #25D366; /* WhatsApp ka official green */
    color: #ffffff;
    border: 2px solid #25D366;
}

.btn-solid.wa-color:hover {
    background: #1ebc59; /* Hover pe thoda dark green */
    border-color: #1ebc59;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* ==================== MOBILE RESPONSIVE (HOTELS PAGE) ==================== */
@media (max-width: 991px) {
    .banner-overlay h1 { font-size: 2.8rem; }
    .hotels-grid { gap: 30px; }
}

@media (max-width: 768px) {
    .inner-page-banner {
        height: 35vh;
        min-height: 250px;
    }
    .banner-overlay h1 {
        font-size: 2.2rem;
    }
    .banner-overlay p {
        font-size: 1rem;
    }
    .hotels-grid {
        grid-template-columns: 1fr; /* Mobile me cards ek ke niche ek aayenge */
    }
    .card-actions {
        flex-direction: column; /* Mobile me buttons aamne-samne ki jagah upar-niche aayenge */
    }
}



/* ==================== FLOATING BOOKING BAR (PERFECT POSITION) ==================== */
.booking-bar-wrapper {
    position: absolute;
    top: 110px; /* Header se thoda neeche */
    left: 4%; /* Sirf left image area par rahega, Text ko cover nahi karega */
    transform: none; /* Center align hata diya PC ke liye */
    width: 55%; /* Kyunki image 65% area me hai, toh 55% ek dum fit aayega */
    max-width: 800px;
    z-index: 999;
}

.booking-bar {
    background-color: #ffffff;
    border-radius: 8px;
    border-top: 3px solid #d4af37;
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    animation: dropDownBar 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(-30px);
}

@keyframes dropDownBar {
    to { opacity: 1; transform: translateY(0); }
}

.booking-form {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0 15px;
}

.form-group label {
    font-size: 13px;
    color: #4a5c50; 
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.form-group select {
    border: none;
    background: transparent;
    font-size: 14.5px;
    color: #1a1a1a;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
}

/* Calendar Row Styling */
.date-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-row input {
    width: 100%;
    background: transparent;
    border: none;
    font-size: 14.5px;
    color: #1a1a1a;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
}

.date-row span {
    color: #999;
}

.divider {
    width: 1px;
    height: 45px;
    background-color: #eaeaea;
}

.button-group {
    flex: 0.6;
    align-items: flex-end;
    padding-right: 0;
}

.btn-book-bar {
    background-color: #273b30;
    color: #fff;
    border: none;
    padding: 14px 20px;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
    font-weight: 600;
}

.btn-book-bar:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

.best-rate {
    font-size: 11px;
    color: #666;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: flex-end;
    width: 100%;
}

.best-rate i { color: #d4af37; }

/* ==================== MOBILE RESPONSIVE (BOOKING BAR) ==================== */
/* ==================== MOBILE RESPONSIVE (COMPACT BOOKING BAR) ==================== */
@media (max-width: 991px) {
    .booking-bar-wrapper {
        top: 75px; 
        left: 50%; 
        transform: translateX(-50%);
        width: 92%;
    }
    
    .booking-bar {
        padding: 12px 15px; /* Padding kam ki taaki patla dikhe */
        border-radius: 6px;
    }
    
    .booking-form { 
        flex-direction: column; 
        gap: 10px; /* Gap kam kiya */
    }
    
    .divider { display: none; }
    .form-group { width: 100%; padding: 0; }
    
    .form-group label {
        font-size: 11px; /* Font thoda chota kiya */
        margin-bottom: 2px;
    }
    
    .form-group select, .form-group input {
        font-size: 13.5px; /* Input font adjust kiya */
        padding: 2px 0;
    }
    
    .btn-book-bar { 
        padding: 10px; 
        font-size: 13px; 
    }
    
    .best-rate {
        font-size: 10px;
        margin-top: 4px;
    }
}



/* ==================== CONTACT US PAGE LAYOUT ==================== */
.contact-page-section {
    padding: 60px 0 100px;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

/* Left Side Info */
.contact-info-left {
    flex: 1.2;
    padding-right: 20px;
}

.breadcrumb {
    font-size: 13px;
    color: #888;
    margin-bottom: 25px;
}

.contact-heading {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: #6c7a70; /* Elegant Grey-Green */
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 500;
}

.info-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #555;
}

.info-item i {
    color: #273b30;
    font-size: 18px;
}

/* Right Side Form */
.contact-form-right {
    flex: 1;
    background: #fdfdfd;
    padding: 30px 40px 40px;
    border: 1px solid #eaeaea;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.form-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #273b30;
    text-align: center;
    margin-bottom: 5px;
}

.form-title-line {
    width: 40px;
    height: 2px;
    background-color: #273b30;
    margin: 0 auto 30px;
}

.gazebo-contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gazebo-contact-form select, 
.gazebo-contact-form input, 
.gazebo-contact-form textarea {
    width: 100%;
    padding: 12px 5px;
    border: none;
    border-bottom: 1px solid #dcdcdc; /* Clean bottom border design */
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: 0.3s;
}

.gazebo-contact-form select {
    cursor: pointer;
    color: #555; /* Slightly muted for dropdown placeholder feel */
}

.gazebo-contact-form select:focus, 
.gazebo-contact-form input:focus, 
.gazebo-contact-form textarea:focus {
    border-bottom: 1px solid #d4af37; /* Gold highlight on click */
}

.btn-submit-contact {
    margin-top: 15px;
    background-color: #273b30;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.btn-submit-contact:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

/* ==================== MOBILE RESPONSIVE (CONTACT PAGE) ==================== */
@media (max-width: 991px) {
    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }
    .contact-info-left {
        padding-right: 0;
    }
    .contact-heading {
        font-size: 1.8rem;
    }
    .contact-form-right {
        padding: 25px 20px;
    }
}


/* ==================== HOTEL DETAILS PAGE (SURBHI / BLUE HEAVEN) ==================== */
.hotel-details-section {
    padding: 80px 0;
    background-color: #fdfbf7;
}

.room-block {
    margin-bottom: 80px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
}

.room-block:last-child {
    margin-bottom: 0;
}

.room-info {
    text-align: center;
    margin-bottom: 30px;
}

.room-info h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: #273b30;
    margin-bottom: 10px;
}

.room-info p {
    font-size: 1.05rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 5-Image Premium Grid Layout */
.room-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.room-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.room-gallery img:hover {
    transform: scale(1.05); /* Hover par halka sa zoom */
}

/* Pehli image badi dikhegi (2 row, 2 column legi) */
.room-gallery img:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

/* ==================== BOTTOM CONTACT CTA BAR ==================== */
.hotel-contact-bar {
    background-color: #1a2920; /* Dark Royal Green */
    padding: 50px 0;
    border-top: 4px solid #d4af37;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.contact-details {
    display: flex;
    gap: 30px;
}

.contact-details p {
    font-size: 1.1rem;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details p i {
    color: #d4af37;
}

.btn-wa-large {
    display: inline-block;
    background-color: #25D366;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    letter-spacing: 1px;
}

.btn-wa-large:hover {
    background-color: #1ebc59;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 991px) {
    .room-gallery {
        grid-template-rows: repeat(2, 180px);
    }
}

@media (max-width: 768px) {
    .room-block { padding: 20px; margin-bottom: 50px; }
    .room-info h2 { font-size: 1.8rem; }
    
    /* Mobile me grid change (Pehli image upar badi, baki niche choti) */
    .room-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 250px 120px 120px;
    }
    .room-gallery img:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .cta-container { flex-direction: column; text-align: center; }
    .contact-details { flex-direction: column; gap: 10px; align-items: center; }
    .btn-wa-large { width: 100%; text-align: center; }
}





















/* ==========================================
   GLOBAL MOBILE RESPONSIVE SYSTEM (PERMANENT FIX)
   Ye code future ke sabhi naye sections ko apne aap mobile-friendly banayega
   ========================================== */

/* 1. Universal Image & Video Fix (Kabhi screen se bahar cut nahi honge) */
img, video, iframe, canvas {
    max-width: 100% !important;
    height: auto;
}

/* 2. Global Container (Har section me side se equal space rakhne ke liye) */
.container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 5%;
}

/* 3. Universal Mobile Layout Fixes */
@media (max-width: 768px) {
    /* Sections ki padding mobile me automatically adjust ho jayegi */
    section {
        padding: 50px 5% !important; 
    }

    /* Badi headings apne aap screen ke hisaab se choti ho jayengi */
    h1 { font-size: 2.2rem !important; line-height: 1.3 !important; }
    h2 { font-size: 1.8rem !important; line-height: 1.3 !important; }
    h3 { font-size: 1.4rem !important; }
    p { font-size: 1rem !important; }

    /* Agar koi element margin se bahar ja raha ho, toh use rokne ke liye */
    body {
        overflow-x: hidden !important;
        width: 100%;
    }

    /* Agar aap CSS Flexbox use karte ho, toh mobile me wo apne aap upar-niche (stack) ho jayega */
    .auto-stack {
        display: flex;
        flex-direction: column !important;
        gap: 20px;
    }
}