/* Modern CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    perspective: 1000px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Navbar Glass Morphism Enhancement */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    pointer-events: none;
    z-index: -1;
}

.navbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.scrolled::after {
    opacity: 1;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-brand .logo {
    height: 58px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-brand .logo:hover {
    transform: scale(1.05) rotateY(10deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #284A98;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #284A98;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 20px;
}

.contact-cta {
    background: linear-gradient(135deg, #ffffff, #ffffff);
    color: #ffffff !important;
    padding: 12px 24px !important;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 181, 125, 0.3);
    transition: all 0.3s ease;
}

.contact-cta:hover {
    transform: translateY(-2px) rotateX(5deg);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.contact-cta::after {
    display: none;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #4a5568;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(135deg, #284A98 0%, #bd6c25b3 100%),
        url('woman-enjoying-vr-headset.jpeg') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.2) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    animation: float3D 25s infinite linear;
    transform-style: preserve-3d;
    backdrop-filter: blur(2px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.float-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    width: 250px;
    height: 250px;
}

.float-element:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: -7s;
    width: 180px;
    height: 180px;
}

.float-element:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: -14s;
    width: 220px;
    height: 220px;
}

.float-element:nth-child(4) {
    top: 10%;
    right: 30%;
    width: 150px;
    height: 150px;
    animation-delay: -10s;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(236, 72, 153, 0.12));
}

.float-element:nth-child(5) {
    bottom: 30%;
    right: 20%;
    width: 280px;
    height: 280px;
    animation-delay: -18s;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(99, 102, 241, 0.1));
}

@keyframes float3D {
    0% { 
        transform: translateY(0px) translateX(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1); 
    }
    25% { 
        transform: translateY(-40px) translateX(20px) rotateX(90deg) rotateY(90deg) rotateZ(90deg) scale(1.1); 
    }
    50% { 
        transform: translateY(0px) translateX(0px) rotateX(180deg) rotateY(180deg) rotateZ(180deg) scale(0.9); 
    }
    75% { 
        transform: translateY(40px) translateX(-20px) rotateX(270deg) rotateY(270deg) rotateZ(270deg) scale(1.05); 
    }
    100% { 
        transform: translateY(0px) translateX(0px) rotateX(360deg) rotateY(360deg) rotateZ(360deg) scale(1); 
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    font-size: 14px;
    font-weight: 500;
    color: #284A98;
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #284A98, #284A98);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-4px) rotateX(-5deg) scale(1.02);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #284A98;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px #0000001a;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-4px) rotateX(-5deg) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #284A98, #284A98);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* text-shadow removed */
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 14px;
    color: #454545;
    font-weight: 500;
}
/* Stats Section */
.stats-section {
    background: #f8fafc;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.stats-section .hero-stats {
    position: relative;
    z-index: 2;
}
/* Trusted By Section */
.trusted-by {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.trusted-text {
    text-align: center;
    font-size: 16px;
    color: #64748b;
    margin-bottom: 3rem;
    font-weight: 500;
}

.brands-marquee {
    overflow: hidden;
    position: relative;
}

.brands-track {
    display: flex;
    margin-bottom: 3rem;
    gap: 4rem;
    animation: marquee 30s linear infinite;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #cbd5e1;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.brand:hover {
    color: #6366f1;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Career Hero Section */
.career-hero {
    min-height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #284A98 0%, #bd6c25b3 100%),
    url('woman-enjoying-vr-headset.jpeg') center/cover no-repeat;
}

.hero-background {
    display: none;
}

/* About Hero Section */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(135deg,#284A98 0%,  #bd6c25b3 100%),
        url('woman-enjoying-vr-headset.jpeg') center/cover no-repeat;
}

/* Work Hero Section */
.work-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(135deg, #284A98 0%, #bd6c25b3 100%),
        url('woman-enjoying-vr-headset.jpeg') center/cover no-repeat;
}

/* Services Hero Section */
.services-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(135deg, #284A98 0%,#bd6c25b3 100%),
        url('woman-enjoying-vr-headset.jpeg') center/cover no-repeat;
}

.service-detail-hero .container {
    position: relative;
    z-index: 2;
    padding: 10rem 0 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.service-detail-hero .hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    backdrop-filter: blur(30px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 1rem 2rem;
    border-radius: 60px;
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.2);
}

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

.service-detail-hero .hero-badge:hover {
    transform: translateY(-8px) scale(1.05);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.service-detail-hero .hero-badge:hover::before {
    left: 100%;
}

.service-detail-hero .badge-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
}

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

.service-detail-hero .hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    color: white;
    margin: 0;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.service-detail-hero .hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #06b6d4);
    border-radius: 2px;
    opacity: 0.8;
}

.service-detail-hero .gradient-text {
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: gradientShift 3s ease-in-out infinite;
}

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

.service-detail-hero .hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 1rem 0 0 0;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.service-detail-hero .hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

.service-detail-hero .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.service-detail-hero .btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.service-detail-hero .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px rgba(210, 132, 49, 0.4);
    background: linear-gradient(135deg, #D28431, #EFB846);
}

.service-detail-hero .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
}

.service-detail-hero .btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

.service-detail-hero .btn i {
    transition: transform 0.3s ease;
}

.service-detail-hero .btn:hover i {
    transform: translateX(3px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .service-detail-hero .container {
        padding: 8rem 1rem 6rem;
    }
    
    .service-detail-hero .hero-content {
        gap: 1.5rem;
    }
    
    .service-detail-hero .hero-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .service-detail-hero .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .service-detail-hero .hero-description {
        font-size: 1.1rem;
    }
    
    .service-detail-hero .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .service-detail-hero .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Service Process Section */
.service-process {
    padding: 120px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform-style: preserve-3d;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step:hover {
    transform: translateY(-12px) rotateX(5deg) rotateY(2deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d86500b3, #d86500b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

.process-step:hover .step-number {
    transform: rotateY(180deg) scale(1.1);
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.step-content p {
    color: #454545;
    line-height: 1.6;
}

/* Contact CTA Section */
.contact-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #284A98, #284A98);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate3D 30s infinite linear;
    transform-style: preserve-3d;
}

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

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-content .btn {
    background: white;
    color: #284A98;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-content .btn:hover {
    transform: translateY(-4px) rotateX(-5deg) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Project Stats Section */
.project-stats {
    padding: 120px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform-style: preserve-3d;
}

.stat-card:hover {
    transform: translateY(-12px) rotateX(5deg) rotateY(2deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d86500b3 100%, #d86500b3 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

.stat-card:hover .stat-icon {
    transform: rotateY(180deg) scale(1.1);
}

.stat-icon i {
    color: white;
    font-size: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #E0E9FF, #284A98, #284A98);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: #454545;
    color: #454545;
    font-size: 1.125rem;
}

/* Technologies Section */
.technologies {
    padding: 120px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tech-category {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform-style: preserve-3d;
}

.tech-category:hover {
    transform: translateY(-8px) rotateX(3deg) rotateY(2deg) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: white;
}

.tech-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.tech-item {
    background: linear-gradient(135deg, #284A98, #284A98);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-item:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

/* Company Values Section */
.company-values {
    padding: 120px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.company-values::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    animation: pulse3D 15s infinite ease-in-out;
    transform-style: preserve-3d;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f98831,  #EB9649);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.value-card:hover {
    transform: translateY(-12px) rotateX(5deg) rotateY(2deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg,  #284A98, #284A98);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: rotateY(180deg) scale(1.1);
}

.value-icon i {
    color: white;
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.value-card p {
    color: #454545;
    line-height: 1.6;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: #284A98;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color:  #284A98;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: #454545;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    border-radius: 50%;
    animation: rotate3D 30s infinite linear;
    transform-style: preserve-3d;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(99, 102, 241, 0.06));
    border-radius: 50%;
    animation: rotate3D 25s infinite linear reverse;
    transform-style: preserve-3d;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #284A98;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg,  #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg,  #284A98, #284A98);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.feature-icon i {
    color: #ffffff;
    font-size: 1.5rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.feature-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.feature-content p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
}

.about-visual {
    position: relative;
}

.visual-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.visual-card:hover {
    transform: rotateY(5deg) rotateX(5deg) translateZ(20px);
}

.visual-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* About Us Overview Section */
.about-us-overview {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
}

.about-us-overview .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-us-overview .about-text {
    max-width: 100%;
}

.about-us-overview .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.about-us-overview .section-header h2 {
    margin-bottom: 1rem;
}

.about-us-overview .section-header .section-tag {
    background: linear-gradient(135deg, #E0E9FF 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    margin: 0 auto 1.5rem auto;
    text-align: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.about-us-overview .about-description {
    margin-bottom: 2.5rem;
}

.about-us-overview .about-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #454545;
    margin-bottom: 1.5rem;
}

.about-us-overview .about-features {
    margin-bottom: 2.5rem;
}

.about-us-overview .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-us-overview .feature-item:hover {
    background: #f8fafc;
    transform: translateX(8px);
}

.about-us-overview .feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #E0E9FF 0%, #284A98 50%,  #bd6c25b3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-us-overview .feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.about-us-overview .feature-content p {
    font-size: 0.95rem;
    color: #454545;
    line-height: 1.5;
    margin: 0;
}

.about-us-overview .about-visual {
    position: relative;
}

.about-us-overview .visual-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-us-overview .visual-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-us-overview .visual-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.about-us-overview .visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    color: white;
}

.about-us-overview .overlay-content h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-us-overview .overlay-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* Responsive Design for About Us */
@media (max-width: 768px) {
    .about-us-overview {
        padding: 3rem 0;
    }
    
    .about-us-overview .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-us-overview .visual-card img {
        height: 300px;
    }
    
    .about-us-overview .feature-item {
        padding: 0.75rem;
    }
    
    .about-us-overview .feature-item:hover {
        transform: translateX(4px);
    }
}

/* About Us Section */
.about-us {
    padding: 120px 0;
    background: linear-gradient(135deg,#284A98 50%,  #bd6c25b3 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.about-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { top: 30%; left: 80%; animation-delay: 2s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 3s; }
.particle:nth-child(5) { top: 10%; left: 60%; animation-delay: 4s; }
.particle:nth-child(6) { top: 70%; left: 90%; animation-delay: 5s; }

.about-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    animation: rotate 20s linear infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

.creative-tag-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.creative-tag {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #284A98 50%, #284A98 100%);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    overflow: hidden;
    animation: pulse-glow 3s ease-in-out infinite;
}

.tag-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 2s ease-in-out infinite;
}

.tag-icon {
    font-size: 1.2rem;
    animation: bounce 2s ease-in-out infinite;
}

.creative-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.title-line {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.title-highlight {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #ffffff);
    margin: 1rem auto;
    border-radius: 2px;
    animation: expand 2s ease-in-out infinite;
}

.about-us .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.creative-text {
    position: relative;
}

.creative-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.story-timeline {
    position: absolute;
    left: -2rem;
    top: 0;
    height: 100%;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #ffffff, #ffffff);
    border-radius: 50%;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.timeline-line {
    width: 2px;
    height: 200px;
    background: linear-gradient(180deg, #ffffff, transparent);
    margin: 0.5rem auto;
}

.creative-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.creative-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.creative-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,#284A98, #284A98);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    animation: icon-float 3s ease-in-out infinite;
}

.icon-orbit {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbit 4s linear infinite;
}

.orbit-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-dot:nth-child(2) {
    transform: translateX(-50%) rotate(120deg);
    transform-origin: 0 42px;
}

.orbit-dot:nth-child(3) {
    transform: translateX(-50%) rotate(240deg);
    transform-origin: 0 42px;
}

.feature-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg,  #284A98,  #284A98);
    border-radius: 2px;
    width: 0;
    animation: progress-fill 2s ease-out forwards;
    animation-delay: 1s;
}

.progress-bar[data-progress="95"] {
    animation-name: progress-95;
}

.progress-bar[data-progress="98"] {
    animation-name: progress-98;
}

.progress-bar[data-progress="100"] {
    animation-name: progress-100;
}

.creative-visual {
    position: relative;
    perspective: 1000px;
}

.visual-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.visual-card:hover {
    transform: rotateY(5deg) rotateX(5deg) translateZ(20px);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(99, 102, 241, 0.3), transparent);
    animation: card-glow 3s ease-in-out infinite;
    z-index: 1;
}

.card-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 20px;
    background: linear-gradient(45deg,  #E0E9FF,  #284A98,  #284A98) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: 2;
}

.visual-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.creative-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.8), rgba(26, 26, 46, 0.8));
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

.visual-card:hover .creative-overlay {
    opacity: 1;
}

.overlay-badge {
    text-align: center;
    position: relative;
    margin-bottom: 2rem;
}

.badge-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.badge-text {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-sparkle {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

.overlay-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

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

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.float-icon {
    position: absolute;
    font-size: 1.5rem;
    animation: float-around 8s ease-in-out infinite;
    animation-delay: var(--delay);
}

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

.creative-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #284A98, #284A98);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.creative-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.btn-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: btn-particle-float 3s ease-in-out infinite;
}

.btn-particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.btn-particle:nth-child(2) {
    top: 60%;
    right: 30%;
    animation-delay: 1s;
}

.btn-particle:nth-child(3) {
    bottom: 30%;
    left: 60%;
    animation-delay: 2s;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3); }
    50% { box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5); }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes expand {
    0%, 100% { width: 100px; }
    50% { width: 150px; }
}

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

@keyframes icon-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes orbit {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes progress-95 {
    0% { width: 0; }
    100% { width: 95%; }
}

@keyframes progress-98 {
    0% { width: 0; }
    100% { width: 98%; }
}

@keyframes progress-100 {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes card-glow {
    0%, 100% { opacity: 0; transform: rotate(0deg); }
    50% { opacity: 1; transform: rotate(180deg); }
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

@keyframes float-around {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-15px) translateX(10px); }
    50% { transform: translateY(-10px) translateX(-10px); }
    75% { transform: translateY(-20px) translateX(5px); }
}

@keyframes btn-particle-float {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-10px) scale(1.2); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .title-line {
        font-size: 2rem;
    }
    
    .title-highlight {
        font-size: 2.5rem;
    }
    
    .creative-features {
        gap: 1.5rem;
    }
    
    .feature {
        padding: 1rem;
    }
    
    .visual-card img {
        height: 300px;
    }
    
    .overlay-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Services Section */
.services {
    padding: 120px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: conic-gradient(from 0deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08), rgba(16, 185, 129, 0.08), rgba(99, 102, 241, 0.08));
    border-radius: 50%;
    animation: spin3D 40s infinite linear;
    transform-style: preserve-3d;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.06), rgba(99, 102, 241, 0.06));
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: triangle3D 30s infinite ease-in-out;
    transform-style: preserve-3d;
}

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

.service-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #284A98, #284A98);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-12px) rotateX(5deg) rotateY(2deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02), rgba(139, 92, 246, 0.02));
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #284A98, #284A98);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg) scale(1.1);
}

.service-icon i {
    color: white;
    font-size: 1.5rem;
}

.service-badge {
    background: #f98831;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-card p {
    color: #454545;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #454545;
    font-size: 14px;
}

.service-features i {
    color: #6366f1;
    font-size: 12px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* Career Section */
.career {
    padding: 120px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.career::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    animation: pulse3D 15s infinite ease-in-out;
    transform-style: preserve-3d;
}

.career::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.06), rgba(236, 72, 153, 0.06));
    border-radius: 50%;
    animation: float3D 35s infinite linear;
    transform-style: preserve-3d;
}

.career-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.career-card {
    flex: 1;
    min-width: 180px;
    max-width: 200px;
    background: #f8fafc;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.career-card:hover {
    transform: translateY(-12px) rotateX(8deg) rotateY(4deg) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.career-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d86500b3, #d86500b3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

.career-card:hover .career-icon {
    transform: scale(1.2) rotateY(360deg) rotateX(15deg);
}

.career-icon i {
    color: white;
    font-size: 1.5rem;
}

.career-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0;
    line-height: 1.3;
}

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

/* Job Openings */
.job-openings {
    margin-top: 4rem;
    position: relative;
}

.openings-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.openings-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #284A98, #284A98);
    border-radius: 2px;
}

.openings-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #284A98, #284A98);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.openings-header p {
    font-size: 1.125rem;
    color: #454545;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.job-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.job-card:hover {
    transform: translateY(-8px) rotateX(5deg) rotateY(2deg) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.job-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.job-type {
    background: #284A98;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.job-description {
    color: #454545;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.job-skills span {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.job-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #284A98, #284A98);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.job-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.career-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: 20px;
    margin-top: 2rem;
}

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

.career-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #284A98, #284A98);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.career-stat .stat-label {
    font-size: 14px;
    color: #454545;
    font-weight: 500;
}

/* Work Section */
.work {
    padding: 120px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.work::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphing3D 20s infinite ease-in-out;
    transform-style: preserve-3d;
}

.work::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(16, 185, 129, 0.08));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morphing3D 25s infinite ease-in-out reverse;
    transform-style: preserve-3d;
}

.work-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.work-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

.work-item:hover {
    transform: translateY(-12px) rotateX(5deg) rotateY(3deg) scale(1.02);
}

.work-image {
    position: relative;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work-item:hover .work-image img {
    transform: scale(1.05);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(139, 92, 246, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-info {
    text-align: center;
    color: white;
    padding: 2rem;
}

.work-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.work-info p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.work-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.work-tags span {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* Enhanced Office Events Gallery */
.office-gallery {
    margin-top: 4rem;
    position: relative;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.gallery-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 2px;
}

.gallery-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-header p {
    font-size: 1.125rem;
    color: #454545;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    perspective: 1000px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 20px;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-15px) rotateX(8deg) rotateY(5deg) scale(1.03);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.2);
}

.gallery-item:nth-child(even):hover {
    transform: translateY(-15px) rotateX(8deg) rotateY(-5deg) scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
}

.gallery-item:hover img {
    transform: scale(1.1) rotateZ(2deg);
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        transparent 100%
    );
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    border-radius: 0 0 20px 20px;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: #ffffff;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* Creative Gallery Animations */
@keyframes galleryFloat {
    0%, 100% { 
        transform: translateY(0px) rotateX(0deg) rotateY(0deg); 
    }
    33% { 
        transform: translateY(-5px) rotateX(2deg) rotateY(1deg); 
    }
    66% { 
        transform: translateY(3px) rotateX(-1deg) rotateY(-1deg); 
    }
}

.gallery-item {
    animation: galleryFloat 6s ease-in-out infinite;
}

.gallery-item:nth-child(2) {
    animation-delay: -1s;
}

.gallery-item:nth-child(3) {
    animation-delay: -2s;
}

.gallery-item:nth-child(4) {
    animation-delay: -3s;
}

.gallery-item:nth-child(5) {
    animation-delay: -4s;
}

.gallery-item:nth-child(6) {
    animation-delay: -5s;
}

/* Gallery Masonry Effect for larger screens */
@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 200px);
        gap: 1.5rem;
    }
    
    .gallery-item:nth-child(1) {
        grid-row: span 2;
    }
    
    .gallery-item:nth-child(1) img {
        height: 100%;
    }
    
    .gallery-item:nth-child(4) {
        grid-column: span 2;
    }
    
    .gallery-item:nth-child(6) {
        grid-row: span 2;
    }
    
    .gallery-item:nth-child(6) img {
        height: 100%;
    }
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-overlay {
        padding: 1.5rem;
    }
    
    .gallery-header h3 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 250px;
    }
}

/* Interactive Gallery Effects */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item::after {
    content: '👁️';
    font-size: 24px;
    line-height: 1;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Testimonials Section */
/* Services Overview Section */
.services-overview {
    padding: 2rem 0 5rem 0;
    background: #ffffff;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #f98831;
}

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

.service-item .service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #284A98 0%, #284A98 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-item .service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px #ffcaa1;
}

.service-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.service-item p {
    color: #454545;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.service-item:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-link:hover {
    color: #4f46e5;
    gap: 0.75rem;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
    line-height: 1.6;
    margin: 0;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 1.5rem 1rem;
    }
    
    .services-overview {
        padding: 3rem 0;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 20%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    animation: orbit3D 25s infinite linear;
    transform-style: preserve-3d;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 25%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(236, 72, 153, 0.08));
    border-radius: 50%;
    animation: orbit3D 20s infinite linear reverse;
    transform-style: preserve-3d;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.testimonial-card {
    display: none;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transform-style: preserve-3d;
    animation: testimonialFloat 6s ease-in-out infinite;
}

.testimonial-card.active {
    display: block;
    animation: testimonialFloat 6s ease-in-out infinite;
}

@keyframes testimonialFloat {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-5px) rotateX(2deg); }
}

.quote-mark {
    font-size: 4rem;
    color: #284A98;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.25rem;
    color: #454545;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #454545;
    font-size: 14px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #284A98;
    transform: scale(1.2);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -10%;
    right: 30%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06), rgba(139, 92, 246, 0.06));
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    animation: wave3D 18s infinite ease-in-out;
    transform-style: preserve-3d;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    animation: breathe3D 12s infinite ease-in-out;
    transform-style: preserve-3d;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.contact-card:hover {
    transform: translateY(-8px) rotateX(5deg) rotateY(2deg) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #284A98, #284A98);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: rotateY(180deg) scale(1.1);
}

.contact-icon i {
    color: white;
    font-size: 1.25rem;
}

.contact-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #1a1a1a;
    line-height: 1.6;
}

.contact-details a {
    color: 1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #284A98;
}

.contact-form-wrapper {
    background: #f8fafc;
    border-radius: 20px;
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    gap: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #6366f1;
    transform: translateY(-2px);
}

.footer-links h4 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6366f1;
}

.footer-newsletter h4 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-newsletter p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #374151;
    border-radius: 8px;
    background: #374151;
    color: white;
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #6366f1;
}

.newsletter-form button {
    padding: 12px 16px;
    background:  #284A98;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #f09738;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #6366f1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .career-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .career-card {
        max-width: 300px;
        width: 100%;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        gap: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .culture-stats {
        gap: 2rem;
    }

    .work-showcase {
        grid-template-columns: 1fr;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-group {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .culture-stats {
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

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

    .contact-form-wrapper {
        padding: 2rem;
    }

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

    .testimonial-card {
        padding: 2rem;
    }

    .member-image img {
        width: 150px;
        height: 150px;
    }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

/* 3D Hover Effects for Interactive Elements */
.hero-badge {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px) rotateX(5deg) scale(1.05);
}

.stat {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-4px) rotateX(10deg) scale(1.05);
}

/* 3D Card Flip Effect for Service Features */
.service-features {
    transform-style: preserve-3d;
}

.service-features li {
    transition: transform 0.2s ease;
    transform-style: preserve-3d;
}

.service-features li:hover {
    transform: translateX(5px) rotateY(5deg);
}

/* 3D Navigation Dots */
.nav-dot {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.nav-dot:hover {
    transform: scale(1.3) rotateX(45deg) rotateY(45deg);
}

.nav-dot.active {
    transform: scale(1.2) rotateX(15deg) rotateY(15deg);
}

/* 3D Form Elements */
.form-group input,
.form-group select,
.form-group textarea {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px) rotateX(2deg) scale(1.01);
}

/* 3D Social Links */
.social-links a {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-4px) rotateX(15deg) rotateY(15deg) scale(1.1);
}

/* Parallax 3D Effect for Sections */
.section-header {
    transform-style: preserve-3d;
}

.section-tag {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
/* Hero Stats within Trusted Section */
.trusted-by .hero-stats {
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.hero-stats {
    animation: heroStatsFloat 8s ease-in-out infinite;
}

@keyframes heroStatsFloat {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    33% { transform: translateY(-3px) rotateX(1deg); }
    66% { transform: translateY(3px) rotateX(-1deg); }
}

/* 3D Brand Animation */
.brands-track {
    transform-style: preserve-3d;
}

.brand {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.brand:hover {
    transform: translateY(-3px) rotateX(10deg) rotateY(5deg) scale(1.1);
}
/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }