/* CSS Variables - Light Theme Overhaul */
:root {
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    --gradient-secondary: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    
    /* Colors */
    --primary-color: #d946ef; /* Magenta */
    --text-main: #1e293b; /* Dark slate */
    --text-muted: #64748b; /* Medium grey */
    --bg-white: #ffffff;
    --bg-offwhite: #f8fafc;
    --bg-grey: #f1f5f9;
    --border-color: #e2e8f0;
    
    /* Fonts */
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--text-main);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.sub-heading {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 800;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.font-bold { font-weight: 700; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.logo-icon {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
}

.brand-logo {
    max-height: 40px;
    width: auto;
    display: block;
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-primary {
    background: var(--gradient-primary);
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.3s, opacity 0.3s;
    border: none;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-outline {
    background: transparent;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--text-main);
    color: var(--text-main);
}

.btn-outline:hover {
    background: var(--text-main);
    color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: 60px;
    background-color: var(--bg-white);
}

.hero-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    width: 100%;
}

.hero-content {
    flex: 1.2;
}

.badge {
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    background-color: rgba(236, 72, 153, 0.1);
    border-radius: 50px;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

/* Trusted By */
.trusted-by {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.trusted-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.badges-row {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Form Wrapper */
.hero-form-wrapper {
    flex: 1;
    max-width: 450px;
}

.solid-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.solid-form h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.solid-form p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row .input-group {
    flex: 1;
    margin-bottom: 0;
}

.input-group {
    margin-bottom: 1rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 0.9rem;
    border-radius: 8px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-container {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 1.5rem 0;
    cursor: pointer;
    gap: 0.5rem;
}

.checkbox-container input {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-submit:hover {
    opacity: 0.9;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

.form-disclaimer a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Stats Section */
.stats {
    background: var(--bg-offwhite);
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    flex: 1;
    border-right: 1px solid var(--border-color);
}

.stat-item.border-none {
    border-right: none;
}

.stat-item h2 {
    font-size: 3rem;
    margin-bottom: 0.2rem;
    font-weight: 900;
}

.stat-item p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

/* Services */
.services {
    padding: 6rem 0;
    background: var(--bg-white);
}

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

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.service-img {
    height: 180px;
    background: var(--bg-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 2rem;
}

.service-body {
    padding: 2rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.service-list li {
    margin-bottom: 0.5rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.service-list li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.explore-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.explore-link:hover {
    text-decoration: underline;
}

/* Capabilities Bento */
.capabilities {
    padding: 6rem 0;
    background: var(--bg-offwhite);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bento-item {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: left;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.bento-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.bento-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.bento-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Tech Stack */
.tech-stack {
    padding: 4rem 0;
    background: var(--bg-white);
}

.tech-logos {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--text-muted);
}

/* Portfolio */
.portfolio {
    padding: 6rem 0;
    background: var(--bg-offwhite);
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.portfolio-controls {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.3s;
}

.nav-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.portfolio-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.portfolio-content {
    padding: 2.5rem;
    flex: 1;
}

.portfolio-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-radius: 50px;
    background-color: rgba(236, 72, 153, 0.1);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.portfolio-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.portfolio-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.portfolio-image {
    width: 200px;
    height: 300px;
    background: var(--bg-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--border-color);
}

/* Process Timeline */
.process {
    padding: 6rem 0;
    background: var(--bg-white);
}

.timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: var(--border-color);
    z-index: 1;
}

.timeline-item {
    position: relative;
    z-index: 2;
    background: var(--bg-white);
    padding: 0 10px;
}

.timeline-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-main);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.timeline-item p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Excellence Section */
.excellence {
    padding: 6rem 0;
    background: var(--bg-offwhite);
}

.excellence-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.excellence-content {
    flex: 1;
}

.excellence-content > p {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.excellence-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.excellence-item {
    display: flex;
    gap: 1.5rem;
}

.excellence-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.excellence-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.excellence-stats {
    flex: 0.8;
}

.stats-box {
    background: #fff;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.stats-box h2 {
    font-size: 3.5rem;
}

.mini-stats-row {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.mini-stat h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.mini-stat p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.user-profiles {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-offwhite);
    padding: 1rem;
    border-radius: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-profiles span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Bottom CTA */
.bottom-cta {
    padding: 6rem 0;
    background: var(--bg-white);
}

.cta-box {
    background: var(--bg-offwhite);
    padding: 5rem 2rem;
    border-radius: 32px;
    border: 1px solid var(--border-color);
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

/* Footer */
footer {
    padding: 5rem 0 2rem;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

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

.footer-desc {
    color: var(--text-muted);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.social-icons i:hover {
    color: var(--primary-color);
    cursor: pointer;
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links a, .footer-contact p {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .features-list {
        text-align: left;
    }
    .badges-row {
        justify-content: center;
    }
    .hero-form-wrapper {
        width: 100%;
    }
    .nav-links {
        display: none;
    }
    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 2rem;
    }
    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .bento-grid, .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .excellence-container {
        flex-direction: column;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .timeline {
        flex-direction: column;
        gap: 2rem;
    }
    .timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .features-list {
        grid-template-columns: 1fr;
    }
    .portfolio-card {
        flex-direction: column;
    }
    .portfolio-image {
        width: 100%;
        height: 200px;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
}
