:root {
    --primary-color: #2563eb;
    /* Vibrant Blue */
    --secondary-color: #0f172a;
    /* Dark Slate */
    --accent-color: #3b82f6;
    /* Sky Blue */
    --text-dark: #1e293b;
    /* Slate 800 */
    --text-light: #64748b;
    /* Slate 500 */
    --bg-light: #f8fafc;
    /* Slate 50 */
    --white: #ffffff;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --max-width: 1280px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

main {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #004494;
}

/* Header Styles */
/* Header */
.header {
    position: relative;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: #020617;
}

.header.sticky {
    position: fixed;
    top: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    transition: padding 0.3s ease;
}

.header.sticky .navbar {
    padding: 15px 0;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    color: var(--white);
    transition: color 0.3s;
}

.nav-link:hover {
    color: #38bdf8;
}

/* Dropdown Menu */
.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0f172a;
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: #94a3b8;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: rgba(56, 189, 248, 0.05);
    color: #38bdf8;
    padding-left: 30px;
}

/* Mobile Dropdown Adjustments */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 10px 0;
        min-width: 100%;
    }

    .nav-item:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        text-align: center;
        padding: 10px 0;
        border: none;
    }

    .dropdown-menu li a:hover {
        padding-left: 0;
        background: transparent;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--white);
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: rgba(2, 6, 23, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
    }

    .nav-item {
        margin: 16px 0;
    }

    .nav-menu.active {
        left: 0;
    }
}

/* Hero Section */
.hero {
    padding: 30px;
    background-color: #020617;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-video-wrapper {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    border-radius: 24px;
    overflow: hidden;
    z-index: 0;
    /* Animated gradient fallback */
    background: linear-gradient(-45deg, #0f172a, #1e293b, #0ea5e9, #38bdf8);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#youtube-player {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

#youtube-player iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.75);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.badge-highlight {
    color: #38bdf8;
    /* Sky blue */
    font-weight: 700;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
    letter-spacing: -2px;
    text-shadow: 0 0 40px rgba(56, 189, 248, 0.3);
}

.hero-text {
    font-size: 20px;
    color: #94a3b8;
    /* Slate 400 */
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-gradient {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    color: #0f172a;
    padding: 16px 40px;
    font-weight: 700;
    border-radius: 8px;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.6);
    background: linear-gradient(135deg, #7dd3fc 0%, #38bdf8 100%);
}

.hero-network-graphic {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 400px;
    background:
        radial-gradient(ellipse at center, rgba(56, 189, 248, 0.1) 0%, transparent 70%),
        repeating-linear-gradient(90deg, rgba(56, 189, 248, 0.03) 0px, rgba(56, 189, 248, 0.03) 1px, transparent 1px, transparent 50px),
        repeating-linear-gradient(0deg, rgba(56, 189, 248, 0.03) 0px, rgba(56, 189, 248, 0.03) 1px, transparent 1px, transparent 50px);
    border-radius: 50% 50% 0 0;
    filter: blur(1px);
    z-index: 1;
    pointer-events: none;
    mask-image: linear-gradient(to top, black, transparent);
    -webkit-mask-image: linear-gradient(to top, black, transparent);
}

@media (max-width: 992px) {
    .hero {
        padding: 20px;
        min-height: 90vh;
    }

    .hero-video-wrapper {
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 20px;
        border-radius: 16px;
    }

    .hero-container {
        padding-top: 60px;
        padding-bottom: 60px;
    }

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

    .hero-network-graphic {
        width: 150%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 15px;
    }

    .hero-video-wrapper {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 12px;
    }

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

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

/* Shape Divider */
.custom-shape-divider-bottom-1699999999 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1699999999 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.custom-shape-divider-bottom-1699999999 .shape-fill {
    fill: #FFFFFF;
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

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

/* Services Section */
.section-padding {
    padding: 100px 0;
}

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

.section-header {
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
}

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

.service-card {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 30px;
    display: inline-block;
    padding: 15px;
    background: #eff6ff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-desc {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
    font-size: 15px;
}

.service-link:hover {
    gap: 12px;
}

/* Logo Carousel */
.logo-carousel-section {
    background-color: #020617;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo-carousel-header {
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    width: 200px;
    flex-shrink: 0;
    line-height: 1.4;
}

.logo-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.logo-slider::before,
.logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    z-index: 2;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, #020617, transparent);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, #020617, transparent);
}

.logo-track {
    display: flex;
    gap: 50px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.logo-slide {
    color: #64748b;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.logo-slide i {
    font-size: 24px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .logo-carousel-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .logo-carousel-header {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* About Section Redesign */
.about-dark-section {
    background-color: #020617;
    color: #94a3b8;
    padding: 100px 0;
}

.partners-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
    gap: 30px;
}

.partners-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    max-width: 200px;
    line-height: 1.4;
    flex-shrink: 0;
}

.partners-logos {
    flex: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-logos-track {
    display: flex;
    gap: 60px;
    animation: scrollLogos 30s linear infinite;
    width: fit-content;
}

.partners-logos-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    font-size: 20px;
    font-weight: 600;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.partner-logo:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .partners-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .partners-label {
        max-width: 100%;
    }

    .partners-logos {
        width: 100%;
    }

    .partners-logos-track {
        gap: 40px;
    }

    .partner-logo {
        font-size: 16px;
    }
}

.about-main-content {
    max-width: 1000px;
}

.about-label {
    color: #64748b;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.about-headline-large {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 400;
    color: #64748b;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

.about-headline-large .text-white {
    color: var(--white);
    font-weight: 600;
}

.btn-light-blue {
    background-color: #bae6fd;
    /* Light sky blue */
    color: #0f172a;
    padding: 16px 36px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 16px;
    display: inline-block;
}

.btn-light-blue:hover {
    background-color: #7dd3fc;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.2);
}

@media (max-width: 768px) {
    .partners-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-headline-large {
        font-size: 36px;
    }
}

/* Stats Section (New) */
.stats-dark-section {
    background-color: #020617;
    padding-bottom: 100px;
    /* Continue the dark theme */
}

.stats-container-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.stats-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.stats-img-placeholder {
    width: 100%;
    height: 100%;
    background-color: #1e293b;
    background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
    /* Placeholder image */
    background-size: cover;
    background-position: center;
}

.stats-overlay-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-item {
    margin-bottom: 15px;
}

.progress-item:last-child {
    margin-bottom: 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #38bdf8;
    border-radius: 2px;
}

.stats-cards-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-card-dark {
    background-color: #0f172a;
    border: 1px solid #1e293b;
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card-dark:hover {
    transform: translateY(-5px);
    border-color: #38bdf8;
}

.stat-number-large {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.stat-number-large .plus {
    color: #38bdf8;
}

.stat-desc-small {
    color: #94a3b8;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 992px) {
    .stats-container-grid {
        grid-template-columns: 1fr;
    }

    .stats-image-wrapper {
        height: 400px;
    }
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

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

.cta-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-text {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 15px 35px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.portfolio-img-placeholder {
    width: 100%;
    height: 100%;
    background-color: #cbd5e1;
    background-image: linear-gradient(135deg, #64748b, #475569);
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img-placeholder {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
}

.portfolio-cat {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: center;
}

.pricing-card {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    z-index: 1;
    background: #fff;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    margin-bottom: 35px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-price {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.plan-price span {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.plan-features {
    margin-bottom: 40px;
    text-align: left;
}

.plan-features li {
    margin-bottom: 18px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.plan-features li i {
    color: var(--primary-color);
    background: #eff6ff;
    padding: 5px;
    border-radius: 50%;
    font-size: 12px;
}

.plan-features li i {
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

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

.client-img-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #cbd5e1;
    background-image: linear-gradient(45deg, #94a3b8, #64748b);
    border: 2px solid #fff;
    box-shadow: var(--shadow-sm);
}

.client-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.client-role {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 16px;
}

.stars {
    color: #fbbf24;
    font-size: 14px;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-img-placeholder {
    width: 100%;
    height: 240px;
    background-color: #cbd5e1;
    background-image: linear-gradient(135deg, #3b82f6, #2563eb);
    position: relative;
    overflow: hidden;
}

.blog-img-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.blog-meta i {
    color: var(--primary-color);
    margin-right: 8px;
}

.blog-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--text-dark);
    transition: color 0.3s;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
    font-size: 15px;
}

.blog-link:hover {
    gap: 12px;
}

/* Footer */
.footer {
    background-color: #0b1120;
    /* Darker slate */
    color: #94a3b8;
    padding: 100px 0 0;
    position: relative;
}

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

.footer-logo {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
    background: linear-gradient(to right, #fff, #94a3b8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-desc {
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.footer-title {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.footer-links a {
    transition: all 0.3s;
    font-size: 16px;
    display: inline-block;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 5px;
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 15px;
    color: #64748b;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

.stagger-delay-1 {
    transition-delay: 0.1s;
}

.stagger-delay-2 {
    transition-delay: 0.2s;
}

.stagger-delay-3 {
    transition-delay: 0.3s;
}

/* Services Dark Section */
.services-dark-section {
    background-color: #020617;
    /* Dark background */
    padding: 100px 0;
}

.section-label {
    color: #94a3b8;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.section-title-dark {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-subtitle-dark {
    font-size: 18px;
    color: #94a3b8;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

.service-card-dark {
    background-color: #0f172a;
    /* Dark Slate */
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #1e293b;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card-dark:hover {
    transform: translateY(-10px);
    border-color: #38bdf8;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.service-card-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(56, 189, 248, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #38bdf8;
    transition: all 0.3s ease;
}

.service-card-dark:hover .service-icon-box {
    background-color: #38bdf8;
    color: #0f172a;
    transform: scale(1.1);
}

.service-title-dark {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.service-desc-dark {
    color: #94a3b8;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-link-dark {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-link-dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #38bdf8;
    transition: width 0.3s ease;
}

.service-link-dark:hover {
    color: #38bdf8;
}

.service-link-dark:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .section-title-dark {
        font-size: 36px;
    }
}

/* CTA Dark Section */
.cta-dark-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    /* Office/IT background */
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.7);
    /* Dark overlay */
    z-index: 1;
}

.cta-dark-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.cta-card-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 50px;
    border-radius: 24px;
    text-align: center;
    max-width: 700px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.cta-label-small {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-title-large {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text-medium {
    color: #cbd5e1;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cta-title-large {
        font-size: 32px;
    }

    .cta-card-glass {
        padding: 40px 20px;
    }
}

/* Why Choose Us Dark Section */
.why-choose-us-dark-section {
    background-color: #020617;
    /* Dark background */
    padding: 100px 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-desc-dark {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 500px;
}

.why-choose-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    margin-top: 20px;
}

.why-choose-img-placeholder {
    width: 100%;
    height: 100%;
    background-color: #1e293b;
    background-image: url('https://images.unsplash.com/photo-1573164713988-8665fc963095?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
    /* Tech team meeting */
    background-size: cover;
    background-position: center;
}

.play-button-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px 10px 10px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button-overlay:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.play-btn-circle {
    width: 40px;
    height: 40px;
    background-color: #38bdf8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 14px;
}

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

.why-choose-features-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card-dark {
    background-color: #0f172a;
    border: 1px solid #1e293b;
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card-dark:hover {
    border-color: #38bdf8;
    transform: translateX(10px);
}

.feature-icon-box {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: rgba(56, 189, 248, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #38bdf8;
}

.feature-title-dark {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    padding-right: 60px;
}

.feature-desc-dark {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-choose-image-wrapper {
        height: 300px;
    }
}

/* Case Studies Dark Section */
.case-studies-dark-section {
    background-color: #020617;
    /* Dark background */
    padding: 100px 0;
}

.case-studies-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.case-study-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.case-study-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.case-study-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.case-study-card:hover .case-study-img {
    transform: scale(1.1);
}

.case-study-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.case-category-pill {
    position: absolute;
    top: 30px;
    left: 30px;
    background-color: var(--white);
    color: #0f172a;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-content-bottom {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
}

.case-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.case-desc {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 90%;
}

@media (max-width: 768px) {
    .case-studies-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .case-study-card {
        height: 350px;
    }

    .case-title {
        font-size: 24px;
    }
}

/* Testimonials Dark Section */
.testimonials-dark-section {
    background-color: #020617;
    padding: 100px 0;
    overflow: hidden;
    /* Prevent horizontal scroll */
}

.testimonials-header-dark {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.testimonials-header-left {
    max-width: 600px;
}

.testimonials-header-right {
    margin-bottom: 10px;
}

.testimonials-scroll-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 60px;
    padding: 0 20px;
}

.testimonials-scroll-wrapper::before,
.testimonials-scroll-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.testimonials-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #020617 0%, #020617 20%, transparent 100%);
}

.testimonials-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #020617 0%, #020617 20%, transparent 100%);
}

.testimonials-grid {
    display: block !important;
}

.testimonials-grid .owl-stage-outer {
    overflow: visible;
    padding: 20px 0;
}

.testimonial-card-dark {
    background-color: transparent;
    border: 1px solid #1e293b;
    padding: 40px;
    border-radius: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto;
    margin: 0 15px;
}

.testimonial-card-dark:hover {
    border-color: #38bdf8;
    background-color: rgba(15, 23, 42, 0.5);
    transform: translateY(-5px);
}

.testimonial-text-dark {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-divider {
    height: 1px;
    background-color: #1e293b;
    width: 100%;
    margin-bottom: 25px;
}

.stars-dark {
    color: #38bdf8;
    /* Sky blue stars */
    font-size: 14px;
    margin-bottom: 25px;
    display: flex;
    gap: 4px;
}

.client-info-dark {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info-dark .client-img-placeholder {
    width: 50px;
    height: 50px;
    border: none;
    background-size: cover;
    background-position: center;
}

.client-name-dark {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.client-role-dark {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

/* Owl Carousel Custom Styles for Testimonials */
.testimonials-grid.owl-carousel .owl-nav {
    display: none;
}

.testimonials-grid.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.testimonials-grid.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.testimonials-grid.owl-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background-color: #1e293b;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}

.testimonials-grid.owl-carousel .owl-dots .owl-dot.active span,
.testimonials-grid.owl-carousel .owl-dots .owl-dot:hover span {
    background-color: #38bdf8;
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .testimonials-header-dark {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .testimonials-header-right {
        margin-bottom: 0;
    }

    .testimonials-scroll-wrapper {
        padding: 0 15px;
        margin-top: 40px;
    }

    .testimonials-scroll-wrapper::before,
    .testimonials-scroll-wrapper::after {
        width: 60px;
    }

    .testimonial-card-dark {
        margin: 0 10px;
        padding: 30px;
    }
}

/* Custom Button Style for Get Quote */
.btn-quote {
    background-color: transparent;
    border: 1px solid #3b82f6;
    /* Bright blue border */
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
    /* Glow effect */
}

.btn-quote:hover {
    background-color: rgba(59, 130, 246, 0.1);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-quote i {
    color: #60a5fa;
    /* Lighter blue for the icon */
    font-size: 14px;
}