/* Variables */
:root {
    --primary-orange: #a92b00;    /* Terracotta/Rust Orange from Brochure */
    --primary-blue: #1e5fa5;      /* Royal Blue from Brochure */
    --primary-green: #6B7332;     /* Vibrant Emerald Green from Brochure */
    --primary-purple: #842073;    /* Deep Plum/Purple from Brochure */
    --orange-dark: #e38700;       /* Amber/Gold Accent from Brochure */
    --gold-light: #fcc761;        /* Soft Pastel Gold Accent from Brochure */
    --bg-light: #f9f9f9;
    --text-dark: #333333;
}

/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

.text-orange { color: var(--primary-orange); }
.text-blue { color: var(--primary-blue); }
.text-green { color: var(--primary-green); }
.text-purple { color: var(--primary-purple); }

.bg-orange { background-color: var(--primary-orange); }
.bg-blue { background-color: var(--primary-blue); }
.bg-green { background-color: var(--primary-green); }
.bg-purple { background-color: var(--primary-purple); }
.bg-orange-dark { background-color: var(--orange-dark); }

.btn-purple {
    background-color: #996515 !important;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-purple:hover {
    background-color: #631355;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(132, 32, 115, 0.3);
}

/* Navbar */
/*.navbar-light .navbar-nav .nav-link {*/
/*    font-weight: 600;*/
/*    color: var(--text-white);*/
/*    margin: 0 10px;*/
/*    font-size: 0.9rem;*/
/*}*/

/*.navbar-light .navbar-nav .nav-link.active {*/
/*    color: var(--primary-orange);*/
/*}*/

/* Hero Section Carousel */
.hero-section {
    position: relative;
    background-color: var(--bg-light);
    padding: 0;
    /*min-height: 30vh;*/
    
}

.hero-carousel {
    width: 100%;
}

/*.hero-slide {*/
/*    min-height: 106vh !important;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    padding-top: 130px;*/
/*    padding-bottom: 160px; */
/*    background-size: cover;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
    /*background-attachment: scroll;*/
/*    position: relative;*/
/*}*/

/*.hero-slide::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
    /*background: rgba(0, 0, 0, 0.6); */
    /* Increase/decrease last value for opacity */
/*    z-index: 1;*/
/*}*/


/*=======================================*/
/* HERO SECTION */
.hero-slide,
#slide {
    min-height: 100vh;
    width: 100%;
    position: relative;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    padding-top: 120px;
    padding-bottom: 120px;

    overflow: hidden;
}

/* Overlay */
.hero-slide::before,
#slide::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0,0,0,0);
}

/* Carousel */
.hero-carousel,
.carousel-inner,
.carousel-item {
    height: 100%;
}

/* Controls */
.carousel-control-prev,
.carousel-control-next {
    z-index: 5;
}

/* Waves */
.waves {
    height: 90px;
    min-height: 90px;
}

/* =========================
   TABLET
========================= */
@media (max-width: 991px) {

    .hero-slide,
    #slide {
        min-height: 70vh;
        padding-top: 100px;
        padding-bottom: 90px;

        background-size: contain;
        background-position: top center;
        background-color: #fff;
    }

    .waves {
        height: 55px;
        min-height: 55px;
    }

    .carousel-indicators {
        bottom: 45px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 576px) {

    .hero-slide,
    #slide {
        min-height: auto;
        height: auto;

        padding-top: 85px;
        padding-bottom: 70px;

        background-size: contain;
        background-position: top center;
        background-color: #fff;
    }

    /* Creates proper image height */
    .hero-slide::after,
    #slide::after {
        content: "";
        display: block;
        width: 100%;
        padding-top: 56%;
    }

    .waves {
        height: 45px;
        min-height: 45px;
    }

    .carousel-indicators {
        bottom: 30px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 1.8rem;
        height: 1.8rem;
    }
    
    
    
}


@media (max-width: 768px) {

    .navbar-collapse {
        background: #ffffff;
    }

    .nav-icon-text {
        color: #996515 !important;
    }

    .nav-icon-text i {
        color: #996515 !important;
    }

    .nav-icon-text:hover,
    .nav-icon-text.active {
        color: #996515 !important;
        background-color: rgba(132, 32, 115, 0.08) !important;
    }

    .nav-icon-text:hover i,
    .nav-icon-text.active i {
        color: #996515 !important;
    }
}
/*===========================================*/
.hero-slide > .container {
    position: relative;
    z-index: 2;
}

.hero-text h5 {
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.85);
}

.hero-text h1 {
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 5px rgba(255, 255, 255, 0.85);
}

.hero-logo {
    height: 1.15em;
    width: auto;
    vertical-align: middle;
    margin-top: -0.1em;
    display: inline-block;
}

/* Premium Hero Carousel Controls */
.hero-carousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    opacity: 0.35;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid transparent;
}

.hero-carousel .carousel-indicators .active {
    width: 28px;
    border-radius: 5px;
    background-color: var(--primary-orange);
    opacity: 1;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0; /* Hidden by default, show on hover */
    z-index: 5;
    border: 1px solid rgba(0,0,0,0.03);
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next {
    opacity: 1;
}

.hero-carousel .carousel-control-prev {
    left: 24px;
}

.hero-carousel .carousel-control-next {
    right: 24px;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    filter: invert(18%) sepia(80%) saturate(2200%) hue-rotate(345deg); /* Colorize standard SVG arrow to brand dark orange */
    width: 20px;
    height: 20px;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.hero-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-carousel .carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(1) brightness(100);
}


.badge-outline-orange { border: 2px solid var(--primary-orange); color: var(--primary-orange); background: transparent; padding: 8px 15px; border-radius: 50px; margin-right: 10px; }
.badge-outline-blue { border: 2px solid var(--primary-blue); color: var(--primary-blue); background: transparent; padding: 8px 15px; border-radius: 50px; margin-right: 10px; }
.badge-outline-green { border: 2px solid var(--primary-green); color: var(--primary-green); background: transparent; padding: 8px 15px; border-radius: 50px; }

/* Premium Animated Wave Divider */
.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.waves {
    position: relative;
    width: 100%;
    height: 120px;
    margin-bottom: -1px; /* Avoid fine-line gaps */
    min-height: 80px;
    max-height: 150px;
    display: block;
}

/* Parallax Animation classes */
.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 8s;
}
.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 12s;
}
.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 16s;
}
.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 22s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* Responsive adjustments for smaller devices */
@media (max-width: 768px) {
    .waves {
        height: 60px;
        min-height: 40px;
    }
}

/* Quick Links */
.link-card {
    transition: transform 0.3s ease;
}

.link-card:hover {
    transform: translateY(-10px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.link-card h6 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Welcome Section */
.feature-box {
    border-left: 4px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: scale(1.05);
}

.feature-box h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

/* Explore Rewa */
.attraction-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attraction-card {
    overflow: hidden;
    border-radius: 10px;
}

.attraction-card:hover img {
    transform: scale(1.1);
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    margin-top: 10px;
}

/* Sponsors */
.grayscale {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.grayscale:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* CTA Footer */
.cta-footer {
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--primary-purple) 100%);
}

.cta-box {
    background: rgba(255,255,255,0.1);
}

/* Footer */
.footer {
    background-color: #122049 !important;
}

.footer a {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-orange);
}

.social-links a {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--primary-blue);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.social-links a:hover {
    background: var(--primary-orange);
    color: white;
}

/* Countdown Section */
.countdown-section {
    background-color: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px; /* Snug spacing to wave border */
    padding-bottom: 60px;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.countdown-card {
    border: 1px solid rgba(0, 0, 0, 0.06); /* Premium soft full border */
    border-top: 5px solid transparent; /* Colored accent highlight on top */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 160px; /* Square-ish modern proportions */
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02) !important;
}

.countdown-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 0, 0, 0.015), transparent);
    pointer-events: none;
}

.countdown-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(0, 0, 0, 0.12);
}

.countdown-card.border-orange {
    border-top-color: var(--primary-orange);
}
.countdown-card.border-blue {
    border-top-color: var(--primary-blue);
}
.countdown-card.border-green {
    border-top-color: var(--primary-green);
}
.countdown-card.border-purple {
    border-top-color: var(--primary-purple);
}

.countdown-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.8rem; /* Highly dominant, clear numeric layout */
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.countdown-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #6c757d !important;
}

/* Gallery Section */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    aspect-ratio: 4/3;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    z-index: 2;
    color: white;
    opacity: 0.85;
    transition: opacity 0.4s ease;
}

/* Individual card gradient definitions matching our theme colors */
.gallery-card.theme-orange .gallery-overlay {
    background: linear-gradient(to top, rgba(243, 112, 33, 0.95) 0%, rgba(243, 112, 33, 0.25) 60%, transparent 100%);
}
.gallery-card.theme-blue .gallery-overlay {
    background: linear-gradient(to top, rgba(46, 49, 146, 0.95) 0%, rgba(46, 49, 146, 0.25) 60%, transparent 100%);
}
.gallery-card.theme-green .gallery-overlay {
    background: linear-gradient(to top, rgba(0, 166, 81, 0.95) 0%, rgba(0, 166, 81, 0.25) 60%, transparent 100%);
}
.gallery-card.theme-purple .gallery-overlay {
    background: linear-gradient(to top, rgba(102, 45, 145, 0.95) 0%, rgba(102, 45, 145, 0.25) 60%, transparent 100%);
}
.gallery-card.theme-orange-dark .gallery-overlay {
    background: linear-gradient(to top, rgba(211, 84, 0, 0.95) 0%, rgba(211, 84, 0, 0.25) 60%, transparent 100%);
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.gallery-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.95;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Venue Section */
.venue-section {
    background-color: #ffffff;
}

.venue-card {
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.travel-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* Custom background tints for travel icons matching brand colors */
.bg-blue-light { background-color: rgba(46, 49, 146, 0.08); }
.bg-orange-light { background-color: rgba(243, 112, 33, 0.08); }
.bg-green-light { background-color: rgba(0, 166, 81, 0.08); }

.map-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

/* Organizing Committee Section */
.committee-section {
    background-color: #ffffff; /* Contrast against bg-light welcome section */
}

.committee-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.committee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08) !important;
    border-color: rgba(46, 49, 146, 0.15);
}

.member-image-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    transition: transform 0.4s ease;
}

.committee-card:hover .member-image-wrapper {
    transform: scale(1.05);
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: fill !important;
}

.committee-card .badge {
    font-size: 0.7rem;
    padding: 6px 12px;
    border-radius: 50px;
}

.member-socials .social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.member-socials .social-icon:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

/* Floating Tiger Footprints (Paw Watermarks) */
.paw-watermark {
    position: absolute;
    color: var(--primary-blue); /* subtle blend with brand theme */
    opacity: 0.22;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease;
}

/* Individual paw placement, sizes, rotations, and animation timings */
.paw-1 {
    top: 15%;
    left: 2%;
    font-size: 6.5rem;
    transform: rotate(-25deg);
    animation: float-paw-1 8s ease-in-out infinite;
}

.paw-2 {
    bottom: 12%;
    right: 2%;
    font-size: 7.5rem;
    transform: rotate(35deg);
    animation: float-paw-2 10s ease-in-out infinite;
}

.paw-3 {
    top: 25%;
    right: 5%;
    font-size: 4.5rem;
    transform: rotate(15deg);
    animation: float-paw-1 12s ease-in-out infinite;
    opacity: 0.15;
}

.paw-4 {
    bottom: 20%;
    left: 5%;
    font-size: 5rem;
    transform: rotate(-15deg);
    animation: float-paw-2 9s ease-in-out infinite;
    opacity: 0.15;
}

/* High-performance floating keyframe animations utilizing 3D transforms */
@keyframes float-paw-1 {
    0%, 100% {
        transform: translateY(0) rotate(-25deg) scale(1);
    }
    50% {
        transform: translateY(-15px) rotate(-20deg) scale(1.05);
    }
}

@keyframes float-paw-2 {
    0%, 100% {
        transform: translateY(0) rotate(35deg) scale(1);
    }
    50% {
        transform: translateY(15px) rotate(40deg) scale(0.95);
    }
}

/* --- Premium Scroll Reveal Styles --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Staggered transition delays for lists/grids */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --- Premium Hover Micro-Animations --- */

/* Navigation Links Sliding Underline */
/*.navbar-nav .nav-link {*/
/*    position: relative;*/
/*    transition: color 0.3s ease;*/
/*}*/

/*.navbar-nav .nav-link::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: -4px;*/
/*    left: 50%;*/
/*    width: 0;*/
/*    height: 2px;*/
/*    background-color: var(--primary-orange);*/
/*    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);*/
/*    transform: translateX(-50%);*/
/*}*/

/*.navbar-nav .nav-link:hover::after,*/
/*.navbar-nav .nav-link.active::after {*/
/*    width: 80%;*/
/*}*/

/* Button Pulse & Lift effects */
.btn {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.btn-purple:hover {
    box-shadow: 0 6px 15px rgba(132, 32, 115, 0.45) !important;
}

/* Welcome Section Feature Box Lift & Border Transition */
.feature-box {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08) !important;
    border-color: rgba(46, 49, 146, 0.15) !important;
}

.feature-box i {
    transition: transform 0.3s ease;
}

.feature-box:hover i {
    transform: scale(1.15) rotate(5deg);
}

/* Countdown Card Hover lift */
.countdown-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.countdown-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}

/* Quick Links Floating Action Hover */
.quick-links a {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.quick-links a:hover {
    transform: scale(1.08) translateY(-3px);
}

/* --- Engaging Footer Redesign --- */
.footer {
    background-color: var(--primary-purple);
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Social Circles with Glowing Hovers */
.social-circles .social-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 0.95rem;
    text-decoration: none;
}

.social-circles .social-circle:hover {
    background: var(--primary-orange);
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.45);
}

/* Sliding Navigation Links */
.footer-links li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--primary-orange) !important;
    transform: translateX(6px);
}

/* Interactive updates Capture Form */
.bg-dark-tint {
    background-color: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.bg-dark-tint:focus {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--primary-orange) !important;
    box-shadow: 0 0 12px rgba(242, 101, 34, 0.25) !important;
}

.bg-dark-tint::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.border-secondary-tint {
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-orange {
    background-color: var(--primary-orange);
    border: 1px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: var(--primary-orange-hover, #d9531e);
    border-color: var(--primary-orange-hover, #d9531e);
    transform: scale(1.05);
}

/* Helpdesk Tinted Contact Icons */
.icon-tint {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.footer-contacts li:hover .icon-tint {
    transform: scale(1.15) rotate(-5deg);
}

.bg-orange-light {
    background-color: rgba(242, 101, 34, 0.15);
}

.bg-blue-light {
    background-color: rgba(46, 49, 146, 0.15);
}

/* Ensure blue email icon is bright and highly visible on dark footer */
.footer-contacts .bg-blue-light {
    background-color: rgba(56, 189, 248, 0.18) !important;
}
.footer-contacts .text-blue {
    color: #38bdf8 !important;
}

.bg-green-light {
    background-color: rgba(0, 166, 81, 0.15);
}

.opacity-15 {
    opacity: 0.15;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-text {
        text-align: center;
        margin-bottom: 30px;
    }
    .event-info {
        justify-content: center;
    }
    .display-3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .countdown-number {
        font-size: 2.5rem;
    }
}


