:root {
--saffron: #FF9933;
--gold: #D4AF37;
--royal-blue: #1800AC; /* Old name, new client color! */
--deep-red: #7B004C;
--glass-bg: rgba(255, 255, 255, 0.45);
--rich-bg: #fdfaf5; 
--transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
}

body {
background-color: var(--rich-bg);
background-image: 
radial-gradient(at 0% 0%, rgba(255, 153, 51, 0.1) 0px, transparent 50%),
radial-gradient(at 100% 100%, rgba(0, 86, 179, 0.1) 0px, transparent 50%);
color: #2d3436;
line-height: 1.6;
}

/* --- Navigation --- */
/* --- Desktop Base (Your existing styles, slightly refined) --- */
/* --- Base Navigation --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    padding: 15px 40px; /* Slightly reduced padding to fit all elements */
    background: white;
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.logo-img {
    max-height: 60px;
    display: block;
}

/* Flexbox logic to separate Middle and Right sections */
.nav-content {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    margin-left: 75px;
}

/* --- MIDDLE: Links --- */
.nav-main-links {
    display: flex;
    list-style: none;
    gap: 30px; /* Reduced gap so it doesn't collide with the right side */
    margin: 0 auto; /* Centers the links in the remaining space */
}

.nav-main-links li a {
    text-decoration: none;
    color: #0b0b0bdb;
    font-weight: 600;
    font-size: 1.05rem; /* Adjusted to 1.05rem for better fit on laptops */
    transition: 0.3s;
}

.nav-main-links li a:hover { color: #7B004C; }

/* --- RIGHT: Contact & Socials --- */
.nav-right-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-contact-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
    border-right: 1px solid rgba(0,0,0,0.1); /* Divider between text and icons */
    padding-right: 20px;
}

.nav-contact-details a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.nav-contact-details a i {
    color: var(--saffron, #FF9933);
    font-size: 1rem;
}

.nav-social-icons {
    display: flex;
    gap: 12px;
}

.nav-social-icons a {
    font-size: 1.1rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
     color: white; 
    background: #7B004C; 
    transform: translateY(-2px);
    text-decoration: none;

}

.nav-contact-details a:hover { color: #7B004C; }
.nav-social-icons a:hover { 
    color: white; 
    background: #7B004C; 
    transform: translateY(-2px);
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #7B004C;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* --- Dropdown Styling (Unchanged) --- */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 150%;
    left: 100%;
    transform: translateX(-50%) translateY(15px);
    min-width: 262px;
    background: rgba(253, 250, 245, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    z-index: 2000;
    gap: 5px;
    text-decoration:none;
    list-style-type: none;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; top: 100%; transform: translateX(-50%) translateY(15px); }
.dropdown::after { content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 20px; }
.dropdown-menu li { padding: 0; width: 100%; }
.dropdown-menu li a { display: flex; justify-content: space-between; align-items: center; padding: 12px 25px; color: #444 !important; font-weight: 600 !important; font-size: 0.9rem !important; transition: 0.3s ease; }
.dropdown-menu li a:hover { background: rgba(255, 153, 51, 0.08); color: #7B004C !important; padding-left: 32px; }


/* --- Tablet & Mobile Responsiveness --- */
@media (max-width: 1100px) {
    /* Hide the text in contact details on smaller laptops to save space */
    .nav-contact-details a span { display: none; }
    .nav-contact-details { padding-right: 15px; }
}

@media (max-width: 1024px) {
    nav { padding: 12px 20px; }
    .menu-toggle { display: flex; }
    
    .nav-content {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        margin-left: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(25px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: all 0.4s ease;
    }

    .nav-content.active { opacity: 1; visibility: visible; transform: translateY(0); }

    .nav-main-links {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        width: 100%;
        margin-bottom: 20px;
    }

    /* Stack Contact and Socials nicely at the bottom of the mobile menu */
    .nav-right-actions {
        flex-direction: column;
        width: 100%;
        border-top: 1px solid #eee;
        padding-top: 20px;
        gap: 20px;
    }

    .nav-contact-details {
        flex-direction: column;
        align-items: center;
        border-right: none;
        padding-right: 0;
        gap: 15px;
    }

    .nav-contact-details a span { display: inline; } /* Bring text back on mobile */

    /* Dropdown adjustments for mobile */
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.03);
        border: none;
        border-radius: 15px;
        min-width: 100%;
        margin-top: 10px;
        padding: 10px 0;
        display: none;
        list-style-type: none;
    }
    .dropdown:hover .dropdown-menu, .dropdown:active .dropdown-menu { display: flex; }
    .dropdown-menu li a { padding: 10px 20px; font-size: 0.85rem !important; justify-content: center;}
    .dropdown-menu li a:hover { padding-left: 20px; }

    /* Hamburger Animation to 'X' */
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}





/* --- Hero Section --- */
/* .hero {
height: 100vh;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 0 20px;
background: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1)),
url('../image/puridham.webp');
background-size: cover;
background-position: center;
background-attachment: fixed;
} */


/* --- Hero Carousel Styles --- */
.hero {
position: relative;
width: 100%;
height: 100vh; /* Adjust this to match your current hero height */
min-height: 600px;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}

.hero-slides {
position: absolute;
top: 7%;
left: 0;
width: 100%;
height: 100%;
z-index: 1; /* Keeps images behind the text */
}

.hero-slides .slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;

/* The Magic Crossfade Animation */
opacity: 0;
transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Added a slight scale effect so the image slowly zooms in as it fades */
.hero-slides .slide.active {
opacity: 1;
animation: slowZoom 8s linear forwards;
}

@keyframes slowZoom {
0% { transform: scale(1); }
100% { transform: scale(1.05); }
}

/* Ensure the text stays on top */
.hero-content {
position: relative;
z-index: 2;
text-align: center;
}

/* --- Navigation Dots --- */
.hero-indicators {
position: absolute;
bottom: 40px;
left: 0;
right: 0;
display: flex;
justify-content: center;
gap: 12px;
z-index: 3;
}

.hero-indicators .dot {
width: 12px;
height: 12px;
background: rgba(255, 255, 255, 0.4);
border: 1px solid rgba(255, 255, 255, 0.8);
border-radius: 50%;
cursor: pointer;
transition: all 0.4s ease;
}

.hero-indicators .dot.active {
background: var(--saffron, #FF9933);
border-color: var(--saffron, #FF9933);
transform: scale(1.3);
}

.hero-indicators .dot:hover {
background: white;
}
.hero-content h1 {
font-family: 'Playfair Display', serif;
font-size: clamp(3rem, 8vw, 5.5rem);
color: #c66ba3;;
margin-bottom: 20px;
}

.hero-content h1 span {
display: block;
font-size: 0.35em;
text-transform: uppercase;
letter-spacing: 12px;
color: white;
font-family: 'Poppins', sans-serif;
font-weight: 400;
margin-top: 10px;
}

/* --- Destinations Section --- */
.section-container {
max-width: 1300px;
/* margin: -80px auto 100px; */
margin: 30px auto 100px;
padding: 0 20px;
position: relative;
z-index: 10;
}

.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 35px;
}

.glass-card {
background: var(--glass-bg);
backdrop-filter: blur(15px);
border: 1px solid rgba(255, 255, 255, 0.8);
border-radius: 35px;
overflow: hidden;
transition: var(--transition);
box-shadow: 0 20px 40px rgba(0,0,0,0.03);
display: flex;
flex-direction: column;
}

.glass-card:hover {
transform: translateY(-15px);
background: rgba(255, 255, 255, 0.7);
box-shadow: 0 35px 70px rgba(0,0,0,0.1);
}

.card-img {
height: 280px;
width: 100%;
background-size: cover;
background-position: center;
transition: 0.6s ease;
}

.glass-card:hover .card-img {
transform: scale(1.1);
}

.card-body {
padding: 35px;
text-align: left;
}

.card-body h3 {
font-family: 'Playfair Display', serif;
font-size: 1.6rem;
margin-bottom: 12px;
color: var(--deep-red);
}

.card-body p {
font-size: 0.95rem;
color: #555;
margin-bottom: 25px;
}

/* --- Buttons --- */
.btn-luxury {
display: inline-block;
padding: 14px 35px;
background: #1800AC;
color: #fff;
text-decoration: none;
border-radius: 50px;
font-weight: 600;
font-size: 0.85rem;
letter-spacing: 1px;
transition: 0.3s;
border: none;
cursor: pointer;
}

.btn-luxury:hover {
background: #7B004C;
box-shadow: 0 10px 20px rgba(255, 153, 51, 0.3);
transform: scale(1.05);
}

/* --- Animation Helpers --- */
@keyframes floating {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}

.float-element {
animation: floating 4s ease-in-out infinite;
}


/* --- Milestone Section Styling --- */
/* --- 1. The Section (With Parallax Background Image) --- */
.milestone-section {
position: relative;
padding: 100px 20px;
/* Added a beautiful temple image to give the glass something to blur */
background: url('https://images.unsplash.com/photo-1610420749080-60627bd39535?auto=format&fit=crop&w=1920&q=80') center/cover fixed;
}

/* A slight color tint over the image so it doesn't distract from the numbers */
.milestone-section::before {
content: '';
position: absolute;
inset: 0;
background: rgba(253, 250, 245, 0.4); /* Creamy white tint */
}

/* --- 2. The True Glass Box --- */
.milestone-glass {
position: relative; /* Keeps it above the background tint */
max-width: 1200px;
margin: 0 auto;

/* The Glass Formula */
background: rgba(255, 255, 255, 0.25); /* High transparency so the image shows through */
backdrop-filter: blur(15px) saturate(150%);
-webkit-backdrop-filter: blur(15px) saturate(150%);

/* 3D Glass Edges (Light hitting top-left) */
border-top: 1.5px solid rgba(255, 255, 255, 0.9);
border-left: 1.5px solid rgba(255, 255, 255, 0.9);
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
border-right: 1px solid rgba(255, 255, 255, 0.2);

border-radius: 40px;
padding: 60px 40px;
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15); /* Stronger shadow to lift it off the image */
}


/* Clean animated border only */
.milestone-glass {
position: relative;
border-radius: 30px;
padding: 40px;

/* Transparent border needed */
border: 3px solid transparent;

/* Dual background trick */
background:
linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)) padding-box,
conic-gradient(
from 0deg,
#FF9933,
#7B004C,
#1800AC,
#FF9933
) border-box;

backdrop-filter: blur(20px);

animation: rotateBorder 6s linear infinite;
}

/* Rotate only the border gradient */
@keyframes rotateBorder {
0% {
background:
linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)) padding-box,
conic-gradient(
from 0deg,
#FF9933,
#7B004C,
#1800AC,
#FF9933
) border-box;
}

100% {
background:
linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)) padding-box,
conic-gradient(
from 360deg,
#FF9933,
#7B004C,
#1800AC,
#FF9933
) border-box;
}
}

/* --- 3. The Content Inside --- */
.stat-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
text-align: center;
}

.stat-card {
display: flex;
flex-direction: column;
align-items: center;
transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stat-card:hover {
transform: translateY(-12px);
}

.stat-icon {
width: 75px;
height: 75px;
background: rgba(255, 255, 255, 0.8);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 2rem;
color: #1800AC; /* Client's Blue */
margin-bottom: 20px;
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
border: 2px solid transparent;
transition: 0.4s ease;
}

.stat-card:hover .stat-icon {
background: var(--saffron, #FF9933);
color: #fff;
border-color: #fff;
box-shadow: 0 15px 30px rgba(255, 153, 51, 0.4);
transform: scale(1.1);
}

.stat-card h3 {
font-family: 'Playfair Display', serif;
font-size: 3.2rem;
color: var(--deep-red, #7B004C);
margin-bottom: 5px;
line-height: 1;
text-shadow: 0 2px 10px rgba(255,255,255,0.8); /* White glow to make text readable on glass */
}

.stat-card h3::after {
content: '+';
color: var(--saffron, #FF9933);
font-size: 2.5rem;
vertical-align: top;
margin-left: 2px;
}

.stat-card p {
font-family: 'Poppins', sans-serif;
font-size: 0.95rem;
font-weight: 700;
color: #222; /* Darker text for readability */
text-transform: uppercase;
letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 768px) {
.stat-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
.stat-card h3 { font-size: 2.5rem; }
.milestone-glass { padding: 40px 20px; }
}
@media (max-width: 480px) {
.stat-grid { grid-template-columns: 1fr; }
}




/* =============== ABOUT PAGE =============== */

.about-hero {
/* margin-top:40px; */
padding: 215px 20px 60px;
text-align: center;
background: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1)),
url('../image/about.png');
background-size: cover;
background-position: center;
background-attachment: fixed;
}

.about-hero h1 {
font-family: 'Playfair Display', serif;
font-size: clamp(2.5rem, 5vw, 4rem);
color: var(--deep-red);
}

.about-hero span {
color: #1800AC;
text-transform: uppercase;
letter-spacing: 5px;
font-size: 1.3rem;
display: block;
margin-bottom: 10px;
}

.container {
max-width: 1100px;
margin: 0 auto;
padding: 0 20px 100px;
}

/* Glass Content Section */
.glass-section {
background: var(--glass);
backdrop-filter: blur(15px);
border: 1px solid #FF9933;
border-radius: 40px;
padding: 50px;
margin-bottom: 40px;
box-shadow: 0 20px 50px rgba(0,0,0,0.02);
}



.highlight-box {
border-left: 5px solid var(--saffron);
padding-left: 25px;
margin: 30px 0;
font-style: italic;
font-size: 1.1rem;
color: #555;
}

.award-badge {
display: inline-block;
/* background: linear-gradient(135deg, var(--deep-red), #b30000); */
background:#1800AC;
color: white;
padding: 15px 30px;
border-radius: 15px;
margin: 20px 0;
box-shadow: 0 10px 20px rgba(139, 0, 0, 0.2);
}

.profile-grid {
/* display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
gap: 30px;
margin-top: 40px;
}

.profile-card {
background: rgba(255,255,255,0.4);
padding: 30px;
border-radius: 25px;
border: 1px solid rgba(255,255,255,0.5);
}

.profile-card h3 {
color: var(--deep-red);
margin-bottom: 5px;
}

.profile-card .tag {
color: var(--saffron);
font-size: 0.8rem;
font-weight: 600;
text-transform: uppercase;
}

.accreditations {
text-align: center;
margin-top: 50px;
opacity: 0.8;
}

.accreditations span {
margin: 0 15px;
font-weight: 600;
font-size: 0.8rem;
color: #1800AC;
}



.special-interest {
padding: 20px 0;
background: #fff;
}
.special-interest .container{
margin-top: 60px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.section-header { text-align: center; margin-bottom: 70px; }
.subtitle { color: #FF9933; letter-spacing: 5px; font-weight: 600; text-transform: uppercase; font-size: 0.8rem; }
.title { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: #7B004C; margin: 10px 0; }
.title span { color: #333; font-weight: 400; }
.divider { width: 50px; height: 3px; background: #FF9933; margin: 20px auto; }
.header-desc { color: #777; max-width: 600px; margin: 0 auto; font-size: 1rem; line-height: 1.6; }

/* Grid Layout */
.interest-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.interest-card {
perspective: 1000px;
}

.card-inner {
background: #fdfaf5;
border-radius: 30px;
overflow: hidden;
border: 1px solid #eee;
transition: 0.4s ease-in-out;
height: 100%;
display: flex;
flex-direction: column;
}

.interest-card:hover .card-inner {
transform: translateY(-10px);
box-shadow: 0 25px 50px rgba(139, 0, 0, 0.08);
border-color: #FF9933;
}

.image-box { height: 200px; overflow: hidden; }
.image-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.interest-card:hover img { transform: scale(1.1); }

.content-box { padding: 35px; position: relative; flex-grow: 1; display: flex; flex-direction: column; }
.content-box i { font-size: 2rem; color: #1800AC; margin-bottom: 20px; }
.content-box h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #7B004C; margin-bottom: 15px; }
.content-box p { font-size: 0.9rem; color: #666; line-height: 1.7; margin-bottom: 25px; }

.tag {
margin-top: auto;
font-size: 0.7rem;
background: #fff;
color: #1800AC;
padding: 6px 15px;
border-radius: 50px;
font-weight: 700;
text-transform: uppercase;
border: 1px solid #eee;
display: inline-block;
width: fit-content;
}

/* CTA Section */
.special-cta {
margin-top: 80px;
background: linear-gradient(135deg, #7B004C, #4d0000);
padding: 60px;
border-radius: 40px;
text-align: center;
color: white;
}

.special-cta h3 { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin-bottom: 10px; }
.special-cta p { opacity: 0.8; margin-bottom: 30px; }

.btn-gold {
display: inline-block;
background: #FF9933;
color: white;
padding: 18px 45px;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
transition: 0.3s;
}

.btn-gold:hover { background: #fff; color: #7B004C; transform: scale(1.05); }

@media (max-width: 768px) {
.title { font-size: 2.5rem; }
.special-cta { padding: 40px 20px; }
}




.luxury-footer {
position: relative;
/* Replace this URL with your best Jagannath Temple image if you have a local one */
background: linear-gradient(to bottom, rgba(123, 0, 76, 1), rgba(0, 0, 0, 0.95)), 
url('https://images.unsplash.com/photo-1621360341398-333d726d97a4?auto=format&fit=crop&w=1920&q=80');
background-size: cover;
background-position: center;
background-attachment: fixed; /* Creates the Parallax effect */
color: #fff;
padding: 120px 0 20px; /* Extra top padding for the floating box */
font-family: 'Poppins', sans-serif;
 /* Space for the overlapping box */
}

/* Floating Newsletter Box */
.newsletter-wrapper {
position: absolute;
top: -70px;
left: 0;
right: 0;
max-width: 1000px;
margin: 0 auto;
padding: 0 20px;
z-index: 10;
}

.newsletter-glass {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 30px;
padding: 40px 50px;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.nl-text h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--saffron, #FF9933); margin-bottom: 5px; }
.nl-text p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0; }

.nl-form { display: flex; gap: 10px; width: 450px; }
.nl-form input { 
flex: 1; padding: 15px 25px; border-radius: 50px; border: none; 
background: rgba(255,255,255,0.9); outline: none; font-family: 'Poppins', sans-serif;
}
.btn-nl { 
background: var(--saffron, #FF9933); color: white; border: none; 
padding: 0 30px; border-radius: 50px; font-weight: 600; cursor: pointer; transition: 0.3s;
}
.btn-nl:hover { background: var(--deep-red, #8B0000); box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3); }

/* Main Footer Layout */
.footer-container {
max-width: 1200px; margin: 0 auto;
display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; padding: 0 20px;
}

.footer-column h3 {
font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 25px; color: #fff; position: relative;
}
.footer-column h3::after {
content: ''; position: absolute; bottom: -10px; left: 0; width: 40px; height: 3px; background: var(--saffron, #FF9933);
}

.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 5px; color: #fff;}
.footer-logo span { color: var(--saffron, #FF9933); }
.tagline { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; color: var(--saffron, #FF9933); }
.description { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 25px; }

/* Social Icons */
.social-links { display: flex; gap: 15px; }
.social-icon {
width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.2); color: white; text-decoration: none; transition: 0.3s;
}
.social-icon:hover { background: var(--saffron, #FF9933); border-color: var(--saffron, #FF9933); transform: translateY(-5px); }

/* Links */
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 15px; }
.footer-links li a {
text-decoration: none; color: rgba(255,255,255,0.7); font-size: 0.95rem; transition: 0.3s; display: flex; align-items: center; gap: 10px;
}
.footer-links li a i { font-size: 0.8rem; color: var(--saffron, #FF9933); transition: 0.3s; }
.footer-links li a:hover { color: #fff; transform: translateX(5px); }
.footer-links li a:hover i { transform: translateX(3px); }

/* Contact List */
.contact-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.contact-item i { color: var(--saffron, #FF9933); font-size: 1.2rem; margin-top: 3px; }
.contact-item p { margin: 0; font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.contact-item a { color: rgba(255,255,255,0.7); text-decoration: none; transition: 0.3s; }
.contact-item a:hover { color: var(--saffron, #FF9933); }

/* Footer Bottom */
.footer-bottom {
margin-top: 15px; padding: 25px 20px; border-top: 1px solid rgba(255,255,255,0.1);
text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.5); background: rgba(0,0,0,0.5);
}
.footer-bottom strong { color: var(--saffron, #FF9933); font-weight: 600; }

/* Responsive Design */
@media (max-width: 1024px) {
.newsletter-glass { flex-direction: column; text-align: center; gap: 20px; }
.nl-form { width: 100%; }
.footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
.footer-container { grid-template-columns: 1fr; text-align: center; }
.footer-column h3::after { left: 50%; transform: translateX(-50%); }
.contact-item { flex-direction: column; align-items: center; text-align: center; gap: 5px; }
.footer-links li a { justify-content: center; }
.social-links { justify-content: center; }
}

.explore-odisha {
padding: 100px 0;
background: #FBF0E5;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.section-header {
text-align: center;
margin-bottom: 60px;
}

.subtitle {
color: #FF9933;
text-transform: uppercase;
letter-spacing: 4px;
font-weight: 600;
font-size: 0.9rem;
}

.title {
font-family: 'Playfair Display', serif;
font-size: 3rem;
color: #8B0000;
margin-top: 10px;
}

.title span { color: #333; font-weight: 400; }

.divider {
width: 60px;
height: 3px;
background: #FF9933;
margin: 20px auto;
}

/* Featured Tour Styling */
.featured-tour {
display: grid;
grid-template-columns: 1.2fr 0.8fr;
background: #fdfaf5;
border-radius: 40px;
overflow: hidden;
margin-bottom: 50px;
box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.tour-image { position: relative; height: 530px; }
.tour-image img { width: 100%; height: 100%; object-fit: cover; }

.tour-badge {
position: absolute; top: 30px; left: 30px;
background: #1800AC; color: #fff;
padding: 8px 20px; border-radius: 50px; font-weight: 600; font-size: 0.8rem;
}

.tour-details { padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.location { color: #FF9933; font-weight: 600; font-size: 0.8rem; margin-bottom: 10px; }
.tour-details h3 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: #333; margin-bottom: 20px; }
.tour-details p { color: #666; margin-bottom: 25px; line-height: 1.8; }

.tour-highlights { list-style: none; margin-bottom: 30px; }
.tour-highlights li { margin-bottom: 10px; font-size: 0.9rem; color: #444; }

.btn-explore {
display: inline-block; width: fit-content;
background: #1800AC; color: #fff;
padding: 15px 40px; border-radius: 50px;
text-decoration: none; font-weight: 600; transition: 0.3s;
}

.btn-explore:hover { background: #7B004C; transform: translateY(-3px); }

/* Tour Grid Styling */
.tour-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.tour-card {
background: #fff;
border-radius: 30px;
overflow: hidden;
border: 1px solid #eee;
transition: 0.4s;
}

.tour-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

.card-img-wrapper { position: relative; height: 220px; overflow: hidden; }
.card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.tour-card:hover .card-img-wrapper img { transform: scale(1.1); }

.card-tag {
position: absolute; bottom: 25px; left: 15px;
background: rgba(255, 255, 255, 0.9); padding: 5px 15px;
border-radius: 20px; font-size: 0.7rem; font-weight: 700; color: #1800AC;
}

.card-content { padding: 30px; }
.card-content h4 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 10px; color: #8B0000;; }
.card-content p { font-size: 0.9rem; color: #777; line-height: 1.6; margin-bottom: 20px; }

.card-link { text-decoration: none; color: #1800AC; font-weight: 700; font-size: 0.85rem; }

@media (max-width: 992px) {
.featured-tour { grid-template-columns: 1fr; }
.tour-image { height: 300px; }
.tour-details { padding: 40px; }
}

.testimonials {
padding: 50px 0;
background-color: #fdfaf5;
background-image: radial-gradient(circle at 90% 10%, rgba(255, 153, 51, 0.05) 0%, transparent 40%);
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.container-about{
margin-top:60px;
}

.section-header {
text-align: center;
margin-bottom: 60px;
}

.subtitle { color: #FF9933; letter-spacing: 4px; font-weight: 600; text-transform: uppercase; font-size: 0.8rem; }
.title { font-family: 'Playfair Display', serif; font-size: 3rem; color: #7B004C;; }
.title span { color: #333; font-weight: 400; }

.divider { width: 50px; height: 3px; background: #FF9933; margin: 15px auto; }

/* Testimonial Cards */
.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
}

.testimonial-card {
background: rgba(255, 255, 255, 0.6);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.8);
padding: 40px;
border-radius: 30px;
position: relative;
transition: 0.4s;
box-shadow: 0 15px 35px rgba(0,0,0,0.03);
}

.testimonial-card:hover {
transform: translateY(-10px);
background: #fff;
box-shadow: 0 30px 60px rgba(0,0,0,0.08);
border-color: #FF9933;
}

.quote-icon {
position: absolute;
top: 20px;
right: 40px;
font-size: 5rem;
color: rgba(255, 153, 51, 0.1);
font-family: serif;
line-height: 1;
}

.review-text {
font-size: 0.95rem;
line-height: 1.8;
color: #555;
margin-bottom: 30px;
position: relative;
z-index: 2;
}

.user-info {
display: flex;
align-items: center;
gap: 15px;
border-top: 1px solid #eee;
padding-top: 20px;
}

.user-img {
width: 60px;
height: 60px;
border-radius: 50%;
object-fit: cover;
border: 2px solid #FF9933;
}

.user-details h4 {
font-family: 'Playfair Display', serif;
font-size: 1.1rem;
color: #8B0000;
}

.user-details span {
font-size: 0.8rem;
color: #999;
}

.stars {
margin-top: 15px;
color: #1800AC;
font-size: 0.8rem;
letter-spacing: 2px;
}

@media (max-width: 768px) {
    .title { font-size: 2.2rem; }
    
    .testimonial-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 10px 5px 25px 5px;
        scrollbar-width: none; /* Firefox */
    }
    
    .testimonial-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .testimonial-card {
        padding: 30px;
        flex: 0 0 85vw;
        max-width: 340px;
        scroll-snap-align: center;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    }
}


/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: #8B0000;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s;
}
.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid #FF9933;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.18s cubic-bezier(0.165, 0.84, 0.44, 1);
}




@media (max-width: 768px ){
    .cursor-dot{
        display:none;
    }
    .cursor-ring{
        display:none;
    }
}




/* ===================  MODAL POP UP ======================= */

/* --- Trip Modal Overlay --- */
.trip-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    padding: 16px;                /* ✅ prevents modal touching edges on mobile */
    box-sizing: border-box;

    /* Animation hidden state */
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Active State */
.trip-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

/* --- Glass Modal Card --- */
.trip-modal-glass {
    background: rgba(253, 250, 245, 0.95);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;             /* ✅ never overflows screen height */
    overflow-y: auto;             /* ✅ scroll inside if content is tall */
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    position: relative;
    box-sizing: border-box;       /* ✅ padding doesn't break width */

    /* Animation pop effect */
    transform: scale(0.8) translateY(30px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.trip-modal-overlay.active .trip-modal-glass {
    transform: scale(1) translateY(0);
}

/* Scrollbar styling inside modal */
.trip-modal-glass::-webkit-scrollbar {
    width: 4px;
}
.trip-modal-glass::-webkit-scrollbar-track {
    background: transparent;
}
.trip-modal-glass::-webkit-scrollbar-thumb {
    background: rgba(139, 0, 0, 0.3);
    border-radius: 10px;
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
    color: var(--deep-red, #8B0000);
    cursor: pointer;
    line-height: 1;
    transition: 0.3s;
}
.close-modal:hover {
    color: var(--saffron, #FF9933);
    transform: rotate(90deg);
}

/* Modal Header */
.modal-header {
    text-align: center;
    margin-bottom: 30px;
}
.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--deep-red, #8B0000);
}
.modal-header h2 span {
    color: var(--saffron, #FF9933);
}
.modal-header p {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* Modal Form */
.modal-form .form-row {
    display: flex;
    gap: 15px;
}
.modal-form .input-group {
    margin-bottom: 20px;
    width: 100%;
}
.modal-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    width: 100%;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: 0.3s;
    box-sizing: border-box;       /* ✅ prevents input overflow on mobile */
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    border-color: var(--saffron, #FF9933);
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.1);
}

.btn-submit-trip {
    width: 100%;
    background: var(--deep-red, #8B0000);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
    box-sizing: border-box;
}

.btn-submit-trip:hover {
    background: var(--saffron, #FF9933);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 153, 51, 0.3);
}

/* ════════════════════════════
   TABLET — 768px and below
════════════════════════════ */
@media (max-width: 768px) {
    .trip-modal-overlay {
        padding: 12px;
        align-items: flex-end;    /* ✅ slides up from bottom on mobile */
    }

    .trip-modal-glass {
        width: 100%;
        max-width: 100%;
        max-height: 92vh;
        padding: 30px 20px;
        border-radius: 24px 24px 0 0;  /* ✅ bottom sheet style on mobile */
        transform: scale(1) translateY(100%); /* slides up from bottom */
    }

    .trip-modal-overlay.active .trip-modal-glass {
        transform: scale(1) translateY(0);
    }

    /* Stack Name + Phone fields vertically */
    .modal-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .modal-header {
        margin-bottom: 20px;
        padding-right: 30px;      /* ✅ space for close button */
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-header p {
        font-size: 0.85rem;
    }

    .close-modal {
        font-size: 2rem;
        top: 15px;
        right: 18px;
    }

    .modal-form input,
    .modal-form select,
    .modal-form textarea {
        font-size: 16px;          /* ✅ prevents iOS auto-zoom on input focus */
        padding: 11px 16px;
    }

    .btn-submit-trip {
        font-size: 0.95rem;
        padding: 14px;
    }
}

/* ════════════════════════════
   SMALL PHONES — 400px and below
════════════════════════════ */
@media (max-width: 400px) {
    .trip-modal-glass {
        padding: 24px 16px;
        max-height: 95vh;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }

    .modal-form .input-group {
        margin-bottom: 14px;
    }

    .btn-submit-trip {
        font-size: 0.9rem;
        padding: 13px;
    }
}
/* Clean Special CTA with Continuous Moving Wave Line */
.special-cta {
position: relative;
max-width: 1100px;
margin: 100px auto;
padding: 70px 40px 67px;   /* extra bottom padding for wave */
border-radius: 40px;
overflow: hidden;
text-align: center;
background: linear-gradient(135deg, var(--royal-blue), var(--deep-red));
box-shadow: 0 25px 70px rgba(24, 0, 172, 0.3);
color: white;
}

.moving-wave {
position: absolute;
bottom: 0;
left: 0;
width: 300%;                /* wide enough for seamless loop */
height: 90px;
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23FF9933' fill-opacity='0.25' d='M0,80 Q180,40 360,70 Q540,110 720,65 Q900,30 1080,75 Q1260,105 1440,60 L1440,120 L0,120 Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
animation: waveFlow 22s linear infinite;
pointer-events: none;
}

@keyframes waveFlow {
0% {
background-position-x: 0;
}
100% {
background-position-x: -1440px;   /* matches SVG width for seamless loop */
}
}

.cta-content {
position: relative;
z-index: 2;
}

.special-cta h3 {
font-family: 'Playfair Display', serif;
font-size: 2.65rem;
margin-bottom: 16px;
font-weight: 900;
}

.special-cta p {
font-size: 1.22rem;
max-width: 700px;
margin: 0 auto 38px;
opacity: 0.94;
}

.btn-gold {
display: inline-flex;
align-items: center;
gap: 12px;
background: white;;
color: var(--deep-red);
padding: 18px 48px;
border-radius: 50px;
font-size: 1.18rem;
font-weight: 700;
text-decoration: none;
box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
transition: all 0.4s ease;
}

.btn-gold:hover {
transform: translateY(-6px);
box-shadow: 0 22px 45px rgba(255, 153, 51, 0.5);
background: white;
}

/* Responsive */
@media (max-width: 768px) {
.special-cta {
margin: 70px 20px;
padding: 65px 25px 95px;
}
.special-cta h3 {
font-size: 2.2rem;
}
.btn-gold {
padding: 16px 38px;
font-size: 1.08rem;
}
}

/* --- Tour Carousel Wrapper --- */
.tour-carousel-wrapper {
margin-top: 50px;
position: relative;
width: 100%;
}

/* The Scrolling Container */
.tour-carousel {
display: flex;
gap: 25px;
overflow-x: auto;
padding-bottom: 30px; /* Space for the scrollbar/shadows */

/* CSS Scroll Snap for modern smooth snapping */
scroll-snap-type: x mandatory;
scroll-behavior: smooth;

/* Hide scrollbar for a cleaner look (Firefox) */
scrollbar-width: none; 
}

/* Hide scrollbar for Chrome, Safari and Opera */
.tour-carousel::-webkit-scrollbar {
display: none;
}

/* Individual Card Styling */
.tour-card {
/* Forces cards to be a specific width and not shrink */
flex: 0 0 320px; 
scroll-snap-align: start; /* Snaps card to the left edge */

background: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.8);
border-radius: 25px;
overflow: hidden;
box-shadow: 0 15px 35px rgba(0,0,0,0.05);
display: flex;
flex-direction: column;
transition: transform 0.3s ease;
}

.tour-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(139, 0, 0, 0.1);
border-color: var(--saffron, #FF9933);
}

.card-img-wrapper {
position: relative;
height: 200px;
overflow: hidden;
}

.card-img-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.tour-card:hover .card-img-wrapper img {
transform: scale(1.1);
}

.card-tag {

background: var(--deep-red, #8B0000);
color: white;
padding: 5px 15px;
border-radius: 20px;
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 1px;
text-transform: uppercase;
}

.card-content {
padding: 25px;
display: flex;
flex-direction: column;
flex-grow: 1;
}

.card-content h4 {
font-family: 'Playfair Display', serif;
font-size: 1.3rem;
color: var(--deep-red, #8B0000);
margin-bottom: 10px;
}

.card-content p {
font-size: 0.9rem;
color: #555;
line-height: 1.6;
margin-bottom: 10px;
flex-grow: 1;
}

.card-link {
text-decoration: none;
font-weight: 600;
font-size: 0.75rem;
transition: 0.3s;
background: #1800AC;
color : white !important;
padding: 5px 15px;
border-radius: 15px;
letter-spacing:1px;
display: inline-block;
white-space: nowrap;
}

.card-link:hover {
transform: translateX(5px);
}

.card-footer-row .card-tag {
    position: static;
    display: inline-block;
    width: fit-content;
    margin: 0;
}

/* Subtle swipe hint for users */
.carousel-hint {
text-align: center;
font-size: 0.85rem;
color: #888;
margin-top: -10px;
animation: pulse 2s infinite;
}

@keyframes pulse {
0% { opacity: 0.5; }
50% { opacity: 1; }
100% { opacity: 0.5; }
}

@media (max-width: 768px) {
.tour-card {
flex: 0 0 85vw; /* Takes up 85% of screen width on mobile so you can see the next card peeking in */
}
}


/* --- Pure CSS Native Carousel --- */
.native-carousel-wrapper {
position: relative;
width: 100%;
margin-top: 20px;
}

.native-carousel {
display: flex;
gap: 25px;
overflow-x: auto;
padding-bottom: 30px; /* Room for the custom scrollbar */

/* The Magic Properties */
scroll-snap-type: x mandatory;
scroll-behavior: smooth;
-webkit-overflow-scrolling: touch; /* Smooth momentum scrolling on iOS */
}

/* Customizing the Horizontal Scrollbar for a Premium Look */
.native-carousel::-webkit-scrollbar {
height: 8px;
}
.native-carousel::-webkit-scrollbar-track {
background: rgba(0,0,0,0.05);
border-radius: 10px;
}
.native-carousel::-webkit-scrollbar-thumb {
background: var(--saffron, #FF9933);
border-radius: 10px;
}
.native-carousel::-webkit-scrollbar-thumb:hover {
background: var(--deep-red, #8B0000);
}

/* --- Individual Slides --- */
.native-slide {
/* Desktop: Cards are 300px wide. 
Mobile: Cards take up 85% of the screen so the next card peeks in.
*/
flex: 0 0 300px; 
scroll-snap-align: start; /* Locks the card to the left edge when swiping */
}

@media (max-width: 768px) {
.native-slide {
flex: 0 0 85vw; 
scroll-snap-align: center; /* On mobile, locks the card to the center */
}
}

/* --- The Glassmorphism Card (Same beautiful styling) --- */
.theme-card-inner {
position: relative;
border-radius: 30px;
overflow: hidden;
height: 420px;
box-shadow: 0 15px 35px rgba(0,0,0,0.08);
transition: transform 0.4s ease;
}

.theme-card-inner img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.8s ease;
}

.theme-card-inner:hover img {
transform: scale(1.1);
}

.theme-card-inner:hover {
transform: translateY(-10px);
box-shadow: 0 25px 50px rgba(139, 0, 0, 0.15);
}

/* Glassmorphism Bottom Overlay */
.theme-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
padding: 40px 25px 25px;
display: flex;
flex-direction: column;
justify-content: flex-end;
}

.theme-overlay h3 {
color: #fff;
font-family: 'Playfair Display', serif;
font-size: 20 px;
margin-bottom: 5px;
text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.theme-overlay p {
color: rgba(255,255,255,0.8);
font-size: 0.9rem;
margin-bottom: 20px;
}

.btn-theme {
align-self: flex-start;
color: var(--saffron, #FF9933);
text-decoration: none;
font-weight: 600;
font-size: 0.95rem;
transition: 0.3s;
display: flex;
align-items: center;
gap: 8px;
}

.theme-card-inner:hover .btn-theme {
color: #fff;
}
.btn-theme i { transition: 0.3s; }
.theme-card-inner:hover .btn-theme i { transform: translateX(5px); }

/* Hint Text */
.scroll-hint {
text-align: center;
font-size: 0.85rem;
color: #888;
margin-top: 10px;
animation: pulseHint 2s infinite;
}

@keyframes pulseHint {
0% { opacity: 0.5; }
50% { opacity: 1; }
100% { opacity: 0.5; }
}

/* --- Special Interest Arrow Carousel --- */
.interest-carousel-wrapper {
position: relative;
max-width: 1200px;
margin: 40px auto 0;
padding: 0 15px;
}

/* The Native Scroll Track */
.interest-track {
display: flex;
gap: 30px;
overflow-x: auto;
scroll-snap-type: x mandatory;
scroll-behavior: smooth;
padding: 20px 5px 40px; /* Padding for hover drop shadows */

/* Hide scrollbars for a clean app-like feel */
scrollbar-width: none;
-webkit-overflow-scrolling: touch;
}

.interest-track::-webkit-scrollbar {
display: none;
}

/* Individual Slides */
.interest-slide {
flex: 0 0 360px; /* Fixed width for cards */
scroll-snap-align: start;
perspective: 1000px;
}

@media (max-width: 768px) {
.interest-slide {
flex: 0 0 85vw; /* Fills most of mobile screen */
scroll-snap-align: center;
}
}

/* Card Styling (Kept your original beautiful glass styling) */
.interest-slide .card-inner {
background: #fdfaf5;
border-radius: 30px;
overflow: hidden;
border: 1px solid #eee;
transition: 0.4s ease-in-out;
height: 100%;
display: flex;
flex-direction: column;
box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.interest-slide:hover .card-inner {
transform: translateY(-10px);
box-shadow: 0 25px 50px rgba(139, 0, 0, 0.08);
border-color: var(--saffron, #FF9933);
}

.image-box { height: 220px; overflow: hidden; }
.image-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.interest-slide:hover img { transform: scale(1.1); }

.content-box { padding: 35px; position: relative; flex-grow: 1; display: flex; flex-direction: column; background: rgba(255,255,255,0.8); }
.content-box i { font-size: 2rem; color: #1800AC; margin-bottom: 20px; }
.content-box h3 { font-family: 'Playfair Display', serif; font-size: 20 px; color: var(--deep-red, #8B0000); margin-bottom: 15px; letter-spacing:1px;}
.content-box p { font-size: 0.9rem; color: #555; line-height: 1.7; margin-bottom: 25px; }

.content-box .tag {
font-size: 0.7rem;
background: #7B004C;;
color: white; /* Client's Blue */
padding: 6px 15px;
border-radius: 50px;
font-weight: 700;
text-transform: uppercase;
border: 1px solid #eee;
display: inline-block;
width: fit-content;
margin: 0;
}

/* --- Modern Floating Arrows --- */
.carousel-arrow {
position: absolute;
top: 45%;
transform: translateY(-50%);
width: 55px;
height: 55px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.9);
border: 1px solid #ddd;
color: var(--royal-blue, #1800AC);
font-size: 1.5rem;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
z-index: 10;
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.carousel-arrow:hover {
background: var(--saffron, #FF9933);
color: white;
border-color: var(--saffron, #FF9933);
transform: translateY(-50%) scale(1.1);
}

.left-arrow { left: -25px; }
.right-arrow { right: -25px; }

/* Hide arrows on mobile (users prefer swiping on touch screens) */
@media (max-width: 992px) {
.carousel-arrow { display: none; }
}



/* ====================  ABOUT US PAGE ===================== */

/* Inherits root variables from style3.css, adding specific About Us spacing */
.about-hero {
padding: 350px 20px 135px;
text-align: center;

/* background: linear-gradient(rgba(253, 250, 245, 0.8), rgba(253, 250, 245, 0.9)), url('image/logo-2.png') center/cover; */
}

.about-hero h1 {
font-family: 'Playfair Display', serif;
font-size: clamp(2.5rem, 5vw, 4rem);
color: var(--deep-red, #530844);
}

.about-hero span {
color: #1800AC;
text-transform: uppercase;
letter-spacing: 5px;
font-size: 1.3 rem;
display: block;
margin-bottom: 10px;
font-weight: 600;
}

.container-about {
max-width: 1100px;
margin: 0 auto;
padding: 0 20px 100px;
margin-top:60px;
}

.glass-section {
background: rgba(255, 255, 255, 0.6);
backdrop-filter: blur(15px);
border: 1px solid rgba(255, 255, 255, 0.8);
border-radius: 40px;
padding: 50px;
margin-bottom: 40px;
box-shadow: 0 20px 50px rgba(0,0,0,0.02);
line-height: 1.8;
color: #444;
}

.highlight-box {
border-left: 4px solid var(--saffron, #FF9933);
background: rgba(255, 153, 51, 0.05);
padding: 20px 25px;
margin: 30px 0;
font-style: italic;
font-size: 1.05rem;
color: var(--deep-red, #8B0000);
border-radius: 0 15px 15px 0;
}

.award-badge {
display: inline-block;
background: #1800AC;
color: white;
padding: 15px 30px;
border-radius: 50px;
margin: 20px 0;
font-size: 0.9rem;
font-weight: 600;
box-shadow: 0 10px 20px rgba(139, 0, 0, 0.2);
}

.profile-grid {
/* display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
gap: 30px;
margin-top: 30px;
}

.profile-card {
background: rgba(255,255,255,0.8);
padding: 35px;
border-radius: 25px;
border: 1px solid rgba(255,255,255,0.9);
box-shadow: 0 10px 30px rgba(0,0,0,0.03);
transition: 0.3s;
}

.profile-card:hover { transform: translateY(-5px); border-color: var(--saffron, #FF9933); }

.profile-card h3 { color: var(--deep-red, #8B0000); margin: 10px 0; font-family: 'Playfair Display', serif; font-size: 1.5rem; }
.profile-card .tag { color: var(--saffron, #FF9933); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.accreditations { text-align: center; margin-top: 50px; opacity: 0.9; }
.accreditations span { margin: 0 15px; font-weight: 700; font-size: 0.85rem; color: #1800AC; display: inline-block; padding: 10px; }

/* Emphasized Text */
.text-lead { font-size: 1.1rem; color: #333; margin-bottom: 20px; }
/* Unique Accreditations Section */
.accreditations-section {
max-width: 1200px;
margin: 80px auto;
padding: 0 20px;
}

.accreditation-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
justify-content: center;
}

.accreditation-card {
background: white;
padding: 35px 25px;
border-radius: 30px;
text-align: center;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
transition: all 0.4s ease;
border: 2px solid transparent;
position: relative;
overflow: hidden;
}

.accreditation-card:hover {
transform: translateY(-12px);
box-shadow: 0 25px 60px rgba(255, 153, 51, 0.15);
border-color: var(--saffron);
}

.accreditation-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, var(--saffron), var(--deep-red));
opacity: 0;
transition: opacity 0.3s;
}

.accreditation-card:hover::before {
opacity: 1;
}

.icon-circle {
width: 85px;
height: 85px;
background: linear-gradient(135deg, #fff4e6, #ffe8cc);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
font-size: 2.2rem;
color: var(--saffron);
box-shadow: 0 10px 25px rgba(255, 153, 51, 0.25);
transition: all 0.4s ease;
}

.accreditation-card:hover .icon-circle {
transform: scale(1.08) rotate(8deg);
background:#1800AC;;
color: white;
}

.accreditation-text h4 {
font-family: 'Playfair Display', serif;
font-size: 1.35rem;
color: var(--deep-red);
margin-bottom: 6px;
font-weight: 700;
}

.accreditation-text p {
color: #666;
font-size: 0.95rem;
margin: 0;
font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
.accreditation-container {
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 25px;
}

.accreditation-card {
padding: 28px 20px;
}
}
/* ====================  ABOUT US PAGE END===================== */



/* ======================== CONTACT US PAGE ========================= */



.header-section {
text-align: center;
padding: 325px 20px 100px;
background: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1)),
url('../image/chandrabhaga.png');
background-size: cover;
background-position: center;
background-attachment: fixed;
}
.header-section h1 {
font-family: 'Playfair Display', serif;
font-size: 3.5rem;
color: var(--deep-red);
margin-bottom: 10px;
}
.header-section p {
color: #1800AC;
letter-spacing: 5px;
text-transform: uppercase;
font-size: 1.3rem;
font-weight:600;
}

.contact-wrapper {
max-width: 1200px;
margin: 0 auto 100px;
padding: 0 20px;
margin-top:60px;
}

/* Main Content Area */
.contact-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
margin-bottom: 80px;
}

/* Contact Form */
.glass-form {
background: var(--glass);
backdrop-filter: blur(15px);
padding: 50px;
border-radius: 40px;
border: 1px solid white;
box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.form-group {
margin-bottom: 25px;
}
.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 600;
font-size: 0.95rem;
color: var(--deep-red);
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 15px;
border-radius: 15px;
border: 1px solid rgba(0,0,0,0.1);
background: rgba(255,255,255,0.5);
font-size: 1rem;
outline: none;
transition: 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
border-color: var(--saffron);
background: #fff;
}

.btn-submit {
background: #1800AC;
color: white;
padding: 16px 40px;
border: none;
border-radius: 50px;
font-weight: 700;
cursor: pointer;
transition: 0.3s;
width: 100%;
font-size: 1.1rem;
}
.btn-submit:hover {
background: #8B0000;;
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(255, 153, 51, 0.3);
}

/* Contact Info */
.info-panel {
display: flex;
flex-direction: column;
gap: 25px;
}

.info-card {
background: white;
padding: 30px;
border-radius: 30px;
display: flex;
gap: 20px;
align-items: flex-start;
box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.info-card i {
font-size: 1.6rem;
color: #1800AC;
background: #fff4e6;
padding: 15px;
border-radius: 50%;
min-width: 55px;
text-align: center;
}
.info-card h4 {
color: var(--deep-red);
margin-bottom: 8px;
}
.info-card p, .info-card a {
color: #666;
font-size: 0.97rem;
text-decoration: none;
}
.info-card a:hover {
color: var(--saffron);
}

/* Full Width Map Section */
.map-section {
width: 100%;
margin-top: 40px;
}

.map-container {
height: 450px;
width: 100%;
border-radius: 30px;
overflow: hidden;
border: 8px solid white;
box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.map-container iframe {
width: 100%;
height: 100%;
border: none;
}

.section-title {
text-align: center;
font-size: 1.8rem;
color: var(--deep-red);
margin-bottom: 30px;
font-family: 'Playfair Display', serif;
}

@media (max-width: 992px) {
.contact-content {
grid-template-columns: 1fr;
gap: 40px;
}
.header-section h1 {
font-size: 2.8rem;
}
.map-container {
height: 380px;
}
}

@media (max-width: 576px) {
.glass-form, .info-card {
padding: 25px;
}
}

/* --- Footer Accreditations --- */
.footer-accreditations {
    max-width: 1000px;
    margin: 0px auto 0; /* Pushes it down from the 4 columns */
    padding: 30px 20px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle premium divider */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    gap: 20px 40px; /* Space between the items */
}

.footer-accreditations span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.85); /* Slightly off-white for elegance */
    display: flex;
    align-items: center;
    gap: 10px; /* Space between the icon and text */
    /* background: rgba(255, 255, 255, 0.05);  */
    /* padding: 6px 10px; */
    border-radius: 50px;
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    transition: 0.3s ease;
}

.footer-accreditations span:hover {
    background: rgba(255, 153, 51, 0.1); /* Faint saffron glow on hover */
    border-color: var(--saffron, #FF9933);
    color: #fff;
    transform: translateY(-3px);
}

.footer-accreditations span i {
    font-size: 1.1rem;
}

/* Responsive adjustment for Mobile */
@media (max-width: 768px) {
    .footer-accreditations {
        flex-direction: column;
        align-items: stretch; /* Makes them full width on mobile */
        gap: 15px;
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .footer-accreditations span {
        justify-content: center; /* Centers the text inside the pill on mobile */
    }
}


/* --- Testimonial Section Base --- */
.testimonial-section {
    padding: 0px 20px;
    padding-bottom: 100px;
    background: radial-gradient(circle at top right, rgba(255, 153, 51, 0.05), transparent 40%),
                radial-gradient(circle at bottom left, rgba(24, 0, 172, 0.03), transparent 40%);
}

/* --- PART 1: The Video Showcase --- */
.video-showcase {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

/* Perfect 16:9 Aspect Ratio Wrapper for responsive iframes */
.video-glass-frame {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.video-glass-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(139, 0, 0, 0.15);
}

.video-glass-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px; /* Matches the wrapper */
}

.video-caption {
    margin-top: 25px;
}

.video-caption h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--deep-red, #8B0000);
    margin-bottom: 5px;
    font-style: italic;
}

.video-caption p {
    color: #666;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- PART 2: The Wall of Love (Text Reviews) --- */
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.review-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    transition: 0.4s ease;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    border-color: var(--saffron, #FF9933);
}

/* Middle card staggered slightly down for a dynamic layout */
.review-card.staggered {
    margin-top: 40px; 
}

/* Giant background quote mark for aesthetics */
.bg-quote {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 8rem;
    color: rgba(24, 0, 172, 0.04); /* Very faint Royal Blue */
    transform: rotate(15deg);
    z-index: 0;
}

.stars {
    color: var(--saffron, #FF9933);
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.review-text {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 1;
    min-height: 180px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
    position: relative;
    z-index: 1;
}

.reviewer-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.reviewer-info h4 {
    color: var(--deep-red, #8B0000);
    font-size: 1rem;
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 0.8rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .review-card.staggered {
        margin-top: 0; /* Remove stagger on smaller screens */
    }
}

@media (max-width: 768px) {
    .review-grid {
        grid-template-columns: 1fr;
    }
    .video-caption h3 {
        font-size: 1.4rem;
    }
}
/* --- Testimonial Section Base End --- */




nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    padding: 15px 40px;
    background: white;
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.logo-img {
    max-height: 75px;
    display: block;
}

.nav-content {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    margin-left: 75px;
}

.nav-main-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0 auto;
    padding: 0;
}

.nav-main-links > li {
    list-style: none;
}

.nav-main-links li a {
    text-decoration: none;
    color: #0b0b0bdb;
    font-weight: 600;
    font-size: 1.05rem;
    transition: 0.3s;
}

.nav-main-links li a:hover {
    color: #7B004C;
}

/* --- RIGHT: Contact & Socials --- */
.nav-right-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-contact-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-right: 1px solid rgba(0,0,0,0.1);
    padding-right: 20px;
}

.nav-contact-details a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.nav-contact-details a i {
    color: var(--saffron, #FF9933);
    font-size: 1rem;
}

.nav-contact-details a:hover {
    color: #7B004C;
}

.nav-social-icons {
    display: flex;
    gap: 12px;
}

.nav-social-icons a {
    font-size: 1.1rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: white;
    background: #7B004C;
    text-decoration: none;
}

.nav-social-icons a:hover {
    color: white;
    background: #7B004C;
    transform: translateY(-2px);
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #7B004C;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    display: block;
}

/* --- Dropdown --- */
.dropdown {
    position: relative;
}

.dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 15px 0;
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(15px);
    min-width: 262px;
    background: rgba(253, 250, 245, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2000;
}

/* Desktop hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

/* Prevent hover gap closing menu */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
}

.dropdown-menu li {
    padding: 0;
    width: 100%;
    list-style: none;
}

.dropdown-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 25px;
    color: #444 !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: 0.3s ease;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: rgba(255, 153, 51, 0.08);
    color: #7B004C !important;
    padding-left: 32px;
}

/* --- Tablet: hide contact text --- */
@media (max-width: 1100px) {
    .nav-contact-details a span { display: none; }
    .nav-contact-details { padding-right: 15px; }
}

/* --- Mobile --- */
@media (max-width: 1024px) {

    nav {
        padding: 12px 20px;
    }

    .menu-toggle {
        display: flex;
    }

    /* Hamburger → X */
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-content {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        margin-left: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(25px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: all 0.4s ease;
    }

    .nav-content.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-main-links {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        width: 100%;
        margin-bottom: 20px;
    }

    .nav-right-actions {
        flex-direction: column;
        width: 100%;
        border-top: 1px solid #eee;
        padding-top: 20px;
        gap: 20px;
    }

    .nav-contact-details {
        flex-direction: column;
        align-items: center;
        border-right: none;
        padding-right: 0;
        gap: 15px;
    }

    .nav-contact-details a span {
        display: inline;
    }

    /* Disable CSS hover on mobile — JS handles it */
    .dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
    }

    /* Dropdown open state via JS */
    .dropdown.open .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.03);
        border: none;
        border-radius: 15px;
        min-width: 100%;
        margin-top: 10px;
        padding: 10px 0;
    }

    .dropdown-menu li a {
        padding: 10px 20px;
        font-size: 0.85rem !important;
        justify-content: center;
    }

    .dropdown-menu li a:hover {
        padding-left: 20px;
    }
}

.card-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
}

.card-link-2 {
text-decoration: none;
font-weight: 600;
font-size: 0.75rem;
transition: 0.3s;
background: #1800AC;
color : white !important;
padding: 6px 17px;
border-radius: 15px;
letter-spacing:1px;
display: inline-block;
white-space: nowrap;
}

.card-link-2:hover {
transform: translateX(5px);
}
.subsidary{
    width:100%;display:flex;align-items:center;justify-content:center; padding-bottom:20px;color:rgba(255,255,255,0.7)
}

 #scrollTopBtn {
        position: fixed;
        bottom: 30px;
        right: 25px;
        z-index: 9999;

        width: 50px;
        height: 50px;

        border: none;
        outline: none;

        background: #7B004C;
        color: white;

        border-radius: 50%;
        cursor: pointer;

        font-size: 18px;

        display: none;

        box-shadow: 0 4px 12px rgba(0,0,0,0.25);

        transition: all 0.3s ease;
    }

    #scrollTopBtn:hover {
        background: #a88445;
        transform: translateY(-3px);
    }

@media(max-width:768px){
        #scrollTopBtn{
            display:none;
            bottom: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
            font-size: 16px;
        }
}

/* --- Top Info Bar --- */
.top-bar {
    width: 100%;
    background: #7B004C;
    color: white;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002; /* Higher than nav's 1000 */
    height: 42px;
    transition: all 0.4s ease;
}

.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-left a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 500;
    transition: 0.3s;
}

.top-bar-left a i {
    color: var(--saffron, #FF9933);
    font-size: 0.9rem;
}

.top-bar-left a:hover { color: var(--saffron, #FF9933); }

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-right a {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s;
    text-decoration: none;
}

.top-bar-right a:hover {
    background: var(--saffron, #FF9933);
    border-color: var(--saffron, #FF9933);
    transform: translateY(-2px);
}

/* --- Nav sits BELOW top bar by default --- */
nav {
    position: fixed;
    top: 42px; /* = top-bar height */
    left: 0;
    right: 0;
    width: 100%;
    padding: 15px 40px;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: top 0.4s ease;
}

/* When top bar hides, nav slides up to top: 0 */
nav.shift-up {
    top: 0;
}

@media (max-width: 768px) {
    .top-bar {
        padding: 8px 20px;
        height: 40px;
    }
    .top-bar-left a span { display: none; }
    nav { top: 40px; }
}
.footer-accreditations {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.accreditation-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

/* .accreditation-item:hover {
    transform: translateY(-3px);
    border-color: var(--saffron, #FF9933);
} */

.accreditation-item img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.accreditation-item span {
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
}

/* ═══════════════════════════════════════════════
   VIDEO SLIDER STYLES
   ═══════════════════════════════════════════════ */
.video-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 50px; /* Space for arrows */
}

.slider-track-wrapper {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(74, 14, 27, 0.15);
    background: #000; /* Deep black prevents white flashes during video load */
    border: 3px solid #D4AF37; /* Royal Gold Border */
}

.slider-track {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9; /* Keeps standard HD video proportions */
    position: relative;
}

.video-wrapper video, 
.video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Custom Navigation Arrows */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #4A0E1B; /* Royal Burgundy */
    color: #D4AF37; /* Royal Gold */
    border: 2px solid #D4AF37;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.slider-btn:hover {
    background: #D4AF37;
    color: #4A0E1B;
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

/* Mobile adjustments */
@media (max-width: 768px) {
    .video-slider-container {
        padding: 0;
    }
    .slider-btn {
        width: 35px;
        height: 35px;
        /* Move arrows slightly inside on mobile */
    }
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
}

.footer-certifications{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
    justify-content:center;
    align-items:flex-start;
    padding:20px 0;
}

.cert-card{
    width:180px;
    text-align:center;
    color:#ffffffb3; /* change according to footer */
}

.cert-card img{
    width:100px;
    height:100px;
    object-fit:contain;
    display:block;
    margin:0 auto 12px;
    background:#fff;
    padding:8px;
    border-radius:10px;
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
}

.cert-card h4{
    font-size:15px;
    font-weight:600;
    margin-bottom:6px;
    line-height:1.4;
}

.cert-card p{
    font-size:13px;
    opacity:0.9;
    line-height:1.5;
    margin:0;
}

/* Mobile Responsive */
@media(max-width:768px){
    .footer-certifications{
        gap:18px;
    }

    .cert-card{
        width:140px;
    }

    .cert-card img{
        width:90px;
        height:90px;
    }
}

/* --- Floating WhatsApp Button --- */
#whatsappBtn {
    position: fixed;
    bottom: 30px;
    right: 25px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    background: #25D366; /* Official WhatsApp Green */
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: bottom 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

#whatsappBtn:hover {
    background: #20ba5a;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

@media(min-width: 769px) {
    #whatsappBtn.shift-up {
        bottom: 95px;
    }
}

@media(max-width: 768px) {
    #whatsappBtn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 26px;
    }
    #whatsappBtn.shift-up {
        bottom: 75px; /* 20px bottom + 45px height + 10px gap */
    }
    
    .award-badge {
        display: block;
        padding: 12px 20px;
        border-radius: 15px;
        font-size: 0.8rem;
        line-height: 1.4;
        text-align: center;
        max-width: 100%;
        box-sizing: border-box;
    }
}
/* ==========================================
   Jagannath Puri Travels - About Us Stylesheet
   ========================================== */
