/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Logo-inspired color palette */
    --logo-blue: #055aad;
    /* --logo-blue: #1e40af; */
    --logo-purple: #7c3aed;
    --logo-cyan: #06b6d4;
    --logo-indigo: #4f46e5;
    --logo-violet: #8b5cf6;
    --logo-teal: #0d9488;
    
    /* Primary gradients matching logo */
    --primary-gradient: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    --secondary-gradient: linear-gradient(135deg, #4f46e5 0%, #8b5cf6 100%);
    --accent-gradient: linear-gradient(135deg, #06b6d4 0%, #0d9488 100%);
    --logo-gradient: linear-gradient(135deg, #1e40af 0%, #7c3aed 50%, #06b6d4 100%);
    --purple-gradient: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
    --blue-gradient: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
    --dark-gradient: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    
    /* Glass effects with logo colors */
    --glass-bg: rgba(30, 64, 175, 0.1);
    --glass-border: rgba(124, 58, 237, 0.2);
    --shadow-light: 0 8px 32px rgba(30, 64, 175, 0.2);
    --shadow-heavy: 0 15px 35px rgba(124, 58, 237, 0.3);
    
    /* Text colors */
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    
    /* Spacing and borders */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;

    /* fonts */
    --header-fonts: 'Sora', sans-serif;
    --body-fonts: 'Sora', sans-serif;
}

body {
    font-family: var(--body-fonts);
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
}

.logo-icon img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    border-radius: 4px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.company-name {
    color: var(--logo-blue);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.company-suffix {
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--logo-blue);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--logo-blue);
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero::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: float 20s ease-in-out infinite;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-family: var(--header-fonts);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    color: var(--logo-cyan);
}

.gradient-text-2 {
    color: var(--logo-purple);
}

.hero-badge {
    display: inline-block;
    background: rgba(6, 182, 212, 0.15);
    color: var(--logo-cyan);
    padding: 14px 16px;
    border-radius: var(--border-radius-lg);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    border: 1px solid rgba(6, 182, 212, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    height: 20px;
    width: 280px;
}

.badge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    opacity: 0;
    animation: slideText 12s infinite;
}

.badge-text:nth-child(1) { animation-delay: 0s; }
.badge-text:nth-child(2) { animation-delay: 2.4s; }
.badge-text:nth-child(3) { animation-delay: 4.8s; }
.badge-text:nth-child(4) { animation-delay: 7.2s; }
.badge-text:nth-child(5) { animation-delay: 9.6s; }

/* Removed excessive glow animation for elegance */

@keyframes slideText {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(20px);
    }
    8% {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0px);
    }
    17% {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0px);
    }
    25% {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(-20px);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

@keyframes cubeRotate {
    0% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    25% {
        transform: rotateX(90deg) rotateY(90deg) rotateZ(0deg);
    }
    50% {
        transform: rotateX(180deg) rotateY(180deg) rotateZ(90deg);
    }
    75% {
        transform: rotateX(270deg) rotateY(270deg) rotateZ(180deg);
    }
    100% {
        transform: rotateX(360deg) rotateY(360deg) rotateZ(270deg);
    }
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2rem 0;
}

.tech-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 300;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 1000;
    transform: none !important;
}

.btn {
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    z-index: 1001;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: var(--logo-blue);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary::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-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--logo-purple);
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.3s ease;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

/* AI Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-animation {
    width: 400px;
    height: 350px;
    position: relative;
    animation: aiContainerFloat 6s ease-in-out infinite;
}

@keyframes aiContainerFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(1deg);
    }
    50% {
        transform: translateY(-3px) rotate(0deg);
    }
    75% {
        transform: translateY(-12px) rotate(-1deg);
    }
}

.neural-network {
    width: 100%;
    height: 100%;
    position: relative;
    pointer-events: none;
}

.node {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    position: absolute;
    animation: neuralPulse 2s infinite ease-in-out;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    z-index: 10;
    pointer-events: none;
}

.node:nth-child(1) { 
    top: 15%; 
    left: 10%; 
    animation-delay: 0s;
}
.node:nth-child(2) { 
    top: 25%; 
    right: 5%; 
    animation-delay: 0.4s;
}
.node:nth-child(3) { 
    top: 45%; 
    left: 30%; 
    animation-delay: 0.8s;
}
.node:nth-child(4) { 
    bottom: 20%; 
    left: 15%; 
    animation-delay: 1.2s;
}
.node:nth-child(5) { 
    bottom: 10%; 
    right: 20%; 
    animation-delay: 1.6s;
}
.node:nth-child(6) { 
    top: 35%; 
    left: 5%; 
    animation-delay: 2s;
}
.node:nth-child(7) { 
    top: 65%; 
    right: 15%; 
    animation-delay: 2.4s;
}
.node:nth-child(8) { 
    bottom: 40%; 
    left: 45%; 
    animation-delay: 2.8s;
}

/* Neural Network Connections - Organic Wavy Lines */
.neural-network::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Curved connections spreading naturally */
        radial-gradient(ellipse 2px 50px at 10% 15%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 45px 2px at 20% 25%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 2px 40px at 30% 35%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        
        /* Diagonal organic connections */
        radial-gradient(ellipse 60px 2px at 50% 25%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 2px 55px at 70% 35%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 50px 2px at 85% 25%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        
        /* Lower network connections */
        radial-gradient(ellipse 2px 45px at 15% 60%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 40px 2px at 30% 70%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 2px 35px at 45% 80%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 55px 2px at 70% 65%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        
        /* Cross connections */
        radial-gradient(ellipse 2px 30px at 5% 35%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 35px 2px at 25% 45%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 2px 40px at 85% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 30px 2px at 60% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    animation: connectionPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes neuralPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    }
    50% { 
        transform: scale(1.5);
        opacity: 1;
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
    }
}

@keyframes connectionPulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="hexagon" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,5 50,17.5 50,42.5 30,55 10,42.5 10,17.5" fill="none" stroke="%23e2e8f0" stroke-width="1" opacity="0.3"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hexagon)"/></svg>');
    opacity: 0.5;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--logo-blue);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.service-card:hover::before {
    left: 100%;
}

.service-card.featured {
    background: rgba(30, 64, 175, 0.9);
    border: 2px solid var(--logo-blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.1);
}

.service-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--logo-blue);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.service-card.featured h3,
.service-card.featured p {
    color: white;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.tech-tags span {
    background: rgba(30, 64, 175, 0.1);
    color: var(--logo-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(30, 64, 175, 0.2);
}

.service-card.featured .tech-tags span {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(30, 64, 175, 0.3);
}

.service-card.featured:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(30, 64, 175, 0.4), 0 0 60px rgba(124, 58, 237, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--logo-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.2);
}

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

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.ai-evolution-visual {
    width: 400px;
    height: 400px;
    position: relative;
    margin: 0 auto;
}

.evolution-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(30, 64, 175, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--logo-blue);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    animation: evolutionRotate 20s linear infinite;
}

.evolution-layer:nth-child(1) {
    width: 350px;
    height: 350px;
    font-size: 1.1rem;
    animation-delay: 0s;
}

.evolution-layer:nth-child(2) {
    width: 280px;
    height: 280px;
    font-size: 1rem;
    animation-delay: -5s;
}

.evolution-layer:nth-child(3) {
    width: 210px;
    height: 210px;
    font-size: 0.95rem;
    animation-delay: -10s;
}

.evolution-layer:nth-child(4) {
    width: 140px;
    height: 140px;
    font-size: 0.9rem;
    animation-delay: -15s;
}

.evolution-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--logo-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 0 20px rgba(30, 64, 175, 0.3);
    animation: coreGlow 3s ease-in-out infinite alternate;
    z-index: 10;
}

.evolution-core i {
    font-size: 2.2rem;
    color: white;
}

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

@keyframes coreGlow {
    0% { box-shadow: 0 0 20px rgba(30, 64, 175, 0.3); }
    100% { box-shadow: 0 0 30px rgba(30, 64, 175, 0.5); }
}

.timeline-highlight {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #667eea;
}

.timeline-item {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

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

.timeline-item strong {
    color: var(--logo-blue);
    font-weight: 700;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--logo-blue);
    color: white;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.contact .section-header h2,
.contact .section-header p {
    color: white !important;
}

.contact .section-header h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--logo-cyan);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 16px rgba(6, 182, 212, 0.3);
}

.contact-item h4 {
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--logo-cyan);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

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

.clickable-item {
    cursor: pointer;
}

.stretchy-link {
    color: white;
    text-decoration: none;
}
.clickable-item .stretchy-link::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
  }

/* Footer */
.footer {
    background: var(--dark-gradient);
    color: white;
    padding: 60px 0 20px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(1.1);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--logo-cyan);
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: var(--logo-cyan);
}

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

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

.social-links a:hover {
    background: var(--logo-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* FAQ Section Styles */
.faq {
    padding: 5rem 0;
    /* background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); */
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    /* color: white; */
}

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

.faq-item {
    /* background: rgba(255, 255, 255, 0.05); */
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-item h3 {
    color: var(--logo-cyan);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-item p {
    line-height: 1.6;
    color: var(--text-primary);
}

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

/* Notification Styles */
.notification {
    position: fixed !important;
    top: 100px !important;
    right: 20px !important;
    z-index: 10001 !important;
    padding: 1rem 1.5rem !important;
    border-radius: 8px !important;
    color: white !important;
    font-weight: 500 !important;
    max-width: 300px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    transition: transform 0.3s ease !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

.notification-success {
    background: #10b981 !important;
}

.notification-error {
    background: #ef4444 !important;
}

.notification-info {
    background: #3b82f6 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero {
        padding-top: 100px;
        min-height: 90vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-badge {
        width: 100%;
        max-width: 320px;
        margin: 0 auto var(--spacing-sm) auto;
    }
    
    .ai-animation {
        width: 300px;
        height: 280px;
    }
    
    .ai-evolution-visual {
        width: 280px;
        height: 280px;
    }
    
    .evolution-layer:nth-child(1) { width: 260px; height: 260px; font-size: 0.9rem; }
    .evolution-layer:nth-child(2) { width: 200px; height: 200px; font-size: 0.85rem; }
    .evolution-layer:nth-child(3) { width: 140px; height: 140px; font-size: 0.8rem; }
    .evolution-layer:nth-child(4) { width: 80px; height: 80px; font-size: 0.75rem; }
    
    .evolution-core {
        width: 40px;
        height: 40px;
    }
    
    .evolution-core i {
        font-size: 1.4rem;
    }
    
    .timeline-highlight {
        padding: var(--spacing-sm);
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-light);
        padding: var(--spacing-md) 0;
        border-top: 1px solid var(--glass-border);
    }

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

    .nav-toggle {
        display: flex;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .stats {
        justify-content: center;
        gap: var(--spacing-md);
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .section-header {
        margin-bottom: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
    }
    
    .section-header h2 {
        font-size: 2.4rem;
    }
    
    .services, .about, .contact, .faq {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-xs);
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .section-header h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-header {
        padding: 0 var(--spacing-xs);
    }

    .service-card {
        padding: var(--spacing-md);
        margin: 0 var(--spacing-xs);
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .stats {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 var(--spacing-xs);
    }
    
    .hero-badge {
        width: calc(100% - var(--spacing-sm));
        font-size: 0.8rem;
    }
    
    .tech-stack {
        justify-content: center;
        padding: 0 var(--spacing-xs);
    }
    
    .tech-item {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
    
    .ai-animation {
        width: 250px;
        height: 220px;
    }
    
    .contact-form {
        padding: 0 var(--spacing-xs);
    }
    
    .faq-grid {
        gap: var(--spacing-sm);
    }
    
    .faq-item {
        padding: var(--spacing-sm);
    }
}
