/* ==============================
   Variables & Theme
   ============================== */
:root {
    --accent-bright: #39B54A;
    --bg-dark: #0D1B2A;
    --bg-gray: #F5F7FA;
    --bg-gray2: #EFF2F5;
    --bg-white: #FFFFFF;
    --border: #E2E8F0;
    --card-radius: 12px;
    --nav-height: 80px;
    --primary: #0071BC;
    --primary-dark: #004F8A;
    --primary-light: #E5F2FA;
    --text-muted: #8A96A3;
    --text-primary: #0D1B2A;
    --text-secondary: #4A5568;
    --text-white: #FFFFFF;
}

/* ==============================
   Reset & Base Styles
   ============================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-secondary);
    line-height: 1.6;
    background-color: var(--bg-gray);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography Utilities */
.text-white {
    color: var(--text-white);
}

.text-accent {
    color: var(--accent-bright);
}

.text-primary {
    color: var(--primary);
}

.text-left {
    text-align: left;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-accent {
    background-color: var(--accent-bright);
    color: var(--text-white);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--text-white);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-white {
    background-color: var(--text-white);
    color: var(--primary);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 8px;
}

/* ==============================
   Header Navigation
   ============================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: transparent;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0 80px;
}

.header.scrolled,
.header:hover {
    background-color: var(--bg-white);
    box-shadow: 0 1px 0 var(--border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.logo img {
    height: 45px;
    transition: filter 0.3s;
}

.logo-scrolled {
    display: none;
}

.header.scrolled .logo-white,
.header:hover .logo-white {
    display: none;
}

.header.scrolled .logo-scrolled,
.header:hover .logo-scrolled {
    display: block;
}

.nav-menu ul {
    display: flex;
    gap: 40px;
}

.nav-menu li {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    position: static;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-white);
    opacity: 0.9;
}

.header.scrolled .nav-menu a,
.header:hover .nav-menu a {
    color: var(--text-primary);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-bright);
    opacity: 1;
}

.header.scrolled .nav-menu a.active,
.header:hover .nav-menu a.active {
    color: var(--primary);
    font-weight: 600;
}

/* Full-Width Horizontal Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 24px 0;
    z-index: 90;
}

/* Invisible bridge for hover */
.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.nav-menu li.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.dropdown-container::-webkit-scrollbar {
    display: none;
}

.dropdown-container a {
    color: var(--text-secondary) !important;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 12px;
    position: relative;
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* Base underline effect */
.dropdown-container a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.dropdown-container a:hover {
    color: var(--primary) !important;
}

.dropdown-container a:hover::after {
    width: 100%;
}

/* Down Arrow for Nav Items */
.nav-menu .has-dropdown>a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu .has-dropdown>a::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center / contain;
    opacity: 0.8;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 1px;
}

.nav-menu .has-dropdown:hover>a::after {
    transform: rotate(180deg);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-btn {
    background: transparent;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
}

.header.scrolled .search-btn,
.header:hover .search-btn {
    color: var(--text-secondary);
}

/* Header CTA Button - White Background state (Green) and Hover state (Blue) */
.header.scrolled .nav-right .btn,
.header:hover .nav-right .btn {
    background-color: var(--accent-bright);
    color: var(--text-white);
    border-color: var(--accent-bright);
}

.header.scrolled .nav-right .btn:hover,
.header:hover .nav-right .btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* ==============================
   Hero Carousel
   ============================== */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 760px;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.carousel-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s;
    display: flex;
    align-items: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 10s linear;
}

.slide-1 .slide-bg {
    background-image: url('../images/1.webp');
}

.slide-2 .slide-bg {
    background-image: url('../images/2.webp');
}

.slide-3 .slide-bg {
    background-image: url('../images/3.webp');
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 27, 42, 0.7) 0%, rgba(13, 27, 42, 0.2) 50%, rgba(13, 27, 42, 0.7) 100%);
    z-index: 1;
}

.carousel-glow {
    position: absolute;
    top: -100px;
    right: 140px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-bright) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.slide-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 700px;
}

.hero-badge {
    background-color: rgba(57, 181, 74, 0.2);
    border: 1px solid var(--accent-bright);
    color: var(--text-white);
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    align-self: flex-start;
    font-size: 14px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    color: var(--text-white);
}

.hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 620px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

/* Animations */
.animate-fade-in {
    opacity: 0;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
}

.animate-slide-up-delay {
    opacity: 0;
    transform: translateY(30px);
}

.animate-slide-up-delay2 {
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .animate-fade-in {
    animation: fadeIn 0.8s ease forwards 0.5s;
}

.slide.active .animate-slide-up {
    animation: slideUp 0.8s ease forwards 0.7s;
}

.slide.active .animate-slide-up-delay {
    animation: slideUp 0.8s ease forwards 0.9s;
}

.slide.active .animate-slide-up-delay2 {
    animation: slideUp 0.8s ease forwards 1.1s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation Elements */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-prev svg,
.carousel-next svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.5px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: transparent;
    color: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.15);
}

.carousel-prev {
    left: 40px;
}

.carousel-next {
    right: 40px;
}

.carousel-dots {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--accent-bright);
    transform: scale(1.2);
}

/* Hero Stats (Fixed Overlay) */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    background: rgba(13, 27, 42, 0.9);
    backdrop-filter: blur(20px);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.stat-num {
    color: var(--text-white);
    font-size: 32px;
    font-weight: 800;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* ==============================
   Sections Common
   ============================== */
.section-bg-white {
    background-color: var(--bg-white);
}

.section-bg-gray {
    background-color: var(--bg-gray);
}

.section-container {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.section-tag {
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 620px;
}

/* ==============================
   Business Section - Ambient Background
   ============================== */
.business-section {
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa !important;
}

/* Noise Texture Overlay (5% opacity) */
.business-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Diffused Glare - Green (breathing) */
.business-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.15) 0%, transparent 70%);
    top: 20%;
    left: -5%;
    animation: glareBreathGreen 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Second Diffused Glare - Blue */
.business-section .section-container {
    position: relative;
    z-index: 1;
}

.business-section .section-container::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.12) 0%, transparent 70%);
    bottom: 5%;
    right: -8%;
    animation: glareBreathBlue 10s ease-in-out infinite 2s;
    pointer-events: none;
    z-index: 0;
}

@keyframes glareBreathGreen {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.15) translate(20px, -15px);
        opacity: 1;
    }
}

@keyframes glareBreathBlue {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2) translate(-15px, 10px);
        opacity: 1;
    }
}

/* ==============================
   Business Cards Grid (3x2 Matrix)
   ============================== */
.biz-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

/* ==============================
   Business Card - Premium Style
   ============================== */
.biz-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--card-radius);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

/* Gradient Border (mask-composite) */
.biz-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--card-radius);
    padding: 2px;
    background: linear-gradient(135deg, #2ECC71 0%, var(--primary) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

/* --- Hover: Float + Green Glow + Border --- */
.biz-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow:
        0 8px 24px rgba(46, 204, 113, 0.12),
        0 20px 48px rgba(46, 204, 113, 0.08);
}

.biz-card:hover::after {
    opacity: 1;
}

/* --- Hover: Description text slightly brighter --- */
.biz-card:hover p {
    color: var(--text-primary);
    opacity: 0.85;
}

/* ==============================
   Business Icon - Brand-Colored
   ============================== */
.biz-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background-color: rgba(46, 204, 113, 0.08);
    color: #2ECC71;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.biz-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5px;
}

/* Hover: Inverted icon (green bg, white icon) */
.biz-card:hover .biz-icon {
    transform: scale(1.1);
    background-color: #2ECC71;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(46, 204, 113, 0.3);
}

/* ==============================
   Business Card Text & Link
   ============================== */
.biz-card h3 {
    font-size: 20px;
    color: var(--text-primary);
    font-weight: 700;
}

.biz-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.biz-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover: Link slides in, bright green */
.biz-card:hover .biz-link {
    opacity: 1;
    transform: translateY(0);
    color: #2ECC71;
}

/* ==============================
   Solutions Layout
   ============================== */
.sol-grid {
    display: flex;
    gap: 20px;
}

.sol-left {
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.sol-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.sol-tabs li {
    padding: 16px 24px;
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    opacity: 0.7;
    transition: opacity 0.3s;
    flex-shrink: 0;
}

.tab-icon svg {
    width: 100%;
    height: 100%;
}

.sol-tabs li:hover {
    background-color: #f0f7ff;
    border-color: rgba(0, 113, 188, 0.3);
}

.sol-tabs li.active {
    background: linear-gradient(135deg, #1F74E0, #2ECC71);
    color: var(--text-white);
    border: none;
    box-shadow: 0 8px 20px rgba(31, 116, 224, 0.3);
}

.sol-tabs li.active .tab-icon {
    opacity: 1;
}

.sol-right {
    flex-grow: 1;
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

.sol-image,
.sol-content {
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.animate-fade {
    animation: fadeSlide 0.5s ease-out forwards;
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.sol-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.sol-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.sol-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.sol-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.sol-tag {
    background-color: rgba(46, 204, 113, 0.1);
    color: #1e8e3e;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.sol-icon-svg {
    font-size: 12px;
}

.sol-achievement {
    background-color: #f8fbff;
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.sol-achievement strong {
    color: var(--text-primary);
}

.sol-btns {
    display: flex;
    gap: 16px;
}

.sol-cta {
    background: linear-gradient(135deg, var(--primary), #1a62bf);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 113, 188, 0.3);
    padding: 12px 32px;
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sol-cta:hover {
    box-shadow: 0 8px 24px rgba(0, 113, 188, 0.4);
    transform: translateY(-2px);
    color: white;
}

.sol-cta-sub {
    border: 2px solid var(--border);
    color: var(--text-secondary);
    padding: 12px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s;
    background-color: transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sol-cta-sub:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: rgba(0, 113, 188, 0.05);
}

/* ==============================
   News Grid
   ============================== */
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-grid {
    display: flex;
    gap: 32px;
}

.news-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: transparent;
    transition: 0.3s;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.news-info {
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 8px;
}

.news-card h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.news-card:hover .news-link {
    color: #1a62bf;
}

/* ==============================
   Partner CTA
   ============================== */
.partner-section {
    position: relative;
    background: linear-gradient(135deg, #2ECC71 0%, var(--primary) 100%);
    border-radius: 24px;
    margin: 40px auto 80px;
    padding: 80px 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-white);
    max-width: 1200px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 113, 188, 0.15);
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.08;
    pointer-events: none;
}

.partner-left,
.partner-right {
    position: relative;
    z-index: 1;
}

.partner-left {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.partner-title {
    font-size: 40px;
    font-weight: 800;
}

/* ==============================
   Footer
   ============================== */
.footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.6);
    padding-top: 60px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand {
    max-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-nav {
    display: flex;
    gap: 80px;
}

.footer-links h4 {
    color: var(--text-white);
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==============================
   Hero Stats Refinements
   ============================== */
.hero-stats {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.stat-item {
    position: relative;
    padding-right: 48px;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.06);
}

.stat-item:last-child {
    padding-right: 0;
}

/* ==============================
   Scroll Reveal Animations
   ============================== */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================
   Side Scroll Navigation
   ============================== */
.side-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.side-nav ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}

.side-nav li {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.side-link {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 0 2px transparent;
}

.side-link::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: var(--bg-white);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.side-link:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.side-link:hover {
    background-color: rgba(46, 204, 113, 0.6);
}

.side-link.active {
    background: linear-gradient(135deg, #2ECC71 0%, var(--primary) 100%);
    transform: scale(1.3);
    box-shadow: 0 4px 10px rgba(0, 113, 188, 0.3);
}

.side-link.active::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(46, 204, 113, 0.5);
    animation: pulseGlow 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Dark background compatibility overrides */
.side-nav.on-dark .side-link:not(.active) {
    background-color: rgba(255, 255, 255, 0.4);
}

.side-nav.on-dark .side-link:not(.active):hover {
    background-color: #fff;
}