    :root {
        --primary-dark-blue: #0f172a;
        --secondary-neon-green: #059669;
        --text-dark: #1e293b;
        --text-light: #64748b;
        --background: #ffffff;
        --surface: #f8fafc;
        --border: #e2e8f0;
        --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        --shadow-hover: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    }

    [data-theme="dark"] {
        --text-dark: #f8fafc;
        --text-light: #94a3b8;
        --background: #020617;
        --surface: #0f172a;
        --border: #1e293b;
        --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.3), 0 2px 4px -2px rgb(0 0 0 / 0.3);
        --shadow-hover: 0 20px 25px -5px rgb(0 0 0 / 0.4), 0 8px 10px -6px rgb(0 0 0 / 0.4);
    }

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

    body {
        font-family: 'Inter', sans-serif;
        background-color: var(--background);
        color: var(--text-dark);
        line-height: 1.6;
        overflow-x: hidden;
        transition: all 0.3s ease;
    }

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

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

    /* Hero Section */
    .hero {
        position: relative;
        overflow: hidden;
        height: 60vh;
        min-height: 500px;
        padding-top: 40px;
        /* adjust as needed */
    }

    .background-video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        transform: translate(-50%, -50%);
        object-fit: cover;
        z-index: 0;
        pointer-events: none;
    }

    .video-gradient-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 60%;
        height: 100%;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent);
        z-index: 1;
    }

    .hero .container {
        position: relative;
        z-index: 2;
        color: white;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;


    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .hero-text {
        text-align: left;
    }

    .hero h1 {
        font-size: 3.5rem;
        font-weight: 700;
        background: linear-gradient(45deg, var(--primary-dark-blue), var(--secondary-neon-green));
        -webkit-background-clip: text;
        -webkit-text-fill-color: white;
        background-clip: text;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.2rem;
        color: var(--text-light);
        margin-bottom: 2.5rem;
        line-height: 1.6;
    }

    .hero-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hero-image {
        position: relative;
        height: 400px;
        background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--secondary-neon-green) 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .hero-image::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 200 200"><circle cx="50" cy="50" r="20" fill="white" opacity="0.1"/><rect x="100" y="30" width="60" height="4" fill="white" opacity="0.3"/><rect x="100" y="40" width="40" height="4" fill="white" opacity="0.2"/><rect x="100" y="50" width="50" height="4" fill="white" opacity="0.25"/><circle cx="150" cy="150" r="15" fill="white" opacity="0.15"/><rect x="30" y="120" width="50" height="4" fill="white" opacity="0.3"/><rect x="30" y="130" width="30" height="4" fill="white" opacity="0.2"/></svg>') repeat;
        opacity: 0.4;
    }

    .hero-icon {
        font-size: 4rem;
        color: white;
        z-index: 1;
        position: relative;
    }

    .secondary-button {
        background: var(--primary-dark-blue);
        color: white;
        border: 2px solid var(--primary-dark-blue);
    }

    .secondary-button:hover {

        background: transparent;
        color: var(--secondary-neon-green);
        border: 2px solid var(--secondary-neon-green);
    }

    /* Services Section */
    .services {
        padding: 4rem 0;
        background: var(--background);
    }

    .section-title {
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .section-title p {
        font-size: 1.1rem;
        color: var(--text-light);
        max-width: 600px;
        margin: 0 auto;
    }

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

    .service-card {
        background: var(--background);
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 4px 20px var(--shadow);
        transition: all 0.4s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        border: 1px solid var(--border);
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(45deg, var(--primary-dark-blue), var(--secondary-neon-green));
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px var(--shadow-hover);
    }

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

    .service-image {
        width: 100%;
        height: 200px;
        border-radius: 15px;
        margin-bottom: 1.5rem;
        overflow: hidden;
        position: relative;
        background: linear-gradient(45deg, var(--primary-dark-blue), var(--secondary-neon-green));
        transition: all 0.3s ease;
    }

    .service-card:hover .service-image {
        transform: scale(1.02);
    }

    .service-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.1);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .service-card:hover .service-image::before {
        opacity: 1;
    }

    /* Individual service images */
    .web-dev-image {
        background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--secondary-neon-green) 100%),
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect x="20" y="40" width="160" height="120" fill="white" opacity="0.2" rx="8"/><rect x="30" y="50" width="140" height="80" fill="white" opacity="0.1"/><circle cx="40" cy="60" r="3" fill="white" opacity="0.8"/><circle cx="50" cy="60" r="3" fill="white" opacity="0.8"/><circle cx="60" cy="60" r="3" fill="white" opacity="0.8"/><rect x="40" y="75" width="60" height="4" fill="white" opacity="0.6"/><rect x="40" y="85" width="80" height="4" fill="white" opacity="0.4"/><rect x="40" y="95" width="50" height="4" fill="white" opacity="0.6"/></svg>') center;
        background-size: cover;
    }

    .mobile-dev-image {
        background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--secondary-neon-green) 100%),
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect x="70" y="30" width="60" height="140" fill="white" opacity="0.2" rx="12"/><rect x="75" y="40" width="50" height="80" fill="white" opacity="0.1"/><circle cx="100" cy="50" r="2" fill="white" opacity="0.8"/><rect x="80" y="60" width="40" height="3" fill="white" opacity="0.6"/><rect x="80" y="68" width="35" height="3" fill="white" opacity="0.4"/><rect x="80" y="76" width="30" height="3" fill="white" opacity="0.6"/><circle cx="100" cy="155" r="8" fill="white" opacity="0.3"/></svg>') center;
        background-size: cover;
    }

    .design-image {
        background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--secondary-neon-green) 100%),
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="60" fill="white" opacity="0.1"/><circle cx="100" cy="100" r="40" fill="white" opacity="0.2"/><circle cx="100" cy="100" r="20" fill="white" opacity="0.3"/><path d="M60 60 L140 140 M140 60 L60 140" stroke="white" stroke-width="2" opacity="0.4"/><circle cx="80" cy="80" r="8" fill="white" opacity="0.6"/><circle cx="120" cy="120" r="8" fill="white" opacity="0.6"/></svg>') center;
        background-size: cover;
    }

    .ai-image {
        background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--secondary-neon-green) 100%),
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="80" r="25" fill="white" opacity="0.2"/><circle cx="70" cy="120" r="15" fill="white" opacity="0.3"/><circle cx="130" cy="120" r="15" fill="white" opacity="0.3"/><circle cx="100" cy="150" r="10" fill="white" opacity="0.4"/><line x1="100" y1="105" x2="70" y2="120" stroke="white" stroke-width="2" opacity="0.5"/><line x1="100" y1="105" x2="130" y2="120" stroke="white" stroke-width="2" opacity="0.5"/><line x1="70" y1="135" x2="100" y2="150" stroke="white" stroke-width="2" opacity="0.5"/><line x1="130" y1="135" x2="100" y2="150" stroke="white" stroke-width="2" opacity="0.5"/></svg>') center;
        background-size: cover;
    }

    .cloud-image {
        background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--secondary-neon-green) 100%),
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M50 120 Q50 100 70 100 Q70 80 100 80 Q130 80 130 100 Q150 100 150 120 Q150 140 130 140 L70 140 Q50 140 50 120" fill="white" opacity="0.3"/><circle cx="80" cy="60" r="8" fill="white" opacity="0.4"/><circle cx="120" cy="50" r="6" fill="white" opacity="0.5"/><circle cx="60" cy="70" r="4" fill="white" opacity="0.6"/><rect x="90" y="140" width="4" height="20" fill="white" opacity="0.4"/><rect x="100" y="145" width="4" height="15" fill="white" opacity="0.4"/><rect x="110" y="142" width="4" height="18" fill="white" opacity="0.4"/></svg>') center;
        background-size: cover;
    }

    .security-image {
        background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--secondary-neon-green) 100%),
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M100 40 L130 60 L130 110 Q130 140 100 160 Q70 140 70 110 L70 60 Z" fill="white" opacity="0.2"/><path d="M100 50 L120 65 L120 105 Q120 125 100 140 Q80 125 80 105 L80 65 Z" fill="white" opacity="0.1"/><circle cx="100" cy="95" r="8" fill="white" opacity="0.6"/><rect x="96" y="103" width="8" height="15" fill="white" opacity="0.4"/></svg>') center;
        background-size: cover;
    }

    .service-card h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

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

    .tech-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .tech-tag {
        background: var(--secondary-neon-green);
        color: var(--primary-dark-blue);
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.85rem;
        font-weight: 500;
    }

    .learn-more {
        color: var(--primary-dark-blue);
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
    }

    .learn-more:hover {
        gap: 1rem;
        color: var(--secondary-neon-green);
    }

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

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

    .tech-category {
        text-align: center;
    }

    .tech-category h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
    }

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

    .tech-item {
        background: var(--background);
        padding: 0.8rem 1.2rem;
        border-radius: 25px;
        font-weight: 500;
        box-shadow: 0 4px 15px var(--shadow);
        transition: all 0.3s ease;
        cursor: pointer;
        border: 1px solid var(--border);
        color: var(--text-dark);
    }

    .tech-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px var(--shadow-hover);
        background: var(--primary-dark-blue);
        color: white;
    }

    /* Portfolio Section */
    .portfolio {
        padding: 4rem 0;
        background: var(--background);
    }

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

    .portfolio-card {
        background: var(--background);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 4px 20px var(--shadow);
        transition: all 0.4s ease;
        cursor: pointer;
        border: 1px solid var(--border);
    }

    .portfolio-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px var(--shadow-hover);
    }

    .portfolio-image {
        height: 200px;
        border-radius: 15px 15px 0 0;
        position: relative;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        transition: all 0.3s ease;
    }

    .portfolio-card:hover .portfolio-image {
        transform: scale(1.05);
    }

    .portfolio-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(24, 20, 76, 0.1);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .portfolio-card:hover .portfolio-image::after {
        opacity: 1;
    }

    /* Individual portfolio images */
    .ecommerce-image {
        background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--secondary-neon-green) 100%),
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 200"><rect x="20" y="30" width="260" height="140" fill="white" opacity="0.2" rx="8"/><rect x="30" y="45" width="80" height="60" fill="white" opacity="0.3" rx="4"/><rect x="120" y="45" width="140" height="15" fill="white" opacity="0.4" rx="2"/><rect x="120" y="70" width="100" height="10" fill="white" opacity="0.3" rx="2"/><rect x="120" y="85" width="60" height="15" fill="white" opacity="0.5" rx="2"/><circle cx="250" cy="60" r="8" fill="white" opacity="0.6"/><rect x="30" y="120" width="240" height="2" fill="white" opacity="0.2"/><rect x="30" y="135" width="60" height="25" fill="white" opacity="0.4" rx="4"/><rect x="100" y="135" width="60" height="25" fill="white" opacity="0.4" rx="4"/><rect x="170" y="135" width="60" height="25" fill="white" opacity="0.4" rx="4"/></svg>') center;
        background-size: cover;
    }

    .banking-image {
        background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--secondary-neon-green) 100%),
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 200"><rect x="110" y="20" width="80" height="160" fill="white" opacity="0.2" rx="12"/><rect x="120" y="35" width="60" height="40" fill="white" opacity="0.1"/><circle cx="150" cy="45" r="3" fill="white" opacity="0.8"/><rect x="125" y="55" width="50" height="3" fill="white" opacity="0.6"/><rect x="125" y="65" width="40" height="3" fill="white" opacity="0.4"/><rect x="125" y="85" width="50" height="20" fill="white" opacity="0.3" rx="4"/><rect x="125" y="110" width="50" height="20" fill="white" opacity="0.3" rx="4"/><rect x="125" y="135" width="50" height="20" fill="white" opacity="0.3" rx="4"/><circle cx="150" cy="165" r="8" fill="white" opacity="0.4"/><rect x="50" y="60" width="30" height="2" fill="white" opacity="0.3"/><rect x="220" y="80" width="30" height="2" fill="white" opacity="0.3"/></svg>') center;
        background-size: cover;
    }

    .analytics-image {
        background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--secondary-neon-green) 100%),
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 200"><rect x="40" y="40" width="220" height="120" fill="white" opacity="0.2" rx="8"/><rect x="60" y="60" width="40" height="60" fill="white" opacity="0.4"/><rect x="110" y="80" width="40" height="40" fill="white" opacity="0.5"/><rect x="160" y="70" width="40" height="50" fill="white" opacity="0.3"/><rect x="210" y="50" width="40" height="70" fill="white" opacity="0.6"/><circle cx="80" cy="60" r="4" fill="white" opacity="0.8"/><circle cx="130" cy="80" r="4" fill="white" opacity="0.8"/><circle cx="180" cy="70" r="4" fill="white" opacity="0.8"/><circle cx="230" cy="50" r="4" fill="white" opacity="0.8"/><path d="M80 60 L130 80 L180 70 L230 50" stroke="white" stroke-width="2" opacity="0.7" fill="none"/></svg>') center;
        background-size: cover;
    }

    .restaurant-image {
        background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--secondary-neon-green) 100%),
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 200"><rect x="30" y="30" width="240" height="140" fill="white" opacity="0.2" rx="8"/><circle cx="100" cy="80" r="25" fill="white" opacity="0.3"/><rect x="85" y="90" width="30" height="3" fill="white" opacity="0.6"/><rect x="90" y="100" width="20" height="3" fill="white" opacity="0.4"/><rect x="140" y="60" width="100" height="8" fill="white" opacity="0.5" rx="2"/><rect x="140" y="75" width="80" height="5" fill="white" opacity="0.4" rx="2"/><rect x="140" y="90" width="60" height="8" fill="white" opacity="0.5" rx="2"/><rect x="50" y="130" width="200" height="2" fill="white" opacity="0.3"/><rect x="50" y="145" width="50" height="15" fill="white" opacity="0.4" rx="2"/><rect x="110" y="145" width="50" height="15" fill="white" opacity="0.4" rx="2"/><rect x="170" y="145" width="50" height="15" fill="white" opacity="0.4" rx="2"/></svg>') center;
        background-size: cover;
    }

    .social-image {
        background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--secondary-neon-green) 100%),
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 200"><circle cx="80" cy="70" r="30" fill="white" opacity="0.2"/><circle cx="220" cy="70" r="30" fill="white" opacity="0.2"/><circle cx="150" cy="130" r="30" fill="white" opacity="0.2"/><circle cx="80" cy="70" r="15" fill="white" opacity="0.4"/><circle cx="220" cy="70" r="15" fill="white" opacity="0.4"/><circle cx="150" cy="130" r="15" fill="white" opacity="0.4"/><line x1="95" y1="80" x2="135" y2="120" stroke="white" stroke-width="3" opacity="0.6"/><line x1="205" y1="80" x2="165" y2="120" stroke="white" stroke-width="3" opacity="0.6"/><line x1="95" y1="70" x2="205" y2="70" stroke="white" stroke-width="3" opacity="0.6"/><circle cx="80" cy="70" r="5" fill="white" opacity="0.8"/><circle cx="220" cy="70" r="5" fill="white" opacity="0.8"/><circle cx="150" cy="130" r="5" fill="white" opacity="0.8"/></svg>') center;
        background-size: cover;
    }

    .healthcare-image {
        background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--secondary-neon-green) 100%),
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 200"><rect x="50" y="50" width="200" height="100" fill="white" opacity="0.2" rx="8"/><rect x="70" y="70" width="80" height="60" fill="white" opacity="0.1"/><circle cx="110" cy="90" r="8" fill="white" opacity="0.6"/><rect x="95" y="105" width="30" height="3" fill="white" opacity="0.5"/><rect x="100" y="115" width="20" height="3" fill="white" opacity="0.4"/><rect x="170" y="70" width="60" height="60" fill="white" opacity="0.1"/><rect x="180" y="80" width="40" height="3" fill="white" opacity="0.5"/><rect x="180" y="90" width="35" height="3" fill="white" opacity="0.4"/><rect x="180" y="100" width="30" height="3" fill="white" opacity="0.5"/><rect x="180" y="110" width="40" height="3" fill="white" opacity="0.4"/><path d="M150 85 L150 105 M140 95 L160 95" stroke="white" stroke-width="4" opacity="0.7"/></svg>') center;
        background-size: cover;
    }

    .portfolio-content {
        padding: 1.5rem;
    }

    .portfolio-content h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
    }

    .portfolio-content p {
        color: var(--text-light);
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    .portfolio-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .portfolio-tag {
        background: var(--secondary-neon-green);
        color: var(--primary-dark-blue);
        padding: 0.2rem 0.6rem;
        border-radius: 12px;
        font-size: 0.8rem;
        font-weight: 500;
    }

    /* Testimonials Section */
    .testimonials {
        padding: 4rem 0;
        background: var(--surface);
    }

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

    .testimonial-card {
        background: var(--background);
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 4px 20px var(--shadow);
        transition: all 0.4s ease;
        border: 1px solid var(--border);
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px var(--shadow-hover);
    }

    .stars {
        color: var(--secondary-neon-green);
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .testimonial-text {
        color: var(--text-light);
        margin-bottom: 1.5rem;
        font-style: italic;
        line-height: 1.6;
    }

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

    .author-avatar {
        width: 50px;
        height: 50px;
        background: linear-gradient(45deg, var(--primary-dark-blue), var(--secondary-neon-green));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: white;
    }

    .author-info h4 {
        font-weight: 600;
        color: var(--text-dark);
    }

    .author-info p {
        color: var(--text-light);
        font-size: 0.9rem;
    }

    /* Stats Section */
    .stats {
        padding: 3rem 0;
        background: var(--background);
    }

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

    .stat-item h3 {
        font-size: 3rem;
        font-weight: 800;
        background: linear-gradient(45deg, var(--primary-dark-blue), var(--secondary-neon-green));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.5rem;
    }

    .stat-item p {
        color: var(--text-light);
        font-weight: 500;
    }

    /* Contact Section */
    .contact {
        padding: 4rem 0;
        background: var(--surface);
    }

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

    .contact-form {
        background: var(--background);
        padding: 2rem;
        border-radius: 20px;
        box-shadow: 0 4px 20px var(--shadow);
        border: 1px solid var(--border);
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: var(--text-dark);
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 1rem;
        border: 2px solid var(--border);
        border-radius: 10px;
        font-family: inherit;
        transition: border-color 0.3s ease;
        background: var(--background);
        color: var(--text-dark);
    }

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

    .contact-info h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .contact-info p {
        color: var(--text-light);
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: var(--background);
        border-radius: 15px;
        box-shadow: 0 4px 15px var(--shadow);
        transition: all 0.3s ease;
        border: 1px solid var(--border);
    }

    .contact-item:hover {
        transform: translateX(10px);
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(45deg, var(--primary-dark-blue), var(--secondary-neon-green));
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }

    /* Footer */
    footer {
        background-color: #18144c;
        color: white;
        padding: 3rem 0 1rem;
    }

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

    .footer-section h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: white;
    }

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

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

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

    .footer-section ul li a:hover {
        color: var(--secondary-neon-green);
    }

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

    .social-links a {
        width: 40px;
        height: 40px;
        background: var(--secondary-neon-green);
        color: var(--primary-dark-blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: transform 0.3s ease;
        font-weight: 600;
    }

    .social-links a:hover {
        transform: translateY(-3px);
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--white);
            flex-direction: column;
            padding: 1rem;
            box-shadow: 0 5px 15px var(--shadow);
            border-top: 1px solid #e5e7eb;
        }

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

        .mobile-menu-toggle {
            display: block;
        }

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

        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }

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

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

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

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

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

        .hero h1 {
            font-size: 2rem;
        }

        .service-card,
        .portfolio-card,
        .testimonial-card {
            padding: 1.5rem;
        }

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

    /* About Page Specific Styles - Building on Main Theme */
    .about-hero {
        background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--secondary-neon-green) 100%);
        color: white;
        padding: 8rem 0 6rem;
        position: relative;
        overflow: hidden;
    }

    .about-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><circle cx="200" cy="100" r="50" fill="white" opacity="0.05"/><circle cx="1000" cy="700" r="80" fill="white" opacity="0.05"/><rect x="500" y="300" width="200" height="10" fill="white" opacity="0.08" rx="5"/><rect x="300" y="500" width="150" height="8" fill="white" opacity="0.08" rx="4"/></svg>');
        background-size: cover;
    }

    .about-hero h1 {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        color: white;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .about-hero p {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.9);
        max-width: 600px;
        line-height: 1.7;
    }

    .about-image {
        position: relative;
        height: 400px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(8px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .about-image .hero-icon {
        font-size: 6rem;
        color: white;
        opacity: 0.9;
        z-index: 2;
    }

    /* Mission & Vision Section */
    .mission-vision {
        padding: 6rem 0;
        background: var(--surface);
        position: relative;
    }

    .mission-vision::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 1200" opacity="0.03"><path d="M600,1200C268.65,1200,0,931.35,0,600S268.65,0,600,0s600,268.65,600,600S931.35,1200,600,1200z M600,150C361.43,150,150,361.43,150,600s211.43,450,450,450s450-211.43,450-450S838.57,150,600,150z"/></svg>');
        background-size: 80%;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.1;
    }

    .mission-vision-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 3rem;
        position: relative;
        z-index: 1;
    }

    .mission-card,
    .vision-card {
        background: var(--background);
        padding: 3rem 2.5rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px var(--shadow);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
        border: 1px solid var(--border);
    }

    .mission-card:hover,
    .vision-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px var(--shadow-hover);
    }

    .mission-card::after,
    .vision-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(to bottom, var(--primary-dark-blue), var(--secondary-neon-green));
    }

    .mission-card .card-icon,
    .vision-card .card-icon {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
        color: var(--secondary-neon-green);
        transition: transform 0.3s ease;
    }

    .mission-card:hover .card-icon,
    .vision-card:hover .card-icon {
        transform: scale(1.1);
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
        color: var(--text-dark);
        position: relative;
    }

    .mission-card p,
    .vision-card p {
        color: var(--text-light);
        line-height: 1.8;
        font-size: 1.05rem;
    }

    /* Company Story Section */
    .company-story {
        padding: 6rem 0;
        background: var(--background);
        position: relative;
    }

    .company-story::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 30%;
        background: linear-gradient(to top, var(--surface), transparent);
        z-index: 0;
    }

    .story-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .story-image {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        transition: all 0.4s ease;
        border: 1px solid var(--border);
    }

    .story-image:hover {
        transform: scale(1.02) rotate(1deg);
    }

    .story-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

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

    .story-timeline {
        position: relative;
        padding-left: 3rem;
    }

    .story-timeline::before {
        content: '';
        position: absolute;
        top: 10px;
        left: 1rem;
        width: 3px;
        height: calc(100% - 20px);
        background: linear-gradient(to bottom, var(--primary-dark-blue), var(--secondary-neon-green));
        border-radius: 10px;
    }

    .timeline-item {
        position: relative;
        margin-bottom: 3rem;
        padding-left: 2rem;
    }

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

    .timeline-item::before {
        content: '';
        position: absolute;
        left: -0.5rem;
        top: 5px;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--secondary-neon-green);
        border: 4px solid var(--primary-dark-blue);
        box-shadow: 0 0 0 6px rgba(59, 249, 97, 0.2);
        z-index: 1;
    }

    .timeline-year {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--secondary-neon-green);
        margin-bottom: 0.8rem;
        display: inline-block;
        background: rgba(59, 249, 97, 0.1);
        padding: 0.3rem 1rem;
        border-radius: 20px;
    }

    .timeline-content h4 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .timeline-content p {
        color: var(--text-light);
        line-height: 1.8;
        font-size: 1.05rem;
    }

    /* Values Section */
    .values {
        padding: 6rem 0;
        background: var(--surface);
        position: relative;
    }

    .values::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><circle cx="50" cy="50" r="40" stroke="black" stroke-width="2" fill="none"/></svg>');
        background-size: 200px;
        opacity: 0.1;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 3rem;
        position: relative;
        z-index: 1;
    }

    .value-card {
        background: var(--background);
        padding: 2.5rem 2rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px var(--shadow);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        text-align: center;
        border: 1px solid var(--border);
    }

    .value-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 40px var(--shadow-hover);
    }

    .value-icon {
        font-size: 2.8rem;
        color: var(--secondary-neon-green);
        margin-bottom: 1.5rem;
        display: inline-flex;
        width: 80px;
        height: 80px;
        background: rgba(59, 249, 97, 0.1);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .value-card:hover .value-icon {
        background: rgba(59, 249, 97, 0.2);
        transform: rotate(15deg) scale(1.1);
    }

    .value-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
        color: var(--text-dark);
    }

    .value-card p {
        color: var(--text-light);
        line-height: 1.8;
        font-size: 1.05rem;
    }

    /* Team Section */
    .team {
        padding: 6rem 0;
        background: var(--background);
    }

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

    .team-member {
        background: var(--background);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px var(--shadow);
        transition: all 0.4s ease;
        border: 1px solid var(--border);
        position: relative;
    }

    .team-member:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px var(--shadow-hover);
    }

    .member-image {
        height: 250px;
        background: linear-gradient(45deg, var(--primary-dark-blue), var(--secondary-neon-green));
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .member-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><circle cx="50" cy="50" r="40" stroke="white" stroke-width="2" fill="none"/></svg>');
        background-size: 100px;
    }

    .member-avatar {
        width: 150px;
        height: 150px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3.5rem;
        color: white;
        border: 4px solid white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

    .team-member:hover .member-avatar {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

    .member-info {
        padding: 2rem;
        text-align: center;
    }

    .member-info h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
    }

    .member-role {
        color: var(--secondary-neon-green);
        font-weight: 600;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        display: block;
    }

    .member-bio {
        color: var(--text-light);
        margin-bottom: 1.5rem;
        line-height: 1.7;
        font-size: 0.95rem;
    }

    .member-skills {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .skill-tag {
        background: rgba(59, 249, 97, 0.1);
        color: var(--secondary-neon-green);
        padding: 0.4rem 1rem;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 500;
        border: 1px solid rgba(59, 249, 97, 0.3);
        transition: all 0.3s ease;
    }

    .skill-tag:hover {
        background: rgba(59, 249, 97, 0.2);
        transform: translateY(-2px);
    }

    /* Testimonials Section */
    .testimonials {
        padding: 6rem 0;
        background: var(--surface);
        position: relative;
    }

    .testimonials::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path d="M20,50 Q50,20 80,50 T20,50" fill="none" stroke="black" stroke-width="2"/></svg>');
        background-size: 200px;
        opacity: 0.1;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 3rem;
        position: relative;
        z-index: 1;
    }

    .testimonial-card {
        background: var(--background);
        border-radius: 15px;
        padding: 2.5rem 2rem;
        box-shadow: 0 10px 30px var(--shadow);
        transition: all 0.4s ease;
        position: relative;
        border: 1px solid var(--border);
    }

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px var(--shadow-hover);
    }

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 1rem;
        left: 1.5rem;
        font-size: 6rem;
        color: rgba(59, 249, 97, 0.1);
        font-family: serif;
        line-height: 1;
        z-index: 0;
    }

    .stars {
        color: var(--secondary-neon-green);
        margin-bottom: 1.5rem;
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .testimonial-text {
        position: relative;
        z-index: 1;
        color: var(--text-light);
        margin-bottom: 2rem;
        font-style: italic;
        line-height: 1.8;
        font-size: 1.05rem;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    .author-avatar {
        width: 60px;
        height: 60px;
        background: linear-gradient(45deg, var(--primary-dark-blue), var(--secondary-neon-green));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: white;
        flex-shrink: 0;
    }

    .author-info h4 {
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 0.3rem;
    }

    .author-info p {
        color: var(--text-light);
        font-size: 0.9rem;
    }

    /* Stats Section */
    .stats {
        padding: 5rem 0;
        background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--secondary-neon-green) 100%);
        color: white;
        position: relative;
        overflow: hidden;
    }

    .stats::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="none" stroke="white" stroke-width="2"/></svg>');
        background-size: 100px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 3rem;
        position: relative;
        z-index: 1;
    }

    .stat-item {
        text-align: center;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.4s ease;
    }

    .stat-item:hover {
        transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .stat-item h3 {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
        color: white;
    }

    .stat-item p {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        font-size: 1.1rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 6rem 0;
        background: var(--surface);
        text-align: center;
        position: relative;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><polygon points="50,10 90,90 10,90" fill="none" stroke="black" stroke-width="2"/></svg>');
        background-size: 200px;
        opacity: 0.1;
    }

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

    .cta-content h2 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
    }

    .cta-content p {
        color: var(--text-light);
        margin-bottom: 2.5rem;
        font-size: 1.15rem;
        line-height: 1.8;
    }

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

    /* Responsive Adjustments */
    @media (max-width: 1200px) {
        .story-content {
            gap: 3rem;
        }
    }

    @media (max-width: 992px) {
        .story-content {
            grid-template-columns: 1fr;
            gap: 4rem;
        }

        .story-image {
            order: -1;
            max-width: 600px;
            margin: 0 auto;
        }

        .about-hero h1 {
            font-size: 3rem;
        }

        .mission-vision-grid {
            grid-template-columns: 1fr;
        }

        .mission-card,
        .vision-card {
            padding: 2.5rem 2rem;
        }
    }

    @media (max-width: 768px) {
        .about-hero {
            padding: 6rem 0 4rem;
        }

        .about-hero h1 {
            font-size: 2.5rem;
        }

        .about-hero .hero-content {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .about-hero p {
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        .hero-buttons {
            justify-content: center;
        }

        .about-image {
            margin-top: 3rem;
            height: 300px;
        }

        .values-grid,
        .team-grid,
        .testimonials-grid {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        .stat-item h3 {
            font-size: 3rem;
        }
    }

    @media (max-width: 576px) {
        .about-hero h1 {
            font-size: 2.2rem;
        }

        .about-hero p {
            font-size: 1.1rem;
        }

        .timeline-content h4 {
            font-size: 1.3rem;
        }

        .value-card,
        .team-member,
        .testimonial-card {
            padding: 2rem 1.5rem;
        }

        .cta-content h2 {
            font-size: 2.2rem;
        }

        .cta-content p {
            font-size: 1rem;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }

        .stat-item {
            padding: 1.5rem;
        }

        .stat-item h3 {
            font-size: 2.5rem;
        }
    }