/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --primary-color: #006083; /* Deep Blue */
    --accent-color: #ed1846;  /* Vibrant Coral/Orange */
    --dark-bg: #1a1a1a;
    --light-bg: #f4f7f6;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Utilities */


.section { padding: 80px 0; }
.bg-light { background-color: var(--light-bg); }
.bg-dark { background-color: var(--primary-color); color: var(--white); }
.text-white { color: var(--white); }

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}
.btn-primary:hover { background-color: #e55a5a; transform: translateY(-2px); }

.btn-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}
.btn-secondary:hover { background-color: var(--primary-color); color: var(--white); }

/* =========================================
   2. NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    height: 75px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* --- Logo Wrapper Setup --- */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
    padding-right: 5px; /* Space for the print line */
}

/* --- 1. The "Print Head" Reveal Animation (On Page Load) --- */
.logo-wrapper img {
    display: block;
    max-height: 50px; 
    width: auto;
    
    /* Start invisible (clipped) */
    clip-path: inset(0 100% 0 0);
    
    /* Reveal Animation */
    animation: print-scan 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 0.2s;
    
    /* FIXED: Add smooth transition for hover effects */
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* The Cyan "Laser Line" */
.logo-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: #00abc5;
    box-shadow: 0 0 10px #00abc5;
    opacity: 0;
    animation: print-head-move 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 0.2s;
}

/* --- 2. Hover Effect (UPDATED) --- */
/* We use transform/filter instead of 'animation' to prevent the logo from hiding */
.logo-wrapper:hover img {
    transform: scale(1.08); /* Slight Zoom In */
    filter: drop-shadow(0 4px 6px rgba(0, 171, 197, 0.3)); /* Cyan Glow Shadow */
}

/* --- Keyframes (Same as before) --- */
@keyframes print-scan {
    0% { clip-path: inset(0 100% 0 0); }
    100% { clip-path: inset(0 0 0 0); } /* Ends fully visible */
}

@keyframes print-head-move {
    0% { left: 0; opacity: 1; }
    99% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.nav-menu { display: flex; align-items: center; gap: 25px; }
.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--accent-color); }

.btn-nav {
    padding: 8px 20px;
    background-color: #ed1846;
    color: var(--white) !important;
    border-radius: 25px;
}
.btn-nav:hover { background-color: var(--accent-color); }

/* Mobile Menu */
.menu-toggle { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: var(--primary-color); transition: var(--transition); }

/* =========================================
 /* =========================================
   3. HERO SECTION (Final Clean Version)
   ========================================= */

/* Ensure the hero section is positioned relatively */
.hero-section {
    position: relative;
    overflow: hidden; /* Prevents video from spilling out */
    /* Maintain your existing hero styles here */
}

/* Video Background Styling */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video covers the whole area without stretching */
    z-index: 0; /* Lowest layer */
}

/* Update Overlay to sit on top of video */
.hero-overlay {
    /*position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;*/
    background: rgba(0, 0, 0, 0.6); 
    z-index: 1; /* Above video */
}

/* Ensure Content sits on top of overlay */
.hero-content {
    position: relative;
    z-index: 2; /* Highest layer */
}



/* --- HERO SECTION STYLES (NEW) --- */
        .hero-section {
            position: relative;
            height: 100vh; /* Takes up most of the viewport */
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            /* Placeholder background image - replace with actual image URL */
            background: url('img/hero.png') center/cover no-repeat;
            color: white;
            text-align: center;
            
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);*/
            background: linear-gradient(347deg, rgb(13 175 200) 0%, rgba(0, 0, 0, 0.5) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
           /* max-width: 800px;
            padding: 0 20px;
            margin-bottom: 200px;*/
        }

        .badge {
            display: inline-block;
            background-color: #00abc5;
            color: white;
            padding: 8px 16px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        /* Specific H1 styling for Hero */
        .hero-content h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .venue-text {
            font-size: 1.25rem;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        /* Hero Input/CTA Group */
        .cta-group {
            display: flex;
            justify-content: center;
        }

        .hero-input {
            background: white;
            padding: 1px;
            border-radius: 50px;
            display: flex;
            width: 100%;
            max-width: 500px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .hero-input input {
            border: none;
            padding: 12px 20px;
            flex-grow: 1;
            font-size: 1rem;
            outline: none;
            border-radius: 50px 0 0 50px;
            color: #333;
        }

        .btn-primary {
            background-color: #00abc5;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: background 0.3s ease, transform 0.2s;
            white-space: nowrap;
        }

        .btn-primary:hover {
            background-color: #008fa6;
            transform: translateY(-2px);
        }

        /* Hero Animations */
        .animate-fade {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s ease-out forwards;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }
        .delay-4 { animation-delay: 0.8s; }


        /* --- EXISTING SECTION STYLES --- */
        .section {
            padding: 80px 20px;
        }

        .bg-light {
            background-color: #fff;
        }

      

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

        .simple-steps{
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .underline {
            height: 4px;
            width: 80px;
            background-color: #00abc5;
            margin: 0 auto;
            border-radius: 2px;
        }

/* --- CMYK Ring Colors --- */

/* --- Text Colors (Now Black) --- */
.time-val {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    color: #000000; /* Pitch Black */
    font-variant-numeric: tabular-nums;
    text-shadow: none; /* Removed shadow for cleaner look */
}

.time-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555555; /* Dark Grey for labels */
    margin-top: 5px;
    font-weight: 600;
}

/* --- CMYK Ring Colors --- */
/* 1. Cyan (Days) */
#ring-days { stroke: #00aeef; }

/* 2. Magenta (Hours) */
#ring-hours { stroke: #ec008c; }

/* 3. Yellow (Minutes) */
#ring-minutes { stroke: #fff200; }

/* 4. Key/Black (Seconds) */
#ring-seconds { stroke: #231f20; }

/* --- Base Layout & Responsive --- */
.countdown-item {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Optional: Add a subtle shadow to the white circle itself for depth */
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

/* SVG Positioning */
.progress-ring { transform: rotate(-90deg); }
.progress-ring__circle {
    transition: stroke-dashoffset 0.35s;
    transform-origin: 50% 50%;
    stroke-linecap: round;
}

/* Mobile Sizes (Keep same as before) */
@media (max-width: 768px) {
    .countdown-item, .progress-ring { width: 90px; height: 90px; }
    .ring-bg, .progress-ring__circle { r: 40; cx: 45; cy: 45; stroke-width: 6; }
    .time-val { font-size: 1.5rem; }
    .time-label { font-size: 0.65rem; }
}

/* --- Base Ring Styles (Keep existing layout logic) --- */
.countdown-item {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring__circle {
    transition: stroke-dashoffset 0.35s;
    transform-origin: 50% 50%;
    stroke-linecap: round; /* Makes the end of the line rounded/modern */
}

/* Responsive Resize (Matches previous logic) */
@media (max-width: 768px) {
    .countdown-item, .progress-ring { width: 90px; height: 90px; }
    .ring-bg, .progress-ring__circle { r: 40; cx: 45; cy: 45; stroke-width: 6; }
}


/* --- Countdown Container --- */
.countdown-container {
    margin-top: 60px; /* Space from the input field */
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-bottom: 40px;
}

/* --- Individual Countdown Item Wrapper --- */
.countdown-item {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- SVG Progress Rings --- */
.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg); /* Start animation from top center */
}

.progress-ring__circle {
    transition: stroke-dashoffset 0.35s;
    transform-origin: 50% 50%;
    /* Adds a subtle glow to the active ring color */
    filter: drop-shadow(0 0 5px currentColor); 
}

/* Seconds ring gets a distinct Magenta color for urgency */
#ring-seconds {
    stroke: #303030; /* Magenta */
}

/* --- Text Inside Rings --- */
.countdown-text {
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.time-val {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    color: #000000;
    font-variant-numeric: tabular-nums; /* Ensures numbers don't jump around */
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.time-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000;
    margin-top: 5px;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .countdown-container {
        gap: 15px;
        flex-wrap: wrap; /* Allow wrapping on very small screens */
        margin-top: 40px;
    }
    
    /* Shrink rings slightly on tablet/mobile */
    .countdown-item, .progress-ring {
        width: 90px;
        height: 90px;
    }
    /* Adjust SVG Circle radius and center for smaller size */
    .progress-ring circle {
        r: 40; cx: 45; cy: 45; stroke-width: 6;
    }
    
    .time-val { font-size: 1.5rem; }
    .time-label { font-size: 0.65rem; }
}

@media (max-width: 480px) {
     /* On tiny screens, maybe wrap to 2x2 grid */
    .countdown-container {
        max-width: 220px;
        margin-left: auto;
        margin-right: auto;
    }
}


/* Base H1 Styling */
.hero-title {
    /* clamp(minimum, preferred, maximum) */
    /* This makes the text grow smoothly between 32px and 72px based on screen width */
    font-size: clamp(2rem, 5vw, 4.5rem); 
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: capitalize;
}

/* Specific styling for "in Mumbai" to make it pop */
.highlight-mumbai {
    color: #fff; /* Keep white or change to brand color like #f0ad4e */
    white-space: nowrap; /* Prevents "in" and "Mumbai" from splitting apart */
    display: inline-block;
}

/* Control the Line Break (<br>) */
.desktop-only {
    display: none; /* Hide break on mobile by default */
}

/* Desktop Media Query (Larger screens) */
@media (min-width: 768px) {
    .desktop-only {
        display: block; /* Force the break on desktop for a cleaner 2-line look */
    }
    
    .hero-title {
        max-width: 900px; /* Prevents it from getting too wide on huge screens */
    }
}

/* Why Grid */

/* =========================================
   CLASSIC 'EXPLORE' SECTION DESIGN
   ========================================= */

/* A slightly warmer light background for classic feel */
.bg-classic-light {
    background-color: #d1f7fb; /* Soft cream/off-white */
    overflow: hidden; /* Prevents scrollbars during animation */
}

.align-center {
    align-items: center; /* Ensures text and image are centered vertically */
}

/* --- Text Styling --- */
.classic-heading {
    font-family: var(--font-classic-heading); /* Playfair Display */
    font-size: 2.5rem;
    color: var(--primary-color); /* Navy */
    margin-bottom: 25px;
}

/* Elegant Gold Ampersand */
.classic-heading .highlight {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--accent-color); /* Gold */
    font-size: 3rem;
    line-height: 0;
    vertical-align: middle;
    margin: 0 5px;
}

.text-block .lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
    border-left: 4px solid var(--accent-color); /* Classic editorial touch */
    padding-left: 20px;
}

/* Classic Secondary Button (Gold Outline) */
.btn-classic-secondary {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-classic-secondary:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(207, 161, 91, 0.3);
}

/* --- Classic Image Frame Design --- */
.classic-image-frame {
    position: relative;
    z-index: 1;
    /* The magic offset shadow effect */
    box-shadow: -20px 20px 0 -5px var(--primary-color), /* Inner Navy offset */
                -20px 20px 0 0 var(--accent-color);    /* Outer Gold offset */
    margin-left: 20px; /* Make room for the shadow */
    margin-bottom: 20px;
    overflow: hidden; /* Ensures image stays inside frame during zoom */
    border-radius: 2px;
}

.classic-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    /* Initial state for zoom animation */
    transform: scale(1.15);
    transition: transform 1.5s ease-out;
}

/* --- Specific Section Animations --- */

/* Keyframes for sliding in from Left */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Keyframes for sliding in from Right */
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Apply animations when the standard 'visible' class is added by JS */
.animate-slide-right.visible {
    animation: slideInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-slide-left.visible {
    animation: slideInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Trigger the slow image zoom out when visible */
.animate-slide-left.visible .classic-image-frame img {
    transform: scale(1); /* Slow zoom out to normal size */
}

/* Responsive adjustments for the frame */
@media (max-width: 768px) {
    .classic-image-frame {
        margin: 20px 0 0 0; /* Reset margins on mobile */
        box-shadow: -10px 10px 0 -3px var(--primary-color),
                    -10px 10px 0 0 var(--accent-color); /* Smaller shadow on mobile */
    }
    .classic-heading { font-size: 2rem; }
}




/* --- Gallery Section General --- */
.gallery-section {
    padding: 80px 0;
    position: relative;
    
    /* 1. Linear Gradient (#f1f2f2 with opacity) + Background Image */
    background: linear-gradient(to bottom, rgba(241, 242, 242, 0.85), rgba(241, 242, 242, 0.95)), 
                url('img/mediabg.jpg');
    
    /* 2. Background Settings */
    background-size: cover;       /* Ensures texture covers the whole area */
    background-position: center;  /* Centers the texture */
    background-repeat: no-repeat;
    background-attachment: fixed; /* Creates a premium 'parallax' effect while scrolling */
}

/* Ensure header text stands out against the light background */
.gallery-section .sub-title {
    color: #00abc5; /* Cyan */
}

.gallery-section .section-title {
    color: #00667d; /* Teal */
}
/* --- Filter Buttons --- */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit; /* Use site font */
}

.filter-btn:hover,
.filter-btn.active {
    background: #00abc5;
    border-color: #00abc5;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 171, 197, 0.2);
}

/* --- Gallery Grid Layout --- */
.gallery-grid {
    display: grid;
    /* Mobile Default: 2 Columns */
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Tablet: 3 Columns */
@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* Desktop: 4 Columns */
@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

/* --- Gallery Items & Hover Effects --- */
.gallery-item {
    position: relative;
    cursor: pointer;
    /* Initial state for scroll animation */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* The class added by JS when scrolled into view */
.gallery-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Used by filtering JS to hide items */
.gallery-item.hidden {
    display: none;
}

.gallery-item-inner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    aspect-ratio: 1 / 1; /* Enforces a square shape for consistency */
    transition: box-shadow 0.4s ease;
}

.gallery-item-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover State */
.gallery-item:hover .gallery-item-inner {
    box-shadow: 0 15px 35px rgba(0, 171, 197, 0.2); /* Enhanced cyan glow */
}

.gallery-item:hover img {
    transform: scale(1.1); /* Smooth Zoom */
}

/* Hover Overlay (optional subtle Plus icon) */
.gallery-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 102, 125, 0.4); /* Brand teal transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-icon {
    color: white;
    font-size: 2rem;
    font-weight: 300;
}

/* --- Lightbox Modal Styles --- */
.lightbox-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999; /* Ensure it's on top of everything including navbar */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Class added by JS to show modal */
.lightbox-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    position: relative;
}

.lightbox-content img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    animation: scaleUp 0.3s ease;
}
@keyframes scaleUp { from { transform: scale(0.9); } to { transform: scale(1); } }

/* Lightbox Controls */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 100;
}
.lightbox-close:hover { color: #00abc5; }

.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
.lightbox-next { right: 0; border-radius: 3px 0 0 3px; }
.lightbox-prev { left: 0; border-radius: 3px 0 0 3px; }
.lightbox-prev:hover, .lightbox-next:hover { background-color: rgba(0, 171, 197, 0.8); }

.lightbox-controls {
    margin-top: 20px;
}
#slideshow-toggle {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}
#slideshow-toggle:hover, #slideshow-toggle.playing {
    background: #00abc5;
    border-color: #00abc5;
}

/* =========================================
   NEW CLASSIC FEATURES DESIGN
   ========================================= */

/* The Grid Layout */
/* Section Styling */
        .section {
            padding: 80px 20px;
        }

        .bg-light {
            background-color: #fff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

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

        .section-header h2 {
            font-size: 2.5rem;
            color: #222;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .underline {
            height: 4px;
            width: 80px;
            background-color: #00abc5;
            margin: 0 auto;
            border-radius: 2px;
        }


/* --- Force 4 Items on One Line (Desktop) --- */
.classic-grid {
    display: grid;
    /* This creates 4 equal columns side-by-side */
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; /* Space between cards */
    margin-top: 50px;
}

/* --- Responsive Behavior --- */

/* Tablet: Break into 2 rows of 2 */
@media (max-width: 1024px) {
    .classic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: Stack vertically (1 column) */
@media (max-width: 768px) {
    .classic-grid {
        grid-template-columns: 1fr;
    }
}

        /* Grid Layout */
       /* .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            justify-content: center;
        }*/

        /* Card Styling */
        .feature-card {
            background: #ffffff;
            border: 1px solid #eee;
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-color: #00abc5;
        }

        /* Step Number Styling */
        .step-numberr {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 3rem;
            font-weight: 900;
            color: #f0f0f0;
            line-height: 1;
            z-index: 0;
            transition: color 0.3s ease;
        }

        .feature-card:hover .step-number {
            color: rgba(0, 171, 197, 0.1);
        }

        /* Icon Wrapper - THE REQUESTED CHANGE */
        .icon-wrapper {
            width: 80px;
            height: 80px;
            background-color: #00667d; /* Default background */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .icon {
            font-size: 32px;
            line-height: 1;
        }

.icon i {
    color: #ffffff !important; /* Forces icon to be white */
    font-size: 2rem; /* Adjust size as needed */
}

/* Example wrapper background to make white icons visible */
.icon-wrapper .icon {
    /*background-color: #d32f2f;*/ /* Replace with your Brand Color */
    /* Ensure flex centering is on so icon sits in middle of circle */
    display: flex;
    align-items: center;
    justify-content: center;
}

        /* Hover Effect requested by user */
        .feature-card:hover .icon-wrapper {
            background-color: #00abc5; /* The requested color */
            transform: scale(1.1);
        }
        
        /* Optional: Change emoji/text color contrast on hover if needed, 
           though emojis maintain their own color. If using font-icons, color: white would go here. */

        /* Text Styling */
        .card-text {
            position: relative;
            z-index: 1;
        }

        .card-text h3 {
            font-size: 1.25rem;
            margin-bottom: 15px;
            color: #333;
            font-weight: 700;
        }

        .card-text p {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.6;
        }

        /* Scroll Reveal Animation Classes */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .scroll-reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered delays for grid items */
        .feature-card:nth-child(1) { transition-delay: 0.1s; }
        .feature-card:nth-child(2) { transition-delay: 0.2s; }
        .feature-card:nth-child(3) { transition-delay: 0.3s; }
        .feature-card:nth-child(4) { transition-delay: 0.4s; }
        .feature-card:nth-child(5) { transition-delay: 0.5s; }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }
        }

/* Explore Split */
.split-layout { display: flex; align-items: center; gap: 50px; }
.text-block { flex: 1; }
.image-block { flex: 1; }
.text-block h2 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 20px; color: var(--primary-color); }
.text-block .lead { font-size: 1.1rem; font-weight: 600; margin-bottom: 15px; }
.text-block p { margin-bottom: 25px; color: var(--text-light); }

.img-placeholder {
    width: 100%;
    height: 350px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    border-radius: 8px;
}

/* Solutions Grid Layout */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Made slightly wider for images */
    gap: 30px;
}

/* Card Styling */
.solution-item {
    background: var(--white);
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
    overflow: hidden; /* Keeps image inside rounded corners */
    text-align: left; /* Aligns text nicely */
    padding: 0; /* Remove old padding so image touches edges */
    display: flex;
    flex-direction: column;
}

.solution-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Image Wrapper */
.card-img-wrapper {
    width: 100%;
    height: 200px; /* Fixed height for uniformity */
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers area without stretching */
    transition: transform 0.5s ease;
}

.solution-item:hover .card-img-wrapper img {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

/* Text Content */
.card-content {
    padding: 25px;
    flex-grow: 1; /* Ensures cards are same height */
}

.card-content h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* =========================================
   5. TESTIMONIALS & CONTACT
   ========================================= */
/* Ensure font is applied */
.testimonials-section h2, 
.testimonials-section h4, 
.quote-text {
    font-family: 'iCatch', sans-serif; /* Fallback if iCatch fails */
}

/* --- Section Layout --- */
.testimonials-section {
    padding: 80px 0;
    background:#d1f7fb;
    overflow: hidden;
}

.section-header {
    margin-bottom: 50px;
}

.sub-title {
    color: var(--brand-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
}

.sub-titlee {
    color:#ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
}
.section-title {
    color: var(--brand-teal);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.separator-line {
    width: 60px;
    height: 4px;
    background: var(--brand-cyan);
    margin: 0 auto;
    border-radius: 2px;
}

/* --- Slider Container --- */
.testimonial-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px; /* Space for arrows */
}

.testimonial-track-container {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    transition: transform 0.5s ease-in-out;
}

/* --- Cards --- */
.testimonial-card {
    /* Default Mobile: 1 card visible */
    flex: 0 0 100%; 
    padding: 15px;
    box-sizing: border-box;
}

.card-inner {
    background:#ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

.card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 171, 197, 0.15); /* Cyan shadow glow */
    border-bottom: 4px solid var(--brand-cyan);
}

.quote-icon {
    font-size: 80px;
    line-height: 1;
    color: rgba(0, 171, 197, 0.1); /* Very faded cyan */
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: serif;
}

.quote-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* --- Profile Area --- */
.profile-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--brand-cyan);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.profile-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--brand-teal);
    font-weight: 700;
}

.designation {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Navigation Buttons --- */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #04e1ff;
    color: var(--brand-teal);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background:#006083;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

/* --- Responsive Breakpoints --- */

/* Tablet: 2 cards visible */
@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 50%; 
    }
}

/* Desktop: 3 cards visible */
@media (min-width: 1024px) {
    .testimonial-card {
        flex: 0 0 33.333%; 
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .testimonial-slider-wrapper {
        padding: 0; /* Remove padding */
    }
    .slider-btn {
        display: none; /* Hide arrows on mobile, use swipe (optional) or just auto-slide */
    }
    .card-inner {
        margin: 0 10px; /* Add margin since wrapper padding is gone */
    }
}

/* Contact */
/* --- 1. Responsive Layout --- */
.contact-wrapper {
    display: grid;
    /* Default: Stack vertically on mobile */
    grid-template-columns: 1fr; 
    gap: 40px; 
    align-items: start;
}

@media (min-width: 992px) {
    .contact-wrapper {
        /* Side-by-side on desktop */
        grid-template-columns: 1fr 1fr; 
        gap: 50px;
    }
}

/* --- 2. The Box Containers (Applying your Shadow) --- */
.exhibitor-journey-container, 
.contact-info-container {
    background: #fff;
  padding: 0px 15px 56px 15px;
    border-radius: 12px; /* Smooth rounded corners */
    
    /* YOUR REQUESTED SHADOW */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    
    height: 100%; /* Makes them equal height */
}



/* =========================================
   6. FOOTER
   ========================================= */
/*/* --- Layout Basics --- */
.footer-classic {
    position: relative;
    /* Dark gradient overlay + The Footer Image */
    background: linear-gradient(to bottom, rgba(10, 20, 30, 0.80), rgba(0, 0, 0, 0.95)), 
                url('img/footer.jpg');
    
    /* Image sizing properties */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    
    /* Text color for contrast */
    color: #ffffff;
    padding-top: 10px; /* Adjust spacing as needed */
}

/* Optional: Ensure the copyright bar blends in or stands out */
.copyright-bar {
    background: rgba(0, 0, 0, 0.4); /* Slight transparent dark layer */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px); /* Modern blur effect */
}


/* --- Main Footer Grid --- */
.footer-main {
    padding: 60px 0;
}

/* --- Footer Grid Layout --- */
.footer-grid {
    display: grid;
    /* This creates 3 exactly equal columns */
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px; /* Adds equal space between the columns */
    align-items: start; /* Aligns content to the top */
    width: 100%;
}

/* Ensure individual widgets don't overflow */
.footer-widget {
    width: 100%;
}

/* --- Responsive Behavior (Mobile/Tablet) --- */
@media (max-width: 992px) {
    /* On tablets, switch to 2 columns (if needed) or stack them */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* On mobile, stack everything in 1 column */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center; /* Optional: centers text on mobile */
    }
    
    /* Hide the empty spacer title on mobile */
    .widget-title.desktop-only {
        display: none;
    }
}

/* --- Widget & Typography --- */
.widget-title {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title i {
    color: var(--primary-red);
}

/* --- Contact & Info Cards --- */
.contact-card, .info-card {
    background: var(--footer-card-bg);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover, .info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.icon-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.icon-header h4 {
    margin: 0;
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
}

.icon-header i {
    color: var(--primary-red);
    font-size: 1.1em;
}

/* --- Text & Links --- */
.contact-card p, .info-card p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-link {
    color:#0fd6f4;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-red);
}

.map-link {
    background: var(--primary-red);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 13px;
    margin-top: 15px;
}

.map-link:hover {
    background: #0fd6f4;
    color: var(--primary-red);
}

/* --- Badges for Time --- */
.time-badge {
    background: #ed1846;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: auto;
}

.date-row {
    justify-content: space-between;
}

/* --- Copyright Bar --- */
.copyright-bar {
    background-color: #111;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
}

.copyright-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.footer-menu a {
    color:##ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-menu a:hover {
    color: var(--primary-red);
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-red);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    opacity: 0; /* Hidden by default */
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #fff;
    color: var(--primary-red);
    transform: translateY(-3px);
}

/* --- Responsiveness --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Hide empty spacers on tablet/mobile */
    .desktop-only {
        display: none;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .copyright-flex {
        flex-direction: column;
        text-align: center;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    width: 50px; height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: none; /* Hidden by default */
    z-index: 999;
    transition: transform 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background-color: #fff;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .desktop-only { display: none; } /* Hide empty headers on mobile */
    .footer-grid { gap: 30px; }
    .copyright-flex { flex-direction: column; text-align: center; }
}

/* =========================================
   7. ANIMATIONS & ADMIN
   ========================================= */
.scroll-reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s ease-out; }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* Admin Panel Styling */
.admin-toggle {
    position: fixed;
    bottom: 20px; right: 20px;
    background: #333; color: #fff;
    padding: 10px 15px;
    border-radius: 30px;
    cursor: pointer;
    z-index: 2000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.admin-panel-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2001;
    display: none;
    justify-content: center;
    align-items: center;
}
.admin-panel-overlay.active { display: flex; }
.admin-box {
    background: #fff;
    width: 90%; max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.admin-header { background: #f1f1f1; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #ddd;}
.admin-content { padding: 20px; max-height: 60vh; overflow-y: auto; }
.admin-section { margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.admin-section h4 { margin-bottom: 10px; color: #555; }
.control-group { margin-bottom: 10px; display: flex; justify-content: space-between; align-items: center; }
.control-group input[type="text"] { border: 1px solid #ddd; padding: 5px; border-radius: 3px; }
.admin-footer { padding: 15px; text-align: right; background: #f9f9f9; }
.close-admin { background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.btn-small { padding: 5px 10px; font-size: 0.8rem; background: #ddd; border: none; cursor: pointer; }

/* =========================================
   8. RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-menu {
        position: fixed;
        left: -100%; top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding: 20px 0;
    }
    .nav-menu.active { left: 0; }
    .nav-item { margin: 15px 0; }
    
    .hero-content h1 { font-size: 2.5rem; }
    .split-layout { flex-direction: column; }
    .cta-group { flex-direction: column; }
    .hero-input input { width: 100%; margin-bottom: 10px;}
    .hero-input button { width: 100%; border-radius: 4px; }
    .hero-input {flex-direction: row; width: 100%; }
}

.section-padding {
    padding: 80px 0;
}

.bg-light { background-color: var(--bg-light); }

.text-center { text-align: center; }

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

.section-subtitle {
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

/* Buttons */
.btn {
    color: #FFFFFF;
    background-color: #ed1846;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
        border-radius: 30px;
    background-color:#ed1846;
    color: var(--white);
}

.btn-primary:hover {
    background-color: #00667d;
    color: var(--white);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.full-width { width: 100%; text-align: center; border: none; font-size: 1rem; }

/* Grid Systems */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.row {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.col-half {
    flex: 1;
    min-width: 300px;
}


/* Destinations */
.dark-section { background-color:#ffffff; }
.text-white { color: var(--black); }
.text-white-dim { color:#303030; }

.location-card {
    background: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    color: var(--white);
    transition: var(--transition);
}
.location-card:hover { transform: translateY(-5px); }

.loc-img { height: 180px; background-size: cover; background-position: center; }
.mumbai { background-image: url('https://images.unsplash.com/photo-1570168007204-dfb528c6958f?auto=format&fit=crop&w=500&q=60'); }
.delhi { background-image: url('https://images.unsplash.com/photo-1587474260584-136574528ed5?auto=format&fit=crop&w=500&q=60'); }
.chennai { background-image: url('https://images.unsplash.com/photo-1582510003544-4d00b7f74220?auto=format&fit=crop&w=500&q=60'); }

.loc-content {background-color: #00254a; padding: 25px; }
.loc-content h3 { color: var(--white); font-size: 1.4rem; }
.loc-content .date { color:#04e1ff ; font-weight: 600; margin: 5px 0; }
.btn-text { border-radius: 50px;
    padding: 26px 15px;
    background-color: #ed1846;
    color: var(--white);
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 2px;
    display: inline-block;
} 
.btn-text:hover { color:ffffff; }


/* --- Floating Button Container --- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Official WhatsApp Green */
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Drop shadow */
    z-index: 9999; /* Ensures it sits on top of everything */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    
    /* Entrance Animation */
    animation: whatsapp-fade-in 1s ease-out forwards, 
               whatsapp-pulse 2s infinite;
}

/* --- Icon Styling --- */
.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: #ffffff;
    transition: transform 0.3s ease;
}

/* --- Hover Effects --- */
.whatsapp-float:hover {
    background-color: #20b857; /* Slightly darker green on hover */
    transform: scale(1.1) translateY(-5px); /* Grow and move up slightly */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.whatsapp-float:hover .whatsapp-icon {
    transform: rotate(15deg); /* Playful tilt on hover */
}

/* --- Tooltip Styling --- */
.whatsapp-tooltip {
    position: absolute;
    right: 70px; /* Position to the left of the button */
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background-color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none; /* Prevents tooltip from blocking clicks */
    
    /* Tiny arrow pointing to button */
    display: flex;
    flex-direction: column;
    text-align: right;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    margin-top: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

/* Tooltip Text Typography */
.tooltip-title {
    display: block;
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 2px;
}

.tooltip-name {
    display: block;
    font-size: 0.9rem;
    color: #333;
    font-weight: 700;
}

/* Show Tooltip on Hover */
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* --- Animations --- */

/* Pulse Animation (Attention seeker) */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Entrance Fade In */
@keyframes whatsapp-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
    
    /* Optional: Hide tooltip text on mobile to save space, 
       or keep it if you want it to appear on tap */
    .whatsapp-tooltip {
        display: none; 
    }
}

/* =========================================
   1. The Keyframe Animations
   ========================================= */

/* Desktop Shake: Maintains vertical centering while shaking */
@keyframes shake-vertical {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    1%  { transform: translateY(-50%) rotate(-3deg); }
    2%  { transform: translateY(-50%) rotate(3deg); }
    3%  { transform: translateY(-50%) rotate(-3deg); }
    4%  { transform: translateY(-50%) rotate(3deg); }
    5%  { transform: translateY(-50%) rotate(0deg); }
}

/* Mobile Shake: Maintains bottom position while shaking left/right */
@keyframes shake-horizontal {
    0%, 100% { transform: translateY(0) translateX(0); }
    1%  { transform: translateY(0) translateX(-5px); }
    2%  { transform: translateY(0) translateX(5px); }
    3%  { transform: translateY(0) translateX(-5px); }
    4%  { transform: translateY(0) translateX(5px); }
    5%  { transform: translateY(0) translateX(0); }
}

/* =========================================
   2. Button Styles
   ========================================= */

/* --- Floating Side Button (Hidden by default) --- */
.side-register-btn {
    position: fixed;
    top: 50%;
    right: 0;
    /* Initial state: Hidden off-screen to the right */
    transform: translateY(-50%) translateX(100%); 
    z-index: 998;
    
    /* Styles (Updated for Visibility) */
    background: #ffffff; /* Changed to Red so it is visible */
    color: #ffffff;      /* White text */
    padding: 15px 12px;
    border-radius: 8px 0 0 8px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    
    /* Typography & Orientation */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    writing-mode: vertical-rl; /* Text runs vertically */
    text-orientation: mixed;
    
    /* Smooth Entrance Transition */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                background 0.3s ease, 
                padding 0.3s ease;
    
    opacity: 0; /* Fully transparent initially */
    pointer-events: none; /* Cannot be clicked when hidden */
}

/* --- The Class added by JS to Show it + Trigger Shake --- */
.side-register-btn.show-side-btn {
    /* 1. Bring it into view */
    transform: translateY(-50%) translateX(0); 
    opacity: 1;
    pointer-events: all;

    /* 2. Apply the Shake Animation (Run every 4 seconds) */
    animation: shake-vertical 4s infinite ease-in-out;
    /* Delay animation slightly so it doesn't shake while sliding in */
    animation-delay: 1s; 
}

/* Hover Effect: Stop shaking and expand */
.side-register-btn:hover {
    padding-top: 35px; /* Expand vertical padding on hover */
    background: #08cae8; /* Change color on hover */
    color: #fff;
    animation: none; /* Stop shaking when user hovers */
}

/* Shine Animation */
.btn-shine {
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine-swipe 4s infinite;
}

@keyframes shine-swipe {
    0% { left: -100%; opacity: 0; }
    20% { left: 200%; opacity: 1; }
    100% { left: 200%; opacity: 0; }
}

/* =========================================
   3. Mobile Responsiveness
   ========================================= */
@media (max-width: 768px) {
    
    /* 1. Container: Moves to bottom of screen */
    .side-register-btn {
        writing-mode: horizontal-tb; /* Reset to horizontal text */
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        
        /* Start hidden below screen */
        transform: translateY(100%); 
        
        border-radius: 15px 15px 0 0; /* Rounded top only */
        padding: 10px 0;
        text-align: center;
        background: #00abc5; 
        color: #ffffff;
    }

    /* 2. Text: Adjusts for horizontal reading */
    .side-register-btn .btn-text {
       padding: 10px 30px 10px 31px;
       display: inline-block;
       transform: rotate(0deg); 
       font-size: 16px; 
       letter-spacing: 3px; 
       margin: 0; 
       vertical-align: middle;
    }

    /* 3. Mobile Animation: Slides UP and uses Horizontal Shake */
    .side-register-btn.show-side-btn {
        transform: translateY(0); /* Slide up to natural position */
        opacity: 1;
        
        /* Use the Horizontal Shake Keyframe here */
        animation: shake-horizontal 4s infinite ease-in-out;
        animation-delay: 1s;
    }
    
    .side-register-btn:hover {
        padding-top: 15px; /* Reset padding change for mobile */
        background: #00667d;
    }
}


/* --- Section Base --- */
.process-section {
    padding: 90px 0;
    position: relative;
    /* 1. Set the background image (Replace URL with your actual image) */
  
    background-image: url('img/attend.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Optional: Makes image stay still while scrolling */
    z-index: 1;
}
/* 2. The #00667d Faded Overlay */
.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* This creates the #00667d tint with 90% opacity */
    background: rgba(0, 102, 125, 0.70); 
    z-index: -1; /* Puts the color BEHIND the text but ABOVE the image */
}

/* --- Keep existing layout styles below --- */
.steps-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}

/* --- The Connecting Line (Desktop) --- */
.steps-line {
    position: absolute;
    top: 50px; /* Aligns with center of icons */
    left: 15%;
    right: 15%;
    height: 2px;
    background-image: linear-gradient(to right, #ffffff 50%, rgba(255,255,255,0) 0%);
    background-position: bottom;
    background-size: 15px 1px; /* Creates dashed effect */
    background-repeat: repeat-x;
    z-index: 0;
}

/* --- Individual Step Card --- */
.step-card {
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    position: relative;
    z-index: 1; /* Sit above the line */
    width: 30%;
    text-align: center;
    background: #ffffff; /* White bg covers the line behind text if needed */
    padding: 50px 3px 41px 3px;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px); /* Subtle lift on hover */
}

/* --- Icon Circle --- */
.step-icon-box {
    width: 100px;
    height: 100px;
    background: #ffffff;
    border: 2px solid #00abc5;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 171, 197, 0.15); /* Soft Glow */
    transition: all 0.3s ease;
}

.step-card:hover .step-icon-box {
    background: #00abc5;
    box-shadow: 0 15px 30px rgba(0, 171, 197, 0.3);
    transform: scale(1.1);
}

/* --- The Number Badge (01, 02) --- */
.step-number {
    position: absolute;
    top: -10px;
    right: -5px;
    background: #ec008c; /* Magenta Pop */
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff; /* White border to separate */
}

/* --- SVG Icon --- */
.step-icon {
    width: 40px;
    height: 40px;
    color: #00abc5;
    transition: color 0.3s ease;
}

.step-card:hover .step-icon {
    color: #ffffff; /* Icon turns white on hover */
}

/* --- Typography --- */
.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #00667d;
    margin-bottom: 15px;
    font-family: inherit;
}

.step-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Large Button Style --- */
.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* --- Responsive (Mobile) --- */
@media (max-width: 768px) {
    .steps-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .step-card {
        width: 100%;
        max-width: 350px;
    }

    /* Change Horizontal Line to Vertical Line for Mobile */
    .steps-line {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 2px;
        height: 100%;
        transform: translateX(-50%);
        background-image: linear-gradient(to bottom, #00abc5 50%, rgba(255,255,255,0) 0%);
        background-size: 1px 15px;
        background-repeat: repeat-y;
    }
}

/* --- Why Section Layout --- */
.why-sectionn {
    padding: 100px 0;
    position: relative;
    
    /* 1. White Gradient Overlay (92% opacity) + Texture Image */
    /* We use a high opacity white so the text stays high-contrast and readable */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.85)), 
                url('img/mediabg.jpg');
    
    /* 2. Background Settings */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Keeps texture still while scrolling (Parallax) */
}

/* Optional: Add a slight shadow to the stats container to pop off the texture */
.why-stats {
    position: relative;
    z-index: 2;
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50% Text, 50% Stats */
    gap: 60px;
    align-items: center;
}

/* --- Content Styling --- */
.why-desc {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: center;
}

.check-icon {
    color: #00abc5;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
   /* border: 2px solid #00667d;*/
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #00667d;
    color: #fff;
}

/* --- Stats Grid Styling --- */
.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-box {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
    border-bottom: 4px solid #00abc5; /* Cyan bottom border */
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 171, 197, 0.15);
}

/* Alternate color for visual interest (Magenta) */
.stat-box:nth-child(even) {
    border-bottom-color: #ed1846;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #00abc5;
    margin: 0;
    line-height: 1;
}

/* Add a plus sign after numbers using CSS */
.stat-number::after {
    content: '+';
    font-size: 1.5rem;
    color: #ed1846;
    vertical-align: top;
    margin-left: 2px;
}

.stat-label {
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    color: #777;
    font-weight: 600;
}

/* --- Mobile Responsive --- */
@media (max-width: 900px) {
    .why-layout {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 40px;
    }
    
    .why-stats {
        /* On mobile, keep 2x2 grid for stats */
        grid-template-columns: 1fr 1fr; 
    }
}

@media (max-width: 480px) {
    .stat-number { font-size: 2.2rem; }
}



#solutions {
    position: relative;
    padding: 80px 0; /* Ensures proper spacing */
    
    /* 1. White Gradient (90% to 70%) + Background Texture */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8)), 
                url('img/mediabg.jpg');
    
    /* 2. Background Settings */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect */
}

#why {
    background: #d1f7fb;
    position: relative;
    /* 1. White Gradient (92% opacity) + Texture Image */
/* background: linear-gradient(to bottom, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.85)), 
                url('img/mediabg.jpg');*/
    
    /* 2. Background Positioning */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Creates the premium 'Parallax' scroll effect */
    
    padding: 80px 0; /* Ensures consistent spacing */
}

#Whyattend {
    position: relative;
    /* 1. White Gradient (92% opacity) + Texture Image */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.85)), 
                url('img/mediabg.jpg');
    
    /* 2. Background Positioning */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Creates the premium 'Parallax' scroll effect */
    
    padding: 80px 0; /* Ensures consistent spacing */
}

/* Ensure the grid sits on top of the background */
.features-grid {
    position: relative;
    z-index: 2;
}

/* --- Section Layout --- */
.insta-section {
    padding: 80px 0;
    background: #d1f7fb;
    overflow: hidden;
}

.insta-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

/* --- The Phone Mockup (CSS Only) --- */
.phone-mockup {
   /* width: 320px;
    height: 650px;
    background: #000;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border: 12px solid #1a1a1a;
    overflow: hidden;
    flex-shrink: 0;*/
    
    width: 258px;
    height: 520px;
    background: #000;
    border-radius: 29px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 5px solid #1a1a1a;
    overflow: hidden;
    flex-shrink: 0;
}

/* The Notch */
.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

/* --- Story Screen --- */
.story-screen {
    width: 100%;
    height: 100%;
    background: #222;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: background-image 0.2s ease;
}

/* Navigation Tap Zones */
.tap-area {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40%;
    z-index: 5;
    /* cursor: pointer; removed to feel like native app */
}
.tap-area.left { left: 0; }
.tap-area.right { right: 0; }

/* --- Instagram UI Overlay --- */
.story-header {
    position: absolute;
  /*  top: 15px;*/
    left: 0;
    width: 100%;
    padding: 20px 15px;
    z-index: 20;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}

/* Progress Bars */
.story-progress-bar {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.bar-segment {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    width: 0%;
    background: #fff;
    display: block;
}

/* Active Bar Animation */
.bar-fill.active {
    width: 100%; /* JS will animate this manually for pause control */
}
.bar-fill.completed {
    width: 100%;
}

/* User Info */
.story-user-info {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 13px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid rgba(255,255,255,0.5);
}

.username {
    font-weight: 600;
    margin-right: 8px;
}

.time-stamp {
    opacity: 0.7;
}

.story-controls-top {
    margin-left: auto;
    font-size: 20px;
    opacity: 0.8;
}

/* Footer UI */
.story-footer {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 20;
}

.message-input {
    flex: 1;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    padding-left: 15px;
    font-size: 13px;
}

.like-icon, .send-icon {
    color: #fff;
    font-size: 22px;
}


/* Ensure the container holds the absolute emojis */


.like-icon {
    cursor: pointer;
    user-select: none;
    transition: transform 0.1s;
    z-index: 20; /* Keep button above emojis */
}

.like-icon:active {
    transform: scale(0.8);
}

/* The Emoji Styling */
.floating-emoji {
    position: absolute;
    bottom: 30px; /* Start near the like button */
    right: 20px;
    font-size: 24px;
    pointer-events: none; /* Let clicks pass through */
    z-index: 10;
    will-change: transform, opacity;
    animation: floatUp ease-out forwards;
}

/* The Animation */
@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    10% {
        opacity: 1;
        transform: translateY(-20px) scale(1.2);
    }
    100% {
        opacity: 0;
        /* Moves up and uses a CSS variable for random left/right drift */
        transform: translateY(-300px) translateX(var(--drift)) scale(1);
    }
}
/* --- Right Side Content --- */
.insta-content {
    max-width: 550px;
}

.insta-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.insta-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
}

.i-stat strong {
    display: block;
    font-size: 1.8rem;
    color: #ec008c; /* Brand Magenta */
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border: none;
    color: white;
}
.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
}

/* --- Mobile Responsive --- */
@media (max-width: 900px) {
    .insta-layout {
        flex-direction: column-reverse; /* Put Text on top, Phone on bottom */
        gap: 40px;
        text-align: center;
    }
    
    .insta-stats {
        justify-content: center;
    }
    
    .separator-line {
        margin: 0 auto !important;
    }
}


/* --- Layout Adjustments (Ensuring side-by-side) --- */
/* Assuming your existing 'contact-wrapper' already has display:flex or grid. 
   If not, ensure the two main containers sit side-by-side on desktop. */
@media (min-width: 992px) {
    .contact-wrapper {
        display: flex;
        gap: 40px; /* Adjust gap as needed */
        align-items: flex-start;
    }
    .exhibitor-journey-container, 
    .contact-info-container {
        flex: 1; /* Make them equal width */
    }
}

/* --- Exhibitor Journey Styling --- */
.exhibitor-journey-container {
    padding: 3px 20px 20px 15px;
    background: #fff; /* Assuming white background */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Optional subtle shadow */
}

.journey-intro {
    margin-bottom: 30px;
    color: #666;
}

/* Timeline Container */
.journey-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    /* The vertical line */
    border-left: 3px solid #e9ecef; 
    margin-left: 20px;
}

/* Individual Step */
.journey-step {
    position: relative;
    margin-bottom: 35px;
    padding-left: 30px; /* Space between line and content */
    
    /* Animation initial state: hidden and pushed down */
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.journey-step:last-child {
    margin-bottom: 0;
}

/* The Icon Marker */
.step-marker {
    position: absolute;
    left: -21px; /* Centers it on the 3px border */
    top: 0;
    width: 38px;
    height: 38px;
    background-color: #ed1e4b; /* REPLACE WITH YOUR BRAND COLOR */
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Step Content */
.step-content h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.step-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* --- Animation Active State --- */
/* This class is added by JS when scrolled into view */
.journey-step.step-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Container for the buttons */
.ride-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

/* Base Style for Ride Buttons */
.btn-ride {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Space between text and arrow icon */
    padding: 8px 16px;
    border-radius: 50px; /* Pill shape */
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-ride:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-ride svg {
    transition: transform 0.2s;
}

.btn-ride:hover svg {
    transform: translate(2px, -2px); /* Arrow moves up-right on hover */
}

/* --- Uber Specific Styles (Black & White) --- */
.btn-uber {
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #000000;
}
.btn-uber:hover {
    background-color: #333333;
    color: #ffffff;
}

/* --- Ola Specific Styles (Neon Yellow/Green & Black) --- */
.btn-ola {
    background-color: #cddc39; /* Ola's greenish-yellow brand color */
    color: #000000;
    border: 1px solid #c0ca33;
}
.btn-ola:hover {
    background-color: #dce775;
    color: #000000;
}


/* --- Venue Section Layout --- */
/* --- 1. Main Venue Section Layout --- */
.venue-section {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden; /* Prevents overflow from the offset border */
}

.venue-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Aligns top of map with top of list */
    gap: 60px; /* Space between map and text */
    flex-wrap: wrap;
}

/* --- 2. Left Column: Map Image Design --- */
.venue-left {
    flex: 1;
    min-width: 300px; /* Ensures it doesn't get too small */
    position: relative;
}

.map-design-wrapper {
    position: relative;
    /* Create space on bottom/right for the offset border effect */
    padding: 0 20px 20px 0; 
}

/* The Blue Decorative Border Behind */
.map-border-decoration {
    position: absolute;
    top: -10px;   /* Shifts down */
    left: -10px; /* Shifts left */
    width: 100%;
    height: 100%;
    border: 2px solid #00abc5; /* Cyan Color */
    z-index: 0; /* Puts it behind the image */
}

/* The Box containing the Image */
.map-box {
    position: relative;
    z-index: 1; /* Puts image in front */
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 4px; /* Optional rounded corners */
    overflow: hidden;
}

/* Make the GIF responsive */
.map-box img {
    width: 100%;
    height: auto; /* Maintains aspect ratio */
    display: block; /* Removes bottom space */
    object-fit: cover;
}

/* --- 3. Right Column: Transport List --- */
.venue-right {
    flex: 1;
    min-width: 300px;
}

.transport-item {
    display: flex;
    align-items: flex-start; /* Aligns icon with the top of the text */
    gap: 25px;
    margin-bottom: 50px;
}

/* Icon Circle Styling (Consistent with previous request) */
.t-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #00abc5;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 171, 197, 0.3);
    transition: transform 0.3s ease;
}

.transport-item:hover .t-icon {
    transform: scale(1.1);
}

.t-content h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
}

.t-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* --- 4. Responsive Media Queries --- */

/* Tablet (max-width 1024px) */
@media (max-width: 1024px) {
    .venue-layout {
        gap: 40px;
    }
}

/* Mobile (max-width 768px) */
@media (max-width: 768px) {
    .venue-section {
        padding: 50px 0;
    }

    /* Stack them vertically */
    .venue-layout {
        flex-direction: column; 
    }

    .venue-left, .venue-right {
        width: 100%; /* Full width on mobile */
        min-width: 100%;
    }

    /* Adjust the map spacing for mobile */
    .venue-left {
        margin-bottom: 40px; /* Space between map and list */
        padding-left: 15px; /* Create room for the offset border on the left */
    }

    .map-border-decoration {
        left: -10px; /* Smaller offset on mobile */
        top: 10px;
    }

    .transport-item {
        gap: 15px; /* Tighter gap on small screens */
    }

    .t-icon {
        width: 50px; /* Smaller icons on phone */
        height: 50px;
        font-size: 20px;
    }
}
/* --- Desktop / General Styles --- */

/* --- Privacy Policy Section --- */
.privacy-section {
    padding: 80px 0;
    background-color: #f9f9f9; /* Slight grey background for separation */
}

/* --- Privacy Policy Section --- */
.privacy-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

/* Updated Width: 1200px */
.policy-content {
    width: 100%;             /* Takes full width available... */
    max-width: 1200px;       /* ...up to 1200px limit */
    margin: 0 auto;          /* Centers it */
    background: #ffffff;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 8px;
}

/* Typography (Unchanged) */
.intro-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
    font-style: italic;
}

/* ... keep the rest of your typography styles the same ... */

/* --- Responsive Adjustments --- */
@media (max-width: 1250px) {
    /* If screen is smaller than 1250px, add side spacing */
    .policy-content {
        width: 90%; 
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .policy-content {
        width: 100%;
        padding: 25px;
        border-radius: 0; /* Remove corners on full mobile width */
    }
}
/* Contact Box Styling */
.policy-contact-box {
    background: #f4f4f4;
    padding: 25px;
    border-radius: 6px;
    border-left: 4px solid #555;
    margin-top: 20px;
}

.address-lines {
    margin-bottom: 10px !important;
    color: #333 !important;
}

.email-link {
    color: #ed1c24;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.email-link:hover {
    color: #b30006;
    text-decoration: underline;
}

/* Footer Note */
.policy-footer-note {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #777;
    text-align: center;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .privacy-section {
        padding: 40px 0;
    }
    
    .policy-content {
        padding: 25px;
        width: 100%;
    }

    .policy-block h3 {
        font-size: 1.1rem;
    }

    .policy-block p {
        text-align: left; /* Justify can look weird on mobile */
    }
}


.sub-titl {
    margin-top: 50px;
    color: var(--brand-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

    
    /* --- Imprint / Terms Section --- */
.imprint-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Container Logic: 1200px width limit */
.legal-content {
    width: 100%;
    max-width: 1200px; /* Matches your preference */
    margin: 0 auto;
    background: #fdfdfd; /* Very subtle off-white for contrast */
    padding: 60px;
    border: 1px solid #eeeeee;
    border-radius: 4px;
}

/* Typography */
.legal-block {
    margin-bottom: 40px;
}

.legal-block.intro-block h3 {
    font-size: 1.5rem;
    color: #ed1c24; /* Messe Red */
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-block h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    display: inline-block;
}

.legal-block p {
    font-size: 1rem;
    line-height: 1.8; /* Comfortable reading height */
    color: #555;
    margin-bottom: 15px;
    text-align: justify; /* Clean edges */
}

/* --- Responsive Media Queries --- */

/* Tablet & Smaller Desktop */
@media (max-width: 1250px) {
    .legal-content {
        width: 90%;
        padding: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .imprint-section {
        padding: 40px 0;
    }
    
    .legal-content {
        width: 100%;
        padding: 25px;
        border: none; /* Remove border on mobile for cleaner look */
        background: #fff;
    }

    .legal-block h4 {
        font-size: 1.1rem;
        border-bottom: 1px solid #eee; /* Thinner line */
        width: 100%; /* Full width line */
    }

    .legal-block p {
        text-align: left; /* Justify is hard to read on small screens */
        font-size: 0.95rem;
    }
}

/* ===== FORM LAYOUT ===== */

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

/* ===== LABELS ===== */

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
}

.required {
  color: #d93025;
}

/* ===== INPUTS & SELECTS ===== */

.form-group input,
.form-group select,
.form-group textarea {
  height: 46px;
  padding: 10px 14px;
  font-size: 15px;
  border: 1px solid #cfd4dc;
  border-radius: 6px;
  background-color: #fff;
}

.form-group textarea {
  height: auto;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23666' d='M5.5 7l4.5 5 4.5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

/* ===== FOCUS ===== */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #005fa3;
  box-shadow: 0 0 0 2px rgba(0,95,163,0.12);
}

/* ===== SECTION TITLES ===== */

.section-title {
  font-size: 18px;
  font-weight: 700;
  margin: 40px 0 20px;
  padding-left: 12px;
  border-left: 4px solid #005fa3;
  color: #111;
}

/* ===== RADIO GROUPS ===== */

.options-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.options-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #f8f9fb;
  border: 1px solid #e1e4ea;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}

.options-group input[type="radio"] {
  transform: scale(1.1);
}

/* ===== CONSENT ===== */

.consent-box {
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.5;
}

/* ===== SUBMIT BUTTON ===== */

.actions {
  text-align: center;
  margin-top: 40px;
}

.btn-submit {
  background: linear-gradient(135deg, #005fa3, #003f6b);
  color: #fff;
  border: none;
  padding: 14px 44px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #004f87, #003357);
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.other-field {
  display: none;
  margin-top: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

/* =========================
   LEGAL / CLEAN PAGE STYLE
========================= */

.legal-page {
  background: #f6f7f9;
  padding: 80px 20px;
}

.legal-container {
  max-width: 1000px;
  margin: 0 auto;
}

.legal-header {
  text-align: center;
  margin-bottom: 40px;
}

.legal-eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: #777;
  margin-bottom: 10px;
  display: block;
}

.legal-title {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
}

.legal-card {
  background: #fff;
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

/* Responsive */
@media (max-width: 768px) {
  .legal-title {
    font-size: 28px;
  }

  .legal-card {
    padding: 24px;
  }
}
.legal-card label,
.form-group label,
.section-title {
  text-align: left !important;
  display: block;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  text-align: left;
}

/* === SINGLE SELECT BLOCK === */
.single-select {
  padding: 12px 0;
}

/* Parent item */
.single-select .parent {
  padding: 10px 12px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

/* Hover feedback */
.single-select .parent:hover {
  background: #f8f9fb;
}

/* Checkbox + label alignment */
.single-select label.checkbox-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  cursor: pointer;
}

/* Checkbox size consistency */
.single-select input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Child container */
.single-select .child {
  margin-top: 8px;
  margin-left: 26px;
  padding-left: 14px;
  border-left: 2px solid #e4e6eb;
}

/* Child options grid */
.single-select .child .col {
  margin-top: 6px;
}

/* Child checkbox labels */
.single-select .child label {
  font-size: 13.5px;
  font-weight: 400;
  color: #444;
}

/* Others textarea */
.single-select textarea.otherFields {
  width: 100%;
  min-height: 70px;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  resize: vertical;
}

/* Mobile refinement */
@media (max-width: 576px) {
  .single-select .parent {
    padding: 10px 6px;
  }

  .single-select .child {
    margin-left: 18px;
  }
}

.business-accordion {
  max-width: 700px;
}

.accordion-item {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: #f8f9fa;
  cursor: pointer;
  font-weight: 600;
}

.accordion-header input {
  transform: scale(1.1);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 15px;
}

.accordion-body label {
  display: block;
  margin: 8px 0;
  font-weight: normal;
}

.accordion-body textarea {
  width: 100%;
  margin: 10px 0;
  padding: 8px;
}

.accordion-item.active .accordion-body {
  max-height: 300px;
  padding-bottom: 15px;
}

.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}
