:root {
    --bg-color: #ffffff;
    --text-color: #111111;
    --text-muted: #555555;
    --primary-blue: #2070d0;
    --secondary-blue: #046eab;
    --card-bg: rgba(255, 255, 255, 0.9);
    --border-color: rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    width: 100%;
}

/* Removed snap-section */
/* Typography & Links */
a {
    color: var(--text-color);
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
}



/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    padding: 15px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    /* Glass Effect */
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.2);

    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);

    border-radius: 16px;

    z-index: 1000;

    transition: all .3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 800;
    flex: 1;
}

.logo-img {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0 auto;
    padding: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: flex-end;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: #111;
    position: relative;
    padding-bottom: 8px;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2070d0;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #2070d0;
    border-radius: 2px;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger svg {
    display: block;
}

.hamburger svg path {
    transition: 0.3s;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #2070d0;
    /* Brand blue background */
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 20px;
    z-index: 1001;
    overflow-y: auto;
}

.hamburger.active svg path {
    stroke: #ffffff !important;
}

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

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 16px;
}

.mobile-logo-area {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-logo-img {
    height: 30px;
    filter: brightness(0) invert(1);
}

.mobile-logo-tagline {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    font-weight: 500;
}

.close-menu-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.close-menu-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.mobile-nav-list {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 10px 0;
}

.nav-item-row {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.nav-item-row a {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    width: 100%;
    color: #ffffff;
    transition: all 0.2s ease;
    border-radius: 12px;
}

.nav-row-num {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    width: 24px;
}

.nav-row-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-right: 16px;
}

.nav-row-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

.nav-row-text {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    flex-grow: 1;
    text-align: left;
}

.nav-row-arrow {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.2s ease;
}

.nav-item-row.active-item {
    border-bottom: none;
}

.nav-item-row.active-item a {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-item-row.active-item .nav-row-icon {
    background: #ffffff;
    color: #2070d0;
}

.nav-item-row.active-item .nav-row-arrow {
    color: #ffffff;
    transform: translateX(2px);
}

.mobile-nav-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.mobile-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.mobile-footer-logo-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.mobile-footer-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.m-footer-title {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}

.m-footer-subtitle {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.mobile-footer-socials {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

.social-icon-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}

.social-icon-link:hover {
    color: #ffffff;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

/* Buttons */
.btn {
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.login-btn {
    background: #2070d0;
    color: #fff;
    border-radius: 6px;
    padding: 10px 28px;
    font-weight: 500;
}

.login-btn:hover {
    background: #2070d0;
    color: #fff;
}

.btn-blue {
    background: #2070d0;
    color: #fff;
}

.btn-blue:hover {
    background: #015687;
    color: #fff;
}

.btn-white {
    background: #ffffff;
    color: #2070d0;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #015687;
}

.btn-outline {
    background: transparent;
    color: #111;
    border: 1px solid #111;
}

.btn-outline:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.new-hero {
    min-height: 100vh;
    padding: 140px 50px 60px;
    background: url('assets/252661fa-4cee-4dcf-a6ef-1f6a76f0b990 (1).png') center/cover no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    flex: 1.2;
    padding-right: 50px;
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2070d0;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #0f172a;
}

.text-blue {
    color: #2070d0;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

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

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-cards {
    display: flex;
    gap: 20px;
    max-width: 1400px;
    margin: 60px auto 0;
    width: 100%;
}



.hero-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.icon-placeholder.blue-square {
    width: 48px;
    height: 48px;
    background: #93c5fd;
    border-radius: 8px;
    flex-shrink: 0;
}

.hero-card-text h4 {
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-card-text p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

/* Responsive adjustments for Navigation and Hero */
@media (max-width: 1200px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .hero-cards {
        flex-wrap: wrap;
    }

    .hero-card {
        min-width: 45%;
    }
}

@media (max-width: 1024px) {

    .nav-links,
    .nav-right {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.8rem;
    }



    .hero-cards {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 15px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .hero-cards::-webkit-scrollbar {
        display: none;
    }

    .hero-card {
        width: 300px;
        flex: 0 0 300px;
        scroll-snap-align: start;
    }

    .hero-image {
        display: none;
    }

    /* Hide large image on mobile for space */
}



/* Sections */
.section {
    padding: 100px 50px;
    background: #fff;
    position: relative;
}

.section:nth-child(even) {
    background: #f9fbfd;
}

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

.section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    text-align: center;
}

.grid {
    display: grid;
    gap: 30px;
}

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

.products-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

/* Services with Background Image */
.services {
    background: url('assets/it_professional_bg_1783012387560.jpg') center/cover no-repeat !important;
    /* Removed background-attachment: fixed; as it causes severe scroll lag */
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Dark overlay for text readability */
    z-index: 1;
}

/* Cards */
.card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    opacity: 1;
    position: relative;
    z-index: 2;
}

.services .card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.services .card p {
    color: #e0e0e0;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.1);
    border-color: #2070d0;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Products */
.product-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-image {
    height: 250px;
    background: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 30px;
}

.link-btn {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-blue);
    font-weight: 600;
}

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

/* 3D App Icon Section Layout */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 120px;
}

.product-showcase.reverse {
    direction: rtl;
}

.product-showcase.reverse>* {
    direction: ltr;
}

.app-icon-3d {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: block;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: translateZ(0);
}



/* Enhancing Services grid for visual appeal */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card-modern {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px #2070d0;
    border-color: #2070d0;
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.company-info-grid {
    grid-template-columns: 1fr 1fr;
}

.contact-details {
    margin-top: 30px;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.input-group {
    margin-bottom: 20px;
}

input,
textarea {
    width: 100%;
    padding: 15px;
    background: #f9fbfd;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-color);
    font-family: inherit;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: #fff;
}

.submit-btn {
    width: 100%;
}

/* Tech Contact Section */
.dark-contact {
    background: #020617 !important;
    color: #f8fafc;
}

.tech-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.tech-node {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(0, 212, 255, 0.4);
}



.binary-stream {
    position: absolute;
    bottom: -150px;
    color: rgba(0, 212, 255, 0.15);
    font-family: monospace;
    line-height: 1.5;
    pointer-events: none;
    user-select: none;
}



.glass-form {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
}

.glass-form input,
.glass-form textarea {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}

.glass-form input::placeholder,
.glass-form textarea::placeholder {
    color: #64748b;
}

.glass-form input:focus,
.glass-form textarea:focus {
    border-color: #00d4ff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.1);
}

.tech-btn {
    position: relative;
    overflow: hidden;
    background: transparent !important;
    border: 1px solid #00d4ff !important;
    color: #00d4ff !important;
}

.tech-btn:hover {
    background: rgba(0, 212, 255, 0.1) !important;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3) !important;
}

/* Footer Redesign */
.complex-footer {
    background: #ffffff;
    color: #555555;
    padding: 80px 50px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-brand h2 {
    color: #111111;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-links h4 {
    color: #111111;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: #555555;
}

.footer-links a:hover {
    color: #2070d0;
}

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

@media (max-width: 768px) {

    .footer-links-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .footer-links-grid>div:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .footer-links-grid>div:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .footer-links-grid>div:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
    }

    .footer-links-grid>div:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
    }
}

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

/* Detailed Content Layouts */
.detailed-section {
    padding: 100px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.detailed-block {
    margin-bottom: 40px;
    opacity: 1;
}

.detailed-block h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.detailed-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* About Layout */
.about-hero {
    background: #f8fafc;
    padding: 150px 20px 80px;
    text-align: center;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-muted);
    text-align: left;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.vm-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary-blue);
}

/* Clients Marquee */
.clients-marquee {
    background: #ffffff;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.clients-track {
    display: flex;
    gap: 60px;
    width: max-content;
}

.client-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Mission Section */
.mission-section {
    padding: 100px 50px;
    background: #ffffff;
}

.mission-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.mission-left {
    flex: 1;
}

.mission-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2070d0;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.mission-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #0f172a;
}

.mission-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    max-width: 100%;
}

.mission-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    filter: grayscale(100%);
}

.mission-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mission-link-top {
    text-align: right;
    margin-bottom: 40px;
}

.link-blue-underline {
    color: #2070d0;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.mission-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-bottom: 1px dashed #e2e8f0;
    padding-bottom: 30px;
}

.mission-point:last-child {
    border-bottom: none;
}

.point-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2070d0;
    margin-top: 6px;
    flex-shrink: 0;
}

.point-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #0f172a;
}

.point-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Our Story Section */
.story-section {
    background: url("assets/122700ee-d5d9-42d3-92a3-ee4b8ffe7e5b.png") center/cover no-repeat;
    padding: 120px 80px;
    color: #fff;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;

    display: flex;
    align-items: start;
    justify-content: space-between;

    gap: 40px;
}

.story-text {
    flex: 0 0 45%;
    max-width: 560px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* keeps button and text left */
    text-align: left;
}

.story-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 30px;
}

.story-description {
    font-size: 22px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 45px;
}

.story-image {
    flex: 0 0 55%;

    display: flex;
    justify-content: flex-end;
}

.story-image img {
    width: 650px;
    max-width: 100%;
}



.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, .08);
}

@media (max-width:992px) {

    .story-container {
        flex-direction: column;
        text-align: center;
    }

    .story-text {
        max-width: 100%;
    }

    .story-image {
        justify-content: center;
        margin-top: 50px;
    }

    .story-image img {
        width: 350px;
    }

    .story-title {
        font-size: 52px;
    }

    .story-description {
        font-size: 18px;
    }

}

.globe-placeholder {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle at center, transparent 30%, rgba(56, 189, 248, 0.2) 60%, rgba(29, 78, 216, 0.5) 100%);
    box-shadow: 0 0 80px rgba(56, 189, 248, 0.4), inset 0 0 50px rgba(56, 189, 248, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.globe-inner {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 2px dashed rgba(56, 189, 248, 0.4);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}



/* Typography Helpers */
.section-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2070d0;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #0f172a;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
}

/* Services Grid Section */
.services-section {
    padding: 120px 50px;
    background: #f8fafc;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid-12 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

@media (max-width: 992px) {
    .services-grid-12 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid-12 {
        grid-template-columns: 1fr;
    }
}

.service-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.3s;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.s-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.2rem;
}

.blue-icon {
    background: #eff6ff;
    color: #2070d0;
}

.outline-icon {
    border: 1px solid #e2e8f0;
    color: #64748b;
}

.service-box h4 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #0f172a;
}

.service-box p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
}

/* Case Studies */
.case-studies-section {
    padding: 100px 50px;
    background: #fff;
}

.case-studies-container {
    max-width: 1400px;
    margin: 0 auto;
}

.cs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cs-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.cs-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #2070d0;
}

.cs-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.cs-info {
    padding: 20px;
}

.cs-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cs-icon {
    color: #94a3b8;
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.cs-card:hover .cs-icon {
    transform: translate(3px, -3px);
    color: #2070d0;
}

.cs-metric {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cs-desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
}

/* Gen AI Redesign */
.gen-ai-redesign {
    background: url('assets/0e692cce-b131-4576-9918-d78b868858c7 (1).png') center/cover no-repeat;
    background-color: #020617;
    color: #f8fafc;
    padding: 120px 50px;
    position: relative;
}

.gen-ai-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gen-ai-top {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.gen-ai-text {
    flex: 1;
}

.gen-ai-text h2 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

span.gradient-text {
    background: linear-gradient(90deg, #c084fc, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gen-ai-text p {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.6;
}

.btn-outline-gradient {
    background: transparent;
    color: #f8fafc;
    border: 1px solid transparent;
    background-image: linear-gradient(#020617, #020617), linear-gradient(90deg, #c084fc, #38bdf8);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 8px;
    padding: 12px 30px;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline-gradient:hover {
    box-shadow: 0 0 15px rgba(192, 132, 252, 0.4);
}

.gen-ai-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.ai-sphere {
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ai-node {
    position: absolute;
    background: transparent;
    color: #94a3b8;
    border: 1px solid transparent;
    background-image: linear-gradient(#020617, #020617), linear-gradient(90deg, #c084fc, #38bdf8);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.n1 {
    top: -20px;
    left: 20px;
}

.n2 {
    top: 20px;
    right: -40px;
}

.n3 {
    bottom: 40px;
    left: -20px;
}

.n4 {
    bottom: -10px;
    right: 20px;
}

.gen-ai-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 60px;
}

.ai-feat {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.ai-feat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    background: transparent;
    border: 1px solid transparent;
    background-image: linear-gradient(#020617, #020617), linear-gradient(135deg, #c084fc, #38bdf8);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.purple-gradient-border {
    color: #c084fc;
}

.blue-gradient-border {
    color: #38bdf8;
}

.ai-feat h5 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: #f8fafc;
}

.ai-feat p {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 50px;
    background: #ffffff;
}

.testi-header {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.testi-header h2 {
    font-size: 3.5rem;
    margin-bottom: 5px;
    font-weight: 700;
    color: #0f172a;
}

.testi-header p {
    font-size: 1.1rem;
    color: #475569;
}

.testi-carousel {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding-bottom: 40px;
    cursor: grab;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.testi-carousel::-webkit-scrollbar {
    display: none;
}

.testi-card {
    min-width: 850px;
    max-width: 900px;
    height: 380px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 40px;
    display: flex;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    align-items: center;
    scroll-snap-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #2070d0;
}

.testi-text-area {
    flex: 1;
}

.testi-text-area h3 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.2;
    color: #0f172a;
}

.testi-text-area p {
    color: #475569;
    line-height: 1.8;
    font-size: 0.95rem;
    max-width: 100%;
}

.testi-img-area {
    width: 220px;
    height: 280px;
    border-radius: 12px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.testi-img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testi-card:hover .testi-img-area img {
    transform: scale(1.08);
}

.testi-badge {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    animation: rotate 15s linear infinite;
    pointer-events: none;
}

.testi-badge svg {
    overflow: visible;
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.testi-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.5px solid #2070d0;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
}

.testi-dots .dot.active {
    background: #2070d0;
}

/* Clients Section */
.new-clients-section {
    background: #ffffff;
    padding: 100px 50px;
    color: #0f172a;
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
}

.clients-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.clients-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0f172a;
}

.clients-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    row-gap: 40px;
    column-gap: 0;
}

.c-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: #475569;
    text-align: center;
    padding: 10px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.c-logo:nth-child(5n) {
    border-right: none;
}

.c-logo:hover {
    transform: scale(1.05);
}

.c-logo img {
    max-width: 90%;
    max-height: 95px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.c-logo:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.index-c-logo {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.index-c-logo img {
    max-width: 90%;
    max-height: 95px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.index-c-logo:hover img {
    filter: grayscale(0%) brightness(1) invert(0);
    opacity: 1;
}

/* Disable color on hover for specific logos */
.c-logo.no-color-hover:hover img {
    filter: grayscale(100%) brightness(0) !important;
    opacity: 0.6 !important;
}

.index-c-logo.no-color-hover:hover img {
    filter: brightness(0) invert(1) !important;
    opacity: 0.8 !important;
}

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Featured Stories Section */
.stories-section {
    padding: 100px 50px;
    background: #f8fafc;
}

.stories-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.story-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.story-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.story-card-content {
    padding: 25px;
}

.story-tag {
    font-size: 0.75rem;
    color: #38bdf8;
    font-weight: 700;
    margin-bottom: 10px;
}

.story-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.story-desc {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.story-desc.expanded {
    -webkit-line-clamp: unset;
}

.show-more-btn {
    background: none;
    border: none;
    color: #1d4ed8;
    padding: 0;
    margin-bottom: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.story-meta {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Footer Redesign */
.new-footer {
    background: #000;
    color: #f8fafc;
    padding: 80px 50px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 60px;
}

.footer-cta-text h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.footer-cta-text p {
    color: #94a3b8;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-links-grid h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

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

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

.footer-links-grid a {
    color: #94a3b8;
    transition: 0.3s;
}

.footer-links-grid a:hover {
    color: #2070d0;
}


.contact-list li {
    display: flex;
    justify-content: space-between;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.contact-list li a {
    color: #ffffff;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    color: #64748b;
    font-size: 0.85rem;
}

.footer-legal a {
    color: #64748b;
    margin: 0 5px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: #f8fafc;
    font-weight: 700;
}

/* Media Queries for new sections */
@media (max-width: 1200px) {
    .cs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gen-ai-top {
        flex-direction: column;
        text-align: center;
    }

    .gen-ai-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-card {
        min-width: 100%;
    }

    .clients-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-12 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cs-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 10px 5px 25px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .cs-grid::-webkit-scrollbar {
        height: 6px;
    }

    .cs-grid::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 10px;
    }

    .cs-grid::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 10px;
    }

    .cs-grid::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }

    .cs-card {
        min-width: 290px;
        max-width: 320px;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .cs-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

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

    .testi-card {
        flex-direction: column;
        height: auto;
        min-width: 100%;
        padding: 30px;
        gap: 20px;
    }

    .testi-img-area {
        width: 100%;
        height: 280px;
    }

    .clients-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stories-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 10px 5px 25px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .stories-grid::-webkit-scrollbar {
        height: 6px;
    }

    .stories-grid::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 10px;
    }

    .stories-grid::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 10px;
    }

    .stories-grid::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }

    .story-card {
        min-width: 290px;
        max-width: 320px;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

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

    .footer-cta {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .footer-cta-text h2 {
        font-size: 1.8rem;
    }

    .footer-cta-text p {
        font-size: 0.85rem;
    }

    .footer-links-grid h4 {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .footer-links-grid li {
        margin-bottom: 8px;
        font-size: 0.8rem;
    }

    .footer-links-grid a {
        font-size: 0.8rem;
    }

    .contact-list li {
        display: flex !important;
        flex-direction: column !important;
        gap: 2px !important;
        align-items: flex-start !important;
        margin-bottom: 10px !important;
    }

    .contact-list li span,
    .contact-list li a {
        font-size: 0.7rem !important;
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        font-size: 0.75rem;
        padding-top: 20px;
    }

    .footer-legal a {
        font-size: 0.75rem;
    }

    .new-footer {
        padding: 50px 20px 30px;
    }
}

.story-container {
    flex-direction: column;
    text-align: left;
}

.story-image {
    margin-top: 40px;
}




/* Glowing Gen AI Ring (from reference) */
.gen-ai-section {
    background: #f8fafc;
    padding: 150px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.glowing-ring {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(0, 102, 255, 0.1);
    box-shadow: inset 0 0 50px rgba(0, 102, 255, 0.05), 0 0 100px rgba(0, 102, 255, 0.05);
}

.glowing-ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: conic-gradient(transparent, transparent, #2070d0, #00d4ff, transparent);
    z-index: -1;
    mask: radial-gradient(transparent 68%, black 70%);
    -webkit-mask: radial-gradient(transparent 68%, black 70%);
}

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

.gen-ai-content h2 {
    color: #111111;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.gen-ai-content p {
    color: #555555;
    max-width: 500px;
    margin: 0 auto 30px;
}



/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .nav-links,
    .navbar .cta-btn,
    .navbar .btn.primary {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .contact-container,
    .company-info-grid {
        grid-template-columns: 1fr;
    }

    .dark-contact .section-title {
        font-size: 2.2rem !important;
    }

    .glass-form h3 {
        font-size: 1.3rem !important;
    }

    .glass-form h4 {
        font-size: 1.1rem !important;
    }

    .dark-contact p {
        font-size: 0.95rem !important;
    }

    .section {
        padding: 60px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .product-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-showcase.reverse {
        direction: ltr;
    }

    .app-icon-3d {
        max-width: 250px;
    }

    .vision-mission {
        grid-template-columns: 1fr;
    }

    /* Responsive Mission Section */
    .mission-container {
        flex-direction: column;
        gap: 30px;
    }

    .mission-right {
        text-align: center;
        align-items: center;
    }

    .mission-intro {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .mission-link-top {
        text-align: center;
    }

    .mission-points {
        gap: 20px;
        align-items: center;
    }

    .mission-point {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .mission-point .point-bullet {
        display: none;
    }

    .mission-point h4 {
        margin-bottom: 5px;
    }

    /* Responsive Our Story Section */
    .story-section {
        padding: 60px 20px;
    }

    .story-description br {
        display: none;
    }

    .gen-ai-section {
        padding: 100px 20px;
    }

    .glowing-ring {
        width: 300px;
        height: 300px;
    }
}

/* Responsive Utility Classes */
.responsive-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}



/* Light Theme Overrides for Contact, Services, Projects */
.light-theme-override {
    background: #f8fafc !important;
    color: #111 !important;
}

.light-theme-override .section-title,
.light-theme-override h2,
.light-theme-override h3,
.light-theme-override h4,
.light-theme-override h5 {
    color: #111 !important;
}

.light-theme-override p,
.light-theme-override .premium-desc {
    color: #475569 !important;
}

.light-theme-override .glass-form,
.light-theme-override .premium-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05) !important;
}

.light-theme-override .premium-title {
    color: #111 !important;
}

.light-theme-override input,
.light-theme-override textarea {
    background: #fff !important;
    border: 1px solid #cbd5e1 !important;
    color: #111 !important;
}

.light-theme-override input::placeholder,
.light-theme-override textarea::placeholder {
    color: #94a3b8 !important;
}

.light-theme-override .tech-bg {
    display: none !important;
}

/* Ensure the text with gradients still works */
.light-theme-override span[style*="transparent"] {
    /* Gradients already handle their own colors */
}


/* Additional Mobile Responsiveness and Font Adjustments */
@media (max-width: 768px) {

    /* Grids */
    .premium-grid {
        grid-template-columns: 1fr !important;
    }

    .clients-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .c-logo:nth-child(5n) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .c-logo:nth-child(2n) {
        border-right: none;
    }

    /* Gen AI Section */
    .gen-ai-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .gen-ai-top {
        display: contents;
    }

    .gen-ai-text {
        order: 1;
        text-align: center;
    }

    .gen-ai-features {
        order: 2;
        grid-template-columns: 1fr;
    }

    .gen-ai-visual {
        order: 3;
        margin-top: 20px;
    }

    .ai-sphere {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }

    .gen-ai-text h2 {
        font-size: 2.2rem !important;
    }

    /* Clients Header */
    .clients-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    /* Font size adjustments */
    h1 {
        font-size: 1.8rem !important;
    }

    h2,
    .section-title {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.2rem !important;
    }

    h4 {
        font-size: 1.0rem !important;
    }

    .premium-title {
        font-size: 1.1rem !important;
    }

    p,
    .premium-desc {
        font-size: 0.85rem !important;
    }

    .hero-title {
        font-size: 1.8rem !important;
    }

    .hero-subtitle {
        font-size: 0.85rem !important;
    }

    .hero-eyebrow {
        font-size: 0.75rem !important;
    }

    .btn {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
    }

    .snap-section {
        padding-top: 100px !important;
    }
}

/* Connect section text */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li,
.contact-list span,
.contact-list a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 0.85rem !important;
}

.contact-list li span:first-child {
    font-weight: 500;
}

.contact-list li span:last-child {
    word-break: break-word;
}

.contact-list li {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 8px;
    margin-bottom: 10px;
    align-items: start;
}

/* Mobile Nav Overrides */
.nav-num {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 15px;
    font-weight: 500;
}

.close-menu-btn {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.15);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #ffffff;
    transition: 0.3s;
}

.close-menu-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.mobile-nav-buttons-container {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 0px;
    width: 100%;
}

.mobile-nav-buttons-container .btn {
    flex: 1;
    justify-content: center;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Scroll Animations */
.animate-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.is-visible {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

/* --- NEW ABOUT PAGE STYLES --- */
.about-hero-new {
    padding: 160px 50px 80px;
    display: flex;
    align-items: center;
    background-color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.about-hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ffffff 40%, rgba(255, 255, 255, 0.8) 60%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.about-hero-new .text-content {
    flex: 1;
    max-width: 700px;
    z-index: 2;
    position: relative;
    padding-right: 50px;
}

.hero-eyebrow-text {
    font-size: 0.9rem;
    color: #0033a0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px !important;
}

.about-hero-new h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #000;
}

.about-hero-new h1 .text-blue {
    color: #0033a0;
}

.hero-subtext {
    font-size: 1.3rem !important;
    color: #111 !important;
    margin-bottom: 40px !important;
    line-height: 1.4;
}

.hero-btn-container {
    margin-top: 30px;
}

.btn-outline-hero {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
    width: 250px;
    height: 60px;
    border: 2px solid #0033a0;
    border-radius: 8px;
    color: #0033a0;
    font-size: 1.5rem;
    text-decoration: none;
    transition: 0.3s;
    background: transparent;
}

.btn-outline-hero:hover {
    background: #0033a0;
    color: #fff;
}

.blue-banner-section {
    background-color: #0033a0;
    color: #fff;
    padding: 80px 50px;
    text-align: center;
}

.blue-banner-section p {
    font-size: 1.8rem;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.4;
}

.our-story-section {
    padding: 100px 50px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.our-story-section h2 {
    flex: 1;
    font-size: 2.5rem;
    color: #111;
}

.our-story-section .story-text {
    flex: 2;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.founding-vision {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/8189f0a1-91cf-4dfc-81c4-cca81f786b75.png') center/cover no-repeat;
    padding: 120px 50px;
    color: #fff;
}

.founding-vision-content {
    max-width: 600px;
    margin-left: 10%;
}

.founding-vision-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.founding-vision-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.guiding-principles {
    padding: 100px 50px;
    background: #f9fbfd;
}

.guiding-principles .container {
    max-width: 1200px;
    margin: 0 auto;
}

.guiding-principles h2 {
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.principle-card {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 8px;
}

.principle-card .icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2070d0;
}

.principle-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.principle-card p {
    font-size: 0.9rem;
    color: #666;
}

.create-value-section {
    background: #000;
    color: #fff;
    padding: 100px 50px;
}

.value-heading-container {
    text-align: left;
}

.create-value-section h2 {
    margin-bottom: 50px;
    font-size: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.create-value-section .value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.create-value-section .value-card {
    background: #fff;
    color: #111;
    padding: 60px 40px;
    text-align: center;
    border-radius: 0;
    display: block;
    /* Override the flex display from later in the file */
}

.create-value-section .value-card .blue-circle {
    width: 80px;
    height: 80px;
    background: #2070d0;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.create-value-section .value-card h4 {
    font-size: 1.25rem;
    color: #2070d0;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.create-value-section .value-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.diversity-section {
    padding: 100px 50px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.diversity-text {
    flex: 1;
}

.diversity-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.diversity-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.diversity-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.diversity-image img {
    max-width: 400px;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.diversity-slideshow {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.diversity-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: slideFade 24s infinite;
}

.diversity-slideshow img:nth-child(1) {
    animation-delay: 0s;
}

.diversity-slideshow img:nth-child(2) {
    animation-delay: 4s;
}

.diversity-slideshow img:nth-child(3) {
    animation-delay: 8s;
}

.diversity-slideshow img:nth-child(4) {
    animation-delay: 12s;
}

.diversity-slideshow img:nth-child(5) {
    animation-delay: 16s;
}

.diversity-slideshow img:nth-child(6) {
    animation-delay: 20s;
}

@keyframes slideFade {
    0% {
        opacity: 1;
    }

    12.5% {
        opacity: 1;
    }

    16.66% {
        opacity: 0;
    }

    95.83% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.life-at-bs-section {
    padding: 100px 0 0 0;
}

.life-at-bs-section h2 {
    margin-left: 50px;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.life-at-bs-section p {
    margin-left: 50px;
    margin-bottom: 40px;
    color: #555;
}

.collage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    grid-template-rows: 250px 250px;
    gap: 5px;
}

.life-img-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    background: url("assets/it_professional_bg_1783012387560.jpg") center/cover;
}

.life-img-2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    background: url("assets/about_team_1783411799420.jpg") center/cover;
}

.life-img-3 {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    background: url("assets/index_growth_1783411781919.jpg") center/cover;
}

.life-img-4 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    background: url("assets/it_professional_bg_1783012387560.jpg") center/cover;
}

.life-img-5 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    display: flex;
    gap: 5px;
}

.life-img-5 .sub-img-1 {
    flex: 1;
    background: url("assets/about_team_1783411799420.jpg") center/cover;
}

.life-img-5 .sub-img-2 {
    flex: 1;
    background: url("assets/index_growth_1783411781919.jpg") center/cover;
}

.big-dreams {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/it_professional_bg_1783012387560.jpg') center/cover no-repeat;
    padding: 150px 50px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.big-dreams-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.big-dreams-container h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.big-dreams-container p {
    font-size: 1.2rem;
}

.big-numbers {
    text-align: right;
}

.big-numbers h3 {
    font-size: 6rem;
    font-weight: 300;
    margin-bottom: 10px;
}

.big-numbers p {
    font-size: 1.5rem;
}

.timeline-section {
    padding: 100px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-section h2 {
    font-size: 3rem;
    margin-bottom: 60px;
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 20px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
}

.timeline-item {
    position: relative;
    width: 30%;
    padding-top: 40px;
}

.timeline-item .dot {
    position: absolute;
    top: -9px;
    left: 0;
    width: 16px;
    height: 16px;
    background: #2070d0;
    border-radius: 50%;
    z-index: 2;
}

.timeline-item .dot.black {
    background: #000;
}

.timeline-item h4 {
    position: absolute;
    top: -45px;
    left: 0;
    font-size: 1.2rem;
}

.timeline-item .content-box {
    border: 1px solid #2070d0;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}

.timeline-item.black-box .content-box {
    border-color: #000;
}

.timeline-item .content-box h5 {
    color: #2070d0;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.timeline-item.black-box .content-box h5 {
    color: #000;
}

.timeline-item .content-box p {
    font-size: 0.9rem;
    color: #555;
}

/* Ensure mobile responsiveness */
@media (max-width: 768px) {
    .about-hero-new {
        padding: 120px 20px 50px;
        flex-direction: column;
    }

    .about-hero-new .text-content {
        background: none;
    }

    .about-hero-new .image-content {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }

    .our-story-section,
    .diversity-section,
    .big-dreams-container {
        flex-direction: column;
    }

    .diversity-image-container {
        width: 100% !important;
        justify-content: center !important;
        margin-top: 40px;
    }

    .value-heading-container {
        text-align: center;
    }

    .create-value-section .value-card h4,
    .create-value-section .value-card p {
        text-align: center !important;
    }

    .principles-grid,
    .create-value-section .value-grid {
        grid-template-columns: 1fr;
    }

    .collage-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .life-img-1,
    .life-img-2,
    .life-img-3,
    .life-img-4,
    .life-img-5 {
        grid-column: auto;
        grid-row: auto;
        height: 250px;
    }

    .timeline-container {
        flex-direction: column;
        gap: 20px;
    }

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

    .timeline-item {
        width: 100%;
        margin-bottom: 30px;
        padding-top: 0;
    }

    .timeline-item h4 {
        position: static;
        margin-top: 10px;
        margin-bottom: 10px;
        font-weight: 800;
    }

    .timeline-item .dot {
        position: static;
    }

    .contact-list li {
        display: flex !important;
        flex-direction: column !important;
        gap: 2px !important;
        align-items: flex-start !important;
    }
}

/* Shared Animated Button */
.animated-arrow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .35s ease;
}

/* Arrow */
.animated-arrow-btn .arrow {
    display: inline-block;
    color: #2070d0;
    /* Arrow color */
    font-size: 2.6rem;
    /* Arrow size */
    font-weight: 700;
    line-height: 1;
    animation: arrowFloat 1.8s ease-in-out infinite;
    transition: transform .3s ease;
}

/* Hover */
.animated-arrow-btn:hover .arrow {
    transform: translateX(8px);
}

.animated-arrow-btn:hover {
    transform: translateY(-2px);
}

/* Floating Arrow Animation */
@keyframes arrowFloat {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

.clients-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #cbd5e1;
    text-decoration: none;
    transition: all .35s ease;
}

.clients-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, .25);
    color: #fff;
}

/* Make header and mobile overlay buttons smaller */
.navbar .btn,
.mobile-nav-buttons-container .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Header Text Shine Animation */
@keyframes textShine {
    to {
        background-position: 200% center;
    }
}

.text-shine {
    background: linear-gradient(90deg, #00d4ff, #2070d0, #0721e3, #00d4ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 5s linear infinite;
    display: inline-block;
}

/* Our Story Page Styles */
.ourstory-section {
    padding: 100px 5%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.ourstory-section.black-bg {
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    padding: 140px 5%;
}

.ourstory-section.text-white {
    color: #ffffff;
}

.ourstory-content {
    max-width: 800px;
    margin: 0;
}

.ourstory-content h2 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #111;
}

.ourstory-content h2 .text-blue {
    color: #028bdb;
    font-weight: 700;
}

.ourstory-content h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.3;
}

.ourstory-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.md-profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.md-content {
    flex: 1;
    max-width: 800px;
}

.md-content h2 {
    color: #ffffff;
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.md-content h2 span {
    font-size: 2rem !important;
    font-weight: 400 !important;
}

.md-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.md-signature {
    margin-top: 50px;
}

.md-signature p {
    margin: 0;
    font-size: 1.15rem;
}

@media (max-width: 768px) {
    .md-profile {
        flex-direction: column;
    }

    .ourstory-content h2 {
        font-size: 2.5rem;
    }

    .ourstory-content h3 {
        font-size: 1.5rem;
    }
}

/* Values Section */
.values-section {
    padding: 100px 5%;
    background-color: #ffffff;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.values-content {
    flex: 1;
}

.values-content h2 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #111;
}

.values-content>p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-card {
    background: #f8fbff;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.value-icon {
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2px;
}

.value-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111;
}

.value-text p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.values-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.values-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .values-container {
        flex-direction: column;
    }

    .values-image {
        width: 100%;
        justify-content: center;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Boosting Growth Section */
.boosting-growth-section {
    padding: 120px 10%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.boosting-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

.boosting-content {
    flex: 1;
}

.boosting-content h2 {
    font-size: 5rem;
    font-weight: 300;
    color: #111;
    line-height: 1.1;
    margin-bottom: 40px;
}

.boosting-content p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-talk {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border: 1px solid #7c9cfc;
    color: #7c9cfc;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-talk span {
    margin-left: 10px;
}

.btn-talk:hover {
    background: #7c9cfc;
    color: #fff;
}

.boosting-stats {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.stat-number {
    font-size: 15rem;
    font-weight: 600;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

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

    .boosting-stats {
        margin-top: 50px;
        justify-content: center;
    }

    .stat-number {
        font-size: 10rem;
    }
}

/* Branding Services Section */
.branding-services-section {
    padding: 80px 5%;
    background-color: #ffffff;
}

.b-container {
    max-width: 1200px;
    margin: 0 auto;
}

.b-heading {
    font-size: 3.5rem;
    font-weight: 300;
    color: #111;
    line-height: 1.2;
    margin-bottom: 20px;
}

.b-subtext {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.6;
    max-width: 900px;
    margin-bottom: 40px;
}

.b-label {
    font-size: 1.2rem;
    color: #111;
    margin-bottom: 40px;
}

.b-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.b-card {
    border: 1px solid #7c9cfc;
    border-radius: 12px;
    padding: 30px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
}

.b-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.b-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    align-items: flex-start;
}

.b-icon-wrapper {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b-link-icon {
    color: #111;
    cursor: pointer;
}

.b-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
}

.b-card h3 span {
    color: #2070d0;
}

.b-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.b-card-solid {
    background: #028bdb;
    border: none;
    justify-content: center;
    align-items: flex-start;
}

.b-card-solid h3 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.3;
}

@media (max-width: 992px) {
    .b-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .b-grid {
        grid-template-columns: 1fr;
    }

    .b-heading {
        font-size: 2.5rem;
    }
}

/* Team Hero Section */
.team-hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url('assets/it_professional_bg_1783012387560.jpg') center right/cover no-repeat;
    margin-top: 80px;
    /* Account for navbar */
}

.team-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 40%, rgba(255, 255, 255, 0) 80%);
}

.team-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
}

.team-hero-subtitle {
    color: #2070d0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #111;
    line-height: 1.1;
    margin-bottom: 25px;
    max-width: 800px;
}

.team-hero-title .text-blue {
    color: #2070d0;
}

.team-hero-desc {
    font-size: 1.3rem;
    color: #111;
    margin-bottom: 40px;
    font-weight: 400;
}

.team-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    width: 220px;
    height: 52px;
    border: 1.5px solid #2070d0;
    border-radius: 8px;
    text-decoration: none;
    color: #2070d0;
    font-weight: 500;
    font-size: 1.1rem;
    transition: 0.3s;
    background: transparent;
}

.team-hero-btn:hover {
    background: rgba(0, 68, 255, 0.05);
}

@media (max-width: 768px) {
    .team-hero-title {
        font-size: 3rem;
    }

    .team-hero-overlay {
        background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 60%, rgba(255, 255, 255, 0.5) 100%);
    }
}

/* Team Grid Section */
.team-grid-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 50px;
}

.team-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    gap: 100px;
}

.team-grid-title {
    flex: 1;
    font-size: 4.5rem;
    font-weight: 300;
    color: #111;
    line-height: 1.1;
}

.team-grid-desc {
    flex: 1;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-top: 15px;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member-card {
    display: flex;
    flex-direction: column;
}

.team-member-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: #000;
    margin-bottom: 20px;
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.team-member-image img:hover {
    filter: grayscale(0%);
}

.team-member-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 5px;
}

.team-member-info p {
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
}

@media (max-width: 1024px) {
    .team-grid-header {
        flex-direction: column;
        gap: 30px;
    }

    .team-members-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid-title {
        font-size: 3.5rem;
    }

    .team-members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .team-members-grid {
        grid-template-columns: 1fr;
    }
}

/* Openings Section */
.openings-section {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 50px;
}

.openings-header {
    margin-bottom: 60px;
}

.openings-title {
    font-size: 3rem;
    font-weight: 400;
    color: #111;
    margin-bottom: 10px;
}

.openings-subtitle {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

.accordion-container {
    border-top: 1px solid #ddd;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 30px 0;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
    cursor: pointer;
}

.accordion-icon {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding-bottom: 20px;
}

.job-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.job-title {
    flex: 2;
    font-size: 1.05rem;
    color: #333;
}

.job-exp {
    flex: 1;
    font-size: 0.95rem;
    color: #555;
}

.job-apply {
    text-align: right;
    font-size: 0.95rem;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.job-apply:hover {
    color: #2070d0;
}

.all-openings-btn-container {
    text-align: center;
    margin-top: 60px;
}

.all-openings-btn {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #aaa;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.all-openings-btn:hover {
    background: #f5f5f5;
}

/* Perks Section */
.perks-section {
    background: #f8f9fa;
    padding: 100px 50px;
}

.perks-header {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.perks-title {
    flex: 1;
    font-size: 3.5rem;
    font-weight: 400;
    color: #111;
}

.perks-subtitle {
    flex: 1;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-top: 15px;
}

.perks-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
}

.perk-card {
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
    border-bottom: 1.5px solid #111;
}

.perk-icon {
    margin-bottom: 25px;
    color: #111;
}

.perk-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.4;
}

.perk-card p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .perks-header {
        flex-direction: column;
        gap: 30px;
    }

    .perks-title {
        font-size: 2.5rem;
    }

    .perks-grid {
        grid-template-columns: 1fr;
    }
}

/* Values Section */
.values-section {
    background: #000;
    color: #fff;
    padding: 120px 50px;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 100px;
}

.values-left {
    flex: 1;
    max-width: 450px;
}

.values-left h2 {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
}

.values-left p {
    font-size: 1.1rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 60px;
}

.values-asterisk {
    color: #fff;
    margin-top: 50px;
}

.values-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.value-item {
    position: relative;
    padding-left: 40px;
    border-left: 1px solid #333;
}

.value-num {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.value-item h3 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 1.05rem;
    color: #ccc;
    line-height: 1.6;
    max-width: 500px;
}

@media (max-width: 1024px) {
    .values-container {
        flex-direction: column;
        gap: 80px;
    }

    .values-left {
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    .values-left h2,
    .value-item h3 {
        font-size: 2.8rem;
    }
}

/* Video Carousel Section */
.video-carousel-section {
    background: #fff;
    padding: 100px 0;
}

.video-carousel-header {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 50px;
}

.video-carousel-header h2 {
    font-size: 3.5rem;
    font-weight: 400;
    color: #111;
    margin-bottom: 20px;
}

.video-carousel-header p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    max-width: 900px;
}

.video-carousel-container {
    width: 100%;
    overflow: hidden;
}

.video-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    align-items: stretch;
    gap: 40px;
    height: 55vh;
    min-height: 400px;
    max-height: 600px;
    padding: 0 17.5%;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.video-track::-webkit-scrollbar {
    display: none;
}

.video-slide {
    flex: 0 0 65%;
    scroll-snap-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0.5;
    transform: scale(0.9);
    transition: all 0.4s ease;
    border-radius: 12px;
}

.video-slide.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-slide video,
.video-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.video-slide.active video {
    pointer-events: auto;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: background 0.3s;
    z-index: 2;
    cursor: pointer;
}

.play-btn:hover {
    background: rgba(0, 68, 255, 0.9);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.carousel-dots .dot {
    width: 25px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
}

.carousel-dots .dot.active {
    background: #2070d0;
    width: 35px;
}

@media (max-width: 768px) {
    .video-carousel-header h2 {
        font-size: 2.8rem;
    }

    .video-track {
        gap: 15px;
        height: 300px;
    }

    .video-slide.center {
        width: 80%;
    }
}

.footer-legal a:hover {
    color: #2070d0;
}

/* Global Text Alignment for Mobile View */
@media (max-width: 1200px) {

    body,
    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    ul,
    li,
    .section-title,
    .section-subtitle,
    .footer-col,
    .card,
    .content,
    .text-center,
    .hero-content,
    .about-content,
    .service-card,
    .footer-widget,
    .footer-section,
    div {
        text-align: left !important;
    }

    .hero-content-wrapper,
    .hero-text,
    .clients-header,
    .about-content,
    .hero-content,
    .text-center {
        align-items: flex-start !important;
        text-align: left !important;
    }
}