* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        background: #000;
        color: #fff;
        overflow-x: hidden;
    }
    
    .w-full {
        width: 100%;
    }
    
    .h-auto {
        height: auto;
    }
    
    .object-cover {
        object-fit: cover;
    }
    
    .relative {
        position: relative;
    }
    
    .z-10 {
        z-index: 10;
    }
    
    .mix-blend-lighten {
        mix-blend-mode: lighten;
    }
    /* Starfield Background */
    
    .starfield {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }
    
    .star {
        position: absolute;
        width: 2px;
        height: 2px;
        background: #fff;
        border-radius: 50%;
        animation: twinkle 3s infinite;
    }
    
    @keyframes twinkle {
        0%,
        100% {
            opacity: 0.3;
        }
        50% {
            opacity: 1;
        }
    }
    /* Navigation */
    
    nav {
        position: fixed;
        top: 0;
        width: 100%;
        padding: 20px 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .logo-icon {
        width: 80px;
        height: 80px;
        overflow: hidden; 
        display: block;
       
    }
    .logo-icon img {
        width: 120%;
        height: 120%;
        object-fit: cover;
        transform: scale(1.1); /* trims internal padding */
        display: block;
    }

    .logo-text h1 {
        font-size: 20px;
        font-weight: 600;
    }
    
    .logo-text p {
        font-size: 12px;
        color: #999;
    }
    
    .nav-links {
        display: flex;
        gap: 40px;
        list-style: none;
    }
    
    .nav-links a {
        color: #999;
        text-decoration: none;
        font-size: 15px;
        transition: color 0.3s;
    }
    
    .nav-links a:hover {
        color: #fff;
    }
    
    .get-in-touch-btn {
        padding: 10px 24px;
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        border: none;
        border-radius: 25px;
        color: #fff;
        cursor: pointer;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    /* Hero Section */
    
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 120px 80px;
        position: relative;
    }
    
    .hero-content {
        flex: 1;
        max-width: 600px;
    }
    
    .badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: rgba(99, 102, 241, 0.1);
        border: 1px solid rgba(99, 102, 241, 0.3);
        border-radius: 20px;
        font-size: 14px;
        color: #8b5cf6;
        margin-bottom: 30px;
    }
    
    .hero h1 {
        font-size: 64px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero h1 .gradient-text {
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero p {
        font-size: 18px;
        color: #999;
        line-height: 1.6;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        display: flex;
        gap: 20px;
    }
    
    .btn-primary {
        padding: 14px 32px;
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        border: none;
        border-radius: 25px;
        color: #fff;
        cursor: pointer;
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .btn-secondary {
        padding: 14px 32px;
        background: transparent;
        border: 1px solid #333;
        border-radius: 25px;
        color: #fff;
        cursor: pointer;
        font-size: 16px;
    }
    
    .hero-visual {
        flex: 1;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .mockup-card {
        width: 500px;
        height: 280px;
        background: linear-gradient(135deg, #1a1a2e, #16213e);
        border-radius: 20px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
    }
    
    .stat-badge {
        position: absolute;
        padding: 12px 20px;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 1px solid rgba(99, 102, 241, 0.3);
        display: flex;
        align-items: center;
        gap: 12px;
    }
    /* Stat Badges */
    
    .stat-badge {
        position: absolute;
        padding: 16px 20px;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 18px;
        border: 1px solid rgba(139, 92, 246, 0.3);
        display: flex;
        align-items: center;
        gap: 14px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        z-index: 20;
    }
    
    .stat-badge.success {
        top: -10px;
        right: -60px;
        background: rgba(16, 185, 129, 0.15);
        border: 1px solid rgba(16, 185, 129, 0.3);
        backdrop-filter: blur(20px);
        animation: floatBadge1 5s ease-in-out infinite, fadeIn 0.8s ease 0.5s backwards;
    }
    
    .stat-badge.users {
        bottom: 30px;
        left: -40px;
        background: rgba(99, 102, 241, 0.15);
        border: 1px solid rgba(99, 102, 241, 0.3);
        backdrop-filter: blur(20px);
        transform: rotate(-6deg);
        animation: floatBadge2 4.5s ease-in-out infinite, fadeIn 0.8s ease 0.7s backwards;
    }
    
    @keyframes floatBadge1 {
        0%,
        100% {
            transform: translateY(0px) translateX(0px);
        }
        50% {
            transform: translateY(-15px) translateX(5px);
        }
    }
    
    @keyframes floatBadge2 {
        0%,
        100% {
            transform: rotate(-6deg) translateY(0px) translateX(0px);
        }
        50% {
            transform: rotate(-6deg) translateY(-18px) translateX(-5px);
        }
    }
    
    .stat-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        flex-shrink: 0;
    }
    
    .success-icon {
        background: linear-gradient(135deg, #10b981, #059669);
        box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
    }
    
    .users-icon {
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
    }
    
    .stat-badge div:last-child div:first-child {
        font-size: 11px;
        color: #9ca3af;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 2px;
    }
    
    .stat-badge div:last-child div:last-child {
        font-size: 20px;
        font-weight: 700;
        color: #fff;
    }
    
    .stats {
        display: flex;
        gap: 60px;
        margin-top: 60px;
    }
    
    .stat h3 {
        font-size: 42px;
        margin-bottom: 5px;
    }
    
    .stat p {
        color: #666;
        font-size: 14px;
    }
    /* Scroll Down Button */
    
    .scroll-down {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        z-index: 10;
    }
    
    .scroll-down-text {
        font-size: 12px;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    .scroll-icon {
        width: 30px;
        height: 50px;
        border: 2px solid rgba(99, 102, 241, 0.5);
        border-radius: 20px;
        position: relative;
        display: flex;
        justify-content: center;
        padding-top: 8px;
    }
    
    .scroll-icon::before {
        content: '';
        width: 4px;
        height: 8px;
        background: #6366f1;
        border-radius: 2px;
        animation: scroll 2s infinite;
    }
    
    @keyframes scroll {
        0% {
            transform: translateY(0);
            opacity: 1;
        }
        50% {
            transform: translateY(12px);
            opacity: 0.5;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    .scroll-arrow {
        width: 20px;
        height: 20px;
        border-left: 2px solid #6366f1;
        border-bottom: 2px solid #6366f1;
        transform: rotate(-45deg);
        animation: bounce 2s infinite;
    }
    
    @keyframes bounce {
        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0) rotate(-45deg);
        }
        40% {
            transform: translateY(-10px) rotate(-45deg);
        }
        60% {
            transform: translateY(-5px) rotate(-45deg);
        }
    }
    /* Trusted Companies Section */
    
    .trusted-section {
        padding: 60px 80px;
        text-align: center;
    }
    
    .trusted-section p {
        color: #666;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 40px;
    }
    
    .companies {
        display: flex;
        justify-content: center;
        gap: 80px;
        flex-wrap: wrap;
    }
    
    .company-name {
        font-size: 24px;
        color: #333;
        font-weight: 600;
    }
    
    .section {
        padding: 50px 60px;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .section-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: rgba(99, 102, 241, 0.1);
        border: 1px solid rgba(99, 102, 241, 0.3);
        border-radius: 20px;
        font-size: 14px;
        color: #8b5cf6;
        margin-bottom: 10px;
    }
    
    .section h2 {
        font-size: 48px;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        color: #999;
        font-size: 16px;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .service-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 40px;
        transition: all 0.3s;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        border-color: rgba(99, 102, 241, 0.3);
        box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        margin-bottom: 20px;
        position: relative;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    
    .service-icon::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 15px;
        background: inherit;
        filter: blur(20px);
        opacity: 0.6;
        z-index: -1;
    }
    
    .icon-blue {
        background: linear-gradient(135deg, #3b82f6, #06b6d4);
    }
    
    .icon-pink {
        background: linear-gradient(135deg, #ec4899, #d946ef);
    }
    
    .icon-orange {
        background: linear-gradient(135deg, #f97316, #ea580c);
    }
    
    .icon-green {
        background: linear-gradient(135deg, #10b981, #059669);
    }
    
    .service-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .service-card p {
        color: #999;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .service-features {
        list-style: none;
        margin-bottom: 20px;
    }
    
    .service-features li {
        color: #666;
        font-size: 14px;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .service-features li:before {
        content: "○";
        color: #6366f1;
    }
    
    .learn-more {
        color: #6366f1;
        text-decoration: none;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }
    /* Features Section */
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .feature-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 30px;
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .feature-card .service-icon {
        margin-bottom: 0;
    }
    
    .feature-info h4 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .feature-info p {
        color: #666;
        font-size: 14px;
    }
    /* Technology Section */
    
    .tech-section {
        background: rgba(255, 255, 255, 0.02);
        border-radius: 30px;
        padding: 80px;
        text-align: center;
    }
    
    .tech-tags {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 40px;
        overflow: hidden;
        position: relative;
    }
    
    .tech-marquee {
        display: flex;
        gap: 15px;
        animation: marquee 30s linear infinite;
    }
    
    .tech-marquee:hover {
        animation-play-state: paused;
    }
    
    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
    
    .tech-tag {
        padding: 12px 24px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 25px;
        font-size: 15px;
        transition: all 0.3s;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .tech-tag:hover {
        background: rgba(99, 102, 241, 0.1);
        border-color: rgba(99, 102, 241, 0.3);
    }
    /* Individual tech tag colors */
    
    .tech-tag.react {
        color: #61dafb;
    }
    
    .tech-tag.nodejs {
        color: #68a063;
    }
    
    .tech-tag.python {
        color: #3776ab;
    }
    
    .tech-tag.aws {
        color: #ff9900;
    }
    
    .tech-tag.docker {
        color: #2496ed;
    }
    
    .tech-tag.mongodb {
        color: #47a248;
    }
    
    .tech-tag.postgresql {
        color: #4169e1;
    }
    
    .tech-tag.graphql {
        color: #e10098;
    }
    
    .tech-tag.tailwind {
        color: #06b6d4;
    }
    
    .tech-tag.firebase {
        color: #ffca28;
    }
    /* Process Section */
    
    .process-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    
    .process-step {
        text-align: center;
        position: relative;
    }
    
    .process-number {
        font-size: 72px;
        color: rgba(255, 255, 255, 0.05);
        font-weight: 700;
        margin-bottom: -20px;
    }
    
    .process-step .service-icon {
        margin: 20px auto;
    }
    
    .process-step h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .process-step p {
        color: #666;
        font-size: 14px;
        line-height: 1.6;
    }
    /* Projects Section */
    
    .projects-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .project-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.3s;
    }
    
    .project-card:hover {
        transform: translateY(-10px);
        border-color: rgba(99, 102, 241, 0.3);
    }

    .project-image {
        width: 100%;
        height: 280px;
        background: linear-gradient(135deg, #1a1a2e, #16213e);
        position: relative;
        overflow: hidden;
    }

    .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;      /* 👈 KEY */
        object-position: center;
        display: block;
    }
    
    .project-stats {
        position: absolute;
        bottom: 15px;
        left: 15px;
        display: flex;
        gap: 15px;
    }
    
    .project-stat {
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        padding: 8px 15px;
        border-radius: 10px;
        font-size: 12px;
    }
    
    .project-stat span {
        display: block;
        color: #666;
        font-size: 10px;
    }
    
    .project-info {
        padding: 30px;
    }
    
    .project-info h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .project-info p {
        color: #999;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
        .project-tags {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        @media (max-width: 768px) {
            .project-tags {
                flex-wrap: nowrap;
                overflow-x: auto;
            }
        }
    
        .project-tag {
            display: inline-flex;          
            padding: 7px 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            font-size: 12px;
            white-space: nowrap;           /* prevents line break */
            width: fit-content;            /* ensures auto width */
        }

    /* Testimonials Section */
    
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .testimonial-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 40px;
    }
    
    .testimonial-card:hover {
        transform: translateY(-10px);
        border-color: rgba(99, 102, 241, 0.3);
    }
    
    .stars {
        color: #fbbf24;
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .testimonial-text {
        color: #ccc;
        font-style: italic;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
    }
    
    .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 30%;
        /* Move face slightly upward */
        display: block;
    }
    
    .author-info h4 {
        font-size: 16px;
        margin-bottom: 3px;
    }
    
    .author-info p {
        color: #666;
        font-size: 13px;
    }
    /* Team Section */
        /* GRID */
    .team-grid {
        display: flex;
        gap: 30px;
        overflow-x: auto;        /* 👈 allows horizontal scroll */
        padding-bottom: 20px;
        scroll-behavior: smooth;
    }

    /* hide scrollbar (optional, looks premium) */
    .team-grid::-webkit-scrollbar {
        height: 6px;
    }
    .team-grid::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.15);
        border-radius: 10px;
    }

    /* CARD */
    .team-card {
        min-width: 320px;   /* 👈 prevents shrinking */
        max-width: 320px;
        flex-shrink: 0;     /* 👈 keeps cards in one row */
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        transition: all 0.3s ease;
    }
    /* .team-card {
        width: 100%;
        max-width: 320px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        transition: all 0.3s ease;
    } */

    .team-card:hover {
        transform: translateY(-10px);
        border-color: rgba(99, 102, 241, 0.3);
    }

    /* AVATAR */
    .team-avatar {
        width: 120px;
        height: 120px;
        margin: 0 auto 20px;
        position: relative;
        border-radius: 50%;
    }

    .team-avatar::before {
        content: '';
        position: absolute;
        inset: -3px;
        border-radius: 50%;
        padding: 3px;
        background: linear-gradient(135deg, #3b82f6, #8b5cf6, #f97316);
        -webkit-mask: linear-gradient(#fff 0 0) content-box,
                    linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

    .avatar-inner {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        overflow: hidden;
        background: linear-gradient(135deg, #1a1a2e, #16213e);
    }

    .avatar-inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 25%;
        display: block;
    }

    /* TEXT */
    .team-card h3 {
        font-size: 20px;
        margin: 10px 0 4px;
    }

    .team-role {
        font-size: 14px;
        background: linear-gradient(135deg, #3b82f6, #8b5cf6, #f97316);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    
    .team-skills {
        color: #666;
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .team-desc {
        color: #999;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .team-social {
        display: flex;
        justify-content: center;
        gap: 15px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        transition: all 0.3s;
        cursor: pointer;
    }
    
    .social-icon:hover {
        background: rgba(99, 102, 241, 0.2);
    }
    /* FAQ Section */
    
    .faq-list {
        max-width: 900px;
        margin: 0 auto;
    }
    
    .faq-item {
        background: rgba(31, 41, 55, 0.4);
        border: 1px solid rgba(75, 85, 99, 0.3);
        border-radius: 16px;
        overflow: hidden;
        margin-top: 16px;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    .faq-item:hover {
        border-color: rgba(139, 92, 246, 0.5);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
    }
    
    .faq-item.active {
        background: rgba(31, 41, 55, 0.6);
        border-color: rgba(139, 92, 246, 0.6);
        box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
    }
    
    .faq-question {
        padding: 24px 28px;
        font-size: 18px;
        font-weight: 600;
        color: #ffffff;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        user-select: none;
        position: relative;
    }
    
    .faq-question::after {
        content: '+';
        font-size: 28px;
        color: #8b5cf6;
        transition: transform 0.3s ease;
        font-weight: 300;
        flex-shrink: 0;
        margin-left: 20px;
    }
    
    .faq-item.active .faq-question::after {
        content: '−';
        transform: rotate(180deg);
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0 28px;
    }
    
    .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 0 28px 24px 28px;
    }
    
    .faq-answer p {
        color: #d1d5db;
        font-size: 16px;
        line-height: 1.7;
        margin: 0;
    }
    /* Responsive */
    
    @media (max-width: 768px) {
        .section-header h2 {
            font-size: 36px;
        }
        .section-subtitle {
            font-size: 16px;
        }
        .faq-question {
            padding: 20px;
            font-size: 16px;
        }
        .faq-answer {
            padding: 0 20px;
        }
        .faq-item.active .faq-answer {
            padding: 0 20px 20px 20px;
        }
        .faq-question::after {
            font-size: 24px;
        }
    }
    /* Animation for new items */
    
    .faq-item {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }
    
    .faq-item:nth-child(1) {
        animation-delay: 0.1s;
    }
    
    .faq-item:nth-child(2) {
        animation-delay: 0.2s;
    }
    
    .faq-item:nth-child(3) {
        animation-delay: 0.3s;
    }
    
    .faq-item:nth-child(4) {
        animation-delay: 0.4s;
    }
    
    .faq-item:nth-child(5) {
        animation-delay: 0.5s;
    }
    
    .faq-item:nth-child(6) {
        animation-delay: 0.6s;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /* .faq-list {
        max-width: 900px;
        margin: 0 auto;
    }
    
    .faq-item {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        padding: 25px 30px;
        margin-bottom: 15px;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .faq-item:hover {
        border-color: rgba(99, 102, 241, 0.3);
    }
    
    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
    }
    
    .faq-question::after {
        content: '+';
        font-size: 24px;
        color: #6366f1;
    } */
    /* CTA Section */
    
    .cta-section {
        padding: 100px 80px;
        display: flex;
        justify-content: center;
    }
    
    .cta-card {
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        border-radius: 30px;
        padding: 80px;
        text-align: center;
        max-width: 900px;
        width: 100%;
    }
    
    .cta-icon {
        font-size: 48px;
        margin-bottom: 20px;
    }
    
    .cta-card h2 {
        font-size: 42px;
        margin-bottom: 20px;
    }
    
    .cta-card p {
        font-size: 16px;
        margin-bottom: 40px;
        opacity: 0.9;
    }
    
    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    
    .btn-white {
        padding: 14px 32px;
        background: #fff;
        border: none;
        border-radius: 25px;
        color: #6366f1;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
    }
    
    .btn-outline {
        padding: 14px 32px;
        background: transparent;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 25px;
        color: #fff;
        cursor: pointer;
        font-size: 16px;
    }
    /* Footer */
    
    footer {
        padding: 60px 80px 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 60px;
        margin-bottom: 40px;
    }
    
    .footer-about p {
        color: #666;
        line-height: 1.6;
        margin: 20px 0;
    }
    
    .footer-social {
        display: flex;
        gap: 15px;
    }
    
    .footer-links h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .footer-links ul {
        list-style: none;
    }
    
    .footer-links li {
        margin-bottom: 12px;
    }
    
    .footer-links a {
        color: #666;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s;
    }
    
    .footer-links a:hover {
        color: #fff;
    }
    
    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #666;
        font-size: 14px;
    }
    
    .footer-bottom {
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .footer-bottom p {
        color: #666;
        font-size: 14px;
    }
    
    .footer-legal {
        display: flex;
        gap: 30px;
    }
    
    .footer-legal a {
        color: #666;
        text-decoration: none;
        font-size: 14px;
    }
    
    @media (max-width: 768px) {
        nav,
        .section,
        .cta-section,
        footer {
            padding-left: 20px;
            padding-right: 20px;
        }
        .hero {
            flex-direction: column;
            padding: 100px 20px;
        }
        .services-grid,
        .process-grid,
        .projects-grid,
        .testimonials-grid,
        .team-grid {
            grid-template-columns: 1fr;
        }
        .features-grid {
            grid-template-columns: 1fr;
        }
        .footer-content {
            grid-template-columns: 1fr;
        }
    }

    /* =====================================================
   FINAL RESPONSIVE PATCH
   (NO LOOK & FEEL CHANGE)
===================================================== */

/* ---------- TABLET (≤1024px) ---------- */
@media (max-width: 1024px) {

    nav {
        padding: 20px 40px;
    }

    .hero {
        padding: 120px 40px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .mockup-card {
        width: 460px;
        height: 260px;
    }

    .stats {
        gap: 40px;
        flex-wrap: wrap;
    }

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

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

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

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

/* ---------- MOBILE (≤768px) ---------- */
@media (max-width: 768px) {

    /* NAV */
    .nav-links {
        display: none;
    }

    .logo-icon {
        width: 60px;
        height: 60px;
    }

    /* HERO */
    .hero {
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 40px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-visual {
        margin-top: 60px;
    }

    .mockup-card {
        width: 100%;
        max-width: 420px;
        height: 240px;
    }

    /* SECTIONS */
    .section h2 {
        font-size: 36px;
    }

    .services-grid,
    .features-grid,
    .process-grid,
    .projects-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta-card {
        padding: 50px 30px;
    }

    .cta-card h2 {
        font-size: 32px;
    }
}

/* ---------- SMALL MOBILE (≤480px) ---------- */
@media (max-width: 480px) {

    .hero h1 {
        font-size: 34px;
    }

    .stat h3 {
        font-size: 30px;
    }

    .service-card,
    .testimonial-card,
    .project-info {
        padding: 30px 20px;
    }

    .team-card {
        min-width: 280px;
        max-width: 280px;
    }

    .cta-card h2 {
        font-size: 28px;
    }

    .cta-card p {
        font-size: 14px;
    }
}
/* CTA Buttons – Responsive sizing only */

/* Default (Desktop & Web) – NO CHANGE */
.cta-buttons .btn-white,
.cta-buttons .btn-outline {
    padding: 14px 32px;
    font-size: 16px;
}

/* Tablet */
@media (max-width: 1024px) {
    .cta-buttons .btn-white,
    .cta-buttons .btn-outline {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn-white,
    .cta-buttons .btn-outline {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 280px; /* keeps premium look */
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .cta-buttons .btn-white,
    .cta-buttons .btn-outline {
        padding: 10px 22px;
        font-size: 13px;
        max-width: 240px;
    }
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* LEFT GROUP */
.nav-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* TOGGLE */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* MOBILE */
@media (max-width: 768px) {

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 30px 0;
        display: none;
    }

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

    .nav-links a {
        font-size: 18px;
    }
}
/* Get in Touch – Mobile Size */
@media (max-width: 768px) {
    .get-in-touch-btn {
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 6px;
        white-space: nowrap;
    }
}
/* Logo – readable mobile size */
    @media (max-width: 768px) {
    .logo-icon {
            width: 60px;
            height: 60px;
            display: block;      /* Removes inline baseline gap */
            margin: 0;           /* Eliminates external spacing */
            padding: 0;          /* Removes internal padding */
            line-height: 0;      /* Prevents line-height whitespace */
            object-fit: cover;   /* Crops/fills exactly, no overflow gaps (ideal for logos/SVGs) */
            font-size: 0;        /* Extra safeguard for any text-related space */
        }
    }


    .logo-text h1 {
        font-size: 18px;  /* clearly readable */
        line-height: 1.2;
    }

    .logo-text p {
        font-size: 12px;
        margin-top: 2px;
    }

