/* WebAI Solution - Modern Corporate Glassmorphism */
:root {
    --bg-color: #0a0a1a;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    
    /* Minimal Tech Palette */
    --primary: #00D4FF;
    --accent: #ffffff;
    
    /* Glass properties */
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(20px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

/* Typography & Utilities */
h1, h2, h3 { color: #fff; font-weight: 800; }
a { text-decoration: none; color: inherit; }
p { color: var(--text-secondary); line-height: 1.7; }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

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

/* Background Elements */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    opacity: 0.15;
}
.blob-primary { width: 60vw; height: 60vw; background: var(--primary); top: -20%; left: -10%; }
.blob-secondary { width: 50vw; height: 50vw; background: rgba(0, 212, 255, 0.3); bottom: -10%; right: -10%; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(80px, 40px) scale(1.1); }
    100% { transform: translate(-40px, 80px) scale(0.9); }
}

/* Navbar */
.glass-nav {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background: rgba(15, 22, 42, 0.85);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.logo img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

.nav-links { display: flex; gap: 35px; list-style: none; }
.nav-links a { font-weight: 500; font-size: 0.95rem; transition: 0.3s; color: var(--text-secondary); }
.nav-links a:hover { color: var(--primary); text-shadow: 0 0 15px rgba(0, 212, 255, 0.3); }
.mobile-menu { display: none; cursor: pointer; color: #fff; }

/* Buttons */
.btn {
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.primary-btn {
    background: var(--primary);
    color: #000;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.1);
}
.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
    filter: brightness(1.1);
}
.secondary-btn, .outline-btn {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}
.secondary-btn:hover, .outline-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

/* Layout */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 160px 20px 60px;
}

section { margin-bottom: 140px; }

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    min-height: 75vh;
}

.glass-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 30px;
    margin-bottom: 30px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    font-weight: 700;
}

.hero h1 { font-size: 4.8rem; line-height: 1.1; margin-bottom: 30px; }
.hero p { font-size: 1.3rem; margin-bottom: 45px; max-width: 650px; opacity: 0.9; }
.hero-buttons { display: flex; gap: 20px; }

.hero-image-wrapper { 
    position: relative; 
    height: 100%;
    width: 100%;
}
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 35px;
    transition: 0.4s;
}

.office-card {
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    max-width: 420px;
    margin-left: auto;
    aspect-ratio: 4/5;
    transform: perspective(1000px) rotateY(-10deg);
}
.main-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.floating-badge {
    position: absolute;
    width: 65px; height: 65px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.8rem;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    animation: bounce 4s infinite ease-in-out alternate;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.badge-1 { top: 0%; left: -30px; color: var(--primary); animation-delay: 0s; }
.badge-2 { bottom: 20%; right: -20px; color: #fff; animation-delay: -1s; }
.badge-3 { top: 50%; left: -50px; color: var(--primary); animation-delay: -2s; }
.badge-4 { bottom: 5%; left: 10px; color: #fff; animation-delay: -0.5s; }
.badge-5 { top: -10%; right: 20px; color: var(--primary); animation-delay: -1.5s; }
.badge-6 { top: 35%; right: -40px; color: #fff; animation-delay: -2.5s; }

@keyframes bounce { 
    from { transform: translateY(0); }
    to { transform: translateY(-25px); }
}

/* Section Header */
.section-header { text-align: center; margin-bottom: 70px; }
.section-header h2 { font-size: 3.2rem; margin-bottom: 18px; }
.section-header p { font-size: 1.1rem; }

/* Stats Bar */
.stats-bar {
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.stat-item {
    text-align: center;
    padding: 30px;
}
.stat-item h2 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 800;
}
.stat-item p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}
.service-card {
    text-align: center;
    padding: 50px 30px;
}
.service-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
}
.service-card i { font-size: 3rem; margin-bottom: 25px; color: #fff !important; }
.service-card h3 { margin-bottom: 15px; font-size: 1.6rem; }

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}
.project-card { padding: 0; overflow: hidden; }
.project-img-placeholder {
    height: 280px;
    background: #1e293b;
    border-bottom: 1px solid var(--glass-border);
}
.project-info { padding: 35px; }
.project-info h3 { margin-bottom: 12px; font-size: 1.7rem; }
.project-info p { margin-bottom: 25px; }
.tags { display: flex; gap: 12px; margin-bottom: 30px; flex-wrap: wrap; }
.tags span {
    font-size: 0.85rem;
    padding: 6px 15px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--primary);
}


/* Contact Section */
/* How We Work Section */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
}
.work-step {
    text-align: center;
    padding: 40px;
    position: relative;
}
.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}
.work-step h3 { margin-bottom: 15px; }

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}
.testimonial-card {
    padding: 40px;
}
.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
}
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #000;
}
.client-details h4 { font-size: 1.1rem; margin: 0; }
.client-details span { font-size: 0.9rem; color: var(--text-secondary); }

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.about-card {
    text-align: left;
    padding: 40px;
}
.about-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--primary);
}
.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}
.about-card p {
    font-size: 1rem;
    line-height: 1.6;
}
.about-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.contact-section { max-width: 1000px; margin: 0 auto; }
.contact-card { padding: 60px; }
.contact-header { text-align: center; margin-bottom: 40px; }
.contact-header h2 { font-size: 2.8rem; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 25px; }
.contact-item { display: flex; align-items: center; gap: 15px; font-size: 1.1rem; }
.contact-item i { font-size: 1.4rem; color: var(--primary); width: 30px; }
.contact-item a:hover { color: var(--primary); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.input-group input, .input-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}
.input-group input:focus, .input-group textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.06);
}
.w-100 { width: 100%; justify-content: center; }

/* Footer */
footer {
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid var(--glass-border);
    background: rgba(2, 6, 15, 0.8);
}
.footer-content { max-width: 1200px; margin: 0 auto; }
.social-links { display: flex; justify-content: center; gap: 30px; margin-bottom: 25px; }
.social-links a { font-size: 1.6rem; color: var(--text-secondary); transition: 0.3s; }
/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    background: #128C7E;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    border: none !important;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}
.whatsapp-btn:hover {
    background: #128C7E !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero p { margin: 0 auto 35px; }
    .hero-buttons { justify-content: center; }
    .hero h1 { font-size: 3.5rem; }
    .contact-card { grid-template-columns: 1fr; }
    .office-card { max-width: 400px; margin: 40px auto 0; }
}

@media (max-width: 768px) {
    .glass-nav { padding: 15px 5%; }
    .nav-links { display: none; }
    .nav-cta { display: none; } /* Hide Book a Call on small screens to save space */
    .mobile-menu { display: block; font-size: 1.5rem; }
    .section-header h2 { font-size: 2.5rem; }
    .projects-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 15px; }
    .stat-item { padding: 15px; }
    .stat-item h2 { font-size: 2.8rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .work-grid { grid-template-columns: 1fr; }
    .work-step { padding: 20px; }
}

/* Scroll Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
