/**
 * ICEFUE Custom CSS Override
 * Converts Bentol green palette → ICEFUE blue palette
 */

/* Global Preloader Removal */
.loading-screen, #loading-screen {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

:root {
    /* Primary Colors - ICEFUE Blue Palette */
    --theme-color: #0284c7;        /* Primary Blue - was #e3572b */
    --theme-color2: #38bdf8;       /* Light Blue accent - was #c2df93 */
    --theme-color3: #e0f2fe;       /* Very Light Blue bg - was #ecf8f8 */
    
    /* Dark Colors - Navy Blue Palette */
    --dark-color: #0c1e3a;         /* Dark Navy - was #063232 */
    --dark-color2: #0b1a33;        /* Darker Navy - was #053131 */
    --dark-color3: #1a3a5c;        /* Medium Navy - was #114f4f */
    --dark-color4: #122d4d;        /* Mid Navy - was #093b3b */
    
    /* Gray Colors - Slate Palette */
    --gray-color: #64748b;         /* Slate gray - was #5a7779 */
    --gray-color2: #94a3b8;        /* Light slate - was #90b4b6 */
    
    /* Light Colors */
    --light-color: #f0f9ff;        /* Very Light Blue - was #edfbfb */
    --light-color2: #e0f2fe;       /* Light Blue - was #f4f8ec */
    --light-color3: #bae6fd;       /* Medium Light Blue - was #dcefef */
    --light-color4: #bae6fd;       /* was #ddf1f1 */
    --light-color5: #f8fafc;       /* was #f6f6f6 */
    
    /* Background Colors Override */
    --bs-bg-color1: rgba(12, 30, 58, 0.4);
    --bs-bg-color3: rgba(2, 15, 40, 0.7);
    --bs-bg-color7: rgba(12, 30, 58, 0.10);
    --bs-bg-color8: rgba(12, 30, 58, 0.8);
    --bs-bg-color13: rgba(12, 30, 58, 0.70);
    --bs-bg-color15: rgba(12, 30, 58, 0.90);
    --bs-bg-color16: rgba(12, 30, 58, 0.30);
    --bs-bg-color17: rgba(56, 189, 248, 0.99);
    --bs-bg-color18: rgba(56, 189, 248, 0.50);
    --bs-bg-color19: rgba(3, 20, 50, 0.90);
    --bs-bg-color20: #1e40af;
    
    /* Border Colors Override */
    --bs-border-color5: rgba(0, 40, 80, 0.10);
    --bs-border-color6: rgba(12, 30, 58, 0.15);
    --bs-border-color7: rgba(12, 30, 58, 0.1);
    --bs-border-color10: rgba(12, 30, 58, 0.10);
    --bs-border-color12: rgba(12, 30, 58, 0.2);
}

/* ============================================
   ICEFUE Specific Styles
   ============================================ */

/* Preloader enhancement */
.loading-screen {
    background: linear-gradient(135deg, #0c1e3a 0%, #1a3a5c 100%);
}

/* Header area adjustments - Monolithic Solid Color */
.header-style2 .header-top {
    background: #0c1e3a !important;
}

.header-style2 .main-wrapper {
    background: #0c1e3a !important;
}

/*
 * Brand / logo (icefue.com/new)
 * NOTE: A global max-height on .header-logo img was capping inline heights and
 * making the mark look tiny; sizes are scoped per block below.
 */
.nav-header.header-style2 .main-wrapper .menu-area {
    padding-top: 0.65rem !important;
    padding-bottom: 0.65rem !important;
}

@media (min-width: 992px) {
    .nav-header.header-style2 .main-wrapper .menu-area {
        padding-top: 0.9rem !important;
        padding-bottom: 0.9rem !important;
    }
}

.icefue-brand-lockup__link {
    display: inline-flex !important;
    align-items: center !important;
    line-height: 0 !important;
    text-decoration: none !important;
}

/* Main nav — large, readable mark (wide SVG canvas → height-driven + max-width) */
.nav-header.header-style2 .icefue-brand-lockup__mark {
    display: block !important;
    width: auto !important;
    height: clamp(1.0rem, 5vw, 2.4rem) !important;
    max-width: min(10rem, 88vw) !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: left center !important;
    opacity: 1 !important;
    visibility: visible !important;
}

@media (min-width: 992px) {
    .nav-header.header-style2 .icefue-brand-lockup__mark {
        height: clamp(2.0rem, 3vw, 2.7rem) !important;
        max-width: min(12rem, 40vw) !important;
    }
}

/* Sticky bar — compact but still legible */
.sticky-header .icefue-brand-lockup--sticky .icefue-brand-lockup__mark {
    display: block !important;
    width: auto !important;
    height: clamp(1.1rem, 2vw, 1.4rem) !important;
    max-width: min(8rem, 52vw) !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: left center !important;
}

.icefue-mobile-brand__link {
    display: inline-flex !important;
    align-items: center !important;
    line-height: 0 !important;
}

.icefue-mobile-brand__mark {
    display: block !important;
    width: auto !important;
    height: clamp(1.2rem, 5vw, 1.45rem) !important;
    max-width: 100% !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: left center !important;
}

/* Force desktop header logo visibility and left placement */
.header-style2 .header-logo,
.sticky-header .header-logo {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.header-style2 .header-logo.icefue-brand-lockup,
.sticky-header .header-logo.icefue-brand-lockup {
    margin: 0 !important;
}

/* Older header markup (no BEM class on img): still kill the theme’s tiny logo cap */
.nav-header.header-style2 .main-wrapper .header-logo img:not(.icefue-brand-lockup__mark) {
    height: auto !important;
    max-height: 96px !important;
    width: auto !important;
    object-fit: contain !important;
    object-position: left center !important;
}

.sticky-header .header-logo img:not(.icefue-brand-lockup__mark) {
    max-height: 56px !important;
}

/* Always-visible logo item inside desktop menu */
.header-style2 .main-menu .navigation .menu-logo-item {
    display: inline-flex !important;
    align-items: center !important;
    margin-right: 20px !important;
}

.header-style2 .main-menu .navigation .menu-logo-item a {
    padding: 0 !important;
    border: 0 !important;
    line-height: 1 !important;
}

.header-style2 .main-menu .navigation .menu-logo-item img {
    display: block !important;
    height: 48px !important;
    width: auto !important;
    max-width: 220px !important;
}

@media (min-width: 992px) {
    .header-style2 .menu-area .row,
    .sticky-header .menu-area .row {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .header-style2 .menu-area .logo,
    .sticky-header .menu-area .logo {
        order: 1 !important;
        position: static !important;
        margin-right: 24px !important;
        flex: 0 0 auto !important;
    }

    .header-style2 .menu-area .logo.icefue-brand-col,
    .sticky-header .menu-area .logo.icefue-brand-col {
        flex-shrink: 0 !important;
        align-self: center !important;
    }

    .header-style2 .menu-area .nav-menu,
    .sticky-header .menu-area .nav-menu {
        order: 2 !important;
        position: static !important;
        transform: none !important;
        flex: 1 1 auto !important;
        display: flex !important;
        justify-content: center !important;
    }

    .header-style2 .menu-area .header-right-wrapper,
    .sticky-header .menu-area .header-right-wrapper {
        order: 3 !important;
        position: static !important;
        margin-left: 24px !important;
        flex: 0 0 auto !important;
    }

    .header-style2 .main-menu .navigation,
    .sticky-header .main-menu .navigation {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 14px !important; 
        transition: gap 0.3s ease;
    }

    /* Extra compact mode for smaller laptops (1200px - 1350px) */
    @media (max-width: 1350px) {
        .header-style2 .main-menu .navigation,
        .sticky-header .main-menu .navigation {
            gap: 16px !important;
        }
        
        .header-style2 .menu-area .logo,
        .sticky-header .menu-area .logo {
            margin-right: 12px !important;
        }

        .header-style2 .menu-area .header-right-wrapper,
        .sticky-header .menu-area .header-right-wrapper {
            margin-left: 12px !important;
        }
    }

    /* Ultra compact mode for tablets/small laptops (992px - 1199px) */
    @media (max-width: 1199px) {
        .header-style2 .main-menu .navigation,
        .sticky-header .main-menu .navigation {
            gap: 12px !important;
        }
        
        .main-menu .navigation > li > a {
            font-size: 0.68rem !important; /* Progressively smaller for ultra-compact */
            letter-spacing: 0 !important;
        }
    }

    .header-style2 .main-menu .navigation .menu-logo-item,
    .sticky-header .main-menu .navigation .menu-logo-item { display: none !important; }
}

/* New Standard Navigation Styles */
.main-menu .navigation > li > a {
    text-transform: capitalize !important; /* Changed from uppercase for a softer look */
    font-weight: 600 !important; /* Reduced to 600 for a more minimal look */
    letter-spacing: 0 !important; /* Removed letter spacing to save horizontal room */
    font-size: 0.89rem !important; /* Increased another 10% (from 0.81rem) */
    transition: all 0.3s ease !important;
    white-space: nowrap !important; /* Prevent text wrapping within items */
}

.main-menu .navigation > li > a::before {
    display: none !important; /* Remove the square indicator */
}

.main-menu .navigation > li.menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 8px;
    margin-bottom: 3px;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.main-menu .navigation > li {
    margin-right: 18px !important; /* Explicitly reduced spacing */
}

.main-menu .navigation > li:last-child {
    margin-right: 0 !important;
}

/* Ensure no square icons from theme */
.main-menu .navigation > li > a::before,
.main-menu .navigation > li::before {
    display: none !important;
    content: none !important;
}

/* Sub-menu Styles */
.main-menu .navigation li.menu-item-has-children .sub-menu {
    background: #0c1e3a !important;
    border: 1px solid rgba(56, 189, 248, 0.2) !important;
    border-radius: 12px !important;
    padding: 15px 0 !important;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3) !important;
    min-width: 260px !important;
    top: 100% !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.main-menu .navigation li.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-menu .navigation li.menu-item-has-children .sub-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 0 !important;
}

.main-menu .navigation li.menu-item-has-children .sub-menu li:last-child {
    border-bottom: none !important;
}

.main-menu .navigation li.menu-item-has-children .sub-menu li a {
    padding: 12px 25px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    display: block !important;
    transition: all 0.3s ease !important;
    text-transform: none !important; /* Standart normal case for sub-items */
}

.main-menu .navigation li.menu-item-has-children .sub-menu li a:hover {
    background: rgba(56, 189, 248, 0.1) !important;
    color: var(--theme-color2) !important;
    padding-left: 30px !important;
}

/* Mobile Menu Overrides for Hierarchy */
.mobile-menu .navigation li.submenu-item-has-children .mean-expand-class {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #fff !important;
}

.mobile-menu .navigation li a {
    text-transform: uppercase !important;
    font-weight: 800 !important;
}

.mobile-menu .navigation li ul li a {
    text-transform: none !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    opacity: 0.8 !important;
}

/* Hero Section ICEFUE Enhancements - Monolithic Solid Color */
/* Reverting to stable Solid Navy for total unity */
.header-style2 .header-top,
.header-style2 .main-wrapper,
.sticky-header,
.hero-section.style-2 {
    background: #0c1e3a !important;
    animation: none !important;
}

@keyframes heroGradientAnim {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hide decorative shapes & badges for a clean solid look */
.hero-content .p-top-right,
.hero-section.style-2 .p-top-right,
.hero-section.style-2 .circle-box {
    display: none !important;
}

/* Hero Innovation News Feed - Spaced Bar */
.hero-news-feed {
    position: relative;
    z-index: 20;
    margin-top: 60px; /* Professional gap below blocks */
    padding-bottom: 60px;
}

.news-feed-wrapper {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 30px;
}

.news-feed-label {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.news-feed-label i {
    color: var(--theme-color2);
    font-size: 1.2rem;
}

.news-feed-label span {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.hero-news-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none !important;
    padding: 5px 15px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-news-item:hover {
    background: rgba(56, 189, 248, 0.1);
    transform: translateY(-2px);
}

.news-item-date {
    background: rgba(56, 189, 248, 0.15);
    color: var(--theme-color2);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.news-item-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-news-item i {
    color: var(--theme-color2);
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.hero-news-item:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Swiper Fixes for News Feed */
.news-swiper {
    width: 100%;
    overflow: hidden;
}

@media (max-width: 991px) {
    .hero-news-feed {
        margin-top: 20px;
    }
    .news-feed-wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 15px;
    }
    .news-feed-label {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 0;
        padding-bottom: 10px;
        width: 100%;
    }
}

.hero-content .popup-video .icon {
    border-color: #38bdf8;
    color: #38bdf8;
}

/* Orange dot → Blue dot */
.orange-dot {
    position: relative;
}

.orange-dot .asterisk::before {
    filter: brightness(0) saturate(100%) invert(38%) sepia(96%) saturate(1255%) hue-rotate(180deg) brightness(95%) contrast(98%);
}

/* ============================================
   ABOUT SECTION V2 — PREMIUM REDESIGN
   ============================================ */
.icefue-about-v2 {
    position: relative;
    overflow: hidden;
}

.icefue-about-v2__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 800px;
}

/* Left Panel — Dark Navy Content */
.icefue-about-v2__left {
    background: linear-gradient(160deg, #070f1e 0%, #0c1e3a 40%, #122d4d 100%);
    display: flex;
    align-items: center;
    padding: 80px 60px 80px 80px;
    position: relative;
}

.icefue-about-v2__left::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.icefue-about-v2__left-inner {
    position: relative;
    z-index: 2;
    max-width: 580px;
}

/* Badge */
.icefue-about-v2__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #38bdf8;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.icefue-about-v2__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #38bdf8;
    animation: aboutPulse 2s ease-in-out infinite;
}

@keyframes aboutPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(56, 189, 248, 0); }
}

/* Title */
.icefue-about-v2__title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.icefue-about-v2__title em {
    font-style: italic;
    color: #38bdf8;
}

.icefue-about-v2__title strong {
    font-weight: 800;
    color: #ffffff;
}

/* Description */
.icefue-about-v2__desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

/* Feature Cards */
.icefue-about-v2__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 45px;
}

.icefue-about-v2__feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.icefue-about-v2__feature:hover {
    background: rgba(56, 189, 248, 0.06);
    border-color: rgba(56, 189, 248, 0.15);
    transform: translateX(6px);
}

.icefue-about-v2__feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 10px;
    color: #38bdf8;
    font-size: 1.1rem;
}

.icefue-about-v2__feature h4 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.icefue-about-v2__feature p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* CTA Buttons */
.icefue-about-v2__cta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.icefue-about-v2__ghost-btn {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.icefue-about-v2__ghost-btn:hover {
    color: #38bdf8;
    gap: 12px;
}

/* Right Panel — Image */
.icefue-about-v2__right {
    position: relative;
    overflow: hidden;
}

.icefue-about-v2__image-wrapper {
    position: absolute;
    inset: 0;
}

.icefue-about-v2__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.icefue-about-v2__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 30, 58, 0.15) 0%, rgba(12, 30, 58, 0.4) 100%);
    pointer-events: none;
}

/* Floating Stats Bar */
.icefue-about-v2__stats {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(12, 30, 58, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px 40px;
    z-index: 5;
}

.icefue-about-v2__stat {
    flex: 1;
    text-align: center;
}

.icefue-about-v2__stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.icefue-about-v2__stat-plus {
    color: #38bdf8;
    font-weight: 700;
    font-size: 1.6rem;
}

.icefue-about-v2__stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.icefue-about-v2__stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 8px;
}

/* Responsive */
@media (max-width: 991px) {
    .icefue-about-v2__grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .icefue-about-v2__left {
        padding: 60px 30px;
    }

    .icefue-about-v2__right {
        position: relative;
        height: 500px;
    }

    .icefue-about-v2__stats {
        bottom: 20px;
        left: 16px;
        right: 16px;
        padding: 22px 20px;
    }

    .icefue-about-v2__stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 575px) {
    .icefue-about-v2__left {
        padding: 50px 20px;
    }

    .icefue-about-v2__title {
        font-size: 1.8rem;
    }

    .icefue-about-v2__stats {
        flex-direction: column;
        gap: 16px;
        padding: 24px 20px;
    }

    .icefue-about-v2__stat-divider {
        width: 60px;
        height: 1px;
        margin: 0;
    }

    .icefue-about-v2__right {
        height: 380px;
    }
}

/* Choose section dark bg */
.choose-section.style-2 .outer-box.bg-dark {
    background: linear-gradient(135deg, #0c1e3a 0%, #1a3a5c 100%) !important;
}

/* Case studies / Projects */
.project-section .outer-box.bg-theme3 {
    background: linear-gradient(180deg, #e0f2fe 0%, #f0f9ff 100%);
}

.project-single-box .project-badge span {
    background: #0284c7;
}

/* FAQ accent */
.faq-section .acc-btn.active {
    color: #0284c7;
}

/* Team section gradient */
.team-section {
    background: linear-gradient(135deg, #0c1e3a 0%, #122d4d 100%);
}

/* Testimonial */
.testimonial-card.style-2 .quote-icon i {
    color: #0284c7;
}

/* Marquee section styling */
.marquee-section.style-2 {
    background: linear-gradient(90deg, #0284c7 0%, #0369a1 100%);
}

.marquee-section.style-2 .m-item {
    color: #ffffff;
}

.marquee-section.style-2 .m-item .icon {
    filter: brightness(0) invert(1);
}

/* Newsletter section */
.newsletter {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
}

/* Footer */
.footer-section.bg-dark {
    background: linear-gradient(180deg, #0c1e3a 0%, #070f1e 100%) !important;
}

.footer-social .social-link:hover {
    color: #38bdf8 !important;
}

/* Contact wrapper */
.contact-wrapper {
    background: #e0f2fe !important;
}

.contact-wrapper .contact-option i,
.contact-wrapper .social-option i {
    color: #0284c7;
}

/* Scroll top */
.scroll-top .progress-circle path {
    stroke: #0284c7;
}

/* Sticky header - Solid Brand Color */
.sticky-header {
    background: #0c1e3a !important;
    backdrop-filter: none !important;
}

/* Sub-menu border */
.main-menu ul.sub-menu li {
    border-bottom: 1px solid rgba(2, 132, 199, 0.18) !important;
}

/* WhatsApp floating button */
.sidebar-trigger.open {
    background-color: #25d366 !important;
    border-radius: 50%;
    width: 44px;
    height: 44px;
}

.sidebar-trigger.open span {
    color: #ffffff !important;
}

/* CTA button primary */
.theme-btn.bg-theme {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
    color: #ffffff !important;
    border: none;
}

.theme-btn.bg-theme:hover {
    background: linear-gradient(135deg, #0369a1 0%, #0c4a6e 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.35);
}

/* Secondary button */
.theme-btn.bg-dark {
    background: linear-gradient(135deg, #0c1e3a 0%, #1a3a5c 100%) !important;
}

.theme-btn.bg-dark:hover {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
}

/* Success rate circle */
.success-rate-wrapper .rate-circle {
    color: #0284c7;
    border-color: #0284c7;
}

/* Features list checkmarks */
.features-list li::before {
    filter: brightness(0) saturate(100%) invert(38%) sepia(96%) saturate(1255%) hue-rotate(180deg) brightness(95%) contrast(98%);
}

/* Selection color */
::selection {
    background: #0284c7;
}

::-moz-selection {
    background: #0284c7;
}

/* Smooth scrollbar */
body::-webkit-scrollbar-thumb {
    background-image: -webkit-linear-gradient(
        45deg,
        #0284c7 25%,
        transparent 20%,
        transparent 50%,
        #0284c7 50%,
        #0284c7 75%,
        transparent 75%,
        transparent
    ) !important;
}

/* Mobile menu */
.mobile-menu-wrapper .mobile-menu-area {
    background: linear-gradient(180deg, #0c1e3a 0%, #122d4d 100%);
}

/* Consultation form */
.consulation-form input {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(56, 189, 248, 0.3) !important;
}

.consulation-form button {
    background: #0284c7 !important;
    color: #fff !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .header-style2 .main-wrapper {
        background: #f0f9ff;
    }
    
    .sticky-header {
        background: rgba(240, 249, 255, 0.95) !important;
    }
}

/* Hero info band layout fixes */
.hero-info-wrap {
    background: rgba(8, 26, 52, 0.86) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.hero-info-wrap .row {
    display: flex !important;
    align-items: center !important;
    row-gap: 18px !important;
}

.hero-info-wrap .row > div {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
}

.hero-info-wrap .consulation-form {
    display: flex;
    align-items: stretch;
    min-width: 0;
}

.hero-info-wrap .consulation-form input {
    min-width: 0;
    flex: 1 1 auto;
}

.hero-info-wrap .consulation-form button {
    flex: 0 0 48px;
}

.hero-info-wrap .hero-social-proof,
.hero-info-wrap .success-rate-wrapper {
    height: 100%;
}

.hero-info-wrap .hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-info-wrap .success-rate-wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
}

.hero-info-wrap .success-rate-wrapper .content {
    min-width: 0;
}

.hero-info-wrap .success-rate-wrapper .title,
.hero-info-wrap .success-rate-wrapper .text {
    overflow-wrap: anywhere;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hero-info-wrap .row {
        align-items: center !important;
    }

    .hero-info-wrap .row > div:nth-child(1) {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .hero-info-wrap .row > div:nth-child(2),
    .hero-info-wrap .row > div:nth-child(3) {
        width: 50% !important;
        max-width: 50% !important;
        flex: 0 0 50% !important;
    }

    .hero-info-wrap .hero-social-proof {
        padding-left: 0;
    }
}

@media (min-width: 1200px) {
    .hero-info-wrap .row > div {
        width: 33.3333% !important;
        max-width: 33.3333% !important;
        flex: 0 0 33.3333% !important;
    }
}

@media (max-width: 767px) {
    .hero-info-wrap .hero-social-proof,
    .hero-info-wrap .success-rate-wrapper {
        gap: 14px;
    }

    .hero-info-wrap .success-rate-wrapper {
        flex-wrap: wrap;
    }

    .hero-info-wrap .hero-social-proof {
        padding-left: 0;
    }
}

/* Hero Slider Refinements */
.hero-content-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-content-slider .swiper-wrapper {
    height: 100%;
}

.hero-content-slider .swiper-slide {
    opacity: 0 !important;
    transition: opacity 1.5s ease-in-out;
    background: transparent;
    height: 100% !important;
    display: flex;
    flex-direction: column;
}

.hero-content-slider .swiper-slide-active {
    opacity: 1 !important;
}

.hero-content-slider .hero-content {
    flex: 1;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hide swiper pagination/navigation for 'minimal' look */
.hero-content-slider .swiper-pagination,
.hero-content-slider .swiper-button-next,
.hero-content-slider .swiper-button-prev {
    display: none !important;
}

/* Ensure the slider has a consistent minimum height to prevent layout shifts */
.hero-content-slider {
    min-height: 416px;
}

@media (max-width: 1199px) {
    .hero-content-slider {
        min-height: 384px;
    }
}

@media (max-width: 991px) {
    .hero-content-slider {
        min-height: 336px;
    }
}

@media (max-width: 575px) {
    .hero-content-slider {
        min-height: 368px; /* Account for text wrapping on small screens */
    }
}

/* Technology Page - Image Refinements */
.technology-page img.rounded-4,
.technology-page .rounded-4 img {
    border-radius: 32px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

.technology-page img.rounded-4:hover {
    transform: translateY(-5px);
}

/* Replication Hero Styles */
.replica-tech-hero {
    background: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at center, #102a52 0%, #0c1e3a 100%) !important;
    background-size: 50px 50px, 50px 50px, 100% 100% !important;
    padding: 85px 0 65px 0 !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff !important;
    width: 100%;
}

@keyframes atmosphereSweep {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    50% { transform: translate(-45%, -55%) rotate(180deg) scale(1.2); }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

.replica-tech-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../images/shapes/star-map.png'); /* Pattern if exists, otherwise subtle noise */
    opacity: 0.1;
    pointer-events: none;
}

/* High-Visibility Aura Layer */
.replica-tech-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, 
        rgba(2, 132, 199, 0.12) 0%, 
        rgba(79, 70, 229, 0.08) 25%, 
        rgba(20, 184, 166, 0.05) 50%, 
        transparent 70%);
    z-index: 1;
    pointer-events: none;
    filter: blur(60px);
    animation: atmosphereSweep 25s linear infinite;
    transform-origin: center;
}

.replica-tech-hero .container {
    position: relative;
    z-index: 2;
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tech Corner Accents */
.replica-tech-hero .container::before,
.replica-tech-hero .container::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1px solid rgba(255,255,255,0.15);
    opacity: 0.5;
    pointer-events: none;
}
.replica-tech-hero .container::before { top: -10px; left: 0; border-right: 0; border-bottom: 0; }
.replica-tech-hero .container::after { bottom: -10px; right: 0; border-left: 0; border-top: 0; }

.replica-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff !important;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 35px;
    line-height: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.replica-tech-hero .title {
    font-size: 3.8rem !important;
    font-weight: 900 !important;
    color: #fff !important;
    margin: 0 auto 25px auto !important;
    line-height: 1.1 !important;
    max-width: 900px;
    text-align: center;
    text-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.replica-tech-hero .text-highlight {
    background: linear-gradient(90deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.replica-desc {
    font-size: 1.25rem !important;
    color: rgba(255,255,255,0.8) !important;
    max-width: 800px;
    margin: 0 auto !important;
    line-height: 1.6 !important;
}

@media (max-width: 991px) {
    .replica-tech-hero .title { font-size: 2.7rem !important; }
    .replica-desc { font-size: 1.1rem !important; }
    .replica-tech-hero { padding: 64px 0 48px 0 !important; min-height: auto; }
}

.replica-tech-hero.comparison .replica-badge {
    background: rgba(12, 30, 58, 0.05);
    border-color: rgba(12, 30, 58, 0.1);
    color: #0c1e3a;
}

.replica-tech-hero .title {
    font-size: clamp(1.8rem, 4.2vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.text-highlight {
    color: var(--theme-color);
}

.replica-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 720px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Patent Verification Bar */
.patent-bar {
    background: var(--theme-color);
    padding: 25px 0;
    color: #fff;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Comparison Table */
.comparison-table-wrap {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
}

.comp-table th, .comp-table td {
    padding: 25px 20px;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}

.comp-table th {
    background: #f8faff;
    font-weight: 800;
    color: #0c1e3a;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.comp-table .feature-col {
    text-align: left;
    font-weight: 700;
    background: #fff;
    width: 25%;
}

.comp-table .ice-col {
    background: rgba(0, 150, 255, 0.04);
    font-weight: 700;
    color: var(--theme-color);
}

.comp-table .ice-col i {
    color: var(--theme-color);
}

.comp-table .other-col {
    color: #666;
}

/* FAQ Accordion */
.replica-faq .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.replica-faq .accordion-button {
    font-weight: 700;
    padding: 20px 25px;
    background: #fff;
    color: #0c1e3a;
}

.replica-faq .accordion-button:not(.collapsed) {
    background: #fff;
    color: var(--theme-color);
    box-shadow: none;
}

/* Premium Final CTA */
.premium-final-cta {
    background: radial-gradient(circle at center, #0c1e3a 0%, #060e1d 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

@keyframes heroRadialAnim {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.premium-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/shapes/cta_bg_pattern.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.premium-final-cta .cta-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--theme-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.1);
}

.premium-final-cta .cta-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(to right, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-final-cta .cta-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 45px;
    line-height: 1.7;
}

.premium-final-cta .cta-btn-primary {
    background: var(--theme-color);
    color: #fff;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 151, 255, 0.2);
}

.premium-final-cta .cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 151, 255, 0.3);
}

.premium-final-cta .cta-btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.premium-final-cta .cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Header Right Buttons */
.header-right .clinic-login-btn {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-right .clinic-login-btn:hover {
    color: #fff !important;
}

.header-right .get-quote-btn {
    background: #0097ff !important; /* Bright Electric Blue */
    color: #fff !important;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 151, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.header-right .get-quote-btn:hover {
    background: #0080da !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 151, 255, 0.4);
}

@media (max-width: 991px) {
    .header-right .clinic-login-btn {
        display: none; /* Hide login on mobile header to save space */
    }
}

/* Modern Protocol Section Styles */
.protocol-steps-container {
    position: relative;
    padding-top: 20px;
}

/* Vertical Connector (Desktop Only) */
@media (min-width: 992px) {
    .protocol-steps-container {
        position: relative;
    }
    .protocol-steps-container::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 100px;
        bottom: 100px;
        width: 1px;
        background: linear-gradient(to bottom, rgba(12, 30, 58, 0.05), rgba(12, 30, 58, 0.15), rgba(12, 30, 58, 0.05));
        z-index: 1;
        transform: translateX(-50%);
    }
}

.tech-step-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(12, 30, 58, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
    overflow: hidden;
}

.tech-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(12, 30, 58, 0.1);
    border-color: rgba(12, 30, 58, 0.2);
}

.step-badge {
    display: inline-block;
    background: rgba(12, 30, 58, 0.05);
    color: #0c1e3a;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(12, 30, 58, 0.1);
}

.tech-step-card .fw-bold {
    color: #0c1e3a;
    letter-spacing: -0.5px;
    font-size: 1.65rem;
    margin-bottom: 1.5rem !important;
}

.tech-step-card .lead {
    font-size: 1.05rem;
    color: #4a5568 !important;
    line-height: 1.7;
    margin-bottom: 2rem !important;
}

/* Custom Check Icons */
.protocol-list {
    list-style: none !important;
    padding: 0 !important;
}

.protocol-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px !important;
    font-size: 0.95rem;
    color: #2d3748;
}

.protocol-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 1.25rem;
    color: #0c1e3a;
    transition: transform 0.3s ease;
}

.protocol-list li:hover i {
    transform: scale(1.2);
}

/* Results Gallery Styles */
.result-case-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(12, 30, 58, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.result-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(12, 30, 58, 0.1);
}

.case-img-wrap {
    position: relative;
    overflow: hidden;
}

.case-img-wrap img {
    transition: transform 0.6s ease;
}

.result-case-card:hover .case-img-wrap img {
    transform: scale(1.05);
}

.case-labels {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}

.label-before, .label-after {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.case-details {
    padding: 24px;
}

.case-id {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0c1e3a;
    margin: 0;
}

.case-tech {
    background: rgba(0, 151, 255, 0.1);
    color: #0097ff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
}

.case-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(12, 30, 58, 0.05);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

/* Testimonials & Trust Indicator Styles */
.trust-bar {
    background: #f8fafc;
    border-top: 1px solid rgba(12, 30, 58, 0.05);
    border-bottom: 1px solid rgba(12, 30, 58, 0.05);
    padding: 20px 0;
}

.trust-badge-mini {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 10px 25px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(12, 30, 58, 0.08);
}

.trust-stars {
    color: #48bb78; /* Trustpilot Green */
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-card-premium {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(12, 30, 58, 0.06);
    box-shadow: 0 10px 40px rgba(12, 30, 58, 0.03);
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(12, 30, 58, 0.08);
    border-color: rgba(12, 30, 58, 0.15);
}

.patient-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.patient-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #0c1e3a;
    font-size: 1.2rem;
    border: 2px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.patient-meta h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #0c1e3a;
}

.patient-meta p {
    font-size: 0.8rem;
    color: #718096;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.verified-badge {
    color: #38a169;
    font-size: 0.9rem;
}

.testimonial-content {
    flex-grow: 1;
}

.testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    position: relative;
}

.testimonial-quote-icon {
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: rgba(12, 30, 58, 0.03);
    z-index: 0;
    pointer-events: none;
}

.case-preview-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #edf2f7;
    text-decoration: none;
    color: #0c1e3a;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.case-preview-link:hover {
    color: #0097ff;
}

/* Video Placeholder Style */
.video-testimonial-wrap {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}

.video-testimonial-wrap::after {
    content: "";
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.video-play-btn i {
    color: #0097ff;
    font-size: 2rem;
    margin-left: 5px;
}

.video-testimonial-wrap:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
}

.video-label {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    z-index: 2;
}

/* Success Metrics Styles */
.metric-hero {
    background: #0c1e3a;
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
}

.big-stat-grid {
    margin-top: -60px;
}

.big-stat-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(12, 30, 58, 0.08);
    border: 1px solid rgba(12, 30, 58, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.big-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(12, 30, 58, 0.12);
}

.big-stat-card .stat-value {
    font-size: 4rem;
    font-weight: 800;
    color: #0097ff;
    line-height: 1;
    margin-bottom: 15px;
    display: block;
}

.big-stat-card .stat-label {
    font-size: 1rem;
    font-weight: 700;
    color: #0c1e3a;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Comparison Table */
.comparison-container {
    background: #f8fafc;
    border-radius: 40px;
    padding: 60px;
    border: 1px solid rgba(12, 30, 58, 0.05);
}

.comp-table {
    width: 100%;
}

.comp-row {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid rgba(12, 30, 58, 0.08);
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-feature {
    width: 40%;
    font-weight: 700;
    color: #0c1e3a;
    font-size: 1.1rem;
}

.comp-standard {
    width: 30%;
    color: #718096;
    text-align: center;
}

.comp-icefue {
    width: 30%;
    color: #0097ff;
    font-weight: 800;
    text-align: center;
    font-size: 1.1rem;
}

.accent-box {
    background: #0097ff;
    color: #fff;
    padding: 40px;
    border-radius: 30px;
    text-align: center;
}

.accent-box h3 {
    color: #fff;
    font-weight: 800;
}

.accreditation-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    opacity: 0.6;
    filter: grayscale(1);
    transition: all 0.3s ease;
}

.accreditation-cloud img:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* About Us Page Styles */
.about-stats-bar {
    background: #0c1e3a;
    padding: 60px 0;
    color: #fff;
}

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

.stat-box .number {
    font-size: 3rem;
    font-weight: 800;
    color: #0097ff;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-box .label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Timeline Modern */
.timeline-modern {
    position: relative;
    padding: 40px 0;
}

@media (min-width: 992px) {
    .timeline-modern::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 1px;
        background: rgba(12, 30, 58, 0.1);
        transform: translateX(-50%);
    }
}

.timeline-item-modern {
    position: relative;
    margin-bottom: 60px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 5px;
    width: 15px;
    height: 15px;
    background: #0097ff;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(0, 151, 255, 0.1);
}

.timeline-content-modern {
    width: 45%;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(12, 30, 58, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.timeline-item-modern:nth-child(even) .timeline-content-modern {
    margin-left: auto;
}

.timeline-year {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0c1e3a;
    margin-bottom: 10px;
}

/* Leadership Cards */
.leader-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(12, 30, 58, 0.08);
    box-shadow: 0 10px 40px rgba(12, 30, 58, 0.04);
    height: 100%;
    transition: all 0.4s ease;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(12, 30, 58, 0.1);
}

.leader-img {
    height: 350px;
    background: #f1f5f9;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.leader-img i {
    font-size: 15rem;
    color: rgba(12, 30, 58, 0.05);
    margin-bottom: -20px;
}

.leader-info {
    padding: 30px;
}

.leader-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0c1e3a;
    margin-bottom: 5px;
}

.leader-title {
    font-size: 0.75rem;
    color: #0097ff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.leader-bio {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Minimalist Hero Navigation - ULTRA CLEAN */
.hero-nav-wrapper {
    position: absolute;
    top: 40px;
    right: 40px;
    display: flex;
    gap: 30px;
    z-index: 10;
}

.hero-slider-nav-btn {
    width: auto;
    height: auto;
    border: none;
    background: transparent;
    color: #0c1e3a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    padding: 0;
}

.hero-slider-nav-btn:hover {
    color: #0097ff;
    background: transparent;
    transform: translateX(5px);
}

.hero-slider-nav-btn.hero-prev:hover {
    transform: translateX(-5px);
}

.hero-slider-nav-btn.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* Ensure Circle remains are gone */
.circle-box {
    display: none !important;
}

/* Fix Hero Title Word Breaking */
.hero-content .title-anim {
    word-break: normal !important;
    overflow-wrap: normal !important;
    word-wrap: normal !important;
    hyphens: none !important;
    white-space: normal !important;
    max-width: 100% !important; /* Allow more width */
    display: block !important;
}

.hero-content .title-anim span {
    display: inline-block !important;
    white-space: nowrap !important;
}

.hero-content h1.title {
    font-size: 64px !important; /* Reduced from default (~72-80px) */
    line-height: 1.1 !important;
    word-break: normal !important;
}

@media (max-width: 1399px) {
    .hero-content h1.title {
        font-size: 48px !important;
        line-height: 1.2 !important;
    }
}

@media (max-width: 991px) {
    .hero-nav-wrapper {
        position: relative;
        justify-content: center;
        margin-top: 30px;
        right: auto;
    }
}

@media (max-width: 991px) {
    .timeline-modern::before, .timeline-dot { display: none; }
    .timeline-content-modern { width: 100%; }
}

.stat-label {
    font-size: 0.65rem;
    color: #718096;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3748;
}

.protocol-list li strong {
    display: block;
    color: #0c1e3a;
    font-weight: 700;
    margin-bottom: 2px;
}

/* Image Enhancements */
.tech-step-img-wrap {
    position: relative;
    display: inline-block;
    padding: 10px;
}

.tech-step-img-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(12, 30, 58, 0.05);
    border-radius: 42px;
    pointer-events: none;
}

/* --- Cryo-Protection Page Premium Styling --- */
.cryo-hero-section {
    padding: 160px 0 120px;
    background: linear-gradient(135deg, #0c1e3a 30%, #0097ff26 100%), url('../images/banner/bg-tech.jpg') center/cover;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.tech-badge {
    background: rgba(0, 151, 255, 0.1);
    color: #0097ff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 151, 255, 0.2);
}

.cryo-hero-content h1.title {
    color: #fff;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.cryo-hero-content .desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.35rem;
    line-height: 1.6;
    max-width: 650px;
}

.cryo-stats-grid {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
}

.cryo-stats-grid .stat-item .value {
    color: #0097ff;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.cryo-stats-grid .stat-item .label {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cryo-feature-list .feature-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.cryo-feature-list .feature-item .icon {
    width: 65px;
    height: 65px;
    background: #0097ff0d;
    color: #0097ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 1.6rem;
    flex-shrink: 0;
    border: 1px solid #0097ff1a;
}

.cryo-feature-list .feature-item h4 {
    margin-bottom: 10px;
    font-weight: 700;
    color: #0c1e3a;
    font-size: 1.25rem;
}

.cryo-comparison-box {
    background: #0c1e3a;
    padding: 60px 40px;
    border-radius: 40px;
    position: relative;
    color: #fff;
    box-shadow: 0 40px 80px rgba(12, 30, 58, 0.25);
    border: 1px solid rgba(255,255,255,0.05);
}

.temp-gauge {
    width: 14px;
    height: 180px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 auto 40px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}

.gauge-liquid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, #0097ff, #7fceff);
    border-radius: 10px;
    box-shadow: 0 0 25px #0097ff80;
    transition: height 2s ease-in-out;
}

.cryo-step-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 30px;
    height: 100%;
    border: 1px solid #f1f4f8;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.cryo-step-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.cryo-step-card.active {
    background: #0c1e3a;
    color: #fff;
    border-color: #0c1e3a;
    box-shadow: 0 30px 60px rgba(12, 30, 58, 0.2);
}

.cryo-step-card .step-num {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    color: #0097ff;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cryo-step-card h3 {
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.cryo-accordion .accordion-item {
    border: 1px solid #f1f4f8;
    border-radius: 20px !important;
    margin-bottom: 20px;
    overflow: hidden;
}

.cryo-accordion .accordion-button {
    font-weight: 700;
    padding: 25px 30px;
    font-size: 1.1rem;
    color: #0c1e3a;
}

.cryo-accordion .accordion-button:not(.collapsed) {
    background: #f0f7ff;
    color: #0097ff;
}

@media (max-width: 991px) {
    .cryo-hero-content h1.title { font-size: 3rem; }
    .cryo-hero-section { padding: 120px 0 60px; min-height: auto; }
    .cryo-stats-grid { gap: 30px; }
}

/* --- Graft Survival Page Premium Styling --- */
.survival-hero-section {
    padding: 160px 0 100px;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95)), url('../images/banner/graft-science.png') center/cover;
    border-bottom: 1px solid #f1f4f8;
}

.survival-hero-content .title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #0c1e3a;
    line-height: 1.1;
    margin-bottom: 30px;
}

.survival-hero-content .desc {
    font-size: 1.35rem;
    color: #4a5568;
    max-width: 750px;
    line-height: 1.7;
}

.survival-metric-card {
    background: #0c1e3a;
    padding: 50px;
    border-radius: 40px;
    color: #fff;
    box-shadow: 0 40px 80px rgba(12, 30, 58, 0.15);
    margin-top: 30px;
}

.survival-metric-card .metric-header {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}

.survival-metric-card .metric-header .label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.6;
}

.profile-progress {
    height: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: visible;
}

.profile-progress .progress-bar {
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 151, 255, 0.5);
}

.survival-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.survival-info-grid .info-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #edf2f7;
    transition: all 0.3s ease;
}

.survival-info-grid .info-card:hover {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: #0097ff33;
}

.survival-info-grid .info-card .icon {
    font-size: 2.5rem;
    color: #0097ff;
    margin-bottom: 25px;
    display: block;
}

.survival-info-grid .info-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0c1e3a;
}

.survival-tech-box {
    background: #fff;
    padding: 50px 40px;
    border-radius: 30px;
    height: 100%;
    border-bottom: 4px solid #f1f4f8;
    transition: all 0.3s ease;
}

.survival-tech-box:hover {
    border-bottom-color: #0097ff;
    transform: translateY(-10px);
}

.survival-tech-box .icon-wrap {
    width: 70px;
    height: 70px;
    background: #f0f7ff;
    color: #0097ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.survival-tech-box h4 {
    font-weight: 800;
    margin-bottom: 15px;
    color: #0c1e3a;
}

.survival-result-cta {
    background: linear-gradient(135deg, #0c1e3a 0%, #0097ff 100%);
    padding: 80px 40px;
    border-radius: 50px;
    color: #fff;
}

.survival-result-cta h2 { color: #fff; font-size: 3rem; font-weight: 800; margin-bottom: 20px; }
.survival-result-cta p { color: rgba(255,255,255,0.9); }

@media (max-width: 991px) {
    .survival-hero-content .title { font-size: 3rem; }
    .survival-result-cta h2 { font-size: 2.2rem; }
}

/* --- Patents & Innovation Page Premium Styling --- */
.patent-hero-section {
    padding: 160px 0 100px;
    background: linear-gradient(rgba(12, 30, 58, 0.8), rgba(12, 30, 58, 0.9)), url('../images/banner/innovation-bg.png') center/cover;
    color: #fff;
    position: relative;
}

.patent-hero-section h1.title {
    color: #fff;
    font-size: 4.5rem;
    font-weight: 800;
}

.patent-hero-section .desc {
    color: rgba(255,255,255,0.7);
    font-size: 1.35rem;
    max-width: 800px;
}

.timeline-modern {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-modern::before {
    content: "";
    position: absolute;
    left: 100px;
    top: 0;
    height: 100%;
    width: 2px;
    background: #f1f4f8;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item .year {
    width: 100px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0097ff;
    flex-shrink: 0;
    padding-top: 5px;
}

.timeline-item .content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-left: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f1f4f8;
    position: relative;
}

.timeline-item .content::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 25px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-left: 1px solid #f1f4f8;
    border-bottom: 1px solid #f1f4f8;
    transform: rotate(45deg);
}

.timeline-item .content h4 {
    font-weight: 800;
    color: #0c1e3a;
    margin-bottom: 10px;
}

.ip-shield-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    border-left: 5px solid #0097ff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.ip-shield-card .icon {
    font-size: 2.5rem;
    color: #0c1e3a;
    margin-bottom: 20px;
    display: block;
}

.patent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.patent-item {
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    border: 1px solid #f1f4f8;
    transition: all 0.3s ease;
}

.patent-item:hover {
    border-color: #0097ff33;
    transform: translateY(-5px);
}

.patent-item i {
    font-size: 2rem;
    color: #0097ff;
    margin-bottom: 20px;
    display: block;
}

.patent-item h5 {
    font-weight: 800;
    color: #0c1e3a;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .timeline-modern::before { display: none; }
    .timeline-item { flex-direction: column; }
    .timeline-item .year { margin-bottom: 10px; }
    .timeline-item .content { margin-left: 0; }
    .timeline-item .content::before { display: none; }
    .patent-grid { grid-template-columns: 1fr; }
    .patent-hero-section h1.title { font-size: 3rem; }
}

/* --- Comparative Analysis Page Premium Styling --- */
.compare-hero-section {
    padding: 160px 0 100px;
    background: #f8fafc;
    border-bottom: 1px solid #edf2f7;
}

.compare-hero-section h1.title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #0c1e3a;
}

.compare-hero-section .desc {
    color: #4a5568;
    font-size: 1.35rem;
    max-width: 800px;
}

.comparison-modern-wrap {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.05);
    border: 1px solid #f1f4f8;
}

.table-modern {
    width: 100%;
    border-collapse: collapse;
}

.table-modern th {
    padding: 30px;
    background: #f8fafc;
    color: #4a5568;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #edf2f7;
}

.table-modern th.premium-col {
    background: #0c1e3a;
    color: #fff;
}

.table-modern td {
    padding: 25px 30px;
    border-bottom: 1px solid #f1f4f8;
    font-size: 1.1rem;
    color: #2d3748;
}

.table-modern .feat-label {
    font-weight: 700;
    color: #0c1e3a;
    background: #fcfdfe;
    width: 25%;
}

.table-modern .val-premium {
    background: #f0f7ff;
    color: #0097ff;
    font-weight: 700;
    width: 25%;
}

.table-modern .val-premium i { margin-right: 8px; }

.risk-card {
    background: #fff5f5;
    padding: 35px;
    border-radius: 30px;
    border-left: 5px solid #feb2b2;
}

.risk-card h5 { color: #c53030; font-weight: 800; }

.advantage-list .adv-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.advantage-list .adv-item .num {
    width: 50px;
    height: 50px;
    background: #0097ff;
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.advantage-list .adv-item h6 {
    font-weight: 800;
    color: #0c1e3a;
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.verdict-box {
    background: #0c1e3a;
    padding: 80px 40px;
    border-radius: 50px;
    color: #fff;
    box-shadow: 0 40px 80px rgba(12, 30, 58, 0.2);
}

.verdict-box h2 { color: #fff; font-size: 3.5rem; font-weight: 800; margin-bottom: 25px; }

@media (max-width: 991px) {
    .compare-hero-section h1.title { font-size: 3rem; }
    .table-modern { display: block; overflow-x: auto; }
    .table-modern .feat-label { min-width: 200px; }
    .verdict-box h2 { font-size: 2.2rem; }
}

/* --- Technology Hub Hub Premium Styling --- */
.tech-hub-hero {
    padding: 180px 0 100px;
    background: linear-gradient(rgba(12, 30, 58, 0.7), rgba(12, 30, 58, 0.8)), url('../images/banner/innovation-bg.png') center/cover;
    color: #fff;
}

.tech-hub-hero h1.title {
    color: #fff;
    font-size: 4.8rem;
    font-weight: 900;
}

.tech-hub-hero .desc {
    color: rgba(255,255,255,0.75);
    font-size: 1.4rem;
    max-width: 800px;
}

.hub-pivot-card {
    background: #fff;
    padding: 50px;
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #f1f4f8;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.hub-pivot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.06);
    border-color: #0097ff33;
}

.hub-pivot-card .pillar-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #0097ff;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.hub-pivot-card h3 {
    font-weight: 800;
    color: #0c1e3a;
    font-size: 2rem;
    margin-bottom: 20px;
}

.hub-pivot-card p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
    max-width: 300px;
}

.hub-link {
    font-weight: 700;
    color: #0097ff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.hub-link:hover {
    gap: 15px;
}

.hub-pivot-card .card-icon {
    font-size: 5rem;
    color: #f0f7ff;
    transition: color 0.3s ease;
}

.hub-pivot-card:hover .card-icon {
    color: #e0f0ff;
}

.tech-authority-bar {
    padding: 40px 0;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}

.marquee-tech ul {
    white-space: nowrap;
    animation: marquee-tech 20s linear infinite;
}

@keyframes marquee-tech {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-tech li {
    font-size: 1.25rem;
    color: #0c1e3a;
    opacity: 0.4;
    font-weight: 700;
}

.marquee-tech li strong { color: #0097ff; }

@media (max-width: 991px) {
    .tech-hub-hero h1.title { font-size: 3rem; }
    .hub-pivot-card { padding: 40px; flex-direction: column-reverse; align-items: flex-start; }
    .hub-pivot-card .card-icon { font-size: 3rem; margin-bottom: 20px; }
}

/* ============================================================
   Two-Block Hero Section Restoration
   ============================================================ */
.hero-style-two-block {
    background: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at center, #102a52 0%, #0c1e3a 100%) !important;
    background-size: 50px 50px, 50px 50px, 100% 100% !important;
    padding-top: 140px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero-style-two-block::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, 
        rgba(2, 132, 199, 0.12) 0%, 
        rgba(79, 70, 229, 0.08) 25%, 
        rgba(20, 184, 166, 0.05) 50%, 
        transparent 70%);
    z-index: 1;
    pointer-events: none;
    filter: blur(60px);
    animation: atmosphereSweep 25s linear infinite;
    transform-origin: center;
}

.hero-card {
    border-radius: 40px; /* Enhanced rounded corners as per screenshot */
    padding: 60px;
    height: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-card-light {
    background: #e0f2fe; /* Light ICEFUE Blue */
    color: #0c1e3a;
}

.hero-card-video {
    background: #000;
    padding: 0;
}

.hero-card-title {
    font-size: 3.8rem;
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 25px;
    color: #0c1e3a;
    letter-spacing: -2px;
}

.hero-card-title span.text-blue {
    color: #0284c7;
}

.hero-card-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
    color: #1a3a5c;
    max-width: 95%;
}

.hero-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.since-badge {
    background: #fff;
    color: #0c1e3a;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    letter-spacing: 0.5px;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(12, 30, 58, 0.2) 0%, rgba(12, 30, 58, 0.6) 100%);
    border-radius: 40px;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.video-play-btn .popup-video {
    width: 100px;
    height: 100px;
    background: #fff;
    color: #0097ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 0 20px rgba(255,255,255,0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-play-btn .popup-video:hover {
    transform: scale(1.15);
    box-shadow: 0 0 0 25px rgba(255,255,255,0.3);
}

/* Central Rotating Badge Restoration */
.hero-central-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    pointer-events: none;
}

.hero-central-badge .circle-box {
    width: 220px;
    height: 220px;
    background: #38bdf8; /* Vibrant ICEFUE Blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    border: 10px solid #0c1e3a;
    position: relative;
    overflow: hidden;
}

.hero-central-badge .text-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: text-rotate 12s linear infinite;
}

.hero-central-badge .text-inner svg {
    width: 100%;
    height: 100%;
    fill: #0c1e3a;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero-central-badge .inner-icon {
    font-size: 3rem;
    color: #0c1e3a;
    z-index: 2;
}

@keyframes text-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Mobile Adjustments */
@media (max-width: 1199px) {
    .hero-card-title { font-size: 3rem; }
    .hero-central-badge .circle-box { width: 180px; height: 180px; }
}

@media (max-width: 991px) {
    .hero-style-two-block {
        padding-top: 120px;
        padding-bottom: 80px;
    }
    
    .hero-card {
        padding: 40px;
        min-height: auto;
        margin-bottom: 20px;
    }
    
    .hero-card-title {
        font-size: 2.5rem;
    }
    
    .hero-central-badge {
        display: none; /* Hide complex badge on mobile */
    }
}

/* ============================================================
   News & Media - Premium Redesign v2
   ============================================================ */

/* --- Hero --- */
.news-hero-section {
    background: linear-gradient(160deg, #020a18 0%, #0c1e3a 40%, #0a2a52 100%);
    padding: 112px 0 64px;
    position: relative;
    overflow: hidden;
}

.news-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(2, 132, 199, 0.15);
    border: 1px solid rgba(2, 132, 199, 0.3);
    color: #38bdf8;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.news-hero-title {
    color: #fff;
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 20px;
}

.news-hero-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 540px;
}

.news-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #38bdf8;
    letter-spacing: -1px;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-top: 8px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

.news-hero-glow {
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

/* --- Breaking News Ticker --- */
.news-ticker-bar {
    background: #0284c7;
    padding: 12px 0;
    overflow: hidden;
}

.ticker-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
}

.ticker-label {
    flex-shrink: 0;
    background: #fff;
    color: #0284c7;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 0;
    animation: ticker-scroll 30s linear infinite;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.ticker-content span { padding: 0 12px; }

.ticker-sep {
    font-size: 0.5rem;
    opacity: 0.4;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Featured Article --- */
.news-featured-section {
    padding: 60px 0 0;
    background: #f8fafc;
}

.featured-article-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(12, 30, 58, 0.08);
    border: 1px solid rgba(12, 30, 58, 0.04);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.featured-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 100px rgba(12, 30, 58, 0.14);
    border-color: rgba(2, 132, 199, 0.15);
}

.featured-img {
    position: relative;
    height: 100%;
    min-height: 380px;
    overflow: hidden;
}

.featured-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    height: 100%;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 50%, #7dd3fc 100%);
    transition: transform 0.6s ease;
}

.featured-article-card:hover .featured-img-placeholder {
    transform: scale(1.05);
}

.featured-img-placeholder i {
    font-size: 4rem;
    color: #0284c7;
    opacity: 0.5;
}

.featured-img-placeholder span {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0284c7;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.news-tag-lg {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #0284c7;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 2;
}

.featured-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.featured-date, .featured-reading {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0c1e3a;
    line-height: 1.25;
    margin-bottom: 18px;
    transition: color 0.3s ease;
}

.featured-article-card:hover .featured-title {
    color: #0284c7;
}

.featured-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 30px;
}

.featured-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0284c7;
    font-weight: 700;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.featured-article-card:hover .featured-read-btn {
    gap: 16px;
}

/* --- News Grid v2 --- */
.news-grid-section {
    padding: 60px 0 80px;
    background: #f8fafc;
}

.news-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.section-title-sm {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0c1e3a;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

.section-line {
    flex-grow: 1;
    height: 1px;
    background: #e2e8f0;
}

.news-card-v2 {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.news-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(12, 30, 58, 0.1);
    border-color: rgba(2, 132, 199, 0.15);
}

.card-v2-img {
    position: relative;
    height: 100%;
    min-height: 220px;
    overflow: hidden;
}

.card-v2-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    transition: transform 0.5s ease;
}

.news-card-v2:hover .card-v2-placeholder {
    transform: scale(1.08);
}

.card-v2-placeholder i {
    font-size: 2.5rem;
    color: #0284c7;
    opacity: 0.4;
}

.news-tag-sm {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(2, 132, 199, 0.9);
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 2;
}

.card-v2-content {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.card-v2-date {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.card-v2-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0c1e3a;
    line-height: 1.3;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.news-card-v2:hover .card-v2-title {
    color: #0284c7;
}

.card-v2-excerpt {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-v2-link {
    color: #0284c7;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: gap 0.3s ease;
}

.news-card-v2:hover .card-v2-link {
    gap: 10px;
}

/* --- CTA Section --- */
.news-cta-section {
    padding: 0 0 80px;
    background: #f8fafc;
}

.news-cta-card {
    background: linear-gradient(135deg, #0c1e3a 0%, #0a2a52 100%);
    border-radius: 24px;
    padding: 50px 60px;
    position: relative;
    overflow: hidden;
}

.news-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.news-cta-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.news-cta-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 1199px) {
    .news-hero-title { font-size: 3.5rem; }
    .featured-content { padding: 35px; }
    .featured-title { font-size: 1.7rem; }
}

@media (max-width: 991px) {
    .news-hero-section { padding: 96px 0 48px; }
    .news-hero-title { font-size: 2.8rem; }
    .featured-img { min-height: 260px; }
    .card-v2-img { min-height: 180px; }
    .news-cta-card { padding: 35px; }
}

@media (max-width: 767px) {
    .news-hero-title { font-size: 2.2rem; }
    .featured-content { padding: 25px; }
    .featured-title { font-size: 1.4rem; }
    .featured-excerpt { font-size: 0.9rem; }
    .card-v2-content { padding: 20px; }
    .card-v2-title { font-size: 1rem; }
    .news-cta-card { padding: 30px; text-align: center; }
    .news-cta-card .text-lg-end { text-align: center !important; }
}



/* ============================================================
   Premium Procedures Enhancement
   ============================================================ */

/* --- Technique Cards --- */
.tech-card-premium {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    height: 100%;
    border: 1px solid rgba(12, 30, 58, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tech-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(12, 30, 58, 0.08);
    border-color: rgba(2, 132, 199, 0.2);
}

.tech-card-premium .icon-box {
    width: 70px;
    height: 70px;
    background: #f0f9ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.tech-card-premium:hover .icon-box {
    background: #0284c7;
    transform: rotate(-10deg) scale(1.1);
}

.tech-card-premium:hover .icon-box i {
    color: #fff !important;
}

.tech-card-premium .title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0c1e3a;
    margin-bottom: 15px;
}

.tech-card-premium .desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 30px;
}

.tech-card-premium .learn-more {
    margin-top: auto;
    font-weight: 700;
    color: #0284c7;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Clinical Timeline --- */
.clinical-timeline {
    position: relative;
    padding-left: 50px;
}

.clinical-timeline::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: linear-gradient(to bottom, #0284c7, #e2e8f0);
}

.timeline-step {
    position: relative;
    margin-bottom: 60px;
}

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

.step-marker {
    position: absolute;
    left: -50px;
    width: 36px;
    height: 36px;
    background: #fff;
    border: 5px solid #0284c7;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(2, 132, 199, 0.1);
}

.step-content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(12, 30, 58, 0.03);
    box-shadow: 0 10px 30px rgba(12, 30, 58, 0.02);
}

.step-content .step-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0c1e3a;
    margin-bottom: 10px;
}

.step-content .step-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 0;
}

/* --- Procecure Hero Badges --- */
.procedure-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.p-stat-item {
    text-align: center;
}

.p-stat-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: #38bdf8;
    line-height: 1;
}

.p-stat-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    margin-top: 5px;
}

/* --- Responsive --- */
@media (max-width: 767px) {
    .procedure-hero-stats { flex-direction: column; gap: 20px; }
    .tech-card-premium { padding: 30px; }
    .step-content { padding: 20px; }
}

/* ============================================================
   Premium Results & Testimonials
   ============================================================ */

/* --- Testimonials --- */
.testimonial-card-v2 {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    border: 1px solid rgba(12, 30, 58, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(12, 30, 58, 0.06);
    border-color: rgba(2, 132, 199, 0.15);
}

.patient-info-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.patient-avatar-v2 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0284c7 0%, #0c1e3a 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(2, 132, 199, 0.2);
}

.patient-details h5 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0c1e3a;
    margin-bottom: 2px;
}

.verified-medical-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: #059669;
    background: rgba(5, 150, 105, 0.08);
    padding: 4px 10px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 4rem;
    color: rgba(2, 132, 199, 0.05);
    font-family: serif;
    z-index: -1;
}

.case-link-premium {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    color: #0284c7;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.case-link-premium:hover {
    color: #0c1e3a;
}

/* --- Results Cards --- */
.result-card-v2 {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(12, 30, 58, 0.05);
    transition: all 0.4s ease;
}

.result-card-v2:hover {
    box-shadow: 0 30px 60px rgba(12, 30, 58, 0.08);
    transform: translateY(-5px);
}

.result-image-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.result-card-v2:hover .result-image-wrap img {
    transform: scale(1.05);
}

.comparison-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.badge-comparison {
    background: rgba(12, 30, 58, 0.85);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 6px 15px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.1);
}

.result-info-content {
    padding: 25px;
}

.result-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.result-id-tag {
    font-family: inherit;
    font-weight: 800;
    font-size: 0.8rem;
    color: #94a3b8;
}

.result-tech-badge {
    background: #f0f9ff;
    color: #0284c7;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.result-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.r-stat-box {
    background: #f8fafc;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
}

.r-stat-box .v {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #0c1e3a;
}

.r-stat-box .l {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 700;
    margin-top: 2px;
}

/* --- Filter Navigation --- */
.premium-filter-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn-premium {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 10px 25px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #64748b;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn-premium:hover,
.filter-btn-premium.active {
    background: #0c1e3a;
    color: #fff;
    border-color: #0c1e3a;
    box-shadow: 0 10px 20px rgba(12, 30, 58, 0.1);
}

/* --- Trust Bar Premium --- */
.trust-bar-v2 {
    background: #f8fafc;
    padding: 40px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.trust-item-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.trust-icon-v2 {
    font-size: 1.5rem;
    color: #0284c7;
}

.trust-text-v2 strong {
    display: block;
    font-size: 1rem;
    color: #0c1e3a;
}

.trust-text-v2 span {
    font-size: 0.8rem;
    color: #64748b;
}

@media (max-width: 991px) {
    .trust-item-v2 { margin-bottom: 25px; }
}

/* ============================================================
   Premium Franchise & Global expansion
   ============================================================ */

/* --- B2B Model Cards --- */
.b2b-model-card {
    background: #fff;
    border-radius: 28px;
    padding: 50px 40px;
    height: 100%;
    border: 1px solid rgba(12, 30, 58, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.b2b-model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(12, 30, 58, 0.08);
    border-color: rgba(2, 132, 199, 0.2);
}

.b2b-card-icon {
    width: 70px;
    height: 70px;
    background: #f0f9ff;
    color: #0284c7;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.b2b-model-card:hover .b2b-card-icon {
    background: #0c1e3a;
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.b2b-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0c1e3a;
    margin-bottom: 20px;
}

.b2b-feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.b2b-feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}

.b2b-feature-list li i {
    color: #0284c7;
    font-size: 0.8rem;
}

/* --- Academy Training Path --- */
.academy-path-roadmap {
    position: relative;
    padding-left: 50px;
}

.academy-path-roadmap::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: #e2e8f0;
}

.path-step-v2 {
    position: relative;
    margin-bottom: 50px;
}

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

.path-step-v2::after {
    content: '';
    position: absolute;
    left: -42px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 4px solid #0284c7;
    border-radius: 50%;
    z-index: 1;
}

.path-content-v2 {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(12, 30, 58, 0.03);
    border: 1px solid rgba(12, 30, 58, 0.05);
}

.path-step-num {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 900;
    color: #0284c7;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

/* --- Corporate Form Premium --- */
.corp-form-wrap {
    background: #fff;
    padding: 50px;
    border-radius: 32px;
    box-shadow: 0 40px 80px rgba(12, 30, 58, 0.08);
}

.corp-input-group {
    margin-bottom: 25px;
}

.corp-label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: #0c1e3a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.corp-input, .corp-select, .corp-textarea {
    width: 100%;
    padding: 15px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #1e293b;
    transition: all 0.3s ease;
}

.corp-input:focus {
    background: #fff;
    border-color: #0284c7;
    outline: none;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
}

/* --- Differentiator Sections --- */
.diff-card-navy {
    background: #0c1e3a;
    color: #fff;
    border-radius: 24px;
    padding: 45px;
}

.diff-card-white {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 45px;
}

@media (max-width: 767px) {
    .corp-form-wrap { padding: 30px; }
    .academy-path-roadmap { padding-left: 30px; }
    .academy-path-roadmap::before { left: 7px; }
    .path-step-v2::after { left: -32px; }
}

/* ============================================================
   TECHNOLOGY REPLICA STYLES (MATCHING LIVE SITE)
   ============================================================ */

/* Utility & Backgrounds */
.tech-bg-dark { background-color: #0a0f1c !important; }
.tech-bg-gradient { 
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.1) 0%, rgba(10, 15, 28, 1) 100%); 
}
.tech-text-gradient {
    background: linear-gradient(to right, #ffffff, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Patent Banner - Specific Orange Gradient */
.tech-patent-banner {
    background: linear-gradient(to right, #ea580c, #f97316);
    padding: 3rem 0;
}

.tech-patent-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
}

/* Proprietary Badges */
.tech-badge-proprietary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(2, 132, 199, 0.1);
    border: 1px solid rgba(2, 132, 199, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    color: #0284c7;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.tech-badge-proprietary.white {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #bae6fd;
}

/* 3-Step Protocol Typography */
.tech-step-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0c1e3a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.tech-step-subtitle {
    display: block;
    color: #94a3b8;
    font-weight: 500;
    font-size: 1.25rem;
    margin-top: 0.5rem;
}

/* Comparison Section */
.tech-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1rem;
}

.tech-comparison-table th {
    padding: 1rem 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: #64748b;
}

.tech-comparison-table td {
    background: #fff;
    padding: 1.5rem;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.tech-comparison-table td:first-child {
    border-left: 1px solid #f1f5f9;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    font-weight: 700;
    color: #0c1e3a;
}

.tech-comparison-table td:last-child {
    border-right: 1px solid #f1f5f9;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.tech-check-badge {
    background: #dcfce7;
    color: #15803d;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.75rem;
}

.tech-x-badge {
    background: #fee2e2;
    color: #b91c1c;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.75rem;
}

/* Modern Accordion Override */
.tech-accordion .accordion-item {
    border: 1px solid #e2e8f0 !important;
    border-radius: 1rem !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.tech-accordion .accordion-button {
    background-color: #fff !important;
    padding: 1.25rem 1.5rem !important;
    font-weight: 700;
    color: #0c1e3a !important;
    box-shadow: none !important;
}

.tech-accordion .accordion-button:not(.collapsed) {
    border-bottom: 1px solid #f1f5f9;
}

/* --- Hero Visual Polish --- */
.tech-hero-mesh {
    position: absolute;
    top: 50%;
    right: 0;
    width: 400px;
    height: 400px;
    background: rgba(2, 132, 199, 0.15);
    filter: blur(80px);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 1;
}


/* --- Operational Pulse Indicator --- */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.status-pulse {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #22c55e;
    border-radius: 50%;
    position: relative;
    animation: pulse-green 2s infinite;
}

.status-text {
    font-family: inherit;
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* --- Footer Global Hub Styles --- */
.footer-hub-label {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: #0284c7;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-address-link {
    color: #94a3b8 !important;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-address-link:hover {
    color: #fff !important;
}

.gurizon-credit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.gurizon-credit:hover { opacity: 1; }


/* --- Global Connect Component (Premium Redesign) --- */
.if-global-connect {
    background: #070f1e;
    overflow: hidden;
}

/* Ticker Style - High Contrast Navy */
.if-ticker-wrap {
    background: #0c1e3a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
}

.if-ticker-wrap .marquee_mode {
    display: flex;
    align-items: center;
    gap: 150px;
    height: 40px;
}

.if-ticker-item {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
}

.if-ticker-item img {
    height: 14px;
    opacity: 0.6;
}

/* Connect Section - Deep Navy with Mesh */
.if-connect-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #070f1e 0%, #0a1324 100%);
}

.if-connect-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.if-connect-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.if-connect-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
}

.if-connect-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.if-connect-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.if-connect-card.whatsapp .if-connect-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.if-connect-card.email .if-connect-icon {
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
}

.if-connect-card:hover .if-connect-icon {
    transform: scale(1.1) rotate(5deg);
}

.if-connect-content span {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94a3b8;
    margin-bottom: 8px;
}

.if-connect-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.if-connect-content .cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: #38bdf8;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Local Time Badges */
.if-connect-status {
    margin-left: auto;
    text-align: right;
}

.if-office-pulse {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.if-office-pulse .dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); transform: scale(0.95); }
    70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); transform: scale(1); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); transform: scale(0.95); }
}

@media (max-width: 991px) {
    .if-connect-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .if-connect-card {
        padding: 30px;
        flex-direction: column;
        text-align: center;
    }
    .if-connect-status {
        margin-left: 0;
        margin-top: 20px;
    }
    .if-connect-content h4 {
        font-size: 1.25rem;
    }
}

/* --- News & Media Center (Premium Redesign) --- */
.if-news-hero {
    padding: 180px 0 100px;
    background: #070f1e;
    position: relative;
    overflow: hidden;
}

.if-news-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.if-news-hero .replica-badge {
    background: rgba(2, 132, 199, 0.1);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 25px;
}

.if-news-hero .title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.if-news-hero .text-highlight {
    background: linear-gradient(90deg, #fff 30%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.if-news-hero .replica-desc {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    line-height: 1.6;
}

/* Featured Article Box */
.if-news-featured {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.featured-article-card {
    background: #0c1e3a;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    display: block;
    text-decoration: none !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-article-card:hover {
    transform: translateY(-10px);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6);
}

.featured-img {
    height: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.featured-article-card:hover .featured-img img {
    transform: scale(1.05);
}

.news-tag-lg {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(7, 15, 30, 0.8);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 20px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}

.featured-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(90deg, #0c1e3a 0%, #070f1e 100%);
}

.featured-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 600;
}

.featured-meta i {
    color: #38bdf8;
}

.featured-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.featured-excerpt {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.featured-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #38bdf8;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* News Grid V3 */
.news-section-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.section-title-sm {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
}

.section-line {
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.5) 0%, transparent 100%);
}

.news-card-v3 {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    overflow: hidden;
    display: block;
    text-decoration: none !important;
    transition: all 0.4s ease;
    height: 100%;
}

.news-card-v3:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateY(-8px);
}

.card-v3-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.card-v3-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card-v3:hover .card-v3-img img {
    transform: scale(1.08);
}

.card-v3-content {
    padding: 35px;
}

.card-v3-date {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.card-v3-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card-v3:hover .card-v3-title {
    color: #38bdf8;
}

.card-v3-excerpt {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-v3-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #38bdf8;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .if-news-hero .title { font-size: 3.5rem; }
    .featured-content { padding: 40px; }
    .featured-title { font-size: 2rem; }
}

@media (max-width: 767px) {
    .if-news-hero { padding: 140px 0 80px; }
    .if-news-hero .title { font-size: 2.75rem; }
}
