/* Enhanced Banner Styles */
.banner-area {
    position: relative;
    height: 100vh;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}




/* Particle Effects */
.banner-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(96, 165, 250, 0.7);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 30%;
    top: 60%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 50%;
    top: 30%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 70%;
    top: 80%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    left: 90%;
    top: 40%;
    animation-delay: 8s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0.8;
    }

    90% {
        opacity: 1;
    }
}

/* Banner Badge */
.banner-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #60A5FA;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.4), transparent);
    animation: badgeGlow 3s infinite;
}

@keyframes badgeGlow {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Title Highlight */
.title-highlight {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
    white-space: nowrap;
    text-decoration: none !important;
}

.title-highlight2 {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
    white-space: nowrap;
    text-decoration: none !important;
}

/* Banner Subtitle */
.banner-subtitle {
    max-width: 90%;
    line-height: 1.6;
}

/* Info Cards */
.banner-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.banner-info-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(96, 165, 250, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(96, 165, 250, 0.3);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(96, 165, 250, 0.4);
}

.info-card-content {
    flex: 1;
}

.info-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-weight: 600;
}

.info-value {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--heading-font);
}

/* Enhanced CTA Button */
.btn-enhanced-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.5);
}

.btn-enhanced-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(96, 165, 250, 0.7);
    color: #ffffff;
}

.btn-enhanced-cta:hover .btn-arrow {
    transform: translateX(6px);
}

.btn-bg-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-enhanced-cta:hover .btn-bg-glow {
    left: 100%;
}

.btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

/* Image Container */
.banner-img-wrapper {
    width: 55%;
    pointer-events: none;
}

.banner-img-wrapper>* {
    pointer-events: auto;
}

.banner-img-container {
    position: relative;
    padding: 0 0 0 20px;
    max-width: 650px;
    margin-left: auto;
}

.img-bg-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(135deg, rgba(253, 163, 18, 0.15) 0%, rgba(51, 68, 218, 0.15) 100%);
    border-radius: 30px 30px 0 0;
    z-index: 1;
}

.banner-main-img {
    position: relative;
    z-index: 2;
    height: 100vh;
    border-radius: 20px 20px 0 0;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.banner-doctor-img {
    height: 70vh;
    width: auto;
    max-width: none;
    display: block;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 -20px 40px rgba(0, 0, 0, 0.3));
}

/* Floating Stat Cards */
.floating-stat-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 3;
    animation: floatCard 3s ease-in-out infinite;
}

.stat-card-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.stat-card-2 {
    bottom: 15%;
    right: -10%;
    animation-delay: 1.5s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #021691 0%, #3344DA 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #021691;
    font-family: var(--heading-font);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =========================================
   PERFECT RESPONSIVE STYLES  
   Truly responsive for ALL screen sizes
   ========================================= */

/* Prevent horizontal scroll */
.banner-area {
    overflow-x: hidden;
}

/* ==========================================
   DESKTOP LAYOUT (992px and above)
   Fluid responsive for all desktop sizes
   ========================================== */

/* Desktop - Proper Sizing for 100vh */
@media (min-width: 992px) {

    /* Row is now exactly 100vh via inline style */
    .banner-area .row {
        align-items: center !important;
    }

    .banner-content-wrapper {
        max-width: 600px;
        padding-right: 40px;
    }

    .banner-title {
        font-size: clamp(60px, 6vw, 94px) !important;
    }

    .banner-subtitle {
        font-size: clamp(16px, 1.2vw, 19px);
    }

    .banner-info-card {
        padding: 18px 22px;
    }

    .btn-enhanced-cta {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* ==========================================
   150% ZOOM FIX - CRITICAL BREAKPOINTS
   150% zoom creates these viewport widths:
   - 1920px → 1280px
   - 1440px → 960px
   - 1366px → 910px
   - 1280px → 853px
   ========================================== */

/* For 150% zoom on 1920px and 1440px screens */
@media (min-width: 992px) and (max-width: 1350px) {
    .banner-title {
        font-size: 56px !important;
        line-height: 1.1 !important;
        margin-bottom: 1rem !important;
    }

    .banner-title sup {
        font-size: 2rem !important;
    }

    .banner-subtitle {
        font-size: 15px !important;
        margin-bottom: 1.5rem !important;
    }

    .banner-content-wrapper {
        max-width: 500px;
        padding-right: 20px;
    }

    .banner-info-card {
        padding: 16px 20px;
        gap: 14px;
    }

    .info-card-icon {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

    .info-value {
        font-size: 16px;
    }

    .btn-enhanced-cta {
        padding: 15px 30px;
        font-size: 15px;
    }
}

/* For 150% zoom on smaller laptops (1366px, 1280px) */
@media (min-width: 850px) and (max-width: 1150px) {
    .banner-title {
        font-size: 48px !important;
        line-height: 1.1 !important;
    }

    .banner-title sup {
        font-size: 1.75rem !important;
    }

    .banner-subtitle {
        font-size: 14px !important;
    }

    .banner-content-wrapper {
        max-width: 450px;
    }

    /* Stack cards vertically */
    .banner-area .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .banner-info-card {
        padding: 14px 18px;
    }

    .info-value {
        font-size: 15px;
    }

    .btn-enhanced-cta {
        padding: 14px 28px;
        font-size: 14px;
    }

    .banner-img-wrapper {
        width: 42%;
    }
}

/* Better viewport height handling */
@media (min-width: 992px) {

    .banner-main-img,
    .banner-doctor-img {
        height: 70vh;
    }
}

/* Prefer newer viewport units when supported */
@supports (height: 50svh) {
    @media (min-width: 992px) {

        .banner-main-img,
        .banner-doctor-img {
            height: 60svh;
        }
    }
}

@supports (height: 100dvh) {
    @media (min-width: 992px) {

        .banner-main-img,
        .banner-doctor-img {
            height: 70dvh;
            padding-right: 10px;
        }
    }
}

/* Large Desktop - Additional refinements */
@media (min-width: 1200px) {
    .banner-content-wrapper {
        max-width: 650px;
    }

    .banner-img-wrapper {
        width: 50%;
    }
}

/* ==========================================
   150% ZOOM FIX (approx 850px - 1080px)
   Critical for zoomed screens and small laptops
   ========================================== */
@media (min-width: 992px) and (max-width: 1100px) {
    .banner-title {
        font-size: clamp(48px, 5vw, 60px) !important;
        line-height: 1.1 !important;
        margin-bottom: 1rem !important;
    }

    .banner-title sup {
        font-size: 2rem !important;
    }

    .banner-subtitle {
        font-size: 14px !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.5 !important;
    }

    .banner-content-wrapper {
        max-width: 450px;
        padding-right: 20px;
    }

    /* Stack info cards vertically on smaller screens */
    .banner-info-card {
        padding: 14px 18px;
        gap: 12px;
    }

    .info-card-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .info-value {
        font-size: 15px;
    }

    .info-label {
        font-size: 10px;
    }

    .btn-enhanced-cta {
        padding: 14px 28px;
        font-size: 14px;
    }

    .banner-img-wrapper {
        width: 45%;
    }
}

/* Extra tight for very zoomed screens */
@media (min-width: 992px) and (max-width: 1050px) {
    .banner-title {
        font-size: 44px !important;
    }

    .banner-subtitle {
        font-size: 13px !important;
    }

    /* Make cards stack */
    .banner-area .row.g-3 .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .banner-info-card {
        padding: 12px 16px;
    }
}

/* Extra Large Desktop */
@media (min-width: 1400px) {
    .banner-content-wrapper {
        max-width: 700px;
    }

    .banner-subtitle {
        font-size: clamp(18px, 1.2vw, 22px);
    }
}

/* ==========================================
   MOBILE & TABLET LAYOUT (below 992px)
   HIDE IMAGE - CENTERED CONTENT
   ========================================== */

@media (max-width: 991px) {

    /* Remove fixed background on mobile */
    .banner-area {
        background-image: url('../images/img/mobile_banner.png') !important;
        background-attachment: scroll !important;
        padding: 110px 0 50px !important;
        min-height: auto !important;
    }

    /* Remove min-vh-100 constraint */
    .banner-area .row {
        min-height: auto !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    /* HIDE THE IMAGE COLUMN COMPLETELY ON MOBILE/TABLET */
    .banner-img-wrapper,
    .banner-img-container,
    .banner-main-img,
    .banner-doctor-img {
        display: none !important;
    }

    /* Make content column full width */
    .banner-area .col-lg-6:first-child {
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    /* Center content with max-width */
    .banner-content-wrapper {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        padding: 0 20px;
    }

    /* Typography for tablet */
    .banner-title {
        font-size: clamp(40px, 7vw, 50px) !important;
        margin-bottom: 1.25rem !important;
        line-height: 1.15 !important;
    }

    .banner-subtitle {
        font-size: 17px !important;
        max-width: 100% !important;
        margin: 0 auto 2rem !important;
        line-height: 1.6 !important;
    }

    /* Info cards row - keep side by side on tablet */
    .banner-info-card {
        padding: 18px 20px;
        margin-bottom: 0;
        justify-content: flex-start;
    }

    .info-card-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .info-value {
        font-size: 16px;
    }

    .info-label {
        font-size: 11px;
    }

    /* CTA button */
    .btn-enhanced-cta {
        padding: 17px 36px;
        font-size: 16px;
        display: inline-flex;
    }

    /* Hide floating stat cards */
    .floating-stat-card {
        display: none !important;
    }
}

/* ==========================================
   TABLET PORTRAIT (768px - 991px)
   ========================================== */

@media (min-width: 768px) and (max-width: 991px) {
    .banner-area {
        padding: 100px 0 50px !important;
    }

    .banner-content-wrapper {
        max-width: 700px;
    }

    .banner-title {
        font-size: clamp(44px, 6.5vw, 50px) !important;
        margin-bottom: 1.5rem !important;
    }

    .banner-subtitle {
        font-size: 18px !important;
        max-width: 85% !important;
    }

    /* Keep cards side by side on tablet */
    .banner-info-card {
        padding: 20px 22px;
    }

    .info-card-icon {
        width: 46px;
        height: 46px;
    }
}

/* ==========================================
   MOBILE DEVICES (below 768px)
   ========================================== */

@media (max-width: 767px) {
    .banner-area {
        padding: 95px 0 40px !important;
    }

    .banner-content-wrapper {
        max-width: 600px;
        padding: 0 15px;
    }

    /* Mobile typography */
    .banner-title {
        font-size: clamp(52px, 9vw, 40px) !important;
        margin-bottom: 1.125rem !important;
        line-height: 1.1 !important;
    }

    .banner-title sup {
        font-size: 1.65rem !important;
    }

    .banner-subtitle {
        font-size: 15px !important;
        margin-bottom: 1.875rem !important;
        line-height: 1.55 !important;
        max-width: 95% !important;
    }

    /* Center info cards content on mobile */
    .banner-info-card {
        padding: 15px 18px;
        justify-content: flex-start;
        text-align: left;
        flex-direction: row;
        align-items: center;
    }

    .info-card-content {
        text-align: left;
    }

    .info-card-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
        margin-bottom: 8px;
    }

    .info-value {
        font-size: 15px;
    }

    .info-label {
        font-size: 10px;
    }

    /* Full width button on mobile */
    .btn-enhanced-cta {
        width: 100%;
        max-width: 400px;
        justify-content: center;
        padding: 16px 30px;
        font-size: 15px;
    }
}

/* ==========================================
   SMALL MOBILE (below 576px)
   ========================================== */

@media (max-width: 575px) {
    .banner-area {
        padding: 85px 0 35px !important;
    }

    .container.tw-container-1624-px {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .banner-content-wrapper {
        max-width: 100%;
        padding: 0 10px;
    }

    .banner-title {
        font-size: clamp(28px, 10vw, 34px) !important;
        margin-bottom: 1rem !important;
    }

    .banner-title sup {
        font-size: 1.5rem !important;
    }

    .banner-subtitle {
        font-size: 14px !important;
        margin-bottom: 1.625rem !important;
        max-width: 100% !important;
    }

    /* Tighter info cards - properly centered */
    .banner-info-card {
        padding: 14px 16px;
        gap: 8px;
    }

    .info-card-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
        margin-bottom: 0;
    }

    .info-value {
        font-size: 14px;
    }

    .btn-enhanced-cta {
        padding: 15px 26px;
        font-size: 14px;
        max-width: 100%;
    }

    .btn-enhanced-cta i {
        font-size: 16px;
    }

    /* Simplify particles on mobile */
    .particle {
        width: 3px;
        height: 3px;
        opacity: 0.5;
    }
}

/* ==========================================
   EXTRA SMALL MOBILE (below 480px)
   ========================================== */

@media (max-width: 479px) {
    .banner-area {
        padding: 80px 0 30px !important;
    }

    .banner-title {
        font-size: clamp(26px, 11vw, 30px) !important;
        margin-bottom: 0.875rem !important;
    }

    .banner-title sup {
        font-size: 1.35rem !important;
    }

    .banner-subtitle {
        font-size: 13px !important;
        margin-bottom: 1.5rem !important;
    }

    .banner-info-card {
        padding: 12px 14px;
        gap: 6px;
    }

    .info-card-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        border-radius: 10px;
        margin-bottom: 5px;
    }

    .info-value {
        font-size: 13px;
    }

    .btn-enhanced-cta {
        padding: 14px 24px;
        font-size: 13px;
    }

    /* Disable glow effect on small devices */
    .btn-bg-glow {
        display: none;
    }
}

/* ==========================================
   TINY DEVICES (below 375px)
   ========================================== */

@media (max-width: 374px) {
    .banner-area {
        padding: 75px 0 25px !important;
    }

    .container.tw-container-1624-px {
        padding-left: 0.875rem;
        padding-right: 0.875rem;
    }

    .banner-title {
        font-size: 24px !important;
        margin-bottom: 0.75rem !important;
    }

    .banner-title sup {
        font-size: 1rem !important;
    }

    .banner-subtitle {
        font-size: 12px !important;
        margin-bottom: 1.25rem !important;
    }

    .banner-info-card {
        padding: 11px 12px;
    }

    .info-card-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .info-value {
        font-size: 12px;
    }

    .info-label {
        font-size: 9px;
    }

    .btn-enhanced-cta {
        padding: 13px 20px;
        font-size: 12px;
    }

    .btn-enhanced-cta i {
        font-size: 13px;
    }
}

/* ==========================================
   LANDSCAPE ORIENTATION (Mobile)
   ========================================== */

@media (max-width: 991px) and (max-height: 600px) and (orientation: landscape) {
    .banner-area {
        padding: 60px 0 30px !important;
    }

    .banner-title {
        margin-bottom: 0.875rem !important;
    }

    .banner-subtitle {
        margin-bottom: 1.25rem !important;
    }

    .banner-info-card {
        padding: 11px 14px;
    }

    .btn-enhanced-cta {
        padding: 13px 26px;
    }
}

/* ==========================================
   HIGH RESOLUTION DISPLAYS
   ========================================== */

@media (min-width: 992px) and (-webkit-min-device-pixel-ratio: 2),
(min-width: 992px) and (min-resolution: 192dpi) {
    .banner-doctor-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ==========================================
   ACCESSIBILITY - REDUCED MOTION
   ========================================== */

@media (prefers-reduced-motion: reduce) {

    .banner-info-card,
    .btn-enhanced-cta,
    .particle,
    .btn-arrow,
    .floating-stat-card {
        animation: none !important;
        transition: none !important;
    }

    .banner-info-card:hover,
    .btn-enhanced-cta:hover {
        transform: none !important;
    }

    .banner-main-img:hover .banner-doctor-img {
        transform: none !important;
    }
}

/* countdown */
/* Modern Countdown Section Styles */
.counter-area {
    background-color: #ffffff;
    background-image: none;
    position: relative;
}

.counter-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
}

.counter-area>* {
    position: relative;
    z-index: 1;
}

.counter-bg-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: transparent;
    animation: gradientMove 15s ease-in-out infinite alternate;
}

.counter-bg-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: transparent;
    filter: blur(80px);
    pointer-events: none;
}

/* Sea Waves Animation */
.sea-waves {
    position: absolute;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.sea-waves-bottom {
    bottom: 0;
}

.sea-waves-top {
    top: 0;
    transform: rotate(180deg);
}

.sea-waves-top .wave {
    animation-direction: reverse;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 150px;
    background-repeat: repeat-x;
    background-position: bottom;
}

.wave1 {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 150' preserveAspectRatio='none'%3E%3Cpath d='M0,75 Q300,25 600,75 T1200,75 L1200,150 L0,150 Z' fill='%2360A5FA' opacity='0.25'/%3E%3C/svg%3E");
    background-size: 1200px 150px;
    animation: wave-animation 20s linear infinite;
    opacity: 0.3;
}

.wave2 {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 150' preserveAspectRatio='none'%3E%3Cpath d='M0,80 Q400,30 800,80 T1200,80 L1200,150 L0,150 Z' fill='%233B82F6' opacity='0.2'/%3E%3C/svg%3E");
    background-size: 1200px 150px;
    animation: wave-animation 25s linear infinite;
    animation-delay: -8s;
    opacity: 0.25;
    height: 180px;
    background-size: 1200px 180px;
}

.wave3 {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 150' preserveAspectRatio='none'%3E%3Cpath d='M0,85 Q500,35 1000,85 T1200,85 L1200,150 L0,150 Z' fill='%232563EB' opacity='0.15'/%3E%3C/svg%3E");
    background-size: 1200px 150px;
    animation: wave-animation 30s linear infinite;
    animation-delay: -15s;
    opacity: 0.2;
    height: 200px;
    background-size: 1200px 200px;
}

@keyframes wave-animation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments for waves */
@media (max-width: 991.98px) {
    .sea-waves {
        height: 150px;
    }
    
    .wave {
        height: 120px;
    }
    
    .wave2 {
        height: 140px;
    }
    
    .wave3 {
        height: 150px;
    }
}

@keyframes gradientMove {
    0% {
        transform: rotate(0deg) scale(1);
    }

    100% {
        transform: rotate(10deg) scale(1.1);
    }
}

.countdown-container {
    width: 100%;
}

/* Mobile: 2x2 Grid Layout */
@media (max-width: 767px) {
    .countdown-container {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 16px !important;
        max-width: 100%;
        justify-items: stretch;
    }
    
    .countdown-container > div {
        width: 100%;
        max-width: 100%;
    }
    
    /* Hide separators on mobile */
    .countdown-separator {
        display: none !important;
    }
}

.countdown-card {
    position: relative;
    background: #f9fafb;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 32px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    min-width: 140px;
}

@media (max-width: 767px) {
    .countdown-card {
        padding: 28px 20px;
        border-radius: 16px;
        min-width: 100%;
        width: 100%;
        margin: 0;
    }
}

.countdown-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: #f3f4f6;
    border-color: #d1d5db;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1),
        0 0 60px rgba(51, 68, 218, 0.1);
}

@media (max-width: 767px) {
    .countdown-card:hover {
        transform: none;
    }
}

.countdown-card-inner {
    position: relative;
    z-index: 2;
}

.countdown-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100px;
    background: linear-gradient(180deg, var(--main-600) 0%, transparent 100%);
    opacity: 0.3;
    filter: blur(30px);
    transition: opacity 0.4s ease;
}

.countdown-card:hover .countdown-glow {
    opacity: 0.6;
}

.countdown-number {
    font-family: var(--heading-font);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: none;
}

@media (max-width: 767px) {
    .countdown-number {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
        margin-bottom: 10px;
    }
}

.countdown-number span {
    display: inline-block;
    transition: transform 0.1s ease-out;
}

.countdown-seconds span {
    color: #1a1a1a;
    text-shadow: none;
}

.countdown-label {
    font-family: var(--heading-font);
    font-size: 1rem;
    font-weight: 600;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 3px;
}

@media (max-width: 767px) {
    .countdown-label {
        font-size: 0.875rem;
        letter-spacing: 2px;
    }
}

.countdown-separator {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #9ca3af;
    align-items: center;
    justify-content: center;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.countdown-card-pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(51, 68, 218, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(51, 68, 218, 0);
    }
}

/* Speakers section */

/* 5-Column Speakers Grid Styles */
.speakers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.speaker-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 12px;
}

@media (max-width: 1199px) {
    .speaker-col {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

@media (max-width: 767px) {
    .speaker-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 480px) {
    .speaker-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.speakers-grid .team-card-thumb-wrapper,
.speakers-grid .team-card-thumb-wrapper.thumb-wrapper-odd,
.speakers-grid .team-card-thumb-wrapper.thumb-wrapper-even {
    border-radius: 0 !important;
    border: none !important;
}

.speakers-grid .team-thumb {
    border-radius: 0 !important;
}

.speakers-grid .team-thumb-overlay {
    border-radius: 0 !important;
}

.speakers-grid .team-card-thumb-wrapper::before,
.speakers-grid .team-card-thumb-wrapper::after {
    border-radius: 0 !important;
    border: none !important;
    display: none !important;
}

/* Hide original team social elements */
.speakers-grid .team-social {
    display: none !important;
}

/* LinkedIn Button Styles */
.speaker-linkedin-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: var(--main-600);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    z-index: 5;
}

.team-card:hover .speaker-linkedin-btn {
    opacity: 1;
    transform: translateY(0);
}

.speaker-linkedin-btn:hover {
    background: #0077b5;
    color: #fff;
    transform: scale(1.1);
}

.speakers-grid .team-name {
    font-size: 1rem;
}

.speakers-grid .team-title {
    font-size: 0.875rem;
}

/* Hide any dashed lines/borders */
.speakers-grid .divider,
.speakers-grid .divider-dashed {
    display: none !important;
}

/* Speaker card clickable style */
.speakers-grid .speaker-card-clickable {
    cursor: pointer;
}

 /* Speaker Modal Styles */
 .speaker-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.speaker-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.speaker-modal-content {
    position: relative;
    background: #1a1a1a;
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.speaker-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.speaker-modal-close:hover {
    background: var(--main-600);
    transform: rotate(90deg);
}

.speaker-modal-body {
    padding: 40px;
}

.speaker-modal-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.speaker-modal-image img {
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

.speaker-modal-info {
    color: #fff;
}

.speaker-modal-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.speaker-modal-title {
    font-size: 1.2rem;
    color: #ffc107;
    margin-bottom: 30px;
    font-weight: 600;
}

.speaker-modal-bio {
    margin-bottom: 30px;
}

.speaker-modal-bio h4,
.speaker-modal-contact h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.speaker-modal-bio p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1rem;
}

.speaker-modal-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.speaker-modal-contact ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.speaker-modal-contact ul li i {
    font-size: 24px;
    color: #ffc107;
}

.speaker-modal-contact ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.speaker-modal-contact ul li a:hover {
    color: #ffc107;
}

.speaker-card-clickable {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.speaker-card-clickable:hover {
    transform: translateY(-5px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .speaker-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .speaker-modal-body {
        padding: 30px 20px;
    }

    .speaker-modal-name {
        font-size: 2rem;
    }

    .speaker-modal-image img {
        height: 400px;
    }
}

/* ==========================================
   Professional Banner Content Styles
   ========================================== */

/* Logo and Title Wrapper */
.banner-logo-title-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex-direction: column;
}

.banner-logo-mobile {
    width: 100%;
}

.banner-logo-img {
    max-width: 180px;
    height: auto;
    margin: 0 auto;
}

.banner-title-wrapper {
    width: 100%;
}

/* Mobile - Larger font and smaller logo */
@media (max-width: 991.98px) {
    .banner-logo-img {
        max-width: 150px;
    }
    
    .banner-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem) !important;
        line-height: 1.1 !important;
    }
    
    .banner-title sup {
        font-size: 0.5em !important;
    }
    
    .title-line-1,
    .title-line-2 {
        display: block;
        line-height: 1 !important;
    }
    
    .title-line-1 {
        margin-bottom: -0.2em;
    }
    
    .title-line-2 {
        margin-top: -0.1em;
    }
}

/* Desktop - Logo and Title Side by Side */
@media (min-width: 992px) {
    .banner-logo-title-wrapper {
        flex-direction: row;
        align-items: center;
    }
    
    .banner-logo-mobile {
        width: auto;
        flex-shrink: 0;
    }
    
    .banner-logo-img {
        max-width: 200px;
        margin: 0;
    }
    
    .banner-title-wrapper {
        width: auto;
        flex-grow: 1;
    }
    
    .banner-title {
        font-size: clamp(3rem, 5vw, 4.5rem) !important;
    }
    
    .title-line-1,
    .title-line-2 {
        display: inline;
    }
}

/* Logo Wrapper */
.banner-logo-wrapper {
    text-align: center;
    margin-bottom: 2.5rem;
}

.banner-logo {
    max-width: 280px;
    height: auto;
}

/* Title Styling */
.banner-title {
    line-height: 1.2;
    margin-bottom: 1rem;
    text-decoration: none !important;
}

.banner-title span,
.banner-title sup {
    text-decoration: none !important;
}

.title-highlight {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    white-space: nowrap;
    text-decoration: none !important;
}

.title-highlight2 {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    white-space: nowrap;
    text-decoration: none !important;
}

.title-year {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.5rem;
    letter-spacing: 2px;
}

/* Subtitle */
.banner-subtitle-wrapper {
    margin-bottom: 1.5rem;
}

.banner-subtitle {
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.7;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

/* Event Details */
.banner-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
}

.detail-item i {
    font-size: 18px;
    color: #60A5FA;
    margin-right: 8px;
}

/* Banner Content Wrapper */
.banner-content-wrapper {
    padding: 0;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .banner-logo {
        max-width: 220px;
    }

    .banner-subtitle-wrapper {
        margin-bottom: 1.25rem;
    }

    .banner-details {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        margin-top: 0.75rem;
    }
}

@media (max-width: 767.98px) {
    .banner-logo {
        max-width: 180px;
    }

    .banner-logo-wrapper {
        margin-bottom: 2rem;
    }

    .banner-subtitle {
        font-size: 15px;
    }

    .detail-item {
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .banner-logo {
        max-width: 150px;
    }

    .banner-subtitle {
        font-size: 14px;
    }

    .detail-item {
        font-size: 13px;
    }
}

.w-100{
    width: 100% !important;
}