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

:root {
    --dark-blue: #1e3a8a;
    --primary-blue: #2563eb;
    --light-orange: #fb923c;
    --orange: #f97316;
    --dark-orange: #ea580c;
    --light-bg: #ffffff;
    --light-gray: #f8fafc;
    --glass-white: rgba(255, 255, 255, 0.7);
    --glass-dark: rgba(30, 58, 138, 0.05);
    --text-dark: #0f172a;
    --text-gray: #64748b;
    --purple: #9333ea;
    --indigo: #4f46e5;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--light-bg);
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
}

/* Animated Background Pattern */
.bg-pattern {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--primary-blue) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--light-orange) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, var(--orange) 0%, transparent 50%);
    animation: bgFloat 20s ease-in-out infinite;
}

@keyframes bgFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-20px, -20px) scale(1.1); }
    66% { transform: translate(20px, -10px) scale(0.95); }
}

/* Floating Shapes */
.float-shape {
    position: fixed;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-orange), var(--orange));
    opacity: 0.1;
    animation: floatShape 15s infinite ease-in-out;
    pointer-events: none;
}

.shape1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 5%;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    animation-delay: 5s;
}

.shape3 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 80%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 60px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    text-decoration: none;
    background: linear-gradient(135deg, var(--dark-blue), var(--light-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s;
}

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

.logo::before {
    content: '⚡';
    -webkit-text-fill-color: var(--light-orange);
    animation: pulse 2s infinite;
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--light-orange), var(--orange));
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--light-orange);
}

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

.btn-nav {
    background: linear-gradient(135deg, var(--light-orange), var(--orange));
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(251, 146, 60, 0.3);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(251, 146, 60, 0.5);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--light-bg) 100%);
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--light-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Two Platform Banners */
.platform-banners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 3rem auto;
    max-width: 1200px;
}

.banner-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.banner-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.banner-caplex {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
}

.banner-deeptech {
    background: linear-gradient(135deg, var(--light-orange), var(--orange));
}

.banner-header {
    position: absolute;
    top: 20px;
    left: 30px;
    z-index: 2;
    color: white;
}

.banner-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.banner-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

.banner-track {
    display: flex;
    position: absolute;
    bottom: 30px;
    animation: scrollBanner 15s linear infinite;
}

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

.banner-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-right: 20px;
    white-space: nowrap;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
}

.banner-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.banner-icon {
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary {
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--light-orange), var(--orange));
    color: white;
    box-shadow: 0 10px 40px rgba(251, 146, 60, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(251, 146, 60, 0.5);
}

.btn-gradient::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;
}

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

.btn-outline {
    background: white;
    border: 2px solid var(--dark-blue);
    color: var(--dark-blue);
}

.btn-outline:hover {
    background: var(--dark-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(30, 58, 138, 0.3);
}

/* Platform Section */
.section {
    padding: 100px 20px;
    position: relative;
    background: var(--light-bg);
}

.section:nth-child(even) {
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.25rem;
    font-weight: 400;
}

/* Platform Features */
.features-grid {
    max-width: 1400px;
    margin: 0 auto 100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--light-orange) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--light-orange);
    box-shadow: 0 30px 60px rgba(251, 146, 60, 0.25);
}

.feature-card:hover::after {
    opacity: 0.05;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-orange), var(--orange));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(251, 146, 60, 0.3);
    animation: iconRotate 6s ease-in-out infinite;
}

@keyframes iconRotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1), rgba(249, 115, 22, 0.1));
    border: 2px solid var(--light-orange);
    border-radius: 50px;
    color: var(--orange);
    font-size: 0.9rem;
    font-weight: 600;
    animation: badgePulse 2s infinite;
}

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

/* Workflow Section */
.workflow-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

.workflow-header {
    text-align: center;
    margin-bottom: 60px;
}

.workflow-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.workflow-steps {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--light-orange);
    box-shadow: 0 20px 50px rgba(251, 146, 60, 0.2);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-orange), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(251, 146, 60, 0.3);
    animation: float 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.2s);
}

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

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

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

/* Services Grid */
.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--light-orange);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.service-header {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.service-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

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

.service-header h3 {
    font-size: 1.3rem;
    color: white;
    position: relative;
    z-index: 1;
}

.service-content {
    padding: 2rem;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 1rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 35px;
    transition: all 0.3s;
}

.service-list li:hover {
    color: var(--light-orange);
    transform: translateX(5px);
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--light-orange);
    font-weight: bold;
    font-size: 1.2rem;
    animation: arrowMove 1s ease-in-out infinite;
}

@keyframes arrowMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* ========================================
   ENHANCED AR/VR SERVICE CARD STYLES
   ======================================== */

.service-card-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05), rgba(79, 70, 229, 0.05));
    border: 2px solid rgba(147, 51, 234, 0.2);
    position: relative;
    overflow: visible;
}

.service-card-featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
    animation: pulseFeatured 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseFeatured {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.service-card-featured .service-header {
    background: linear-gradient(135deg, var(--purple), var(--indigo));
    border-bottom: 2px solid rgba(147, 51, 234, 0.3);
    padding: 2rem 1.5rem;
}

.service-card-featured .service-header h3 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.5rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Technology Stack Styles */
.tech-stack-wrapper {
    background: rgba(147, 51, 234, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(147, 51, 234, 0.15);
    position: relative;
    z-index: 1;
}

.tech-stack-section {
    margin-bottom: 1.5rem;
}

.tech-stack-section:last-child {
    margin-bottom: 0;
}

.tech-category {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tech-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.25);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-badge:hover {
    background: rgba(147, 51, 234, 0.15);
    border-color: rgba(147, 51, 234, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.2);
}

.tech-badge.highlight {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(79, 70, 229, 0.2));
    border-color: rgba(147, 51, 234, 0.4);
    font-weight: 600;
    color: var(--purple);
}

.tech-badge.highlight:hover {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(79, 70, 229, 0.3));
    border-color: rgba(147, 51, 234, 0.6);
}

/* Services Breakdown */
.services-breakdown {
    display: grid;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-group {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--purple);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-group:hover {
    background: rgba(255, 255, 255, 0.8);
    border-left-color: var(--indigo);
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.15);
}

.service-group h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-list.enhanced {
    list-style: none;
    padding: 0;
}

.service-list.enhanced li {
    position: relative;
    padding-left: 1.5rem;
    padding-right: 0;
    margin-bottom: 0.85rem;
    line-height: 1.7;
    color: var(--text-gray);
    border-bottom: none;
}

.service-list.enhanced li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--purple);
    font-weight: bold;
    font-size: 1.1rem;
    animation: none;
}

.service-list.enhanced li:hover {
    color: var(--text-dark);
    transform: translateX(3px);
}

.service-list.enhanced li strong {
    color: var(--dark-blue);
    font-weight: 600;
}

/* Industry Applications */
.industry-applications {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(147, 51, 234, 0.15);
    position: relative;
    z-index: 1;
}

.industry-applications h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.industry-tag {
    padding: 0.5rem 1rem;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.25);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--indigo);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.industry-tag:hover {
    background: rgba(79, 70, 229, 0.2);
    border-color: rgba(79, 70, 229, 0.4);
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
}

/* Use Cases Section */
.use-cases-section {
    background: var(--light-gray);
    padding: 80px 20px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.use-case-card {
    background: white;
    border: 2px solid rgba(147, 51, 234, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--indigo));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.use-case-card:hover {
    background: white;
    border-color: rgba(147, 51, 234, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(147, 51, 234, 0.15);
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.use-case-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
}

.use-case-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.use-case-tech {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--purple);
    font-weight: 600;
}

/* Animation for service groups */
@keyframes fadeInUpSection {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-group {
    animation: fadeInUpSection 0.6s ease-out forwards;
}

.service-group:nth-child(1) {
    animation-delay: 0.1s;
}

.service-group:nth-child(2) {
    animation-delay: 0.2s;
}

.service-group:nth-child(3) {
    animation-delay: 0.3s;
}

/* Why Choose Us */
.why-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.why-card {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s;
}

.why-card:hover {
    transform: translateY(-10px);
}

.why-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.2);
    animation: pulse 3s infinite;
}

.why-card h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

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

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-cta-white {
    background: white;
    color: var(--dark-blue);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
}

.btn-cta-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-outline:hover {
    background: white;
    color: var(--dark-blue);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 20px 30px;
    position: relative;
}

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

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, var(--light-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--light-orange);
}

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

.footer-column li {
    margin-bottom: 1rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-column a:hover {
    color: var(--light-orange);
    transform: translateX(5px);
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .service-card-featured {
        grid-column: span 2;
    }
}

@media (max-width: 1024px) {
    .service-card-featured {
        grid-column: span 1;
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links { 
        display: none; 
    }
    
    .hero h1 { 
        font-size: 2.5rem; 
    }

    .platform-banners {
        grid-template-columns: 1fr;
    }

    .banner-container {
        height: 180px;
    }
    
    .workflow-steps,
    .features-grid,
    .services-grid { 
        grid-template-columns: 1fr; 
    }
    
    .tech-stack-wrapper {
        padding: 1rem;
    }
    
    .tech-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .service-group {
        padding: 1.25rem;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .use-case-card {
        padding: 1.5rem;
    }
    
    .industry-tags {
        gap: 0.5rem;
    }
    
    .industry-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .service-card-featured .service-header {
        padding: 1.5rem 1rem;
    }
    
    .tech-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
    }
    
    .service-group h4 {
        font-size: 1rem;
    }
    
    .service-list.enhanced li {
        font-size: 0.9rem;
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Print Styles */
@media print {
    .float-shape,
    .bg-pattern,
    nav,
    .hero-buttons,
    .cta-section,
    footer {
        display: none;
    }
    
    .service-card-featured,
    .service-card,
    .use-case-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}