:root {
    --azure-blue: #007bff;
    --deep-tech-blue: #0a2540;
    --dark-navy: #050b1e;
    --pure-black: #000000;
    --gold-yellow: #f5c400;
    --metallic-gold: #d4af37;
    --primary-text: #ffffff;
    --secondary-text: #c7ccd6;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    background: var(--dark-navy);
    color: var(--primary-text);
    overflow-x: hidden;
}

/* =========================
               PAGE LOADER
            ========================= */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-navy);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.active {
    opacity: 1;
    visibility: visible;
}

.page-loader .loader {
    transform: scale(0.9);
    opacity: 0;
    animation: loaderIn 1s ease forwards;
}

@keyframes loaderIn {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

body.loading {
    overflow: hidden;
}

/* From Uiverse.io by Vosoone */
.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.loader {
    width: 100%;
}

.trace-bg {
    stroke: #333;
    stroke-width: 1.8;
    fill: none;
}

.trace-flow {
    stroke-width: 1.8;
    fill: none;
    stroke-dasharray: 40 400;
    stroke-dashoffset: 438;
    filter: drop-shadow(0 0 6px currentColor);
    animation: flow 3s cubic-bezier(0.5, 0, 0.9, 1) infinite;
}

.yellow {
    stroke: #ffea00;
    color: #ffea00;
}
.blue {
    stroke: #00ccff;
    color: #00ccff;
}
.green {
    stroke: #00ff15;
    color: #00ff15;
}
.purple {
    stroke: #9900ff;
    color: #9900ff;
}
.red {
    stroke: #ff3300;
    color: #ff3300;
}

@keyframes flow {
    to {
        stroke-dashoffset: 0;
    }
}

/* Loading text animation */
svg text {
    animation: loadingPulse 1.5s ease-in-out infinite;
}

@keyframes loadingPulse {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}

/* =========================
               NAVBAR RESPONSIVE & TRANSPARAN
            ========================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 40px;
    background: rgba(10, 37, 64, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    font-weight: 700;
    color: var(--azure-blue);
    letter-spacing: 2px;
    font-size: 26px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px;
    z-index: 1001;
}

.logo::after {
    content: "";
    display: inline-block;
    margin-left: 8px;
    margin-bottom: 2px;
    font-size: 20px;
}

.nav-container {
    display: flex;
    align-items: center;
}

.nav {
    display: flex;
    gap: 36px;
    margin-right: 30px;
}

.nav a {
    color: var(--secondary-text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
    transition: var(--transition);
}

.nav a:hover {
    color: var(--azure-blue);
}

.nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-yellow);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 26px;
    background: transparent;
    border: 1.5px solid var(--azure-blue);
    border-radius: 30px;
    color: var(--azure-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 14px;
}

.nav-cta:hover {
    background: rgba(0, 123, 255, 0.1);
    border-color: var(--gold-yellow);
    color: var(--gold-yellow);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--primary-text);
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--gold-yellow);
}

.mobile-menu-btn.active {
    color: var(--gold-yellow);
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 37, 64, 0.98);
    z-index: 999;
    opacity: 0;
    pointer-events: none;   /* 🔥 INI */
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;   /* 🔥 INI */
}


.mobile-nav {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
}

.mobile-nav-overlay.active .mobile-nav {
    opacity: 1;
     pointer-events: auto;
    transform: translateY(0);
}

.mobile-nav a {
    color: var(--primary-text);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid rgba(245, 196, 0, 0.1);
    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--gold-yellow);
    padding-left: 10px;
}

.mobile-nav-cta {
    margin-top: 20px;
    padding: 14px 30px;
    background: transparent;
    border: 2px solid var(--azure-blue);
    border-radius: 30px;
    color: var(--azure-blue);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    font-size: 16px;
}

.mobile-nav-cta:hover {
    background: var(--azure-blue);
    color: var(--dark-navy);
}

/* =========================
               HERO SLIDER - IMPROVED ELEGANT VERSION
            ========================= */
.hero-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: var(--pure-black);
}

.hero-slider {
    height: 100%;
    width: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.77, 0, 0.175, 1),
        visibility 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    align-items: center;
    padding: 0 80px;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 10s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.hero-slide.active .slide-bg {
    transform: scale(1);
}

.slide-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(137deg, rgba(8, 15, 36, 0.9) 50%, rgba(0, 0, 32, -12.1) 106%, rgba(5, 11, 30, 0.85) 90%);
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 800px;
    color: var(--primary-text);
    transform: translateY(60px);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.4s,
        opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.4s;
    z-index: 2;
}

.hero-slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(-20px);
    transition: transform 0.8s ease 0.6s, opacity 0.8s ease 0.6s;
}

.hero-slide.active .slide-badge {
    opacity: 1;
    transform: translateX(0);
}

.badge-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-yellow);
}

.badge-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-yellow), transparent);
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin: 0 0 25px;
    font-weight: 800;
    color: var(--primary-text);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line span {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-slide.active .title-line span {
    transform: translateY(0);
}

.highlight {
    color: var(--gold-yellow);
    position: relative;
}

.highlight::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(0, 123, 255, 0.2);
    z-index: -1;
}

.slide-description {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0;
    margin-bottom: 40px;
    max-width: 650px;
    color: var(--secondary-text);
    transform: translateY(20px);
    transition: transform 0.8s ease 0.8s, opacity 0.8s ease 0.8s;
}

.hero-slide.active .slide-description {
    opacity: 0.9;
    transform: translateY(0);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.8s ease 1s, opacity 0.8s ease 1s;
}

.hero-slide.active .hero-stats {
    opacity: 1;
    transform: translateY(0);
}

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

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-yellow);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--secondary-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.hero-btns {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.8s ease 1.2s, opacity 0.8s ease 1.2s;
}

.hero-slide.active .hero-btns {
    opacity: 1;
    transform: translateY(0);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 30px;
    background: var(--gold-yellow);
    color: var(--deep-tech-blue);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.7s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    background: var(--metallic-gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 196, 0, 0.3);
}

.hero-btn.outline {
    background: transparent;
    border: 2px solid var(--azure-blue);
    color: var(--azure-blue);
}

.hero-btn.outline:hover {
    border-color: var(--gold-yellow);
    background: rgba(245, 196, 0, 0.1);
    color: var(--gold-yellow);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.hero-btn:hover .btn-icon {
    transform: translateX(5px);
}

.hero-btn.outline:hover .btn-icon {
    transform: translate(3px, -3px);
}

.slide-tech-tags {
    position: absolute;
    bottom: 100px;
    right: 80px;
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.8s ease 1.4s, opacity 0.8s ease 1.4s;
    z-index: 2;
}

.hero-slide.active .slide-tech-tags {
    opacity: 1;
    transform: translateY(0);
}

.tech-tag {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 12px;
    color: var(--secondary-text);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.tech-tag:hover {
    background: rgba(0, 123, 255, 0.2);
    color: var(--azure-blue);
    border-color: rgba(0, 123, 255, 0.3);
    transform: translateY(-2px);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 10;
}

.slider-dots {
    display: flex;
    gap: 20px;
}

.slider-dot {
    position: relative;
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    border-radius: 2px;
    overflow: hidden;
    transition: var(--transition);
}

.slider-dot.active {
    background: rgba(255, 255, 255, 0.2);
}

.dot-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gold-yellow);
    transition: width 8s linear;
}

.slider-dot.active .dot-progress {
    width: 100%;
    animation: dotProgress 8s linear;
}

@keyframes dotProgress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

.dot-label {
    position: absolute;
    top: -30px;
    left: 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(5px);
    transition: var(--transition);
}

.slider-dot:hover .dot-label {
    opacity: 1;
    transform: translateY(0);
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--primary-text);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.slider-arrow:hover {
    background: rgba(0, 123, 255, 0.3);
    transform: translateY(-3px);
    border-color: var(--azure-blue);
    color: var(--gold-yellow);
}

.arrow-tooltip {
    position: absolute;
    top: -40px;
    font-size: 11px;
    color: var(--secondary-text);
    opacity: 0;
    transform: translateY(5px);
    transition: var(--transition);
    white-space: nowrap;
}

.slider-arrow:hover .arrow-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.slide-indicator {
    position: absolute;
    bottom: 40px;
    right: 80px;
    color: var(--secondary-text);
    z-index: 10;
}

.indicator-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.current-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-text);
}

.total-number {
    font-size: 18px;
    color: var(--secondary-text);
}

.indicator-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.indicator-text {
    font-size: 11px;
    color: var(--secondary-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* =========================
               ABOUT US SECTION - IMPROVED
            ========================= */
.about-section {
    position: relative;
    padding: 140px 40px;
    background: linear-gradient(
        135deg,
        var(--deep-tech-blue) 0%,
        var(--dark-navy) 100%
    );
    overflow: hidden;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-badge {
    display: inline-block;
    background: rgba(0, 123, 255, 0.1);
    color: var(--azure-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.about-content h2 {
    font-size: 44px;
    margin: 0 0 25px;
    color: var(--primary-text);
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.about-content h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold-yellow);
    border-radius: 2px;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--secondary-text);
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid rgba(245, 196, 0, 0.3);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 35px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--azure-blue);
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    margin: 0 0 8px;
    color: var(--gold-yellow);
    font-size: 16px;
    font-weight: 600;
}

.feature-text p {
    margin: 0;
    color: var(--secondary-text);
    font-size: 14px;
    line-height: 1.5;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 30px;
    background: var(--gold-yellow);
    color: var(--deep-tech-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.about-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.7s ease;
}

.about-btn:hover::before {
    left: 100%;
}

.about-btn:hover {
    background: var(--metallic-gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 196, 0, 0.3);
}

.btn-arrow {
    transition: transform 0.3s ease;
    color: var(--deep-tech-blue);
}

.about-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.about-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.about-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    transform: translateZ(0);
    will-change: transform;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(5, 11, 30, 0.5),
        rgba(0, 123, 255, 0.2)
    );
    border-radius: 24px;
    z-index: 1;
}

.floating-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--deep-tech-blue);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    z-index: 2;
    max-width: 280px;
    transform: translateY(20px);
    opacity: 0;
    border: 1px solid rgba(245, 196, 0, 0.2);
}

.floating-card h4 {
    margin: 0 0 10px;
    color: var(--primary-text);
    font-size: 18px;
}

.floating-card p {
    margin: 0;
    color: var(--secondary-text);
    font-size: 14px;
    line-height: 1.5;
}

/* About Section Background Elements */
.about-bg-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.05);
    z-index: 1;
}

.about-bg-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.about-bg-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

/* =========================
               CARDS SECTION
            ========================= */
.section {
    padding: 100px 40px;
    background: var(--dark-navy);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-text);
    margin-bottom: 16px;
}

.section-title p {
    color: var(--secondary-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.cards {
    display: flex;
    gap: 20px;
    height: 420px;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    position: relative;
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: flex;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.card.active {
    flex: 3;
}

.card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 37, 64, 0.9),
        rgba(0, 123, 255, 0.4),
        transparent
    );
}

.content {
    position: relative;
    z-index: 2;
    padding: 32px;
    color: var(--primary-text);
    max-width: 420px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease 0.2s;
}

.card.active .content {
    opacity: 1;
    transform: translateY(0);
}

.card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    color: var(--primary-text);
}

.card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
    color: var(--secondary-text);
}

.card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1.5px solid var(--azure-blue);
    color: var(--azure-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.card a:hover {
    background: rgba(0, 123, 255, 0.1);
    border-color: var(--gold-yellow);
    color: var(--gold-yellow);
    transform: translateY(-2px);
}

/* =========================
               PARALLAX VIDEO SECTION
            ========================= */
.parallax-video-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--pure-black);
}

.video-parallax-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    will-change: transform;
    overflow: hidden;
}

.parallax-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.video-parallax-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 37, 64, 0.85) 0%,
        rgba(0, 123, 255, 0.5) 50%,
        rgba(10, 37, 64, 0.3) 100%
    );
    z-index: 2;
}

.video-parallax-content {
    position: relative;
    z-index: 3;
    color: var(--primary-text);
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
}

.video-parallax-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-text);
}

.video-parallax-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
    color: var(--secondary-text);
}

.video-parallax-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

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

.video-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold-yellow);
    margin-bottom: 10px;
    display: block;
}

.video-stat-label {
    font-size: 16px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-text);
}

.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 4;
    display: flex;
    gap: 10px;
}

.video-control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.3);
    border: none;
    color: var(--primary-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.video-control-btn:hover {
    background: rgba(0, 123, 255, 0.5);
    transform: scale(1.1);
}

/* =========================
               ELEGANT TIMELINE SECTION
            ========================= */
.sdlc-section {
    padding: 100px 40px;
    background: linear-gradient(
        135deg,
        var(--deep-tech-blue) 0%,
        var(--dark-navy) 100%
    );
    position: relative;
    overflow: hidden;
}

.sdlc-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Header styling */
.sdlc-header {
    text-align: center;
    margin-bottom: 70px;
}

.sdlc-badge {
    display: inline-block;
    background: rgba(0, 123, 255, 0.1);
    color: var(--azure-blue);
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.sdlc-title {
    font-size: 42px;
    margin: 0 0 20px;
    color: var(--primary-text);
    line-height: 1.2;
    font-weight: 700;
}

.sdlc-subtitle {
    color: var(--secondary-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 18px;
    font-weight: 400;
}

/* Elegant Timeline Grid */
.sdlc-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

/* Timeline connector line */
.sdlc-timeline::before {
    content: "";
    position: absolute;
    top: 80px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(0, 123, 255, 0.1) 0%,
        rgba(0, 123, 255, 0.3) 50%,
        rgba(0, 123, 255, 0.1) 100%
    );
    z-index: 1;
}

/* Timeline Step Cards */
.timeline-step {
    position: relative;
    background: var(--deep-tech-blue);
    border-radius: 20px;
    padding: 60px 50px 5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
    overflow: hidden;
    z-index: 2;
    border: 1px solid rgba(245, 196, 0, 0.1);
}

.timeline-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.2);
    border-color: rgba(245, 196, 0, 0.3);
}

/* Step number with elegant design */
.step-indicator {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        var(--azure-blue) 0%,
        rgba(0, 123, 255, 0.8) 100%
    );
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
    z-index: 3;
    transition: var(--transition);
}

.timeline-step:hover .step-indicator {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.4);
}

/* Step title */
.step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-yellow);
    margin: 15px 0 12px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Step description */
.step-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--secondary-text);
    margin: 0;
    padding: 0 10px;
}

/* Step icon */
.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(0, 123, 255, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--azure-blue);
    transition: var(--transition);
}

.timeline-step:hover .step-icon {
    background: linear-gradient(
        135deg,
        var(--azure-blue) 0%,
        rgba(0, 123, 255, 0.8) 100%
    );
    color: white;
    transform: rotate(5deg);
}

/* =========================
               FOOTER
            ========================= */
.footer {
    background: var(--pure-black);
    color: white;
    padding: 80px 40px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--primary-text);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-yellow);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--secondary-text);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--azure-blue);
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    color: var(--azure-blue);
    font-size: 20px;
    margin-top: 2px;
}

.contact-text {
    color: var(--secondary-text);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--azure-blue);
    text-decoration: none;
    transition: var(--transition);
    font-weight: bold;
}

.footer-social a:hover {
    background: var(--gold-yellow);
    color: var(--dark-navy);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--secondary-text);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--secondary-text);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--azure-blue);
}

/* =========================
               RESPONSIVE DESIGN
            ========================= */
@media (max-width: 1200px) {
    .team-card {
        flex: 0 0 280px;
    }

    .about-container {
        gap: 60px;
    }

    .sdlc-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .sdlc-timeline::before {
        display: none;
    }

    .hero h1 {
        font-size: 56px;
    }

    .slider-dot {
        width: 100px;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 18px 30px;
    }

    .nav {
        gap: 25px;
        margin-right: 20px;
    }

    .hero-slide {
        padding: 0 40px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .section {
        padding: 80px 30px;
    }

    .about-section {
        padding: 100px 30px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content h2 {
        font-size: 38px;
    }

    .about-image {
        height: 400px;
    }

    .parallax-video-section {
        height: 500px;
    }

    .video-parallax-content h2 {
        font-size: 36px;
    }

    .video-stat-number {
        font-size: 36px;
    }

    .team-section {
        padding: 80px 30px;
    }

    .team-card {
        flex: 0 0 260px;
    }

    .footer {
        padding: 60px 30px 30px;
    }

    .sdlc-section {
        padding: 80px 30px;
    }

    .sdlc-title {
        font-size: 36px;
    }

    .sdlc-subtitle {
        font-size: 17px;
    }

    .sdlc-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .timeline-step {
        padding: 35px 25px 30px;
    }

    .slide-tech-tags {
        right: 40px;
        bottom: 120px;
    }

    .slide-indicator {
        right: 40px;
    }

    .slider-dot {
        width: 80px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        background: rgba(10, 37, 64, 0.95);
    }

    .nav,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-slide {
        padding: 0 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
    }

    .slider-controls {
        bottom: 30px;
    }

    .slide-indicator {
        display: none;
    }

    .about-section {
        padding: 80px 20px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 350px;
    }

    .cards {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .card,
    .card.active {
        flex: none;
        height: 280px;
    }

    .content {
        opacity: 1;
        transform: none;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .parallax-video-section {
        height: 400px;
    }

    .video-parallax-content h2 {
        font-size: 30px;
    }

    .video-parallax-content p {
        font-size: 16px;
    }

    .video-parallax-stats {
        gap: 30px;
    }

    .video-stat-number {
        font-size: 28px;
    }

    .video-controls {
        bottom: 10px;
        right: 10px;
    }

    .team-section {
        padding: 60px 20px;
    }

    .team-card {
        flex: 0 0 280px;
    }

    .team-track {
        gap: 20px;
    }

    .team-slider-controls {
        margin-top: 30px;
    }

    .footer-container {
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .sdlc-section {
        padding: 60px 20px;
    }

    .sdlc-header {
        margin-bottom: 50px;
    }

    .sdlc-title {
        font-size: 32px;
    }

    .sdlc-subtitle {
        font-size: 16px;
    }

    .sdlc-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
        margin: 0 auto;
    }

    .timeline-step {
        padding: 40px 30px 35px;
    }

    .step-indicator {
        top: -25px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .slide-description {
        font-size: 16px;
    }

    .hero-stats {
        gap: 30px;
        justify-content: center;
    }

    .slide-tech-tags {
        right: 20px;
        bottom: 140px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .slider-controls {
        gap: 20px;
        bottom: 30px;
    }

    .slider-dot {
        width: 60px;
    }

    .dot-label {
        display: none;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 12px 15px;
    }

    .logo {
        font-size: 22px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 15px;
    }

    .slider-controls {
        bottom: 20px;
        gap: 15px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .mobile-nav {
        padding: 20px;
        pointer-events: none;
        top: 80px;
    }

    .about-section {
        padding: 60px 15px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-description {
        font-size: 16px;
        padding-left: 15px;
    }

    .about-image {
        height: 280px;
    }

    .floating-card {
        left: 20px;
        bottom: 20px;
        padding: 20px;
        max-width: 220px;
    }

    .section {
        padding: 60px 15px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .video-parallax-content {
        padding: 0 20px;
    }

    .video-parallax-content h2 {
        font-size: 26px;
    }

    .video-parallax-stats {
        flex-direction: column;
        gap: 25px;
    }

    .team-section {
        padding: 50px 15px;
    }

    .team-card {
        flex: 0 0 85vw;
    }

    .team-track {
        gap: 15px;
    }

    .team-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .footer {
        padding: 50px 20px 25px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .sdlc-section {
        padding: 50px 15px;
    }

    .sdlc-title {
        font-size: 28px;
    }

    .sdlc-subtitle {
        font-size: 15px;
    }

    .sdlc-badge {
        padding: 8px 20px;
        font-size: 13px;
    }

    .timeline-step {
        padding: 35px 25px 30px;
    }

    .step-title {
        font-size: 16px;
    }

    .step-desc {
        font-size: 13px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .slide-description {
        font-size: 14px;
    }

    .hero-stats {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .stat-number {
        font-size: 24px;
    }

    .slide-tech-tags {
        display: none;
    }

    .slider-controls {
        bottom: 20px;
    }
}

/* =========================
            ELEGANT TEAM SLIDER - SIMPLE & CLASSY
            ========================= */
.team-section {
    padding: 120px 40px;
    background: var(--dark-navy);
    position: relative;
    overflow: hidden;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.team-header h2 {
    font-size: 42px;
    margin: 0 0 20px;
    color: var(--primary-text);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.team-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-yellow);
    border-radius: 2px;
}

.team-header p {
    color: var(--secondary-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 17px;
    opacity: 0.9;
}

/* Elegant Slider Container */
.team-slider-container {
    position: relative;
    padding: 20px 0;
}

/* Slider Wrapper */
.team-slider-wrapper {
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
}

/* Team Cards Grid */
.team-cards-grid {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    padding: 10px;
}

/* Team Card Design */
.team-card {
    flex: 0 0 calc(25% - 22.5px);
    min-width: 300px;
    background: var(--deep-tech-blue);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 196, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(245, 196, 0, 0.1);
}

/* Card Image */
.card-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.card-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        var(--deep-tech-blue) 100%
    );
    z-index: 1;
}

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

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

/* Card Info */
.card-info {
    padding: 30px;
    position: relative;
}

.card-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 123, 255, 0.3),
        transparent
    );
}

.member-name {
    font-size: 22px;
    margin: 0 0 8px;
    color: var(--primary-text);
    font-weight: 600;
}

.member-position {
    color: var(--gold-yellow);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.member-description {
    color: var(--secondary-text);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
    opacity: 0.9;
}

/* Member Stats */
.member-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.stat-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--azure-blue);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 11px;
    color: var(--secondary-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* Social Links - Minimal */
.member-social {
    display: flex;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--azure-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-link:hover {
    background: var(--azure-blue);
    color: white;
    transform: translateY(-3px);
}

/* Slider Controls - Elegant */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    position: relative;
}

.slider-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 123, 255, 0.3);
    color: var(--primary-text);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--azure-blue);
    border-color: var(--azure-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}

.slider-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none !important;
}

.slider-arrow.disabled:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 123, 255, 0.3);
    box-shadow: none;
}

/* Slider Dots - Simple */
.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.slider-dot::after {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 1px solid var(--azure-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-dot.active {
    background: var(--gold-yellow);
    transform: scale(1.2);
}

.slider-dot.active::after {
    opacity: 0.3;
}

.slider-dot:hover:not(.active) {
    background: rgba(0, 123, 255, 0.4);
    transform: scale(1.1);
}

/* Slide Counter */
.slide-counter {
    color: var(--secondary-text);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.current-slide {
    color: var(--gold-yellow);
    font-weight: 700;
    font-size: 18px;
}

.total-slides {
    color: var(--azure-blue);
}

.team-cards-grid {
    display: flex;
    width: 100%;
}

.team-card {
    flex: 0 0 calc(100% / 4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .team-card {
        flex: 0 0 calc(33.333% - 20px);
        min-width: 280px;
    }

    .team-slider-wrapper {
        padding: 25px;
    }
}

@media (max-width: 992px) {
    .team-section {
        padding: 100px 30px;
    }

    .team-header h2 {
        font-size: 36px;
    }

    .team-card {
        flex: 0 0 calc(50% - 15px);
        min-width: 250px;
    }

    .card-image {
        height: 250px;
    }

    .card-info {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 80px 20px;
    }

    .team-header {
        margin-bottom: 50px;
    }

    .team-header h2 {
        font-size: 32px;
    }

    .team-header p {
        font-size: 16px;
    }

    .team-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .team-cards-grid {
        gap: 20px;
    }

    .team-slider-wrapper {
        padding: 20px;
    }

    .slider-controls {
        gap: 30px;
        margin-top: 30px;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 60px 15px;
    }

    .team-header h2 {
        font-size: 28px;
    }

    .team-slider-wrapper {
        padding: 15px;
    }

    .card-info {
        padding: 20px;
    }

    .member-name {
        font-size: 20px;
    }

    .member-stats {
        flex-direction: column;
        gap: 15px;
    }

    .slider-controls {
        flex-direction: column;
        gap: 20px;
    }
}
