/* CSS Reset and Variables */
:root {
    --primary-blue: #54C8ED;
    --dark-blue: #4B9FDB;
    --bg-dark: #0D1117;
    --bg-dark-secondary: #161B22;
    --text-white: #FFFFFF;
    --text-gray: #8B949E;
    --text-light-gray: #C9D1D9;
    --border-color: #30363D;
    --gradient-blue: linear-gradient(135deg, #54C8ED 0%, #4B9FDB 100%);
    --max-width: 1280px;
    --nav-height: 70px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(13, 17, 23, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-white);
    transition: opacity 0.3s ease;
}

.nav-brand:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 28px;
    height: 28px;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    color: var(--text-light-gray);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.user-icon {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(84, 200, 237, 0.3);
}

.nav-cta {
    margin-left: 10px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    position: relative;
}

.hero-container {
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Background Effects */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.gradient-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(84, 200, 237, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.gradient-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(75, 159, 219, 0.3) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(84, 200, 237, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(84, 200, 237, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Hero Content */
.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(84, 200, 237, 0.1);
    border: 1px solid rgba(84, 200, 237, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 500;
}

.hero-badge svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-blue);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 10px;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid rgba(84, 200, 237, 0.5);
    padding: 12px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: rgba(84, 200, 237, 0.1);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 17, 23, 0.98);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-content {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-link {
    color: var(--text-light-gray);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-blue);
}

.mobile-nav-cta {
    background: var(--gradient-blue);
    color: var(--text-white);
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
}

/* Services Section */
.services-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(84, 200, 237, 0.3) 50%, 
        transparent 100%);
}

.services-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.services-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 0 auto;
}

.service-card {
    background: rgba(22, 27, 34, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-blue);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(84, 200, 237, 0.3);
    background: rgba(22, 27, 34, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(84, 200, 237, 0.1);
    border-radius: 12px;
    margin-bottom: 25px;
    color: var(--primary-blue);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-white);
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Service Card Glow Effect */
.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(84, 200, 237, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

/* Projects Section */
.projects-section {
    padding: 100px 20px;
    background: var(--bg-dark);
    position: relative;
}

.projects-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.projects-header {
    text-align: center;
    margin-bottom: 80px;
}

.projects-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.projects-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.project-card {
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(84, 200, 237, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Project Images/Visualizations */
.project-image {
    height: 250px;
    background: linear-gradient(135deg, rgba(84, 200, 237, 0.1) 0%, rgba(13, 17, 23, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

/* Dashboard Mock for HealthConnect */
.dashboard-mock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 70%;
    background: rgba(13, 17, 23, 0.95);
    border-radius: 8px;
    border: 1px solid rgba(84, 200, 237, 0.2);
    padding: 10px;
}

.dashboard-header {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(84, 200, 237, 0.5);
}

.dashboard-content {
    padding: 10px;
}

.metric-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.metric-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-weight: bold;
}

.metric-stats {
    flex: 1;
}

.stat-bar {
    height: 4px;
    background: linear-gradient(90deg, #54C8ED 60%, rgba(84, 200, 237, 0.2) 60%);
    margin-bottom: 5px;
}

.stat-text {
    display: inline-block;
    color: var(--primary-blue);
    font-size: 12px;
    margin-right: 15px;
}

.chart-row {
    display: flex;
    gap: 15px;
}

.chart-line {
    flex: 1;
    height: 40px;
    background: linear-gradient(0deg, transparent 0%, rgba(84, 200, 237, 0.3) 50%, transparent 100%);
    border-bottom: 2px solid var(--primary-blue);
    position: relative;
}

.chart-bars {
    flex: 1;
    height: 40px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
}

.chart-bars::before,
.chart-bars::after {
    content: '';
    flex: 1;
    background: var(--primary-blue);
    opacity: 0.6;
}

.chart-bars::before {
    height: 60%;
}

.chart-bars::after {
    height: 80%;
}

/* Robot Scene for SmartFlow */
.robot-scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.robot-container {
    position: relative;
    z-index: 2;
}

.robot-head {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #54C8ED 0%, #4B9FDB 100%);
    border-radius: 12px;
    margin: 0 auto 10px;
    position: relative;
}

.robot-eye {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.robot-body {
    width: 80px;
    height: 60px;
    background: rgba(84, 200, 237, 0.2);
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    position: relative;
}

.robot-arm {
    position: absolute;
    right: -20px;
    top: 20px;
    width: 30px;
    height: 4px;
    background: var(--primary-blue);
}

.office-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.window-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    height: 100%;
    padding: 20px;
}

.window-grid::before {
    content: '';
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 10px,
        rgba(84, 200, 237, 0.1) 10px,
        rgba(84, 200, 237, 0.1) 11px
    );
}

/* Brain Visual for MediAI */
.brain-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(84, 200, 237, 0.1) 0%, transparent 70%);
}

.brain-container {
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

.brain-svg {
    width: 150px;
    height: 150px;
}

.neural-network {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}

.node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-blue);
}

.node:nth-child(1) { top: 20%; left: 20%; }
.node:nth-child(2) { top: 20%; right: 20%; }
.node:nth-child(3) { bottom: 20%; left: 20%; }
.node:nth-child(4) { bottom: 20%; right: 20%; }

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

/* Project Tags */
.project-tags {
    padding: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(84, 200, 237, 0.1);
    color: var(--primary-blue);
    border: 1px solid rgba(84, 200, 237, 0.2);
}

.tag-health { background: rgba(84, 200, 237, 0.15); }
.tag-ai { background: rgba(75, 159, 219, 0.15); }
.tag-cloud { background: rgba(100, 200, 237, 0.15); }
.tag-automation { background: rgba(84, 237, 200, 0.15); }
.tag-bpa { background: rgba(84, 150, 237, 0.15); }
.tag-integration { background: rgba(150, 84, 237, 0.15); }
.tag-ml { background: rgba(237, 84, 150, 0.15); }

/* Project Content */
.project-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 20px 15px;
    color: var(--text-white);
}

.project-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0 20px 15px;
}

.project-results {
    font-size: 0.9rem;
    color: var(--primary-blue);
    margin: 0 20px 20px;
    font-weight: 500;
}

.projects-cta {
    text-align: center;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 100px 20px 60px;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: clamp(2rem, 7vw, 3rem);
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .gradient-orb-1 {
        width: 400px;
        height: 400px;
        top: -150px;
        right: -150px;
    }
    
    .gradient-orb-2 {
        width: 350px;
        height: 350px;
        bottom: -100px;
        left: -100px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    /* Services Section - Mobile */
    .services-section {
        padding: 60px 20px;
    }
    
    .services-header {
        margin-bottom: 50px;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-subtitle {
        font-size: 0.95rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    /* Projects Section - Mobile */
    .projects-section {
        padding: 60px 20px;
    }
    
    .projects-header {
        margin-bottom: 50px;
    }
    
    .projects-title {
        font-size: 2rem;
    }
    
    .projects-subtitle {
        font-size: 0.95rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-card {
        max-width: 100%;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-title {
        font-size: 1.25rem;
    }
    
    .project-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 90px 15px 50px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .btn-large, .btn-secondary {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* Large Screens */
@media (min-width: 1440px) {
    .nav-container,
    .hero-container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 5.5rem;
    }
    
    .hero-description {
        font-size: 1.5rem;
    }
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    .hero-badge {
        animation: fadeInUp 0.6s ease-out;
    }
    
    .hero-title {
        animation: fadeInUp 0.8s ease-out 0.1s both;
    }
    
    .hero-description {
        animation: fadeInUp 1s ease-out 0.2s both;
    }
    
    .hero-actions {
        animation: fadeInUp 1.2s ease-out 0.3s both;
    }
    
    /* Services Section Animations */
    .services-header {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease-out;
    }
    
    .services-header.in-view {
        opacity: 1;
        transform: translateY(0);
    }
    
    .service-card {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s ease-out;
    }
    
    .service-card:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .service-card:nth-child(2) {
        transition-delay: 0.2s;
    }
    
    .service-card:nth-child(3) {
        transition-delay: 0.3s;
    }
    
    .service-card.in-view {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Projects Section Animations */
    .projects-header {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease-out;
    }
    
    .projects-header.in-view {
        opacity: 1;
        transform: translateY(0);
    }
    
    .project-card {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s ease-out;
    }
    
    .project-card:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .project-card:nth-child(2) {
        transition-delay: 0.2s;
    }
    
    .project-card:nth-child(3) {
        transition-delay: 0.3s;
    }
    
    .project-card.in-view {
        opacity: 1;
        transform: translateY(0);
    }
}

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


/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 20px;
    background: var(--bg-dark);
    position: relative;
}

.why-choose-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

/* Left Text Column */
.why-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

.why-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 500px;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light-gray);
    font-size: 1rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Right Stats Card */
.why-stats-card {
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

/* Subtle glow effect for the card */
.why-stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(84, 200, 237, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stat-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(90deg, #4B9FDB 0%, #54C8ED 100%);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Pattern overlay for banner */
.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-heading {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #0D1117;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(13, 17, 23, 0.8);
    margin-bottom: 30px;
    font-weight: 500;
}

.btn-dark {
    background: #0D1117;
    color: var(--text-white);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 17, 23, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .why-stats-card {
        padding: 40px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .stat-block {
        flex: 1;
        min-width: 140px;
    }
}

@media (max-width: 600px) {
    .why-stats-card {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }

    .cta-banner {
        padding: 60px 20px;
    }
}


/* Footer Styling */
.site-footer {
    padding: 40px 20px;
    background: var(--bg-dark); /* Or lighter dark if you prefer separation */
    border-top: 1px solid rgba(48, 54, 61, 0.5);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
}

.footer-copyright {
    color: #6e7681;
    font-size: 0.85rem;
}
