:root {
      --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #ec4899;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-logo: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --shadow-logo: 0 0 30px rgba(102, 126, 234, 0.4), 0 0 60px rgba(118, 75, 162, 0.2);
    --shadow-logo-hover: 0 0 40px rgba(102, 126, 234, 0.6), 0 0 80px rgba(118, 75, 162, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    min-height: 100vh;
    background: radial-gradient(circle at top, #fff 0%, #f0f5ff 60%, #e6efff 100%);
    color: var(--text);
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}



/* Transparent Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 14px 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent !important;
    border-bottom: none;
    box-shadow: none;
    transition: transform 0.45s ease, background 0.45s ease;
    will-change: transform;
    z-index: 1000;

}

/* Navbar text color */
.navbar .nav-links a,
.navbar .logo-title,
.navbar .logo-subtitle,
.navbar .primary-btn,
.navbar .menu-btn {
    color: #ffffff !important;
}

/* If the button has a background, keep text white */
.navbar .primary-btn {
    border: 1px solid #ffffff;
}


.navbar.nav-hidden {
    transform: translateY(-120%);
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.navbar .logo img {
    height: 58px;
    width: auto;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.25));
}

.logo-copy {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.25rem;
    letter-spacing: 0.24rem;
    text-transform: uppercase;
    color: var(--text);
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.08rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.primary-btn {
    padding: 10px 24px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--primary), var(--primary-dark));
    color: #fff;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.12rem;
    text-decoration: none;
    font-weight: 600;
    border: none;
    box-shadow: 0 10px 25px rgba(31, 111, 235, 0.35);
}

.menu-btn {
    display: none;
    font-size: 30px;
    color: var(--text);
    cursor: pointer;
}

/* Video Carousel (unchanged as requested) */
.carousel-section {
    height: 100vh;
    width: 100%;
    position: relative;
}

.carousel-container {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.carousel-video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-video.active {
    opacity: 1;
}

.carousel-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.carousel-overlay h1 {
    font-size: 3.5rem;
    text-shadow: 0 0 20px black;
}

.carousel-overlay p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Sections */
.section {
    padding: 110px 8vw;
    text-align: left;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 40px;
    border: 1px solid rgba(10, 27, 52, 0.08);
    box-shadow: 0 40px 80px rgba(10, 27, 52, 0.08);
    margin: 70px auto;
    position: relative;
}

.section::after {
    display: none;
}

.section-header {
    max-width: 640px;
    margin: 0 auto 40px; /* center the block */
    text-align: center;  /* center titles & eyebrow */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 10px 70px;
    overflow: visible;
    cursor: pointer;
}

.title-wrap:focus-visible {
    outline: 2px solid rgba(31, 111, 235, 0.4);
    border-radius: 999px;
    outline-offset: 10px;
}

.title-text {
    font-size: 2.8rem;
    margin: 0;
    transition: transform 0.4s ease;
}

.title-wrap:hover .title-text,
.title-wrap:focus-visible .title-text {
    transform: translateZ(12px) scale(1.02);
}

.title-3d {
    position: absolute;
    top: 50%;
    width: 80px;
    height: 80px;
    border-radius: 26px;
    background: linear-gradient(130deg, rgba(31, 111, 235, 0.8), rgba(255, 255, 255, 0.95));
    box-shadow: 0 25px 45px rgba(31, 111, 235, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    opacity: 0;
    transform: translate3d(-180%, -50%, -60px) rotateY(35deg);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.title-3d::after {
    content: "";
    position: absolute;
    inset: 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.4);
    filter: blur(2px);
}

.title-3d-right {
    left: auto;
    right: 0;
    transform: translate3d(180%, -50%, -60px) rotateY(-35deg);
}

.title-wrap:hover .title-3d,
.title-wrap:focus-visible .title-3d {
    opacity: 1;
    transform: translate3d(-110%, -50%, 0) rotateY(0deg);
}

.title-wrap:hover .title-3d-right,
.title-wrap:focus-visible .title-3d-right {
    transform: translate3d(110%, -50%, 0) rotateY(0deg);
}

.eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    color: var(--primary);
}

.section h2 {
    font-size: 2.8rem;
    margin: 12px 0;
    color: #000000;
}

/* Keep gradient only for Our Services */
.services h2.title-text,
#services h2.title-text {
    color: transparent;
}

.lead {
    color: var(--muted);
    font-size: 1.05rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

:root {
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --bg-dark: #0a0a0a;
    --bg-card: rgba(20, 20, 20, 0.8);
    --text-light: #b4b4b4;
    --text-lighter: #e0e0e0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.spacer {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
}

/* ===== About Section ===== */
.about {
    min-height: 100vh;
    padding: 120px 20px;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

/* Background Effects */
.about::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: float-bg 20s ease-in-out infinite;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(67, 233, 123, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: float-bg 25s ease-in-out infinite reverse;
}

@keyframes float-bg {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -50px) scale(1.1); }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #43e97b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
}

.eyebrow::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, #43e97b, transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

.title-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.title-text {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #000000;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

/* Keep gradient only for Our Services */
.services .title-text,
#services .title-text {
    background: linear-gradient(135deg, #ffffff 0%, #667eea 50%, #43e97b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glow effect only for Our Services */
.services .title-text::before,
#services .title-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #43e97b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
}

.title-3d {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    transform: translateY(-50%);
}

.title-3d-left {
    left: -80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    animation: float-left 3s ease-in-out infinite;
}

.title-3d-right {
    right: -80px;
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    border-radius: 12px;
    animation: float-right 3s ease-in-out infinite;
}

@keyframes float-left {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    50% { transform: translateY(-60%) rotate(10deg); }
}

@keyframes float-right {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    50% { transform: translateY(-40%) rotate(-10deg); }
}

.title-decoration {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #667eea, #43e97b, transparent);
    border-radius: 2px;
    animation: pulse-line 2s ease-in-out infinite;
}

@keyframes pulse-line {
    0%, 100% { width: 120px; opacity: 1; }
    50% { width: 160px; opacity: 0.6; }
}

.lead {
    font-size: 1.25rem;
    color: var(--text-lighter);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 3.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-1);
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.about-card.stats::before {
    background: var(--gradient-4);
}

.about-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-card:hover::before {
    opacity: 1;
}

.about-card:hover::after {
    width: 600px;
    height: 600px;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.2);
}

.about-card > * {
    position: relative;
    z-index: 1;
}

/* Mission Card */
.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.5s ease;
}

.about-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.card-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.about-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}

.about-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-note {
    font-size: 1.05rem;
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.about-points {
    list-style: none;
    padding: 0;
}

.about-points li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.05rem;
    color: var(--text-lighter);
    transition: all 0.3s ease;
}

.about-points li:hover {
    transform: translateX(10px);
    color: #ffffff;
}

.about-points li svg {
    width: 20px;
    height: 20px;
    color: #43e97b;
    flex-shrink: 0;
}

/* Stats Card */
.stats-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-header svg {
    width: 32px;
    height: 32px;
    color: #43e97b;
}

.stats-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.stat {
    margin-bottom: 2.5rem;
    position: relative;
}

.stat:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
}

.stat-plus {
    font-size: 2.5rem;
    font-weight: 700;
    color: #43e97b;
    margin-left: 0.2rem;
}

.stat p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0.5rem 0 1rem 0;
}

.stat-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, #43e97b, #38f9d7);
    border-radius: 10px;
    transition: width 2s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 20px rgba(67, 233, 123, 0.5);
    animation: shimmer-bar 2s ease-in-out infinite;
}

@keyframes shimmer-bar {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .title-3d-left,
    .title-3d-right {
        display: none;
    }

    .about {
        padding: 80px 20px;
    }

    .about-card {
        padding: 2.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 640px) {
    .title-text {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .about-card h3 {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-plus {
        font-size: 1.8rem;
    }
}


/* Add some spacing before services */
.spacer {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
}

/* ===== Eye-Catching Services Section ===== */
.services {
    min-height: 100vh;
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

/* Tech Outline Decorations */
.tech-decoration {
    position: absolute;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    stroke: rgba(102, 126, 234, 0.4);
    fill: none;
    stroke-width: 2;
    animation: techPulse 4s ease-in-out infinite;
}

.tech-decoration-1 {
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.tech-decoration-2 {
    bottom: 15%;
    left: 8%;
    width: 150px;
    height: 150px;
    animation-delay: 1s;
}

.tech-decoration-3 {
    top: 50%;
    right: 15%;
    width: 120px;
    height: 120px;
    animation-delay: 2s;
}

.tech-decoration-4 {
    bottom: 30%;
    left: 20%;
    width: 180px;
    height: 180px;
    animation-delay: 0.5s;
}

.tech-decoration-5 {
    top: 20%;
    left: 5%;
    width: 160px;
    height: 160px;
    animation-delay: 1.5s;
}

.tech-decoration-6 {
    bottom: 20%;
    right: 8%;
    width: 140px;
    height: 140px;
    animation-delay: 2.5s;
}

/* Add tech decorations to solutions section */
.solutions {
    position: relative;
    overflow: hidden;
}

@keyframes techPulse {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.25;
        transform: scale(1.1);
    }
}

/* Scroll-triggered text centering */
.section-header {
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-header.scroll-center {
    text-align: center;
    transform: translateX(0);
}

.section-header.scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
}

.section-header.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Tile sliding animations */
.service-card {
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateX(0);
}

.service-card.scroll-slide-left {
    transform: translateX(-100px);
    opacity: 0;
}

.service-card.scroll-slide-right {
    transform: translateX(100px);
    opacity: 0;
}

.service-card.scroll-slide-active {
    transform: translateX(0);
    opacity: 1;
}

/* Staggered animation for cards */
.service-card:nth-child(odd) {
    animation: slideInFromLeft 0.8s ease-out forwards;
}

.service-card:nth-child(even) {
    animation: slideInFromRight 0.8s ease-out forwards;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-150px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(150px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animated Background Orbs */
.services::before,
.services::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: morphing 15s ease-in-out infinite;
}

.services::before {
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #667eea 0%, #764ba2 50%, transparent 100%);
    animation-delay: 0s;
}

.services::after {
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #f093fb 0%, #f5576c 50%, transparent 100%);
    animation-delay: 7s;
}

@keyframes morphing {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        border-radius: 50%;
    }
    33% { 
        transform: translate(50px, -50px) scale(1.1);
        border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
    }
    66% { 
        transform: translate(-30px, 30px) scale(0.9);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* Floating Particles */
.particle {
    position: absolute;
    background: rgba(102, 126, 234, 0.4);
    border-radius: 50%;
    pointer-events: none;
    animation: float-particle 20s infinite;
}

.particle:nth-child(1) {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 12px;
    height: 12px;
    top: 60%;
    right: 15%;
    animation-delay: 4s;
}

.particle:nth-child(3) {
    width: 6px;
    height: 6px;
    bottom: 30%;
    left: 20%;
    animation-delay: 8s;
}

@keyframes float-particle {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.4; }
    50% { transform: translate(100px, -100px) rotate(180deg); opacity: 0.8; }
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

/* Scroll-triggered animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
}

.eyebrow::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, #764ba2, transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

.title-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.title-text {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #000000;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

/* Keep gradient only for Our Services */
.services .title-text,
#services .title-text {
    background: linear-gradient(135deg, #ffffff 0%, #667eea 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(102, 126, 234, 0.5);
}

/* Glow effect only for Our Services */
.services .title-text::before,
#services .title-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
}

.title-decoration {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #667eea, #f093fb, transparent);
    border-radius: 2px;
    animation: pulse-line 2s ease-in-out infinite;
}

@keyframes pulse-line {
    0%, 100% { width: 120px; opacity: 1; }
    50% { width: 160px; opacity: 0.6; }
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 2.5rem auto 0;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(0);
}

.service-card.scroll-active {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.service-card.scroll-slide-left {
    transform: translateX(-150px) !important;
    opacity: 0;
}

.service-card.scroll-slide-right {
    transform: translateX(150px) !important;
    opacity: 0;
}

/* Gradient borders on hover */
.service-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-1);
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.service-card:nth-child(2)::before {
    background: var(--gradient-2);
}

.service-card:nth-child(3)::before {
    background: var(--gradient-3);
}

.service-card:nth-child(4)::before {
    background: var(--gradient-4);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    width: 500px;
    height: 500px;
}

.service-card.scroll-active:hover {
    transform: translateY(-15px) scale(1.02) translateX(0) !important;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 30px 60px rgba(102, 126, 234, 0.3),
        0 0 100px rgba(102, 126, 234, 0.1);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: white;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 
        0 10px 30px rgba(102, 126, 234, 0.4),
        inset 0 -5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card:nth-child(2) .service-icon {
    background: var(--gradient-2);
    box-shadow: 
        0 10px 30px rgba(240, 147, 251, 0.4),
        inset 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.service-card:nth-child(3) .service-icon {
    background: var(--gradient-3);
    box-shadow: 
        0 10px 30px rgba(79, 172, 254, 0.4),
        inset 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.service-card:nth-child(4) .service-icon {
    background: var(--gradient-4);
    box-shadow: 
        0 10px 30px rgba(67, 233, 123, 0.4),
        inset 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.15);
    box-shadow: 
        0 20px 50px rgba(102, 126, 234, 0.6),
        inset 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.service-card:hover .service-icon::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.service-card:hover .service-icon svg {
    transform: scale(1.2) rotate(-10deg);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
    transition: all 0.4s ease;
    line-height: 1.3;
}

.service-card:hover h3 {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    transform: translateX(8px);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    transition: all 0.4s ease;
}

.service-card:hover p {
    color: #e0e0e0;
    transform: translateX(8px);
}

/* Stagger animation delays */
.service-card:nth-child(1) { 
    transition-delay: 0s; 
    animation-delay: 0.1s;
}
.service-card:nth-child(2) { 
    transition-delay: 0.1s; 
    animation-delay: 0.2s;
}
.service-card:nth-child(3) { 
    transition-delay: 0.2s; 
    animation-delay: 0.3s;
}
.service-card:nth-child(4) { 
    transition-delay: 0.3s; 
    animation-delay: 0.4s;
}

/* Active state for scroll animations */
.service-card.scroll-active {
    opacity: 1;
    transform: translateX(0) !important;
}

.service-card.scroll-slide-left {
    transform: translateX(-150px);
}

.service-card.scroll-slide-right {
    transform: translateX(150px);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Show logo on mobile */
    .navbar .logo img {
        display: block;
        height: 48px;
    }

    .services {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .title-text {
        font-size: 2.5rem;
    }

    .service-card {
        padding: 2.5rem 2rem;
    }

    /* Navbar visibility on mobile */
    .navbar {
        padding: 14px 20px;
        background: transparent;
        box-shadow: none;
    }

    .navbar .nav-links a,
    .navbar .logo-title,
    .navbar .logo-subtitle,
    .navbar .menu-btn {
        color: #ffffff !important;
    }

    .navbar .menu-btn {
        display: block;
        background: transparent;
        border: none;
        font-size: 28px;
        cursor: pointer;
        padding: 6px 10px;
        border-radius: 10px;
        transition: background 0.3s ease;
    }

    .navbar .menu-btn:hover {
        background: rgba(15, 23, 42, 0.05);
    }

    .navbar .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(10, 12, 26, 0.92);
        position: absolute;
        top: 72px;
        right: 20px;
        padding: 20px;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        z-index: 1001;
    }

    .navbar .nav-links.show {
        display: flex;
    }

    .navbar .nav-links li {
        margin: 8px 0;
    }
}

/* ===== Enhanced Services Section ===== */
/* .services {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #667eea;
    margin-bottom: 1rem;
    display: inline-block;
    animation: slideIn 0.6s ease 0.2s backwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.title-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.title-text {
    font-size: 2.8rem;
    font-weight: 700;
    background: var(--gradient-logo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: titleReveal 1s ease 0.4s backwards;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.title-text::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-logo);
    border-radius: 2px;
    animation: expandLine 0.8s ease 0.8s backwards;
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 2rem auto 0;
    line-height: 1.6;
    animation: fadeIn 0.8s ease 1s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(40px);
    animation: cardFadeIn 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.8s; }

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        rgba(102, 126, 234, 0) 0deg,
        rgba(102, 126, 234, 0.1) 90deg,
        rgba(118, 75, 162, 0.1) 180deg,
        rgba(102, 126, 234, 0) 360deg
    );
    opacity: 0;
    transition: all 0.6s ease;
    animation: rotate 3s linear infinite paused;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-logo);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
    animation-play-state: running;
}

.service-card:hover::after {
    opacity: 0.03;
}

.service-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.4);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 75px;
    height: 75px;
    background: var(--gradient-logo);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    color: white;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(-5deg) scale(1.15) translateY(-5px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.6);
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.service-card:hover h3 {
    color: #667eea;
    transform: translateX(5px);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover p {
    color: var(--text-dark);
    transform: translateX(5px);
}

Responsive Design 
@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }

    .title-text {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }
}

 */

/* Solutions */
.solutions {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(236, 254, 255, 0.95) 25%,
        rgba(240, 249, 255, 0.95) 50%,
        rgba(255, 245, 250, 0.95) 75%,
        rgba(255, 255, 255, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.solutions::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent);
    border-radius: 50%;
    filter: blur(80px);
    animation: float-bg 20s ease-in-out infinite;
}

.solutions::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15), transparent);
    border-radius: 50%;
    filter: blur(80px);
    animation: float-bg 25s ease-in-out infinite reverse;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.solution-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.95));
    border-radius: 28px;
    border: 2px solid rgba(99, 102, 241, 0.2);
    padding: 32px;
    box-shadow: 
        0 20px 45px rgba(10, 27, 52, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.1) 0%, 
        rgba(236, 72, 153, 0.1) 50%,
        rgba(59, 130, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.solution-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(99, 102, 241, 0.8), 
        rgba(236, 72, 153, 0.8),
        rgba(59, 130, 246, 0.8));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-card:hover::after {
    transform: scaleX(1);
}

.solution-card > * {
    position: relative;
    z-index: 1;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1e293b;
    font-weight: 700;
    background: linear-gradient(135deg, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.solution-card ul {
    list-style: none;
    color: #334155;
}

.solution-card li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.solution-card li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    position: absolute;
    left: 0;
    top: 6px;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.solution-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(99, 102, 241, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset,
        0 0 40px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.4);
}

.solution-card:hover li {
    transform: translateX(5px);
}

/* Labs */
.labs {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(240, 249, 255, 0.95) 25%,
        rgba(255, 245, 250, 0.95) 50%,
        rgba(236, 254, 255, 0.95) 75%,
        rgba(255, 255, 255, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.labs::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent);
    border-radius: 50%;
    filter: blur(70px);
    animation: float-bg 18s ease-in-out infinite;
}

.labs::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2), transparent);
    border-radius: 50%;
    filter: blur(70px);
    animation: float-bg 22s ease-in-out infinite reverse;
}

.labs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.labs-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(240, 249, 255, 0.9) 100%);
    border-radius: 28px;
    border: 2px solid rgba(59, 130, 246, 0.25);
    padding: 35px;
    box-shadow: 
        0 25px 50px rgba(10, 27, 52, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.labs-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.08) 0%, 
        rgba(236, 72, 153, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.labs-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        rgba(59, 130, 246, 0.9), 
        rgba(236, 72, 153, 0.9),
        rgba(99, 102, 241, 0.9));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.labs-card:hover::before {
    opacity: 1;
}

.labs-card:hover::after {
    transform: scaleX(1);
}

.labs-card > * {
    position: relative;
    z-index: 1;
}

.labs-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: #1e293b;
    font-weight: 700;
    background: linear-gradient(135deg, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.labs-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.labs-card .tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(236, 72, 153, 0.2));
    color: #1e40af;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.labs-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(59, 130, 246, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset,
        0 0 50px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.5);
}

.labs-card:hover .tag {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Contact */
.contact {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 245, 250, 0.95) 25%,
        rgba(236, 254, 255, 0.95) 50%,
        rgba(240, 249, 255, 0.95) 75%,
        rgba(255, 255, 255, 0.98) 100%);
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15), transparent);
    border-radius: 50%;
    filter: blur(80px);
    animation: float-bg 20s ease-in-out infinite;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent);
    border-radius: 50%;
    filter: blur(80px);
    animation: float-bg 25s ease-in-out infinite reverse;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 255, 0.9) 100%);
    border: 2px solid rgba(99, 102, 241, 0.25);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 
        0 20px 50px rgba(10, 27, 52, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        rgba(99, 102, 241, 0.9), 
        rgba(236, 72, 153, 0.9),
        rgba(59, 130, 246, 0.9));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card h3 {
    font-size: 1.7rem;
    margin-bottom: 16px;
    color: #1e293b;
    font-weight: 700;
    background: linear-gradient(135deg, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-card p {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-list li {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.08), 
        rgba(236, 72, 153, 0.08));
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 18px;
    padding: 18px 22px;
    transition: all 0.3s ease;
}

.contact-list li:hover {
    transform: translateX(8px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.15);
}

.contact-list span {
    font-size: 0.8rem;
    color: #6366f1;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    font-weight: 600;
}

.contact-list li strong {
    color: #1e293b;
    font-size: 1.05rem;
    font-weight: 600;
}

.contact-form {
    width: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 255, 0.9) 100%);
    border: 2px solid rgba(99, 102, 241, 0.25);
    border-radius: 28px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    box-shadow: 
        0 25px 50px rgba(10, 27, 52, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.contact-form:hover {
    box-shadow: 
        0 30px 60px rgba(99, 102, 241, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    border-color: rgba(99, 102, 241, 0.4);
}

.contact-form input,
.contact-form textarea {
    padding: 18px;
    border-radius: 16px;
    border: 2px solid rgba(99, 102, 241, 0.2);
    background: rgba(255, 255, 255, 0.8);
    color: #1e293b;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form button {
    padding: 18px 32px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #6366f1, #ec4899, #3b82f6);
    background-size: 200% 200%;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 
        0 10px 30px rgba(99, 102, 241, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.contact-form button:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 15px 40px rgba(99, 102, 241, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.contact-form button:active {
    transform: translateY(-2px);
}


/* OurClient */
* {
	margin: 0;
	padding: 0;
}
body {
	background: #c9d1dd;
	height: 100vh;
}
.slider-area h2 {
	text-align: center;
	font-family: impact;
	font-size: 60px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 100px 0 30px 0;
	color: #fff;
}
.wrapper {
	display: inline-flex;
	/* width: 750px; */
	margin: 1,4;
	overflow: hidden;
	/* border-radius: 180px; */
	padding: 0.5rem;
	background: #ddd;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.item {
	animation: animate 25s alternate linear infinite;
}
.container:hover .item {
	animation-play-state: paused;
}
@keyframes animate {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(-1100px, 0, 0);
	}
}
@media (max-width:767px) {
	.slider-area h2 {
		font-size: 30px;
	}
	.wrapper {
		width: 95%;
		border-radius: 0;
		padding: 0;
	}
}


/* ===== Footer ===== */
.footer {
    background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.25), transparent 35%),
        radial-gradient(circle at 90% 10%, rgba(236, 72, 153, 0.22), transparent 35%),
        linear-gradient(145deg, #0b1224, #0a0f1f 55%, #0f172a);
    color: #e5e7eb;
    padding: 80px 0 28px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.footer-logo .logo {
    height: 50px;
    filter: drop-shadow(0 6px 12px rgba(255, 255, 255, 0.2)) brightness(1.05);
    transition: transform 0.3s ease;
}

.footer-logo .logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #e5e7eb, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 60px rgba(99, 102, 241, 0.25);
}

.footer-logo:hover .logo {
    transform: scale(1.05);
}

.footer-section p {
    opacity: 0.85;
    line-height: 1.8;
    color: #cbd5e1;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #e2e8f0;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: rgba(226, 232, 240, 0.85);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(226, 232, 240, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 28px rgba(99, 102, 241, 0.25);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0.85;
    position: relative;
    z-index: 1;
    letter-spacing: 0.02em;
}


.title-wrap {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.title-wrap.show {
    opacity: 1;
    transform: translateX(0);
}


/* Hidden state (before scroll) */
.reveal-title {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Visible state (after scroll) */
.reveal-title.show {
    opacity: 1;
    transform: translateX(0);
}


/* Responsive */
@media (max-width: 992px) {
    .nav-right {
        gap: 12px;
    }

    .primary-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 14px 24px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 8px 20px rgba(15, 33, 55, 0.08);
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.97);
        position: absolute;
        top: 80px;
        right: 24px;
        padding: 24px;
        border-radius: 18px;
        border: 1px solid rgba(15, 33, 55, 0.1);
    }

    .nav-links.show {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .section {
        padding: 90px 24px;
    }

    .section h2 {
        font-size: 2.1rem;
    }

    .title-wrap {
        padding: 10px 30px;
    }

    .title-text {
        font-size: 2rem;
    }
}

@media (max-width: 540px) {
    .logo-title {
        font-size: 1rem;
    }

    .logo-subtitle {
        display: none;
    }

    .about-card,
    .contact-card,
    .contact-form,
    .service-card {
        padding: 24px;
    }
}

/* Sections */
.section {
    padding: 110px 8vw;
    text-align: left;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(236, 254, 255, 0.95) 25%,
        rgba(240, 249, 255, 0.95) 50%,
        rgba(255, 245, 250, 0.95) 75%,
        rgba(255, 255, 255, 0.98) 100%);
    border-radius: 40px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 40px 80px rgba(30, 58, 138, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset,
        0 0 60px rgba(59, 130, 246, 0.1);
    margin: 70px auto;
    position: relative;
    overflow: hidden;
}

/* Decorative background blurs */
.section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1), transparent);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.section-header {
    max-width: 640px;
    margin: 0 auto 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.title-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 10px 70px;
    overflow: visible;
    cursor: pointer;
}

.title-wrap:focus-visible {
    outline: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: 999px;
    outline-offset: 10px;
}

.title-text {
    font-size: 2.8rem;
    margin: 0;
    color: #000000;
    transition: transform 0.4s ease;
}

/* Keep gradient only for Our Services */
.services .title-text,
#services .title-text {
    background: linear-gradient(135deg, #ffffff 0%, #667eea 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.title-wrap:hover .title-text,
.title-wrap:focus-visible .title-text {
    transform: translateZ(12px) scale(1.02);
}

.title-3d {
    position: absolute;
    top: 50%;
    width: 80px;
    height: 80px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgb(59, 130, 246), rgb(6, 182, 212));
    box-shadow: 0 25px 45px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    opacity: 0;
    transform: translate3d(-180%, -50%, -60px) rotateY(35deg);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.title-3d::after {
    content: "";
    position: absolute;
    inset: 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.4);
    filter: blur(2px);
}

.title-3d-right {
    left: auto;
    right: 0;
    transform: translate3d(180%, -50%, -60px) rotateY(-35deg);
}

.title-wrap:hover .title-3d,
.title-wrap:focus-visible .title-3d {
    opacity: 1;
    transform: translate3d(-110%, -50%, 0) rotateY(0deg);
}

.title-wrap:hover .title-3d-right,
.title-wrap:focus-visible .title-3d-right {
    transform: translate3d(110%, -50%, 0) rotateY(0deg);
}

.eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    color: rgb(37, 99, 235);
    font-weight: 700;
}

.section h2 {
    font-size: 2.8rem;
    margin: 12px 0;
    color: #000000;
}

/* Keep gradient only for Our Services */
.services h2.title-text,
#services h2.title-text {
    color: transparent;
}

.lead {
    color: rgb(71, 85, 105);
    font-size: 1.05rem;
}

/* About */
.about {
    margin-top: 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.about-card {
    background: white;
    border: 2px solid transparent;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-60px);
}

.about-card.mission {
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, rgba(37, 99, 235, 0.5), rgba(6, 182, 212, 0.5)) border-box;
}

.about-card.stats {
    background: linear-gradient(135deg, rgb(30, 58, 138), rgb(15, 23, 42));
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 18px;
    align-items: stretch;
    transform: translateX(60px);
}

.about-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-card:hover {
    transform: translateY(-6px) translateX(0);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.2);
}

.about-card h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: #0f172a;
}

.about-card p {
    color: rgb(71, 85, 105);
}

.about-points {
    margin-top: 18px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-points li {
    padding-left: 26px;
    position: relative;
    color: rgb(51, 65, 85);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.about-points li.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-points li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgb(37, 99, 235);
    position: absolute;
    left: 0;
    top: 8px;
}

.stat {
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.3);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.8);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.stat:hover::before {
    left: 100%;
}

.stat.visible {
    opacity: 1;
    transform: scale(1);
}

.stat:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.4);
}

.stat span {
    display: block;
    font-size: 2.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, rgb(29, 78, 216), rgb(6, 182, 212));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat p {
    margin-top: 6px;
    color: rgb(51, 65, 85);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Animation delays */
.about-card.mission.visible {
    animation: slideInLeft 0.8s ease-out forwards;
}

.about-card.stats.visible {
    animation: slideInRight 0.8s ease-out forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.testimonial-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 10vw;
    position: relative;
    overflow: hidden;
}

/* Fade-in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}
.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* LEFT SIDE */
.testimonial-left {
    position: relative;
    width: 50%;
}



/* Hexagon Image */
.hexagon {
    width: 340px;
    height: 380px;
    clip-path: polygon(
        50% 0%, 93% 25%, 93% 75%,
        50% 100%, 7% 75%, 7% 25%
    );
    overflow: hidden;
    position: relative;
    z-index: 3;
}
.hexagon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Small floating avatars */
.small-avatar {
    width: 70px;
    height: 70px;
    /* border-radius: 50%; */
    /* border: 4px solid white; */
    object-fit: cover;
    position: absolute;
    z-index: 5;
}
.avatar-1 { top: -20px; left: 60px; }
.avatar-2 { bottom: 10px; right: 40px; }
.avatar-3 { top: 35%; right: -30px; }

/* RIGHT SIDE */
.testimonial-right {
    width: 48%;
}

.eyebrow {
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #020202;
    margin-bottom: 10px;
}

.testimonial-right h2 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}
.highlight {
    color: #76819c;
}

.quote-avatar {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 20px 0;
}

.quote-text {
    font-size: 1.2rem;
    color: #555555;
    width: 85%;
    line-height: 1.6;
    margin-bottom: 25px;
}

.author {
    font-size: 1.3rem;
    font-weight: 700;
}
.role {
    font-size: .9rem;
    color: #7285b3;
    margin-bottom: 30px;
}

Slider dots
.dots {
    display: flex;
    gap: 10px;
}
.dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
}
.dot.active {
    background: #7596e2;
}



/* Image Section with Left Side Content */
.image-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.image-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: transform 0.6s ease;
}

.image-section:hover .image-banner {
    transform: scale(1.05);
}

/* Dark Overlay for Better Text Readability */
.image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    z-index: 1;
}

/* Container for Content */
.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Left Side Content Card */
.left-content {
    max-width: 550px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    opacity: 0;
    animation: slideInLeft 1s ease 0.4s forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.left-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-logo);
    opacity: 0.08;
    border-radius: 24px;
    z-index: -1;
}

/* Company Name */
.company-name {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
    }
}

/* Decorative Line */
.decorative-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-logo);
    margin: 1.5rem 0;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
}

/* Tagline */
.tagline {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

/* Description */
.description {
    font-size: 1.05rem;
    color: #f0f4ff;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    min-width: 40px;
}

.feature-text {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-logo);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.7);
}

/* Fade-in class */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .image-section {
        height: 700px;
    }

    .content-wrapper {
        padding: 0 2rem;
    }

    .left-content {
        max-width: 100%;
    }

    .company-name {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .image-section {
        height: auto;
        min-height: 600px;
        padding: 3rem 0;
    }

    .image-section::before {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    }

    .left-content {
        padding: 2.5rem 2rem;
    }

    .company-name {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 0 1.5rem;
    }

    .left-content {
        padding: 2rem 1.5rem;
    }

    .company-name {
        font-size: 2rem;
    }

    .features-list {
        gap: 0.8rem;
    }

    .feature-item {
        padding: 0.7rem;
    }

    .feature-icon {
        font-size: 1.5rem;
        min-width: 35px;
    }

    .feature-text {
        font-size: 0.9rem;
    }
}


.text-slider {
    width: 100%;
    padding: 90px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 249, 255, 0.95));
    position: relative;
    overflow: hidden;
}

.text-slider::before,
.text-slider::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
    pointer-events: none;
}

.text-slider::before {
    top: -120px;
    left: -80px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25), transparent);
}

.text-slider::after {
    bottom: -140px;
    right: -100px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.22), transparent);
}

.text-slider h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.text-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 18px 0;
    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);
}

.text-track {
    display: inline-flex;
    gap: 120px;
    white-space: nowrap;
    animation: marqueeScroll 18s linear infinite;
    padding: 18px 0;
    min-width: 200%;
}

.text-track span {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(99, 102, 241, 0.25);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.text-track span:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(99, 102, 241, 0.18);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
