 /* =========================================
           Premium CSS Variables
        ========================================= */
        :root {
            --primary-blue: #1a56db;     
            --dark-blue: #0f172a;        
            --accent-orange: #f97316;    
            --bg-light: #f8fafc;         
            --text-dark: #1e293b;
            --text-muted: #64748b;
            --white: #ffffff;
            --border-color: #e2e8f0;
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 25px 50px -12px rgba(26, 86, 219, 0.15);
            --shadow-hover: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* =========================================
           Reset & Base Styles
        ========================================= */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; color: var(--dark-blue); }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        .container { width: 92%; max-width: 1284px; margin: 0 auto; }

        /* =========================================
           Premium Buttons
        ========================================= */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 1px;
            cursor: pointer;
            border: none;
            transition: var(--transition);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-blue), #2563eb);
            color: var(--white);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(37, 99, 235, 0.4);
            color: var(--white);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
        }

        .btn-outline:hover {
            background-color: var(--primary-blue);
            color: var(--white);
            box-shadow: 0 10px 20px rgba(26, 86, 219, 0.2);
        }

        .btn-white {
            background-color: var(--white);
            color: var(--primary-blue);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .btn-white:hover {
            background-color: #f1f5f9;
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }

        /* =========================================
           Top Bar
        ========================================= */
        .topbar { background-color:#1c59df; color: #ffffff; padding: 12px 0; font-size: 13px; }
        .topbar .container { display: flex; justify-content: space-between; align-items: center; }
        .topbar-left i, .topbar-right i { color: #ffffff; margin-right: 8px; }
        .topbar-left span { margin-right: 25px; font-weight: 600; }
        .topbar-right a { margin-left: 18px; font-size: 16px; }
        .topbar-right a:hover { color: var(--white); transform: scale(1.1); display: inline-block; }

        /* =========================================
           Header Navigation & Mobile Menu
        ========================================= */
        header { background-color: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1000; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
        .logo img { max-height: 65px; object-fit: contain; }

        .header-action { display: flex; align-items: center; gap: 15px; }
        .nav-links a::after { content: ''; position: absolute; width: 0; height: 3px; bottom: -6px; left: 0; background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange)); transition: var(--transition); border-radius: 2px; }
        .nav-links a:hover { color: #ffffff; }
        .mobile-menu-btn {
            display: none;
            font-size: 1.8rem;
            color: var(--dark-blue);
            cursor: pointer;
        }

        /* =========================================
           Scroll Reveal Animation CSS
        ========================================= */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* =========================================
           Hero Section
        ========================================= */
/* =========================================
   Updated Hero Section CSS
========================================= */
.hero {
    position: relative;
    padding: 160px 0 200px;
    text-align: center;
    color: var(--white);
    overflow: hidden; /* Keeps the background image contained */
}

/* Make the inline HTML image act as a background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the section perfectly */
    z-index: 1;
}

/* Recreate the dark blue gradient over the image */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.85), rgba(26, 86, 219, 0.6));
    z-index: 2;
}

/* Ensure the text stays on top of the image and overlay */
.hero .container {
    position: relative;
    z-index: 3;
}

.hero h1 { 
    color: var(--white); 
    font-size: 4rem; 
    font-weight: 800; 
    margin-bottom: 25px; 
    line-height: 1.1; 
    text-shadow: 0 10px 20px rgba(0,0,0,0.4); 
    letter-spacing: -1px; 
}

/* Multi-color Title Effect */
.hero h1 .highlight {
    color: var(--accent-orange); /* This changes "Bus Charter" to your orange accent color */
}

.hero p { 
    font-size: 1.25rem; 
    max-width: 750px; 
    margin: 0 auto 40px; 
    text-shadow: 0 4px 10px rgba(0,0,0,0.5); 
    font-weight: 400; 
}

        /* =========================================
           Overlapping Features
        ========================================= */
        .features-wrapper { margin-top: -90px; position: relative; z-index: 10; }
        .features-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden; }
        .feature-box { padding: 40px 25px; text-align: center; border-right: 1px solid var(--border-color); transition: var(--transition); background: var(--white); position: relative; overflow: hidden; }
        .feature-box::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 0; background: rgba(26, 86, 219, 0.03); transition: var(--transition); z-index: 0; }
        .feature-box:hover::before { height: 100%; }
        .feature-box:hover { transform: translateY(-5px); }
        .feature-box > * { position: relative; z-index: 1; }
        .feature-box:last-child { border-right: none; background: linear-gradient(135deg, var(--primary-blue), #1e3a8a); color: var(--white); }
        .feature-box:last-child h3, .feature-box:last-child p { color: var(--white); }
        .feature-box i { font-size: 2.8rem; color: var(--primary-blue); margin-bottom: 20px; filter: drop-shadow(0 4px 6px rgba(26,86,219,0.2)); }
        .feature-box:last-child i { color: var(--white); filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2)); }
        .feature-box h3 { font-size: 1.15rem; margin-bottom: 10px; font-weight: 800; }
        .feature-box p { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; }

        /* =========================================
           Section Titles
        ========================================= */
        .section-title { text-align: center; margin-bottom: 60px; }
        .section-title span { color: var(--accent-orange); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 10px; }
        .section-title h2 { font-size: 2.8rem; color: var(--dark-blue); font-weight: 800; letter-spacing: -0.5px; }
        .section-title p.subtitle { color: var(--text-muted); max-width: 700px; margin: 20px auto 0; font-size: 1.05rem; }

        /* =========================================
           Services Section
        ========================================= */
.services-section { 
            padding: 100px 0; 
            background: linear-gradient(to bottom, var(--white), var(--bg-light)); 
        }
        
        .services-grid { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 25px; /* Reduced gap from 40px to give cards more breathing room */
        }
        
        .service-card { 
            background: var(--white); 
            border-radius: 16px; 
            overflow: hidden; 
            box-shadow: var(--shadow-md); 
            transition: var(--transition); 
            border: 1px solid rgba(0,0,0,0.03); 
            display: flex;
            flex-direction: column; /* Ensures content stretches evenly if heights differ */
        }
        
        .service-card:hover { 
            transform: translateY(-15px); 
            box-shadow: var(--shadow-lg); 
            border-color: rgba(26, 86, 219, 0.2); 
        }
        
        .service-img-wrapper { 
            overflow: hidden; 
        }
        
        .service-img { 
            height: 220px; /* Slightly reduced height to balance the card */
            width: 100%; 
            object-fit: cover; 
            transition: transform 0.6s ease; 
        }
        
        .service-card:hover .service-img { 
            transform: scale(1.05); 
        }
        
        .service-info { 
            padding: 30px 20px; /* Reduced side padding so text isn't squished */
            text-align: center; 
            background: var(--white); 
            position: relative; 
            z-index: 2;
            display: flex;
            flex-direction: column;
            flex-grow: 1; /* Pushes the button to the bottom if cards have different text lengths */
        }
        
        /* Fixed Title Typography */
        .service-info h3 { 
            margin-bottom: 12px; 
            font-size: 20px; /* Perfect size for 4-col grid */
            font-weight: 800; 
            color: #0f172a; /* Dark text for high contrast */
            line-height: 1.3;
        }

        /* Added Paragraph Typography */
        .service-info p {
            font-size: 14px; /* Smaller, crisp font for descriptions */
            color: #64748b; /* Slate gray text */
            line-height: 1.6;
            margin-bottom: 25px;
            flex-grow: 1; /* Ensures buttons align at the bottom */
        }
        
        /* Responsive tweaks so it doesn't break on smaller screens */
        @media (max-width: 1200px) {
            .services-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
        }
        
        @media (max-width: 768px) {
            .services-grid { grid-template-columns: 1fr; }
        }

        /* =========================================
           Why Choose Us Split Section 
        ========================================= */
        .why-choose-us { padding: 100px 0; background-color: var(--white); }
        .wcu-container { background: linear-gradient(135deg, #0b1120 0%, #172554 100%); display: flex; align-items: stretch; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.4); border: 1px solid rgba(255, 255, 255, 0.1); }
        .wcu-image { flex: 1; background: url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover; min-height: 450px; position: relative; }
        .wcu-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0), #172554); }
        .wcu-content { flex: 1.2; padding: 80px 60px; color: var(--white); position: relative; z-index: 2; }
        .wcu-content span { color: var(--accent-orange); font-size: 1rem; text-transform: uppercase; font-weight: 700; letter-spacing: 2px; display: block; margin-bottom: 15px; }
        .wcu-content h2 { color: var(--white); font-size: 2.6rem; margin-bottom: 50px; line-height: 1.2; font-weight: 800; }
        .wcu-stats { display: flex; gap: 40px; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 40px; }
        .wcu-stat-item { flex: 1; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
        .wcu-stat-item:last-child { border-right: none; }
        .wcu-stat-item h3 { color: var(--white); font-size: 2.5rem; margin-bottom: 5px; font-weight: 800; text-shadow: 0 4px 10px rgba(0,0,0,0.3); }
        .wcu-stat-item p { color: #94a3b8; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }



        /* =========================================
           Testimonials Section 
        ========================================= */
        .testimonials-section { padding: 120px 0; background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(26, 86, 219, 0.85)), url('https://www.vizagtravels.in/wp-content/uploads/2026/05/female-passenger-using-her-mobile-phone-public-transport-scaled.webp') center/cover fixed; color: var(--white); text-align: center; }
        .testimonials-section .section-title span { color: var(--accent-orange); }
        .testimonials-section .section-title h2 { color: var(--white); }
        .testimonials-section .section-title p.subtitle { color: #cbd5e1; }
        .test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; margin-bottom: 50px; }
        .test-card { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 20px; padding: 40px 35px; text-align: left; color: var(--text-dark); box-shadow: 0 15px 35px rgba(0,0,0,0.2); transition: var(--transition); }
        .test-card:hover { transform: translateY(-12px); box-shadow: 0 25px 50px rgba(0,0,0,0.3); border-color: rgba(255, 255, 255, 0.8); }
        .test-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
        .test-user { display: flex; align-items: center; gap: 15px; }
        .test-avatar { width: 55px; height: 55px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-blue), #1e3a8a); color: white; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.4rem; object-fit: cover; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
        .test-user-info h4 { font-size: 1.1rem; color: var(--dark-blue); margin: 0 0 4px 0; font-weight: 800; }
        .test-user-info span { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
        .google-icon { color: #4285F4; font-size: 1.5rem; filter: drop-shadow(0 2px 4px rgba(66, 133, 244, 0.2)); }
        .test-stars { color: #fbbf24; margin-bottom: 20px; font-size: 1rem; }
        .test-stars i { margin-right: 3px; }
        .test-stars .fa-check-circle { color: #3b82f6; margin-left: 8px; font-size: 0.9rem; }
        .test-content { font-size: 1rem; color: #334155; line-height: 1.7; font-style: italic; }
        .read-more { color: var(--primary-blue); font-size: 0.85rem; font-weight: 700; display: inline-block; margin-top: 15px; cursor: pointer; transition: var(--transition); }
        .read-more:hover { color: var(--accent-orange); }

        /* =========================================
           Footer
        ========================================= */
        footer { background-color: var(--dark-blue); color: #94a3b8; padding: 80px 0 30px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 50px; }
        .footer-logo { font-family: 'Montserrat', sans-serif; color: var(--white); font-size: 2rem; font-weight: 800; margin-bottom: 25px; }
        .footer-logo span { color: var(--accent-orange); }
        .footer-col h4 { color: var(--white); margin-bottom: 25px; font-size: 1.3rem; font-weight: 700; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 15px; font-weight: 600; }
        .footer-col ul li a:hover { color: var(--accent-orange); padding-left: 5px; }
        .footer-col i { color: var(--accent-orange); width: 30px; font-size: 1.1rem; }
        .footer-bottom { text-align: center; font-size: 0.95rem; font-weight: 600; }

        /* =========================================
           Modal Enquiry Form CSS
        ========================================= */
        .modal-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(5px);
            display: none; justify-content: center; align-items: center;
            z-index: 10002; opacity: 0; transition: opacity 0.3s ease;
        }
        .modal-overlay.active { display: flex; opacity: 1; }
        .modal-content {
            background: var(--white); padding: 40px; border-radius: 16px;
            width: 90%; max-width: 500px; position: relative;
            transform: translateY(30px); transition: transform 0.3s ease;
            box-shadow: var(--shadow-lg);
        }
        .modal-overlay.active .modal-content { transform: translateY(0); }
        .close-modal {
            position: absolute; top: 20px; right: 20px; font-size: 1.5rem;
            color: var(--text-muted); cursor: pointer; transition: var(--transition);
        }
        .close-modal:hover { color: var(--accent-orange); }
        .modal-content h3 { margin-bottom: 10px; font-size: 1.8rem; color: var(--dark-blue); }
        .modal-content p { margin-bottom: 25px; color: var(--text-muted); font-size: 0.9rem; }
        .modal-content input, .modal-content textarea {
            width: 100%; padding: 12px 15px; margin-bottom: 15px;
            border: 1px solid var(--border-color); border-radius: 8px; font-family: inherit;
        }
        .modal-content input:focus, .modal-content textarea:focus { outline: none; border-color: var(--primary-blue); }

        /* =========================================
           Responsive Design
        ========================================= */
        @media (max-width: 1024px) {
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .wcu-container { flex-direction: column; display: block; }
            .wcu-image { height: 350px; }
            .wcu-image::after { background: linear-gradient(to bottom, rgba(0,0,0,0), #172554); }
            .services-grid, .test-grid { grid-template-columns: repeat(2, 1fr); }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
        }
        
        @media (max-width: 768px) {
            .topbar { display: none; } 
            
            /* Mobile Navigation */
            .mobile-menu-btn { display: block; }
            .nav-links {
                position: fixed; top: 0; right: -100%; height: 100vh; width: 260px;
                background-color: var(--white); flex-direction: column;
                justify-content: flex-start; padding: 80px 30px;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1001;
            }
            .nav-links.active { right: 0; }
            .nav-links a { font-size: 1.1rem; display: block; padding: 10px 0; }
            
            /* Responsive sections */
            .hero h1 { font-size: 2.8rem; }
            .hero { padding: 120px 0 160px; }
            .services-grid, .features-grid, .footer-grid, .test-grid, .gallery-grid { grid-template-columns: 1fr; }
            .feature-box { border-right: none; border-bottom: 1px solid var(--border-color); }
            .wcu-stats { flex-direction: column; gap: 20px; }
            .wcu-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
            .wcu-content { padding: 50px 30px; }
            .gallery-buttons { flex-direction: column; }
        }
/* =========================================
   Modern About Section & Animations CSS
========================================= */
.about-section-modern { 
    padding: 120px 0; 
    background-color: var(--white); 
    overflow: hidden; 
    position: relative; 
}

.about-modern-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 80px; 
    align-items: center; 
}

/* --- Left Side: Modern Content --- */
.badge-title { 
    color: var(--accent-orange); 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-size: 0.85rem; 
    display: inline-block; 
    margin-bottom: 20px; 
    padding: 8px 18px; 
    background: rgba(249, 115, 22, 0.1); 
    border-radius: 30px; 
}

.about-modern-content h2 { 
    font-size: 3.2rem; 
    font-weight: 800; 
    line-height: 1.2; 
    margin-bottom: 25px; 
    color: var(--dark-blue); 
    letter-spacing: -1px;
}

/* Cool Gradient Text Effect */
.text-gradient { 
    background: linear-gradient(135deg, var(--primary-blue), #8b5cf6); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.about-modern-content p { 
    color: #475569; 
    font-size: 1.05rem; 
    margin-bottom: 20px; 
    line-height: 1.8; 
}

.about-features { 
    display: flex; 
    gap: 25px; 
    margin-top: 35px; 
    margin-bottom: 35px; 
    flex-wrap: wrap;
}

.feat-item { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-weight: 700; 
    color: var(--dark-blue); 
    font-size: 0.95rem; 
}

.feat-item i { 
    color: #10b981; /* Green checkmark */
    font-size: 1.3rem; 
}

/* --- Right Side: Image & Animations --- */
.about-modern-image { 
    position: relative; 
    padding-right: 30px; 
    padding-bottom: 30px; 
    z-index: 2;
}

/* Thick white border to make it pop like a photo frame */
.image-frame { 
    border-radius: 24px; 
    overflow: hidden; 
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.3); 
    position: relative; 
    z-index: 3; 
    border: 10px solid white; 
}

/* Continuous Floating Animation */
.floating-img { 
    width: 100%; 
    height: 500px;
    object-fit: cover;
    display: block; 
    animation: float-img 6s ease-in-out infinite; 
}

@keyframes float-img {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
}

/* Modern Overlapping Rotating Badge */
.rotating-badge-modern { 
    position: absolute; 
    bottom: 0; 
    right: 0; 
    width: 150px; 
    height: 150px; 
    background: var(--white); 
    border-radius: 50%; 
    box-shadow: 0 20px 40px rgba(26,86,219,0.25); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    z-index: 10; 
    border: 4px solid var(--primary-blue); 
}

.rotating-text { 
    width: 100%; 
    height: 100%; 
    position: absolute; 
    top: 0; left: 0; 
    animation: spin-text 12s linear infinite; 
}

.rotating-text text { 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 800; 
    font-size: 9px; /* Reduced the font size so the whole word fits */
    fill: var(--primary-blue); 
    letter-spacing: 1.2px; /* Pulled the letters slightly closer together */
}

/* Center container for the image */
.static-icon { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    z-index: 2; 
    width: 80px; /* Controls the size of your custom image */
    height: 80px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Styles for your custom uploaded bus image */
.custom-bus-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%; /* Ensures the image respects the circular shape */
}

@keyframes spin-text {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Background Decorative Glows */
.deco-glow { position: absolute; border-radius: 50%; z-index: 1; filter: blur(40px); }
.shape-1 { width: 300px; height: 300px; background: rgba(26, 86, 219, 0.15); top: -50px; left: -50px; }
.shape-2 { width: 250px; height: 250px; background: rgba(249, 115, 22, 0.15); bottom: -50px; right: -50px; }

/* --- Reveal Delay Timers (For Staggered Scroll Effect) --- */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .about-modern-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-modern-content { text-align: center; }
    .about-features { justify-content: center; }
    .floating-img { height: 400px; }
}

@media (max-width: 768px) {
    .about-modern-content h2 { font-size: 2.4rem; }
    .rotating-badge-modern { width: 120px; height: 120px; right: -10px; bottom: -10px; }
    .static-icon { font-size: 1.8rem; }
    .floating-img { height: 300px; }
}
/* =========================================
   Sticky Sidebars CSS
========================================= */
.sticky-sidebar-left,
.sticky-sidebar-right {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sticky-sidebar-left {
    left: 15px;
}

.sticky-sidebar-right {
    right: 0; /* Flush against the right side */
}

.sticky-sidebar-left a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.sticky-sidebar-left a:hover {
    transform: scale(1.1);
}

.social-fb { background-color: #1877F2; }
.social-ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-yt { background-color: #FF0000; }

.sticky-sidebar-right a {
    width: 45px;
    height: 40px;
    border-radius: 4px 0 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: -2px 4px 6px rgba(0,0,0,0.1);
    transition: width 0.3s ease;
}

.sticky-sidebar-right a:hover {
    width: 55px; /* Slides out slightly on hover */
}

.action-home { background-color: #0f172a; } /* Dark Blue */
.action-phone { background-color: #84cc16; } /* Green */
.action-mail { background-color: #1e3a8a; } /* Mid Blue */

/* Responsive Fixes for About & Sidebars */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .rotating-badge { right: 20px; bottom: -20px; } /* Pull it inward on smaller screens */
}

@media (max-width: 768px) {
    /* Hide or shrink sidebars on mobile to prevent blocking text */
    .sticky-sidebar-left { left: 5px; }
    .sticky-sidebar-left a { width: 35px; height: 35px; font-size: 1rem; }
    .sticky-sidebar-right { right: 0; }
    .sticky-sidebar-right a { width: 40px; height: 35px; font-size: 1rem; }
    
    .about-content h2 { font-size: 2rem; }
    .rotating-badge { width: 110px; height: 110px; right: 10px; }
    .static-icon { font-size: 2rem; }
}
/* =========================================
   Gallery Slider, View All & Lightbox CSS
========================================= */
.gallery-section { padding: 100px 0; background: radial-gradient(circle at top center, #ffffff 0%, #f1f5f9 100%); text-align: center; }
.gallery-slider-wrapper { position: relative; padding: 0 50px; }

/* Horizontal Scroll Snap Slider */
.gallery-grid.slider-track { 
    display: flex; 
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    gap: 20px; 
    scroll-behavior: smooth; 
    padding: 10px 0 20px 0; 
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}
.gallery-grid.slider-track::-webkit-scrollbar { display: none; }

/* Base Gallery Item & Hover Effects */
.gallery-item { 
    flex: 0 0 calc(33.333% - 14px); 
    scroll-snap-align: start; 
    border-radius: 12px; 
    overflow: hidden; 
    height: 300px; 
    position: relative; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.08); 
    transition: var(--transition); 
    cursor: pointer; 
}
.gallery-item::after { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent); 
    opacity: 0; 
    transition: var(--transition); 
    pointer-events: none; /* THIS IS THE MAGIC FIX */
}
.gallery-item:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(26, 86, 219, 0.2); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.gallery-item:hover img { transform: scale(1.15); }
.gallery-buttons { display: flex; justify-content: center; gap: 20px; margin-top: 30px; }

/* Slider Buttons */
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 45px; height: 45px; background: var(--white); color: var(--primary-blue); border: none; border-radius: 50%; font-size: 1.2rem; box-shadow: 0 5px 15px rgba(0,0,0,0.15); cursor: pointer; z-index: 5; transition: all 0.3s ease; }
.slider-btn:hover { background: var(--primary-blue); color: var(--white); }
.slider-btn.prev-btn { left: 0; }
.slider-btn.next-btn { right: 0; }

/* View All Modal Grid */
.all-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; max-height: 60vh; overflow-y: auto; padding: 10px; }
.all-gallery-grid .gallery-item { height: 160px; flex: none; margin-bottom: 0; }

/* Modals & Z-Index Layering */
#allGalleryModal { z-index: 10002; }
#galleryModal { z-index: 10005; } /* Lightbox sits above everything */

/* Lightbox Overlay Styling - SUPERCHARGED Z-INDEX */
.modal-lightbox { 
    display: none; 
    position: fixed; 
    z-index: 999999 !important; /* Pushed to the absolute front */
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.9); 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    backdrop-filter: blur(8px); 
}
.lightbox-toolbar { 
    position: absolute; 
    top: 20px; 
    left: 0; 
    width: 100%; 
    padding: 0 30px; 
    display: flex; 
    justify-content: space-between; 
    color: white; 
    font-family: 'Montserrat', sans-serif; 
    z-index: 1000000 !important; /* Keeps toolbar above the dark background */
}
.lightbox-counter { font-size: 1.1rem; font-weight: 600; letter-spacing: 2px; }
.lightbox-actions { display: flex; gap: 20px; }
.action-icon { font-size: 1.5rem; cursor: pointer; transition: color 0.3s ease; }
.action-icon:hover { color: var(--accent-orange); }
.lightbox-image-wrapper { 
    position: relative; 
    max-width: 90%; 
    max-height: 80vh; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    z-index: 1000000 !important; /* Keeps image above the dark background */
}
.modal-lightbox-content { max-width: 100%; max-height: 80vh; border-radius: 8px; box-shadow: 0 15px 35px rgba(0,0,0,0.4); object-fit: contain; transition: transform 0.3s ease; }
.modal-lightbox-content.zoomed { transform: scale(1.5); cursor: zoom-out; }
.lightbox-caption { color: #cbd5e1; font-size: 1.1rem; margin-top: 20px; text-align: center; font-weight: 400; letter-spacing: 0.5px; }
.lightbox-nav i { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    font-size: 2.5rem; 
    color: rgba(255,255,255,0.6); 
    cursor: pointer; 
    padding: 20px; 
    transition: all 0.3s ease; 
    z-index: 1000000 !important; /* Keeps arrows clickable */
}
.lightbox-nav i:hover { color: white; }
.prev-slide { left: 2%; }
.next-slide { right: 2%; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-slider-wrapper { padding: 0 15px; }
    .gallery-item { flex: 0 0 calc(100% - 10px); } 
    .slider-btn { display: none; } 
}
/* =========================================
   Explore Destinations Section CSS
========================================= */
/* =========================================
   Premium 5-Column Temple Cards Section
========================================= */
.temple-section {
    padding: 80px 0;
    background-color: #fcf8ee; /* Warm cream background from the image */
    font-family: 'Open Sans', sans-serif;
}

.temple-section .explore-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 50px;
    font-weight: 800;
    /* THE FIX: Forces the title to take full width so centering works despite the wave-text class */
    display: block; 
    width: 100%; 
}
.temple-section ul li {
    color: #ffffff;
    text-transform: capitalize;
    font-weight: 100;
}
.temple-section .tc-meta{
color: #ffffff;
}
.temple-section .tc-titles h3 {
    font-size: 16px;
}
/* 5 Column Grid */
.temple-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Base Card Styling */
.temple-card {
    border: 3px solid var(--card-theme);
    border-radius: 12px;
    background-color: var(--card-theme);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.temple-card:hover {
    transform: translateY(-8px);
}

/* Color Themes */
.theme-green  { --card-theme: #0a4d3a; } /* Annavaram */
.theme-ochre  { --card-theme: #9e6d11; } /* Pitapuram */
.theme-blue   { --card-theme: #164f82; } /* Samrlakota */
.theme-purple { --card-theme: #3d1c5d; } /* Draksharam */
.theme-teal   { --card-theme: #0c5e5f; } /* Antarvedi */

/* Card Header */
.tc-header {
    display: flex;
    align-items: center;
    padding: 12px 10px;
    background-color: var(--card-theme);
    color: #ffffff;
    gap: 10px;
}

.tc-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    flex-shrink: 0;
}

.tc-titles {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tc-titles h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.tc-titles p {
    font-size: 0.65rem;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.2px;
    opacity: 0.9;
}

/* Main Image Area */
.tc-image {
    position: relative;
    width: 100%;
    height: 180px;
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
}

.tc-image img.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlapping Circular Inset Image */
.tc-inset {
    position: absolute;
    bottom: -13px;
    right: 92px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 3px solid #ffcc00; /* Gold border */
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    background: #000;
}

.tc-inset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Footer */
.tc-footer {
    background-color: var(--card-theme);
    color: #ffffff;
    padding: 25px 15px 15px; /* Extra top padding for the overlapping circle */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tc-desc {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.tc-desc li {
    font-size: 0.85rem;
    line-height: 1.4;
    position: relative;
    padding-left: 12px;
}

.tc-desc li::before {
    content: '✦'; /* Diamond bullet point */
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.7rem;
    color: #ffffff;
}

.tc-meta {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 10px;
    letter-spacing: 0.5px;
}
/* =========================================
   Distance Footer for Divine Cards
========================================= */
.tc-footer {
    padding: 12px 15px;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.06); /* Very subtle separator line */
    background-color: rgba(0, 0, 0, 0.02); /* Slight tint to separate from text body */
    color: var(--theme-color); /* Automatically uses the card's specific color! */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto; /* This forces the footer to stick to the absolute bottom of the card */
}

/* Ensure the text body grows to push the footer down */
.tc-text-body {
    flex-grow: 1; 
}
/* Responsive Design */
@media (max-width: 1200px) {
    .temple-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .temple-grid { grid-template-columns: repeat(2, 1fr); }
    .temple-section .explore-title { font-size: 2rem; }
}
@media (max-width: 500px) {
    .temple-grid { grid-template-columns: 1fr; }
}
/* =========================================
   Premium Wave Text Animation
========================================= */
.wave-text {
    display: inline-block;
    /* Optional: hides the letters before they pop up */
    overflow: hidden; 
}

.wave-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%); /* Start below the baseline */
    /* Smooth, premium easing curve */
    animation: waveReveal 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* If the wave text is inside a hidden scroll reveal, wait for it to become active */
.reveal.active .wave-text span,
.wave-text.active span {
    animation-play-state: running;
}

@keyframes waveReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}
/* =========================================
   Amsome-Style Global Scroll Reveal
========================================= */
/* The starting state (hidden and pushed down) */
.amsome-reveal {
    opacity: 0;
    transform: translateY(35px);
    /* Ultra-smooth easing curve similar to Amsome's Framer Motion */
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* The active state (visible and in original position) */
.amsome-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add a slight delay for paragraphs so headings appear a split-second earlier */
h1.amsome-reveal.is-visible, 
h2.amsome-reveal.is-visible {
    transition-delay: 0s;
}

p.amsome-reveal.is-visible {
    transition-delay: 0.15s;
}
/* =========================================
   Card Color Themes (10 Distinct Colors)
========================================= */
/* Set 1: Andhra Pradesh Colors */
.theme-green  { --card-theme: #0a4d3a; } /* Dark Green */
.theme-ochre  { --card-theme: #9e6d11; } /* Golden Bronze */
.theme-blue   { --card-theme: #164f82; } /* Royal Blue */
.theme-purple { --card-theme: #3d1c5d; } /* Deep Purple */
.theme-teal   { --card-theme: #0c5e5f; } /* Dark Teal */

/* Set 2: Telangana Colors (Brand New!) */
.theme-crimson    { --card-theme: #7a1a1a; } /* Deep Red / Crimson */
.theme-indigo     { --card-theme: #2a2356; } /* Dark Indigo */
.theme-terracotta { --card-theme: #9c3e16; } /* Burnt Orange / Terracotta */
.theme-slate      { --card-theme: #2f4f4f; } /* Dark Slate Grey */
.theme-wine       { --card-theme: #6b1738; } /* Rich Wine / Magenta */

/* =========================================
   Smooth Scrolling & Sticky Header Offset
========================================= */
html {
    scroll-behavior: smooth;
    /* This stops the sticky header from covering the top of the section! */
    /* If your header is taller or shorter, adjust this 90px number */
    scroll-padding-top: 90px; 
}
/* =========================================
   Footer Social Icons
========================================= */
/* =========================================
   Footer Social Icons (Centered Fix)
========================================= */
/* =========================================
   Footer Social Icons (Bulletproof Centering)
========================================= */
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 25px; 
}

.footer-socials a {
    /* Brute-force centering */
    display: flex !important; 
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    
    /* Exact sizing */
    width: 42px !important;
    height: 42px !important;
    
    /* Strip away all theme interference */
    padding: 0 !important; 
    margin: 0 !important;
    line-height: 1 !important;
    
    /* Base Appearance (Orange Icon, Dark Gray Border) */
    background-color: transparent !important; 
    color: #f97316 !important; /* Orange */
    border: 2px solid #334155 !important; /* Dark Slate border matching your screenshot */
    border-radius: 50% !important;
    text-decoration: none !important;
    font-size: 1.2rem !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

/* Ensure the FontAwesome icon itself isn't adding invisible margins */
.footer-socials a i {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    display: inline-block !important;
}

/* Reverted Hover State (Blue) */
.footer-socials a:hover {
    background-color: blue !important; 
    color: #ffffff !important; 
    border-color: blue !important;
    transform: translateY(-5px) !important; 
    box-shadow: 0 5px 15px rgba(0, 0, 255, 0.4) !important; /* Blue glow */
}
/*-----------Header-------- */
/* =========================================
   1. Base Header Layout (Top of Page)
========================================= */
/* =========================================
   1. The New Top Blue Bar
========================================= */
/* THE FIX: Forces top bar and header to scroll away naturally */
.top-info-bar,
.main-site-header {
    position: relative !important; 
    top: 0;
    z-index: 100;
}

.top-info-bar {
    background-color: #1d4ed8; /* Matches the Royal Blue menu */
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-socials { display: flex; gap: 15px; }
.top-socials a { color: #ffffff; text-decoration: none; font-size: 15px; transition: opacity 0.3s; }
.top-socials a:hover { opacity: 0.7; }

/* =========================================
   2. Base Header Layout & Alignment
========================================= */
.main-site-header {
    background-color: #ffffff;
    width: 100%;
    border-bottom: 1px solid #f3f4f6;
}

.header-flex-container {
    display: flex;
    align-items: center; /* Vertically centers Logo with the entire right block */
    justify-content: space-between;
    padding: 20px 15px;
    gap: 57px;
}

.static-logo-wrapper { flex-shrink: 0; }
.static-logo-wrapper img { width: 240px; height: auto; }

/* The Right Block aligns its children to exactly the same width */
.right-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    max-width: 950px; /* Forces contact row and menu bar to share same boundaries */
    gap: 18px; /* Space between contact and menu */
}

/* =========================================
   3. Top Contact Row
========================================= */
.top-contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Spreads out perfectly */
    width: 100%;
    padding: 0 10px; /* Minor padding to optically align with the blue menu */
}
.contact-widget { display: flex; align-items: center; gap: 12px; }
.contact-widget .cw-icon { font-size: 24px; color: #00175a; } /* Dark Navy */
.contact-widget .cw-text { display: flex; flex-direction: column; }
.contact-widget .cw-label { color: #ff6600; font-size: 13px; font-weight: 600; text-transform: capitalize;}
.contact-widget .cw-value { color: #111827; font-size: 15px; font-weight: 500; }
.cw-divider { width: 1px; height: 35px; background-color: #e5e7eb; }

/* =========================================
   4. The Menu Bar (Rounded, Two-Tone Blue)
========================================= */
.nav-placeholder {
    width: 100%;
}

.nav-bar-inner {
    display: flex;
    align-items: stretch; /* Forces button to fill full height */
    justify-content: space-between;
    background-color: #1d4ed8; /* Royal Blue */
    border-radius: 8px; /* Outer rounded corners */
    width: 100%;
    overflow: hidden; /* Allows the button to inherit the rounded right corner */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-pill-logo { display: none; }

.nav-links-wrapper {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 18px 30px;
}

.nav-links a {
    color: #ffffff; 
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.nav-links a:hover { color: #ffffff; }

.header-action { display: flex; }

.btn-inquire {
    background-color: #04123b; /* Very Dark Navy Blue */
    color: #ffffff;
    padding: 0 35px; /* Side padding, height fills automatically */
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}
.btn-inquire:hover { background-color: #ff6600; color: #fff; }

.mobile-menu-btn { display: none; color: #ffffff; font-size: 24px; cursor: pointer; padding: 0 25px; align-items: center; }

/* =========================================
   5. Floating Scrolled State (Amsome Pill)
========================================= */
/* THE FIX: !important overrides everything so only this stays on screen */
.nav-bar-inner.scrolled-pill {
    position: fixed !important;
    top: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 95% !important; 
    max-width: 1200px !important; 
    
    background: rgba(255, 255, 255, 0.95) !important; 
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(200, 200, 200, 0.5) !important; 
    border-radius: 60px !important; /* Fully rounded pill */
    padding: 8px 15px 8px 30px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    z-index: 99999 !important;
    
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.nav-bar-inner.scrolled-pill .nav-links-wrapper { justify-content: center !important; }
.nav-bar-inner.scrolled-pill .scroll-pill-logo { display: flex !important; align-items: center !important; }
.nav-bar-inner.scrolled-pill .scroll-pill-logo img { width: 140px !important; height: auto !important; }
.nav-bar-inner.scrolled-pill .nav-links { padding: 10px 20px !important; }
.nav-bar-inner.scrolled-pill .nav-links a { color: #1e293b !important; } 
.nav-bar-inner.scrolled-pill .nav-links a:hover { color: #1d4ed8 !important; }
.nav-bar-inner.scrolled-pill .mobile-menu-btn { color: #1e293b !important; }

/* Pill button styling */
.nav-bar-inner.scrolled-pill .btn-inquire {
    background-color: #04123b !important; 
    border-radius: 40px !important; 
    padding: 12px 28px !important;
    margin: 5px !important;
    height: auto !important;
}
.nav-bar-inner.scrolled-pill .btn-inquire:hover { background-color: #1d4ed8 !important; }

/* =========================================
   6. Mobile Responsiveness
========================================= */
@media (max-width: 1100px) {
    .top-info-bar { display: none; }
    .top-contact-row { display: none; } 
    .static-logo-wrapper img { width: 200px; }
    .nav-links-wrapper { display: none; } 
    .mobile-menu-btn { display: flex; }
    
    .nav-bar-inner {
        max-width: 100%;
        padding-left: 20px;
    }
    
    .nav-bar-inner.scrolled-pill {
        width: 90% !important;
        padding: 5px 10px 5px 20px !important;
    }
}
/* Force the floating pill to the absolute front of the screen */
.nav-bar-inner.scrolled-pill {
    z-index: 9999999 !important; 
    transition: all 0.4s ease-in-out !important;
}
/* =========================================
   Why Choose Us - Inline Icon & Title
========================================= */
.wcu-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between the full blocks */
    margin: 30px 0;
}

.wcu-feature-item {
    display: flex;
    flex-direction: column;
}

/* THE FIX: Locks the Icon and Title on the same line */
.wcu-feature-header {
    display: flex;
    align-items: center; /* Vertically centers the icon with the text */
    gap: 10px; /* Controls the exact space between the icon and the title */
    margin-bottom: 6px; /* Space between the title and the paragraph */
}

/* Icon Styling */
.wcu-feature-header i {
    color: #ffffff; 
    font-size: 16px;
    margin: 0;
}

/* Title Styling */
.wcu-feature-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff; /* Crisp white text */
}

/* Paragraph Text Styling */
.wcu-feature-item p {
    margin: 0;
    font-size: 14px;
    color: #cbd5e1; /* Soft light gray */
    line-height: 1.6;
}
/* =========================================
   Our Fleet Section
========================================= */
.our-fleet-section {
    padding: 80px 0;
    background-color: #f8fafc; /* Very light gray/blue to contrast with white sections */
}

/* Header Styling */
.fleet-header {
    text-align: center;
    margin-bottom: 50px;
}

.fleet-header h2 {
    font-size: 36px;
    color: #00175a; /* Dark Navy */
    font-weight: 700;
    margin-bottom: 15px;
}

.fleet-header p {
    font-size: 16px;
    color: #4b5563; /* Medium gray */
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout (3 Columns on Desktop) */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

/* Individual Vehicle Cards */
.fleet-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(29, 78, 216, 0.1); /* Subtle blue glow */
    border-color: #1d4ed8;
}

/* Icon Container */
.fleet-icon {
    width: 50px;
    height: 50px;
    background-color: #eff6ff; /* Soft blue */
    color: #1d4ed8; /* Royal blue */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.fleet-card:hover .fleet-icon {
    background-color: #1d4ed8;
    color: #ffffff;
}

/* Vehicle Name */
.fleet-name {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

/* =========================================
   Fleet Footer Banner
========================================= */
.fleet-footer-banner {
    background-color: #1d4ed8; /* Royal Blue */
    color: #ffffff;
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 8px 20px rgba(29, 78, 216, 0.25);
}

.banner-icon {
    font-size: 28px;
    color: #ff6600; /* Vibrant Orange */
}

.fleet-footer-banner p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

/* =========================================
   Mobile Responsiveness
========================================= */
@media (max-width: 991px) {
    /* Switch to 2 columns on tablets */
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Switch to 1 column on mobile */
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .fleet-footer-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 15px;
    }
}
/* =========================================
   Global Section Header (Reusable)
========================================= */
.section-header-center {
    text-align: center;
    margin-bottom: 40px;
}

.section-header-center h2 {
    font-size: 36px;
    color: #00175a; /* Dark Navy */
    font-weight: 700;
    margin-bottom: 15px;
}

.header-underline {
    width: 60px;
    height: 4px;
    background-color: #ff6600; /* Vibrant Orange */
    margin: 0 auto;
    border-radius: 2px;
}

/* =========================================
   Popular Destinations Grid
========================================= */
.popular-destinations-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
    gap: 20px;
}

.destination-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    /* cursor: pointer; */
}

.destination-card:hover {
    background-color: #1d4ed8; /* Royal Blue */
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(29, 78, 216, 0.2);
    border-color: #1d4ed8;
}

.dest-icon {
    width: 40px;
    height: 40px;
    background-color: #e0e7ff;
    color: #1d4ed8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.destination-card:hover .dest-icon {
    background-color: #ffffff;
    color: #ff6600; /* Changes to Orange on hover */
}

.dest-name {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    transition: color 0.3s ease;
}

.destination-card:hover .dest-name {
    color: #ffffff; /* Text turns white on hover */
}

/* =========================================
   Travel with Confidence Banner
========================================= */
.travel-confidence-section {
    padding: 60px 0 80px 0;
    background-color: #ffffff;
}

.confidence-box {
    background-color: #00175a; /* Deep Navy Background */
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 23, 90, 0.15);
    position: relative;
    overflow: hidden;
}

/* Optional subtle background accent */
.confidence-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #1d4ed8; /* Royal Blue top border */
}

.confidence-icon {
    font-size: 45px;
    color: #ff6600; /* Vibrant Orange Shield/Icon */
    margin-bottom: 20px;
}

.confidence-box h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.confidence-box p {
    color: #cbd5e1; /* Soft light gray for readability */
    font-size: 18px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* =========================================
   Mobile Responsiveness
========================================= */
@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
}

@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
    
    .confidence-box {
        padding: 40px 20px;
    }
    
    .confidence-box h2 {
        font-size: 26px;
    }
    
    .confidence-box p {
        font-size: 16px;
    }
}
/* =========================================
   Floating Scroll Menu Styles
========================================= */
.floating-menu-container {
    position: fixed;
    top: 20px;
    left: 50%;
    
    /* Starts hidden above the screen and invisible */
    transform: translate(-50%, -150%); 
    opacity: 0;
    visibility: hidden;
    
    width: 95%;
    max-width: 1200px;
    z-index: 2147483647; /* Maximum z-index so nothing covers it */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* The class that JavaScript will add when you scroll */
.floating-menu-container.is-visible {
    transform: translate(-50%, 0); /* Slides down into place */
    opacity: 1;
    visibility: visible;
}

/* The Pill Design */
.floating-menu-inner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(200, 200, 200, 0.5);
    border-radius: 60px;
    padding: 8px 15px 8px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.fm-logo img { 
    width: 140px; 
    height: auto; 
    display: block; 
}

.fm-links {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.fm-links a {
    color: #1e293b;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.fm-links a:hover { 
    color: #1d4ed8; /* Blue on hover */
}

.fm-action { 
    display: flex; 
    align-items: center; 
}

.fm-btn-inquire {
    background-color: #04123b;
    color: #ffffff;
    border-radius: 40px;
    padding: 12px 28px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.fm-btn-inquire:hover { 
    background-color: #1d4ed8; 
    color: #ffffff;
}

.fm-mobile-btn { 
    display: none; 
    color: #1e293b; 
    font-size: 24px; 
    cursor: pointer; 
}

/* Mobile Responsiveness */
@media (max-width: 1100px) {
    .fm-links { display: none; }
    .fm-mobile-btn { display: block; padding: 0 15px; }
}
/* ------------Mobile Menu */
/* =========================================
   Floating Scroll Menu Styles
========================================= */
.floating-menu-container {
    position: fixed;
    top: 20px;
    left: 50%;
    
    /* Starts hidden above the screen and invisible */
    transform: translate(-50%, -150%); 
    opacity: 0;
    visibility: hidden;
    
    width: 95%;
    max-width: 1200px;
    z-index: 2147483647; /* Maximum z-index so nothing covers it */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* The class that JavaScript will add when you scroll */
.floating-menu-container.is-visible {
    transform: translate(-50%, 0); /* Slides down into place */
    opacity: 1;
    visibility: visible;
}

/* The Pill Design */
.floating-menu-inner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(200, 200, 200, 0.5);
    border-radius: 60px;
    padding: 8px 15px 8px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.fm-logo img { 
    width: 140px; 
    height: auto; 
    display: block; 
}

.fm-links {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.fm-links a {
    color: #1e293b;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.fm-links a:hover { 
    color: #1d4ed8; /* Blue on hover */
}

.fm-action { 
    display: flex; 
    align-items: center; 
}

.fm-btn-inquire {
    background-color: #04123b;
    color: #ffffff;
    border-radius: 40px;
    padding: 12px 28px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.fm-btn-inquire:hover { 
    background-color: #1d4ed8; 
    color: #ffffff;
}

.fm-mobile-btn { 
    display: none; 
    color: #1e293b; 
    font-size: 24px; 
    cursor: pointer; 
}

/* Mobile Responsiveness */
@media (max-width: 1100px) {
    .fm-links { display: none; }
    .fm-mobile-btn { display: block; padding: 0 15px; }
}
/* End Of Mobile Menu---- */
/* Slider Section */
/* =========================================
   Custom Hero Slider
========================================= */
.custom-hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen height */
    min-height: 600px;
    background-color: #000; /* Fallback */
    overflow: hidden;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slide */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* Hidden by default */
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The Active Slide */
.hero-slide.active-slide {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

/* Background Image Animation Effect */
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.05);
    transition: transform 6s ease-out; /* Slow zoom effect */
}

.hero-slide.active-slide .hero-bg-img {
    transform: scale(1);
}

/* Dark Overlay */
.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(60 67 89 / 44%); /* Dark navy tint */
    z-index: 2;
}

/* Content */
.hero-slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s; /* Slight delay for text */
    opacity: 0;
}

.hero-slide.active-slide .hero-slide-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-slide-content h1 { 
    color: var(--white); 
    font-size: 3rem; 
    font-weight: 800; 
    margin-bottom: 25px; 
    line-height: 1.1; 
    text-shadow: 0 10px 20px rgba(0,0,0,0.4); 
    letter-spacing: -1px; 
}

/* Multi-color Title Effect */
.hero-slide-content h1 .highlight {
    color: var(--accent-orange); /* This changes "Bus Charter" to your orange accent color */
}

.hero-slide-content p { 
    font-size: 1.25rem; 
    max-width: 750px; 
    margin: 0 auto 40px; 
    text-shadow: 0 4px 10px rgba(0,0,0,0.5); 
    font-weight: 400; 
}

.hero-slide-content .hero-btn {
    background-color: #1d4ed8;
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}
.hero-btn:hover { background-color: #ff6600; }

/* =========================================
   Slider Controls
========================================= */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover { background: #ff6600; color: #fff; }
.prev-arrow { left: 30px; }
.next-arrow { right: 30px; }

/* Dots */
.slider-dots-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: none;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active-dot { background: #ff6600; transform: scale(1.3); }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-slide-content h1 { font-size: 32px; }
    .hero-slide-content p { font-size: 16px; }
    .slider-arrow { display: none; } /* Hide arrows on mobile, rely on auto-play or dots */
}
/* End Of Slider Section */
/* New Tour Section */
/* =========================================
   Divine Journey Slider Section
========================================= */
/* =========================================
   Divine Journey Slider Section
========================================= */
.divine-journey-section {
    padding: 60px 0;
    background-color: #fcfcfc;
    overflow: hidden;
}

/* 1. Center the Main Section Title */
.explore-title {
    text-align: center !important;
    margin-bottom: 40px !important;
    width: 100%;
    display: block;
}

/* Slider Track Layout */
.temple-slider-viewport {
    width: 100%;
    overflow: hidden;
    padding: 20px 0; /* Room for hover shadows */
}

.temple-slider-track {
    display: flex;
    gap: 15px; /* Space between cards */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* =========================================
   The Card Design (Accurate to Image)
========================================= */
/* The outer wrapper creates the Golden Gradient Border */
.temple-card-wrapper {
    flex: 0 0 calc((100% - (15px * 4)) / 5); /* Shows exactly 5 items */
    background: linear-gradient(135deg, #fceda1 0%, #d4af37 50%, #8b6914 100%);
    padding: 3px; /* Thickness of the gold border */
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.divine-journey-section .explore-title {
    font-size: 2.5rem;
    color: #1e293b;
    font-weight: 800;
    display: block;
    width: 100%;
}
/* The inner card */
.temple-card-inner {
    background-color: #fffdf4; /* Light cream/off-white */
    border-radius: 9px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Colored Header */
.tc-header {
    background-color: var(--theme-color); /* Uses the inline style variable */
    color: #ffffff;
    text-align: center !important;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 5px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: 100%;
}

/* Image Section */
.tc-image-box {
    position: relative;
    width: 100%;
    height: 160px; /* Adjust based on preference */
}

.tc-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* The Overlapping Circular Icon */
.tc-icon-ring {
    position: absolute;
    bottom: -35px; /* Pulls it down over the text area */
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background-color: #ffffff; /* Creates the white gap */
    border-radius: 50%;
    padding: 3px; /* Thickness of white gap */
    border: 3px solid #d4af37; /* Outer gold border */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 2;
}

.tc-icon-inner {
    background-color: var(--theme-color); /* Matches header color */
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    overflow: hidden;
}
.tc-icon-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes it act like a background image, filling the circle perfectly */
    display: block;
    border-radius: 50%; /* Double guarantee it stays circular */
}
/* Text Body area */
.tc-text-body {
    padding: 45px 15px 20px 15px; /* CRITICAL: 45px top padding clears the overlapping icon */
    text-align: center !important;
    color: #0f172a; /* Dark navy/black */
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   Slider Navigation Arrows
========================================= */
.t-slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    color: #0f172a;
    border: 2px solid #d4af37; /* Gold border */
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.t-slide-btn:hover {
    background-color: #d4af37;
    color: #ffffff;
}

.t-prev { left: -20px; }
.t-next { right: -20px; }

/* =========================================
   Araku Themed Cards (Reference Image Style)
========================================= */
.araku-slider {
    padding: 20px 0 50px 0; /* Padding for swiper arrows/pagination */
}

.araku-theme-card {
    border-radius: 8px;
    overflow: hidden;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensures all swiper slides stretch equally */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- Color Themes --- */
.theme-gold { background-color: #aa7b11; }
.theme-red { background-color: #8b2323; }
.theme-blue { background-color: #1b4b82; }
.theme-purple { background-color: #4b1b68; }
.theme-green { background-color: #0d6350; }

/* --- Card Header --- */
.atc-header {
    display: flex;
    align-items: center;
    padding: 20px 15px;
}

.atc-step {
    width: 35px;
    height: 35px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.atc-title {
    flex-grow: 1;
    text-align: center;
    padding-right: 35px; /* Offsets the circle so text is perfectly centered */
}

.atc-title h3 {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.atc-title span {
    display: block;
    font-size: 10px;
    font-weight: 600;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Image Area --- */
.atc-image-wrap {
    width: 100%;
    height: 180px;
    border-top: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
}

.atc-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Body Area --- */
.atc-body {
    padding: 25px 20px;
    flex-grow: 1;
}

.atc-body p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #ffffff;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.atc-body p i {
    margin-top: 4px;
    font-size: 10px;
    color: #ffffff;
}

/* --- Footer Area (Distance) --- */
.atc-footer {
    padding: 15px 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- Swiper Navigation Customization --- */
.araku-slider .swiper-button-next,
.araku-slider .swiper-button-prev {
    color: #00175a;
    background: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.araku-slider .swiper-button-next:after,
.araku-slider .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}
.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    display: none;
}
/* End Of Akku valyyy */
/* Tarif section */
/* =========================================
   Tariff Plans Section
========================================= */
.tariff-plans-section {
    padding: 80px 0;
    background-color: #f8fafc; /* Soft off-white to make the white cards pop */
}

.tariff-subtitle {
    text-align: center;
    color: #4b5563;
    font-size: 16px;
    max-width: 700px;
    margin: 20px auto 40px auto;
    line-height: 1.6;
}

/* 3-Column Grid setup */
.tariff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual Card Styling */
.tariff-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.tariff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(29, 78, 216, 0.1); /* Subtle blue glow on hover */
    border-color: #1d4ed8; /* Royal Blue border */
}

/* Vehicle Title */
.tariff-title {
    font-size: 20px;
    font-weight: 800;
    color: #00175a; /* Deep Navy */
    text-align: center;
    margin: 0 0 25px 0;
    padding-bottom: 20px;
    border-bottom: 2px dashed #e2e8f0;
}

/* Details List */
.tariff-details {
    flex-grow: 1; /* Pushes the button to the bottom evenly */
    margin-bottom: 25px;
}

.tariff-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.tariff-item:last-child {
    margin-bottom: 0;
}

/* Label text (e.g. Local Use) */
.t-label {
    font-size: 13px;
    font-weight: 600;
    color: #475569; /* Slate gray */
    margin-bottom: 5px;
}

/* Price text */
.t-price {
    font-size: 15px;
    font-weight: 700;
    color: #1d4ed8; /* Royal Blue */
}

/* Card Button */
.tariff-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #1e3a8a, #172554); /* Premium Dark Blue Gradient */
    color: #ffffff;
    padding: 14px 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto; /* Aligns all buttons exactly at the bottom */
}

.tariff-btn:hover {
    background: #ff6600; /* Kings Travels Orange */
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

/* =========================================
   Mobile Responsiveness
========================================= */
@media (max-width: 1024px) {
    /* Switch to 2 columns on tablets */
    .tariff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    /* Switch to 1 column on mobile devices */
    .tariff-grid {
        grid-template-columns: 1fr;
    }
    
    .tariff-card {
        padding: 25px 20px;
    }
}
/* End Of Terif Setcion */
/* =========================================
   Mobile Responsiveness & Hamburger Button
========================================= */
/* Hide the hamburger button on Desktop */
.mobile-menu-btn {
    display: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding-left: 20px;
}

/* Tablet & Mobile Breakpoint */
@media (max-width: 1100px) {
    /* Hide the desktop links */
    .nav-links-wrapper {
        display: none !important;
    }
    
    /* Hide the desktop Inquire button if needed, or keep it */
    .header-action .btn-inquire {
        display: none; 
    }
    
    /* Show the hamburger button */
    .mobile-menu-btn {
        display: block;
        color: #ffffff; /* Make sure it contrasts with your blue header */
    }
}

/* =========================================
   Mobile Responsiveness & Hamburger Display
========================================= */
/* Hide the hamburger button on Desktop */
.mobile-menu-btn, .fm-mobile-btn {
    display: none;
    cursor: pointer;
}

/* Tablet & Mobile Breakpoint */
@media (max-width: 1100px) {
    /* Hide the desktop links */
    .nav-links-wrapper, .fm-links {
        display: none !important;
    }
    
    /* Hide the desktop Inquire button */
    .header-action .btn-inquire, .fm-action .fm-btn-inquire {
        display: none !important; 
    }
    
    /* Show BOTH hamburger buttons */
    .mobile-menu-btn, .fm-mobile-btn {
        display: block !important;
        color: #00175a; /* Adjust color as needed */
        font-size: 28px;
        padding-left: 20px;
    }
}

/* =========================================
   Mobile Slide-Out Drawer Styles
========================================= */
/* 1. The Overlay (Sits Behind) */
.mobile-overlay-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999998; /* Lower than drawer */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-overlay-bg.is-active {
    opacity: 1;
    visibility: visible;
}

/* 2. The Drawer (Sits in Front) */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden off-screen */
    width: 320px; 
    max-width: 85vw; 
    height: 100vh;
    background-color: #ffffff;
    z-index: 999999; /* Higher than overlay - FIXES UNCLICKABLE LINKS */
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    overflow-y: auto;
}

.mobile-menu-drawer.is-open {
    right: 0; 
}

/* Drawer Internal Styling */
.mobile-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 32px;
    color: #1e293b;
    cursor: pointer;
    z-index: 10;
}

.mobile-close-btn:hover { color: #ff6600; }

.mobile-menu-content { padding: 40px 25px; position: relative; z-index: 5; }

.mobile-logo img {
    max-width: 160px;
    height: auto;
    margin-bottom: 35px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-list a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 700;
    color: #00175a;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav-list a:hover { color: #ff6600; }

.mobile-contact-info {
    background-color: #f8fafc;
    padding: 20px;
    border-radius: 8px;
}

.m-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 12px;
}
.m-contact-item:last-child { margin-bottom: 0; }
.m-contact-item i { color: #1d4ed8; font-size: 16px; }
.action-wa { background-color: #25d366; } /* Official WhatsApp Green */