
.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; 
}



/* 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; }
/* Continuous Floating Animation */
.floating-img { 
    width: 100%; 
    height: auto; /* Changed from 500px to auto so the whole bus shows */
    /* object-fit: cover; (Removed this so it stops cropping the edges) */
    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); }
}

/* 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: auto; } /* Changed from 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: auto; } /* Changed from 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: bold;
}

.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: 323px; 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: #1d4ed8; font-size: 15px; font-weight: bold; text-transform: none;}
.contact-widget .cw-value { color: #111827; font-size: 15px; font-weight: bold; }
.cw-divider { width: 1px; height: 35px; background-color: #e5e7eb; }
/* ==================================================
   LAPTOP OPTIMIZATION (1100px - 1320px)
   Fixes layout breaking at 1280x800 resolution
   ================================================== */
@media (max-width: 1320px) and (min-width: 1101px) {
    /* 1. Reduce the main header outer gap */
    .header-flex-container {
        gap: 20px !important;
        padding: 12px 2% !important;
    }
.static-logo-wrapper img {
    width: 258px;
    height: auto;
}
    /* 2. Scale down the logo slightly to gain horizontal room */
    .static-logo-wrapper {
        max-width: 260px !important;
    }

    /* 3. Tighten the contact info spacing */
    .top-contact-row {
        gap: 15px !important;
    }
    
    .contact-widget .cw-icon {
        font-size: 16px !important;
    }
    
    .contact-widget .cw-value {
        font-size: 12px !important;
    }
    
    .contact-widget .cw-label {
        font-size: 15px !important;
    }
    
    .cw-divider {
        height: 22px !important;
    }

    /* 4. Streamline the navigation bar so elements fit comfortably inline */
    .bottom-nav-row {
        gap: 15px !important;
    }

    .nav-links {
        gap: 12px !important;
        padding: 10px 15px !important;
    }

    .nav-links a {
        font-size: 13px !important;
    }

    /* 5. Scale down the inquiry button size slightly */
    .btn-inquire {
        height: 42px !important;
        padding: 0 18px !important;
        font-size: 13px !important;
    }
}
/* =========================================
   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(3, 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: 200px; 
    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: 200px; 
    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: #ffffff; /* 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 */
.footer-logo img {
    width: 284px;
    background-color: #fff;
    padding: 8px;
    border-radius: 16px;
}

/* ==================================================
   ARAKU SLIDER - EQUAL HEIGHT CARDS FIX
   ================================================== */

/* 1. Tell the Swiper wrapper to stretch all slides to match the tallest one */
.araku-slider .swiper-wrapper {
    align-items: stretch;
}

/* 2. Make the slide height fluid and enable flexbox */
.araku-slider .swiper-slide {
    height: auto; 
    display: flex;
}

/* 3. Make the card a vertical flex container taking 100% of the slide height */
.araku-theme-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* 4. Fix the image container height so vertical/horizontal images don't break the layout */
.atc-image-wrap {
    width: 100%;
    height: 200px; /* You can adjust this height to your liking */
    flex-shrink: 0; /* Prevents the image area from squishing */
    overflow: hidden;
}

.atc-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops image beautifully without stretching it */
    display: block;
}

/* 5. Force the body text area to grow and fill any remaining empty space */
.atc-body {
    flex-grow: 1;
    padding: 20px; /* Adjust padding to match your design */
}

/* 6. Push the footer perfectly to the bottom of the card */
.atc-footer {
    margin-top: auto; 
    padding: 15px 20px; /* Adjust padding to match your design */
}

/* =========================================
   Premium "Why Choose Us" Section
========================================= */
.why-choose-us {
    padding: 100px 0;
    background-color: #f8fafc; /* Light background behind the dark card */
}

.wcu-container {
    background: linear-gradient(135deg, #0b1120 0%, #172554 100%); /* Deep Navy Gradient */
    border-radius: 24px;
    padding: 70px 60px;
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05); /* Faint inner glow */
}

/* Titles */
.wcu-content > span {
    color: #f97316; /* Accent Orange */
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.wcu-content h2 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

/* Features List - 2 Column Grid */
.wcu-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 50px; /* row-gap, column-gap */
    margin-bottom: 60px;
}

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

.wcu-feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

/* Custom Icon Styling */
.wcu-feature-header i {
    color: #ffffff;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.08); /* Subtle background circle */
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.wcu-feature-header h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.wcu-feature-item p {
    color: #94a3b8; /* Soft Slate Gray */
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding-left: 47px; /* Perfectly aligns the text under the title, bypassing the icon */
}

/* Dynamic Stats / Counters Footer */
.wcu-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 45px;
}

.wcu-stat-item {
    flex: 1;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1); /* Vertical dividers */
}

.wcu-stat-item:last-child {
    border-right: none; /* Removes divider on the last item */
}

.wcu-stat-item h3 {
    color: #ffffff;
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
}

.wcu-stat-item p {
    color: #94a3b8;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin: 0;
}

/* =========================================
   Mobile Responsiveness
========================================= */
@media (max-width: 991px) {
    .wcu-features-list { grid-template-columns: 1fr; } /* Drops to 1 column on tablets */
    .wcu-container { padding: 50px 30px; }
    .wcu-content h2 { font-size: 32px; }
}

@media (max-width: 768px) {
    .wcu-stats { flex-direction: column; gap: 30px; }
    .wcu-stat-item { 
        border-right: none; /* Removes vertical lines on mobile */
        border-bottom: 1px solid rgba(255,255,255,0.1); /* Adds horizontal lines instead */
        padding-bottom: 30px; 
    }
    .wcu-stat-item:last-child { 
        border-bottom: none; 
        padding-bottom: 0; 
    }
}
/* =========================================
   Temple Swiper Layout Setup
========================================= */
.temple-swiper {
    width: 100%;
    padding: 20px 15px 40px !important; /* Room for hover shadows */
    overflow: hidden;
}

/* Ensure slides stretch equally */
.temple-swiper .swiper-wrapper {
    align-items: stretch;
}

.temple-swiper .swiper-slide {
    height: auto;
    display: flex;
}

/* Force the card to take up the full height of the slide */
.temple-swiper .temple-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0; /* Reset margins inside the slider */
}

/* Ensure the footer pushes to the bottom */
.temple-swiper .tc-footer {
    margin-top: auto;
}
/* =========================================
   Vizag 5-Column Slider Design
========================================= */
/* Color Themes */
.theme-red    { --theme-color: #b91c1c; }
.theme-blue   { --theme-color: #1a365d; }
.theme-green  { --theme-color: #15803d; }
.theme-orange { --theme-color: #c2410c; }
.theme-purple { --theme-color: #6b21a8; }

/* The Card Frame */
.vizag-card {
    border: 2px solid #d4af37; /* Golden Border */
    border-radius: 8px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Colored Header */
.vc-header {
    background-color: var(--theme-color);
    color: #ffffff;
    text-align: center;
    padding: 12px 10px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Image Area */
.vc-image-box {
    position: relative;
    width: 100%;
    height: 150px;
}

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

/* Overlapping Circular Icon */
.vc-icon-ring {
    position: absolute;
    bottom: -25px; /* Pulls it down over the text area */
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 3px; /* Creates the white inner gap */
    border: 2px solid #d4af37; /* Golden outer ring */
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    z-index: 2;
}

.vc-icon-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Text Body */
.vc-body {
    padding: 40px 15px 20px 15px; /* 40px top padding clears the icon */
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
    flex-grow: 1; /* Pushes footer to the bottom */
}

/* Theme-Colored Footer */
.vc-footer {
    padding: 12px 10px;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--theme-color); /* Matches the header color automatically */
    border-top: 1px solid #f1f5f9; /* Subtle divider */
    margin-top: auto;
}

/* =========================================
   Slider Setup & Arrow Styling
========================================= */
.vizag-slider .swiper-wrapper { align-items: stretch; }
.vizag-slider .swiper-slide { height: auto; display: flex; }

.vizag-prev, .vizag-next {
    background-color: #ffffff !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    color: #1e293b !important;
    margin-top: -20px;
}

.vizag-prev:after, .vizag-next:after {
    font-size: 14px !important;
    font-weight: 800 !important;
}

/* Pill Button Under Slider */
.btn-inquire-solid {
    background-color: #c07d05;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
    display: inline-block;
    transition: all 0.3s;
}
.btn-inquire-solid:hover {
    background-color: #ff6600;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
    color: #ffffff;
}
/* =========================================
   Custom Vanilla Slider CSS
========================================= */
.custom-slider-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.custom-slider-track {
    display: flex;
    gap: 30px; /* Space between cards */
    transition: transform 0.5s ease-in-out;
}

/* Default: 4 Items on Desktop */
.custom-slide-wrapper {
    flex: 0 0 calc((100% - 90px) / 4);
    display: flex;
}

/* Ensure the card stretches correctly */
.custom-slide-wrapper .araku-theme-card {
    width: 100%;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1200px) {
    /* 3 Items on Small Desktop/Tablet Landscape */
    .custom-slide-wrapper { flex: 0 0 calc((100% - 60px) / 3); }
}

@media (max-width: 992px) {
    /* 2 Items on Tablets */
    .custom-slide-wrapper { flex: 0 0 calc((100% - 30px) / 2); }
}

@media (max-width: 576px) {
    /* 1 Item on Mobile */
    .custom-slide-wrapper { flex: 0 0 100%; }
}

/* --- Custom Arrows --- */
.araku-custom-prev, .araku-custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #ffffff;
    color: #00175a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.araku-custom-prev { left: 10px; }
.araku-custom-next { right: 10px; }

.araku-custom-prev:hover, .araku-custom-next:hover { 
    background: #ff6600; 
    color: #fff; 
    transform: translateY(-50%) scale(1.1);
}

/* =========================================
   Car Gallery Slider CSS
========================================= */
.car-gallery-slider .swiper-wrapper {
    align-items: stretch;
}

.car-gallery-slider .swiper-slide {
    height: auto;
    display: flex;
}

/* Cover Card Styling */
.car-cover-item {
    width: 100%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.car-cover-item:hover {
    transform: translateY(-5px);
}

.cci-image-wrap {
    position: relative;
    width: 100%;
    height: 323px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cci-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.car-cover-item:hover .cci-image-wrap img {
    transform: scale(1.08);
}

/* Hover Overlay */
.cci-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.car-cover-item:hover .cci-overlay {
    opacity: 1;
}

.cci-overlay i {
    font-size: 28px;
    margin-bottom: 8px;
    color: #ff6600; /* Kings Orange */
}

.cci-overlay span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Car Title */
.cci-title {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
}

/* Slider Arrows */
.cg-prev, .cg-next {
    background-color: #ffffff !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    color: #1e293b !important;
}

.cg-prev:after, .cg-next:after {
    font-size: 16px !important;
    font-weight: 800 !important;
}

.cg-prev:hover, .cg-next:hover {
    background-color: #ff6600 !important;
    color: #ffffff !important;
}

/* =========================================
   Custom Lightbox CSS
========================================= */
.car-lightbox-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    z-index: 999999;
    display: none; /* Hidden by default */
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.car-lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.cl-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cl-toolbar h4 {
    margin: 0; font-size: 20px; font-weight: 700;
}

.cl-actions {
    display: flex; align-items: center; gap: 20px;
}

#clCounter {
    font-size: 14px; font-weight: 600; letter-spacing: 2px;
}

.cl-close {
    font-size: 24px; cursor: pointer; transition: color 0.3s;
}

.cl-close:hover { color: #ff6600; }

.cl-content-area {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

#clMainImage {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    object-fit: contain;
}

.cl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    padding: 20px;
    transition: color 0.3s;
}

.cl-nav:hover { color: #ffffff; }
.cl-prev { left: 2%; }
.cl-next { right: 2%; }

@media(max-width: 768px) {
    .cl-nav { font-size: 24px; padding: 10px; }
    .cl-toolbar { padding: 15px 20px; }
}

/* =========================================
   Odisha Tour Showcase Section
========================================= */
.tour-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Left image slightly smaller than right content */
    gap: 60px;
    align-items: flex-start;
    margin-top: 50px;
}

/* --- Left Column: Image --- */
.tour-left-col {
    position: sticky;
    top: 120px; /* Sticks to the screen as user scrolls */
}

.tour-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 8px solid #ffffff;
}

.tour-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.tour-image-wrapper:hover img {
    transform: scale(1.05);
}

.tour-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #ff6600; /* Kings Orange */
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.2);
}

.badge-days { font-size: 24px; font-weight: 800; line-height: 1; }
.badge-nights { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; opacity: 0.9; }

/* --- Right Column: Itinerary --- */
.itinerary-day {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 35px 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.day-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 2px dashed #cbd5e1;
    padding-bottom: 20px;
}

.day-badge {
    background: #1e3a8a; /* Deep Navy */
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 30px;
    letter-spacing: 1px;
}

.day-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
}

/* The Vertical Timeline */
.day-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

/* The connecting vertical line */
.day-timeline::before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 20px;
    left: 17px; /* Centers the line under the icons */
    width: 2px;
    background: #cbd5e1;
}

.day-timeline li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
}

.day-timeline li:last-child {
    margin-bottom: 0;
}

.day-timeline li i {
    background: #ffffff;
    color: #ff6600;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border: 2px solid #ff6600;
    position: relative;
    z-index: 2; /* Keeps icon above the vertical line */
    flex-shrink: 0;
}

.day-timeline li div {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    padding-top: 6px;
}

.day-timeline li div strong {
    color: #1e293b;
    font-weight: 700;
}

/* --- Highlights Box --- */
.tour-highlights-box {
    background: linear-gradient(135deg, #1e3a8a, #172554);
    border-radius: 16px;
    padding: 30px 40px;
    color: #ffffff;
    margin-top: 40px;
}

.tour-highlights-box h4 {
    color: #ffcc00;
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hl-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.hl-item i {
    color: #10b981; /* Green checkmark */
    font-size: 16px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .tour-showcase-grid {
        grid-template-columns: 1fr; /* Stacks image on top of text */
        gap: 40px;
    }
    
    .tour-left-col {
        position: relative;
        top: 0;
    }
    
    .tour-image-wrapper img {
        height: 400px; /* Shorter image for mobile */
    }
}

@media (max-width: 768px) {
    .itinerary-day {
        padding: 25px 20px;
    }
    .highlights-grid {
        grid-template-columns: 1fr; /* 1 column highlights on phones */
    }
    .tour-highlights-box {
        padding: 25px 20px;
    }
}
/* Force exactly ONE card to show on mobile devices */
@media (max-width: 768px) {
    #templeSliderTrack {
        display: flex;
        flex-wrap: nowrap;
    }
    .temple-card-wrapper {
        flex: 0 0 100% !important; /* Forces the card to take 100% of the width */
        max-width: 100% !important;
        min-width: 100% !important;
        box-sizing: border-box;
    }
}
/* Layout & Container Constraints */
.custom-tour-slider-section { position: relative; }
.custom-tour-container { max-width: 1660px; margin: 0 auto; padding: 0 15px; }
.custom-tour-wrapper { position: relative; padding: 0 50px; /* Room for arrows */ }

.custom-tour-viewport { width: 100%; overflow: hidden; padding-bottom: 20px; }
.custom-tour-track { display: flex; gap: 20px; transition: transform 0.4s ease-in-out; }

/* Slide Math for exact 3, 2, 1 fitting */
.custom-tour-slide { flex: 0 0 calc(33.333% - 13.33px); box-sizing: border-box; }
@media (max-width: 1024px) { .custom-tour-slide { flex: 0 0 calc(50% - 10px); } }
@media (max-width: 768px) { 
    .custom-tour-slide { flex: 0 0 100%; } 
    .custom-tour-wrapper { padding: 0 35px; } /* Smaller arrow gap on mobile */
}

/* Base Card Styling */
.custom-tour-card {
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Theme Colors */
.theme-ochre .ct-header, .theme-ochre .ct-footer { background-color: #a87b1e; }
.theme-crimson .ct-header, .theme-crimson .ct-footer { background-color: #8b2226; }
.theme-blue .ct-header, .theme-blue .ct-footer { background-color: #1a4475; }
.theme-purple .ct-header, .theme-purple .ct-footer { background-color: #4a215c; }
.theme-teal .ct-header, .theme-teal .ct-footer { background-color: #1c644c; }

/* Header Elements */
.ct-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    color: white;
    gap: 12px;
}
.ct-number-circle {
    width: 32px;
    height: 32px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center; /* PERFECTLY CENTERS THE NUMBER */
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}
.ct-titles h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    letter-spacing: 0.5px;
}

/* Middle Image Area */
.ct-image-box {
    position: relative;
    width: 100%;
    line-height: 0;
}
.ct-main-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Overlapping Inset Icon - Centered directly on the bottom line */
.ct-inset-icon {
    position: absolute;
    bottom: 0;
    right: 156px;
    transform: translateY(50%); /* MOVES IT DOWN EXACTLY HALF ITS HEIGHT */
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #ffb300; /* Golden border */
    overflow: hidden;
    z-index: 5;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.ct-inset-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Footer Content */
.ct-footer {
    padding: 35px 20px 20px 20px; /* Extra top padding for overlapping icon */
    flex-grow: 1;
    color: white;
}
.ct-desc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ct-desc-list li {
    font-size: 12px;
    line-height: 1.6;
    position: relative;
    padding-left: 18px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.95;
}
.ct-desc-list li::before {
    content: '✦'; /* Exact star icon from your image */
    position: absolute;
    left: 0;
    top: -1px;
    font-size: 14px;
}

/* Slider Arrows */
.custom-tour-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 16px;
    transition: 0.3s;
}
.custom-tour-btn:hover { background: #eee; }
.custom-tour-prev { left: 0px; }
.custom-tour-next { right: 0px; }
/* =========================================
   Papikondalu Divine Slider Adjustments
========================================= */
.papi-divine-slider .swiper-wrapper {
    align-items: stretch;
}

.papi-divine-slider .swiper-slide {
    height: auto;
    display: flex;
}

/* This overrides the old hardcoded width so Swiper can manage it */
.swiper-gold-card {
    flex: 1 1 100% !important; 
    width: 100%;
    height: 100%;
}

/* Adjust the custom golden arrows to work with Swiper */
.pd-prev, .pd-next {
    margin-top: 0 !important;
}
.pd-prev { left: 0px !important; }
.pd-next { right: 0px !important; }

/* =========================================
   Slider Navigation Arrows (Bulletproof Fix)
========================================= */
.t-slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    
    /* 1. Force a perfect square shape */
    width: 45px !important;
    height: 45px !important;
    min-width: 45px !important;
    min-height: 45px !important;
    max-width: 45px !important;
    max-height: 45px !important;
    
    /* 2. Center the icon perfectly */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin-top: 0 !important; /* Overrides swiper default offset */
    
    /* 3. Golden circle styling */
    background-color: #ffffff !important;
    border: 2px solid #d4af37 !important; /* Gold border */
    border-radius: 50% !important;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease !important;
    cursor: pointer;
}

/* Position exactly on the edges */
.pd-prev { left: 10px !important; }
.pd-next { right: 10px !important; }

/* 4. Fix the stretched chevron icon */
.t-slide-btn::after {
    font-size: 16px !important; /* Locks the size so it doesn't stretch */
    font-weight: 900 !important;
    color: #1e3a8a !important; /* Dark Blue icon */
    transform: none !important; /* Prevents Swiper from stretching it */
    line-height: 1 !important;
}

/* Hover Effects */
.t-slide-btn:hover {
    background-color: #d4af37 !important; /* Fills with Gold */
}

.t-slide-btn:hover::after {
    color: #ffffff !important; /* Icon turns white */
}
.temple-slider-viewport .tc-text-body{
color: #000;
}
/* =========================================
   Custom Tour Slider Widths (4 on Desktop)
========================================= */

/* Desktop: 4 Items (100% divided by 4, minus the 20px gap) */
.custom-tour-slide {
    flex: 0 0 calc(25% - 15px); 
    width: calc(25% - 15px);
    box-sizing: border-box;
}

/* Tablets/Small Laptops: 2 Items */
@media (max-width: 1024px) {
    .custom-tour-slide {
        flex: 0 0 calc(50% - 10px);
        width: calc(50% - 10px);
    }
}

/* Mobile Phones: 1 Item */
@media (max-width: 768px) {
    .custom-tour-slide {
        flex: 0 0 100%;
        width: 100%;
    }
}

.about-section {
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: visible; /* Keeps the badge visible outside the container */
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

@media (min-width: 992px) {
    .about-container {
        flex-direction: row;
        gap: 80px;
    }
}

.about-content {
    flex: 1;
}

.about-subtitle {
    color: #ff8c42;
    background-color: #fff5f0;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.about-title {
    font-size: 38px;
    color: #111827;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 38px;
    }
}

.about-title span {
    color:#c17f03;
}

.about-text {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 35px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.about-features li {
    font-weight: 700;
    color: #111827;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features i {
    color: #000;
    font-size: 20px;
}

.btn-discover {
    display: inline-block;
    background-color:rgb(193, 127, 3);
    color: #ffffff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.btn-discover:hover {
    background-color: #000;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    width: 100%;
    max-width: 650px;
}

.image-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 8px solid #ffffff;
    background: #ffffff;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-container:hover img {
    transform: scale(1.03);
}

/* --- UPDATED BADGE CSS --- */
.rotating-badge {
    position: absolute;
        bottom: -116px;
        right: -88px;
    width: 140px;
    height: 140px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: 5px solid #ffffff;
}

@media (min-width: 768px) {
    .rotating-badge {
        width: 195px; /* Increased outer badge size slightly for text breathing room */
        height: 195px;
        bottom: -116px;
        right: -88px;
    }
}

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

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

/* Center Icon Container */
.badge-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    z-index: 20;
}

@media (min-width: 768px) {
    .badge-icon {
        width: 95px; /* Slightly increased to perfectly separate from the text */
        height: 95px;
    }
}

/* Padding to give the logo space inside the circle */
.badge-icon img {
    width: 88%; /* Reduced to give proper padding inside the white circle */
    height: auto;
    object-fit: contain;
}
.rotating-badge {
    border: 5px solid #cc9213;
}

/* --- PREMIUM FLEET GRID SECTION --- */
.fleet-section {
    padding: 100px 20px;
    background-color: #f8f9fa; /* Soft off-white background */
    font-family: 'Inter', sans-serif;
}

.fleet-container {
    max-width: 1320px;
    margin: 0 auto;
}

.fleet-header {
    text-align: center;
    margin-bottom: 60px;
}

.fleet-subtitle {
    color: #c17d05;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
    background: rgba(193, 125, 5, 0.1);
    padding: 6px 16px;
    border-radius: 30px;
}

.fleet-title {
    font-size: 42px;
    color: #081a38;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Premium Card Design */
.fleet-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(8, 26, 56, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.fleet-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(8, 26, 56, 0.12);
}

.fleet-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 65%; /* Aspect ratio */
    overflow: hidden;
    background: #eaeaea;
}

.fleet-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* Subtle gradient overlay on image hover */
.fleet-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(8, 26, 56, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fleet-card:hover .fleet-img-overlay {
    opacity: 1;
}

.fleet-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fleet-card-title {
    font-size: 19px;
    color: #081a38;
    font-weight: 800;
    margin: 0 0 12px 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.fleet-card:hover .fleet-card-title {
    color: #c17d05;
}

.fleet-card-desc {
    font-size: 14.5px;
    color: #64748b;
    margin: 0 0 24px 0;
    line-height: 1.7;
    flex-grow: 1;
}

/* Premium Enquire Button */
.fleet-btn {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #bc7901;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fleet-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.fleet-btn:hover {
    background-color: #c17d05;
    box-shadow: 0 8px 20px rgba(193, 125, 5, 0.3);
}

.fleet-btn:hover i {
    transform: translateX(4px);
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .fleet-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .fleet-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .fleet-title { font-size: 36px; }
}
@media (max-width: 600px) {
    .fleet-grid { grid-template-columns: 1fr; }
}

/* --- PREMIUM MODAL (POPUP) CSS --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(8, 26, 56, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.modal-overlay.active .modal-box {
    transform: scale(1);
    opacity: 1;
}

.modal-header {
    background: #081a38;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: #ffffff;
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.close-modal {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close-modal:hover {
    background: #c17d05;
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    color: #64748b;
    font-size: 15px;
    margin: 0 0 24px 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #081a38;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: #c17d05;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(193, 125, 5, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    background: #c17d05;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    padding: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #081a38;
}
/* Update this class to 3 columns */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Changed from 4 to 3 */
    gap: 30px;
}

/* ... keep your .fleet-card and other styles the same ... */

/* Replace your existing Responsive Grid media queries with this: */
@media (max-width: 1024px) {
    .fleet-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 24px; 
    }
    .fleet-title { 
        font-size: 36px; 
    }
}

@media (max-width: 600px) {
    .fleet-grid { 
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}
/* =========================================
   Explore Vizag City Section (5 Cards)
========================================= */
.divine-journey-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.explore-title {
    text-align: center;
    font-size: 36px;
    color: #1e3a8a; /* Dark Blue matching the image */
    font-weight: 800;
    margin-bottom: 40px;
    width: 100%;
    display: block;
}

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

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

/* 5 Cards Per Row */
.temple-card-wrapper {
    flex: 0 0 calc((100% - 60px) / 5); /* 5 items, 4 gaps of 15px = 60px */
    box-sizing: border-box;
}

/* Card Design (Matches Image) */
.temple-card-inner {
    background-color: #ffffff;
    border: 1px solid #d4af37; /* Golden border */
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.temple-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Colored Header */
.tc-header {
    background-color: var(--theme-color, #1e3a8a); /* Dynamic color from HTML */
    color: #ffffff;
    text-align: center;
    padding: 15px 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Image Area */
.tc-image-box {
    position: relative;
    width: 100%;
    height: 160px;
    border-bottom: 1px solid #eaeaea;
}

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

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

.tc-icon-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background-color: #ffffff;
}

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

/* Text Body Area */
.tc-text-body {
    padding: 40px 15px 25px 15px; /* 40px top padding clears the overlapping icon */
    text-align: center;
    color: #333333;
    font-size: 13px;
    line-height: 1.6;
    background-color: #ffffff;
    flex-grow: 1;
}

/* Hide the footer to match the exact image provided */
.tc-footer {
    display: none; 
}

/* Slider Navigation Arrows */
.t-slide-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.t-slide-btn:hover {
    background-color: #1e3a8a;
    color: #ffffff;
    border-color: #1e3a8a;
}

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

/* INQUIRE NOW Button */
.gallery-buttons {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.gallery-buttons .btn-primary {
    background: #1e3a8a !important; /* Solid Dark Blue */
    color: #ffffff !important;
    padding: 14px 40px;
    border-radius: 30px; /* Pill shape */
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 15px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.gallery-buttons .btn-primary:hover {
    background: #c17d05 !important; /* Gold/Orange on hover */
    box-shadow: 0 6px 15px rgba(193, 125, 5, 0.4);
    transform: translateY(-3px);
}

/* Responsive Grid (Shrinks columns on smaller screens) */
@media (max-width: 1200px) {
    .temple-card-wrapper { flex: 0 0 calc((100% - 45px) / 4); } /* 4 Items */
}
@media (max-width: 992px) {
    .temple-card-wrapper { flex: 0 0 calc((100% - 30px) / 3); } /* 3 Items */
}
@media (max-width: 768px) {
    .temple-card-wrapper { flex: 0 0 calc((100% - 15px) / 2); } /* 2 Items */
    .explore-title { font-size: 28px; }
}
@media (max-width: 500px) {
    .temple-card-wrapper { flex: 0 0 100%; } /* 1 Item */
}
.vizag-tour-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.explore-title {
    text-align: center;
    font-size: 36px;
    color: #1e3a8a; /* Dark Blue matching image */
    font-weight: 800;
    margin-bottom: 50px;
}

.vizag-slider {
    padding: 15px 0 40px 0 !important; /* Space for hover shadow and overlapping icons */
}

/* Ensure slides stretch equally */
.vizag-slider .swiper-wrapper {
    align-items: stretch;
}

.vizag-slider .swiper-slide {
    height: auto;
    display: flex;
}

/* --- Theme Colors --- */
.theme-blue   { --theme-color: #1e3a8a; }
.theme-green  { --theme-color: #15803d; }
.theme-orange { --theme-color: #c2410c; }
.theme-purple { --theme-color: #6b21a8; }
.theme-red    { --theme-color: #b91c1c; }

/* --- Vizag Card Design --- */
.vizag-card {
    background-color: #ffffff;
    border: 1px solid #d4af37; /* Golden border */
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: visible; /* Allows the overlapping circle to show */
}

.vizag-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Colored Header */
.vc-header {
    background-color: var(--theme-color);
    color: #ffffff;
    text-align: center;
    padding: 15px 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

/* Image Area */
.vc-image-box {
    position: relative;
    width: 100%;
    height: 160px;
    border-bottom: 1px solid #eaeaea;
}

.vc-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlapping Circular Icon */
.vc-icon-ring {
    position: absolute;
    bottom: -28px; /* Pulls it down over the text area */
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 3px; 
    border: 2px solid #d4af37; /* Outer gold border */
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.vc-icon-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background-color: #fff;
}

/* Text Body Area */
.vc-body {
    padding: 40px 15px 25px 15px; /* 40px clears the overlapping icon */
    text-align: center;
    color: #333333;
    font-size: 13px;
    line-height: 1.6;
    background-color: #ffffff;
    flex-grow: 1;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.vc-footer {
    display: none; /* Hidden to match your image */
}

/* --- Slider Arrows --- */
.vizag-prev, .vizag-next {
    background-color: #ffffff !important;
    color: #1e3a8a !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    margin-top: -20px;
}

.vizag-prev:hover, .vizag-next:hover {
    background-color: #1e3a8a !important;
    color: #ffffff !important;
}

.vizag-prev:after, .vizag-next:after {
    font-size: 16px !important;
    font-weight: 800 !important;
}

/* --- INQUIRE NOW Button --- */
.gallery-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-inquire-solid {
    background: #1e3a8a;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 15px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-inquire-solid:hover {
    background: #c17d05; /* Orange/Gold hover */
    box-shadow: 0 6px 15px rgba(193, 125, 5, 0.4);
    color: #ffffff;
    transform: translateY(-3px);
}

/* =========================================
   PREMIUM MODAL (POPUP) CSS
========================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(8, 26, 56, 0.7);
    backdrop-filter: blur(5px);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.modal-overlay.active .modal-box {
    transform: scale(1);
    opacity: 1;
}

.modal-header {
    background: #1e3a8a;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: #ffffff;
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.close-modal {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    font-size: 18px;
}

.close-modal:hover {
    background: #c17d05;
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    color: #64748b;
    font-size: 15px;
    margin: 0 0 24px 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #081a38;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    background-color: #f8f9fa;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #c17d05;
    background-color: #ffffff;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    background: #c17d05;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    padding: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover { background: #1e3a8a; }
.vizag-tour-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.explore-title {
    text-align: center;
    font-size: 36px;
    color: #1e293b; /* Dark Slate matching image */
    font-weight: 800;
    margin-bottom: 50px;
}

.vizag-slider-day2 {
    padding: 15px 10px 40px 10px !important; /* Space for hover shadow and overlapping icons */
}

/* --- THE EQUAL HEIGHT FIX --- */
/* 1. Tell the Swiper wrapper to stretch all slides to match the tallest one */
.vizag-slider-day2 .swiper-wrapper {
    align-items: stretch;
}

/* 2. Make the slide height fluid */
.vizag-slider-day2 .swiper-slide {
    height: auto;
    display: flex;
}

/* --- Theme Colors (Matched to your image) --- */
.theme-blue   { --theme-color: #1e3a8a; } /* Yarada */
.theme-green  { --theme-color: #15803d; } /* Light House */
.theme-orange { --theme-color: #d97706; } /* Sagar Durga */
.theme-purple { --theme-color: #6b21a8; } /* City Central Park */
.theme-red    { --theme-color: #b91c1c; } /* Local Shopping */

/* --- Vizag Card Design --- */
.vizag-card {
    background-color: #ffffff;
    border: 2px solid #d4af37; /* Thicker Golden border */
    border-radius: 6px;
    display: flex;
    flex-direction: column; /* Stacks children vertically */
    width: 100%;
    height: 100%; /* Forces card to fill the stretched slide */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: visible; 
}

.vizag-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Colored Header */
.vc-header {
    background-color: var(--theme-color);
    color: #ffffff;
    text-align: center;
    padding: 18px 10px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

/* Image Area */
.vc-image-box {
    position: relative;
    width: 100%;
    height: 170px; /* Fixed height for image */
    border-bottom: 1px solid #eaeaea;
    flex-shrink: 0; /* Prevents image area from squishing */
}

.vc-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlapping Circular Icon */
.vc-icon-ring {
    position: absolute;
    bottom: -30px; 
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 3px; /* White gap */
    border: 2px solid #d4af37; /* Golden outer ring */
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.vc-icon-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Text Body Area */
.vc-body {
    padding: 45px 15px 25px 15px; /* 45px clears the overlapping icon */
    text-align: center;
    color: #111827;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
    background-color: #ffffff;
    flex-grow: 1; /* THIS FIXES EQUAL HEIGHT: Pushes footer down and fills empty space */
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* --- Slider Arrows (Matched to Image) --- */
.vizag-prev-day2, .vizag-next-day2 {
    background-color: #ffffff !important;
    color: #111827 !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: 2px solid #d4af37 !important; /* Golden border on arrows */
    transition: all 0.3s;
    margin-top: -20px;
    z-index: 10;
}

.vizag-prev-day2:hover, .vizag-next-day2:hover {
    background-color: #1e3a8a !important;
    color: #ffffff !important;
    border-color: #1e3a8a !important;
}

.vizag-prev-day2:after, .vizag-next-day2:after {
    font-size: 16px !important;
    font-weight: 800 !important;
}

/* Adjust Arrow Positions to overlap cards */
.vizag-prev-day2 { left: 0px !important; }
.vizag-next-day2 { right: 0px !important; }

/* --- INQUIRE NOW Button --- */
.gallery-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-inquire-solid {
    background: #1e3a8a; /* Solid Dark Blue */
    color: #ffffff;
    padding: 15px 45px;
    border-radius: 8px; /* Slightly squared matching the image */
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-inquire-solid:hover {
    background: #c17d05; 
    box-shadow: 0 10px 20px rgba(193, 125, 5, 0.3);
    color: #ffffff;
    transform: translateY(-3px);
}

/* =========================================
   Explore Vizag City (New Magazine Style Layout)
========================================= */
.vizag-modern-section {
    padding: 80px 20px;
    background-color: #f8fafc; /* Very light slate background to make white cards pop */
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.explore-title-modern {
    text-align: center;
    font-size: 38px;
    color: #0f172a; /* Deep Slate */
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

/* Slider Layout */
.modern-slider-day2 {
    padding: 15px 5px 40px 5px !important; 
}

/* Equal Height Fix */
.modern-slider-day2 .swiper-wrapper {
    align-items: stretch;
}
.modern-slider-day2 .swiper-slide {
    height: auto;
    display: flex;
}

/* --- Theme Accent Colors --- */
.accent-blue   { border-top: 5px solid #27408b; }
.accent-green  { border-top: 5px solid #258c4c; }
.accent-orange { border-top: 5px solid #d87e27; }
.accent-purple { border-top: 5px solid #6e27ab; }
.accent-red    { border-top: 5px solid #bb2227; }

/* --- Brand New Card Design --- */
.modern-card {
    background-color: #ffffff;
    border-radius: 12px; /* Smooth rounded corners */
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden; 
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Image Area with Gradient */
.mc-img-box {
    position: relative;
    width: 100%;
    height: 220px; /* Taller, more immersive image */
    overflow: hidden;
    flex-shrink: 0;
}

.mc-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.modern-card:hover .mc-img-box img {
    transform: scale(1.1); /* Smooth image zoom on hover */
}

/* Dark gradient overlay so the title pops */
.mc-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.3) 50%, transparent 100%);
    pointer-events: none;
}

/* Title Positioned ON the Image */
.mc-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Text Body Area */
.mc-body {
    padding: 30px 25px;
    text-align: left;
    background-color: #ffffff;
    flex-grow: 1; /* Stretches to fill equal height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.mc-body p {
    color: #475569; /* Slate gray text */
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
}

/* --- Arrows --- */
.modern-prev, .modern-next {
    background-color: #ffffff !important;
    color: #0f172a !important; 
    width: 46px !important;
    height: 46px !important;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    margin-top: -23px;
    z-index: 10;
}

.modern-prev:hover, .modern-next:hover {
    background-color: #0f172a !important;
    color: #ffffff !important;
    transform: scale(1.1);
}

.modern-prev:after, .modern-next:after {
    font-size: 16px !important;
    font-weight: 900 !important;
}

.modern-prev { left: -15px !important; }
.modern-next { right: -15px !important; }

/* --- INQUIRE NOW Button --- */
.modern-btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn-modern-solid {
    background: #0f172a; /* Deep Slate Black/Blue */
    color: #ffffff;
    padding: 16px 50px;
    border-radius: 50px; /* Pill shape */
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-modern-solid:hover {
    background: #d87e27; /* Warm Orange hover */
    box-shadow: 0 10px 25px rgba(216, 126, 39, 0.4);
    transform: translateY(-3px);
}
/* =========================================
   Premium Testimonials Section (Trustindex Wrapper)
========================================= */
.premium-reviews-section {
    position: relative;
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

/* Parallax Background Image with Deep Blue Overlay */
.pr-background {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    /* You can change this image URL to a photo of the inside of your buses */
    background-image: url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates the premium parallax scrolling effect */
    z-index: 1;
}

.pr-background::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Deep Royal Blue Gradient Overlay (Matched exactly to your screenshot) */
    background: linear-gradient(135deg, rgba(39, 64, 139, 0.95) 0%, rgba(15, 23, 42, 0.9) 100%);
    z-index: 2;
}

/* Main Content Container */
.pr-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Header Styling */
.pr-header {
    margin-bottom: 50px;
}

.pr-subtitle {
    color: #f97316; /* Vibrant Orange */
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.pr-title {
    font-size: 42px;
    color: #ffffff;
    font-weight: 800;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.pr-desc {
    font-size: 15px;
    color: #cbd5e1; /* Soft slate/light gray */
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

/* Trustindex Shortcode Wrapper */
.pr-shortcode-wrapper {
    margin: 40px 0 50px 0;
    width: 100%;
    /* Adds a subtle glow behind the review widgets to make them pop */
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3)); 
}

/* View All Reviews Button */
.pr-footer {
    margin-top: 20px;
}

.btn-view-reviews {
    display: inline-block;
    background-color: #ffffff;
    color: #27408b; /* Deep Blue text */
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-view-reviews:hover {
    background-color: #d4af37; /* Changes to Gold on hover */
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pr-title {
        font-size: 32px;
    }
    .pr-desc {
        font-size: 14px;
        padding: 0 10px;
    }
    .premium-reviews-section {
        padding: 70px 15px;
    }
}