* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      :root {
        --mint: #3f37c9;
        --cream: #e9ecef;
        --dark: #1a1a1a;
        --light: #ffffff;
        --mint-dark: #560bad;
        --mint-light: #7c3aed;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        line-height: 1.6;
        color: var(--dark);
        overflow-x: hidden;
        background: var(--cream);
      }

      /* All headings use Poppins with bold weight */
      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
      }
      /* Glassmorphism utility */
      .glass {
        background: rgba(233, 236, 239, 0.7);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(63, 55, 201, 0.2);
      }

      .glass-dark {
        background: rgba(26, 26, 26, 0.7);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(63, 55, 201, 0.2);
      }

      /* Navigation */
      nav {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        padding: 1rem 5%;
        transition: all 0.3s ease;
        background: rgba(233, 236, 239, 0.15);
        backdrop-filter: blur(20px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        border-bottom: 2px solid rgba(63, 55, 201, 0.3);
      }

      nav.scrolled {
        background: rgba(233, 236, 239, 0.25);
        backdrop-filter: blur(25px);
        box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
        border-bottom: 2px solid rgba(63, 55, 201, 0.5);
      }

      .nav-container {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo-container {
        display: flex;
        align-items: center;
        gap: 1rem;
      }

      .logo-image {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 2px solid var(--mint);
      }

      .logo {
        font-family: "Poppins", sans-serif;
        font-size: 2rem;
        font-weight: 800;
        background: linear-gradient(
          135deg,
          var(--mint) 0%,
          var(--mint-light) 100%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: 1px;
      }

      @keyframes logoFloat {
        0%,
        100% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-5px);
        }
      }

      .nav-links {
        display: flex;
        gap: 3rem;
        list-style: none;
      }

      .nav-links a {
        text-decoration: none;
        color: black;
        font-size: 1.1rem;
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        transition: all 0.3s ease;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }

      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 0;
        height: 3px;
        background: linear-gradient(
          90deg,
          var(--mint) 0%,
          var(--mint-light) 100%
        );
        transition: width 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      }

      .nav-links a:hover::after {
        width: 100%;
      }

      .nav-links a:hover {
        transform: translateY(-2px);
        color: var(--mint);
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      }

      .nav-cta {
        padding: 0.8rem 1.8rem;
        background: linear-gradient(
          135deg,
          var(--mint) 0%,
          var(--mint-dark) 100%
        );
        color: white;
        border: 2px solid var(--mint);
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.95rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      /* Hide mobile menu Get Started button on desktop */
      .nav-links .nav-cta {
        display: none;
      }

      @keyframes pulse {
        0%,
        100% {
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }
        50% {
          box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
        }
      }

      .nav-cta:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
        background: white;
        color: var(--dark);
      }

      /* Hero Section */
      #hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        background: linear-gradient(
          135deg,
          var(--peach) 0%,
          #ffe5d9 50%,
          var(--peach) 100%
        );
        padding-top: 80px; /* Prevent navbar overlap */
      }

      .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
      }

      .tech-float-icon {
        position: absolute;
        font-size: 2.5rem;
        opacity: 0.35;
        animation: techFloat 20s infinite;
        pointer-events: none;
        filter: grayscale(0.1);
        transition: all 0.3s ease;
      }

      .tech-float-icon:hover {
        opacity: 0.6;
        transform: scale(1.2);
      }

      @keyframes techFloat {
        0%,
        100% {
          transform: translateY(0) translateX(0) rotate(0deg);
        }
        25% {
          transform: translateY(-100px) translateX(50px) rotate(90deg);
        }
        50% {
          transform: translateY(-200px) translateX(-50px) rotate(180deg);
        }
        75% {
          transform: translateY(-100px) translateX(100px) rotate(270deg);
        }
      }

      .hero-content {
        position: relative;
        z-index: 1;
        text-align: center;
        max-width: 1200px;
        padding: 2rem;
      }

      .hero-title {
        font-family: "Poppins", sans-serif;
        font-size: clamp(3rem, 8vw, 6rem);
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        background: linear-gradient(
          135deg,
          var(--dark) 0%,
          var(--mint-dark) 100%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: fadeInUp 1s ease backwards;
      }

      .hero-subtitle {
        font-family: "Poppins", sans-serif;
        font-size: clamp(1.2rem, 3vw, 1.5rem);
        font-weight: 400;
        margin-bottom: 3rem;
        opacity: 0.9;
        color: var(--dark);
        animation: fadeInUp 1s ease 0.2s backwards;
      }

      .hero-ctas {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
        animation: fadeInUp 1s ease 0.4s backwards;
      }

      .btn-primary {
        padding: 1.2rem 3rem;
        background: linear-gradient(
          135deg,
          var(--mint) 0%,
          var(--mint-dark) 100%
        );
        color: white;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
      }

      .cta-input {
        flex: 1;
        min-width: 300px;
        padding: 1.2rem 2rem;
        border: 2px solid white;
        border-radius: 50px;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.2);
        color: white;
        transition: all 0.3s ease;
        text-align: center;
      }

      .cta-input::placeholder {
        color: rgba(255, 255, 255, 0.8);
      }

      .cta-input:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.02);
      }

      .cta-btn {
        padding: 1.2rem 3rem;
        background: var(--dark);
        color: white;
        border: 2px solid var(--dark);
        border-radius: 50px;
        font-weight: 700;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-align: center;
      }

      .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
      }

      .btn-secondary {
        padding: 1.2rem 3rem;
        background: transparent;
        color: var(--dark);
        border: 2px solid var(--mint);
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
      }

      .btn-secondary:hover {
        background: var(--mint);
        color: white;
        transform: translateY(-3px);
      }

      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .hero-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        margin-top: 5rem;
        animation: fadeInUp 1s ease 0.6s backwards;
      }

      .stat-card {
        background: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.95) 0%,
          rgba(63, 55, 201, 0.3) 100%
        );
        backdrop-filter: blur(15px);
        padding: 2rem;
        border-radius: 20px;
        border: 2px solid rgba(63, 55, 201, 0.5);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        animation: statFloat 3s ease-in-out infinite;
      }

      @keyframes statFloat {
        0%,
        100% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-10px);
        }
      }

      .stat-card:nth-child(1) {
        animation-delay: 0s;
      }
      .stat-card:nth-child(2) {
        animation-delay: 0.2s;
      }
      .stat-card:nth-child(3) {
        animation-delay: 0.4s;
      }
      .stat-card:nth-child(4) {
        animation-delay: 0.6s;
      }

      .stat-card:hover {
        transform: translateY(-15px) scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        border-color: var(--mint);
        animation: none;
      }

      .stat-number {
        font-size: 3rem;
        font-weight: 800;
        background: linear-gradient(
          135deg,
          var(--mint) 0%,
          var(--mint-dark) 100%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: countUp 2s ease-out;
      }

      @keyframes countUp {
        from {
          opacity: 0;
          transform: scale(0.5);
        }
        to {
          opacity: 1;
          transform: scale(1);
        }
      }

      .stat-label {
        font-size: 1rem;
        color: var(--dark);
        font-weight: 600;
        opacity: 0.8;
        margin-top: 0.5rem;
      }

      /* Section Styles */
      section {
        padding: 6rem 5%;
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
      }

      section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.03;
        pointer-events: none;
        z-index: 0;
      }

      section > * {
        position: relative;
        z-index: 1;
      }

      .section-header {
        text-align: center;
        margin-bottom: 4rem;
      }

      .section-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 700;
        margin-bottom: 1rem;
        background: linear-gradient(
          135deg,
          var(--dark) 0%,
          var(--mint-dark) 100%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .section-subtitle {
        font-size: 1.2rem;
        color: var(--dark);
        opacity: 0.7;
        max-width: 600px;
        margin: 0 auto;
      }

      /* Services Section */
      #services {
        background: linear-gradient(
          135deg,
          #f8f9fa 0%,
          var(--cream) 50%,
          #f8f9fa 100%
        );
        position: relative;
        overflow: hidden;
      }

      #services::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image:
          radial-gradient(
            circle at 20% 30%,
            rgba(63, 55, 201, 0.05) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 80% 70%,
            rgba(86, 11, 173, 0.05) 0%,
            transparent 50%
          );
        pointer-events: none;
      }

      .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
      }

      .service-card {
        background: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.9) 0%,
          rgba(255, 255, 255, 0.7) 100%
        );
        backdrop-filter: blur(10px);
        padding: 3rem 2rem;
        border-radius: 24px;
        border: 2px solid rgba(63, 55, 201, 0.4);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }

      .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          135deg,
          var(--mint) 0%,
          var(--mint-dark) 100%
        );
        opacity: 0;
        transition: all 0.5s ease;
        z-index: -1;
      }

      .service-card::after {
        content: "";
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(
          45deg,
          transparent,
          rgba(255, 255, 255, 0.3),
          transparent
        );
        transform: rotate(45deg);
        transition: all 0.6s ease;
      }

      .service-card:hover::before {
        opacity: 1;
        left: 0;
      }

      .service-card:hover::after {
        animation: shimmer 1.5s infinite;
      }

      @keyframes shimmer {
        0% {
          transform: translateX(-100%) translateY(-100%) rotate(45deg);
        }
        100% {
          transform: translateX(100%) translateY(100%) rotate(45deg);
        }
      }

      .service-card:hover {
        transform: translateY(-20px) scale(1.03) rotateX(5deg);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
        color: white;
        border-color: var(--mint-light);
      }

      .service-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        display: inline-block;
      }

      .service-card:hover .service-icon {
        transform: scale(1.3) rotate(360deg);
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
      }

      .service-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        transition: all 0.3s ease;
      }

      .service-description {
        opacity: 0.8;
        line-height: 1.6;
        transition: all 0.3s ease;
      }
      .service-card:hover .service-description {
        opacity: 1;
      }

      /* Tech Stack Section */
      #tech-stack {
        background: linear-gradient(135deg, var(--dark) 0%, #2d2d2d 100%);
        color: white;
        margin: 4rem auto;
        padding: 6rem 5%;
        border-radius: 40px;
        max-width: 1400px;
      }

      #tech-stack .section-header {
        text-align: center;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
      }

      .bento-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-top: 3rem;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
      }

      .bento-item {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        padding: 2.5rem;
        border-radius: 20px;
        border: 2px solid rgba(63, 55, 201, 0.3);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .bento-item::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          var(--mint) 0%,
          var(--mint-dark) 100%
        );
        opacity: 0;
        transition: opacity 0.4s ease;
      }

      .bento-item:hover {
        background: rgba(63, 55, 201, 0.15);
        transform: translateY(-10px) scale(1.05);
        border-color: var(--mint);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
      }

      .bento-item:hover::before {
        opacity: 0.1;
      }

      .tech-icon {
        font-size: 3.5rem;
        margin-bottom: 1rem;
        transition: all 0.4s ease;
        display: inline-block;
      }

      .bento-item:hover .tech-icon {
        transform: scale(1.2) rotate(5deg);
        filter: drop-shadow(0 0 15px rgba(63, 55, 201, 0.8));
      }

      .tech-name {
        font-size: 1.2rem;
        font-weight: 600;
        position: relative;
        z-index: 1;
      }

      /* Projects Showcase */
      #projects {
        background: linear-gradient(to bottom, var(--cream) 0%, #f0f3f7 100%);
        position: relative;
      }

      #projects::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image:
          linear-gradient(45deg, rgba(63, 55, 201, 0.02) 25%, transparent 25%),
          linear-gradient(
            -45deg,
            rgba(63, 55, 201, 0.02) 25%,
            transparent 25%
          ),
          linear-gradient(45deg, transparent 75%, rgba(63, 55, 201, 0.02) 75%),
          linear-gradient(-45deg, transparent 75%, rgba(63, 55, 201, 0.02) 75%);
        background-size: 60px 60px;
        background-position:
          0 0,
          0 30px,
          30px -30px,
          -30px 0px;
        pointer-events: none;
        opacity: 0.5;
      }

      .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
      }

      .project-card {
        border-radius: 24px;
        overflow: hidden;
        position: relative;
        cursor: pointer;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      }

      .project-card:hover {
        transform: scale(1.08) translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
      }

      .project-image {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: transform 0.6s ease;
      }

      .project-card:hover .project-image {
        transform: scale(1.15);
      }

      .project-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(
          to top,
          rgba(26, 26, 26, 0.98),
          rgba(63, 55, 201, 0.8)
        );
        padding: 2rem;
        color: white;
        transform: translateY(100%);
        transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      }

      .project-card:hover .project-overlay {
        transform: translateY(0);
      }

      .project-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        animation: slideInLeft 0.5s ease;
      }

      @keyframes slideInLeft {
        from {
          opacity: 0;
          transform: translateX(-20px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      .project-description {
        opacity: 0.95;
        line-height: 1.5;
      }

      /* Testimonials */
      #testimonials {
        background: linear-gradient(
          135deg,
          #fafbfc 0%,
          var(--cream) 50%,
          #fafbfc 100%
        );
        position: relative;
      }

      #testimonials::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image:
          radial-gradient(
            circle at 10% 20%,
            rgba(157, 78, 221, 0.03) 0%,
            transparent 30%
          ),
          radial-gradient(
            circle at 90% 80%,
            rgba(63, 55, 201, 0.03) 0%,
            transparent 30%
          );
        pointer-events: none;
      }

      .testimonials-container {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
      }

      .testimonials-wrapper {
        display: flex;
        transition: transform 0.5s ease-in-out;
      }

      .testimonial-card {
        min-width: 100%;
        background: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.9) 0%,
          rgba(255, 255, 255, 0.7) 100%
        );
        backdrop-filter: blur(15px);
        padding: 3rem;
        border-radius: 30px;
        border: 2px solid rgba(63, 55, 201, 0.4);
        text-align: center;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
      }

      .testimonial-card:hover {
        transform: scale(1.02);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
      }

      .testimonial-text {
        font-size: 1.3rem;
        line-height: 1.8;
        font-style: italic;
        margin-bottom: 2rem;
        color: var(--dark);
        position: relative;
      }

      .testimonial-text::before {
        content: '"';
        font-size: 4rem;
        color: var(--mint);
        opacity: 0.3;
        position: absolute;
        top: -20px;
        left: -10px;
      }

      .testimonial-author {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
      }

      .author-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 3px solid var(--mint);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      }

      .author-info h4 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
        color: var(--dark);
      }

      .author-info p {
        opacity: 0.7;
        font-size: 0.9rem;
        color: var(--dark);
      }

      .testimonial-dots {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
      }

      .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(63, 55, 201, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .dot.active {
        background: var(--mint);
        transform: scale(1.3);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
      }

      .testimonial-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(63, 55, 201, 0.8);
        color: white;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 100;
      }

      .testimonial-nav:hover {
        background: var(--mint-dark);
        transform: translateY(-50%) scale(1.1);
      }

      .testimonial-nav.prev {
        left: -25px;
      }

      .testimonial-nav.next {
        right: -25px;
      }

      /* Team Section */
      #team {
        background: linear-gradient(to bottom, var(--cream) 0%, #e8ecf1 100%);
        position: relative;
      }

      #team::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: repeating-linear-gradient(
          45deg,
          transparent,
          transparent 35px,
          rgba(63, 55, 201, 0.02) 35px,
          rgba(63, 55, 201, 0.02) 70px
        );
        pointer-events: none;
      }

      .team-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
      }

      .team-member {
        text-align: center;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        padding: 1.5rem;
        border-radius: 20px;
        background: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.6) 0%,
          rgba(255, 255, 255, 0.3) 100%
        );
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 400px;
      }

      .team-member:hover {
        transform: translateY(-15px) scale(1.05);
        background: linear-gradient(
          135deg,
          rgba(63, 55, 201, 0.2) 0%,
          rgba(255, 255, 255, 0.8) 100%
        );
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
      }

      .member-image-wrapper {
        position: relative;
        width: 200px;
        height: 200px;
        margin: 0 auto 1.5rem;
      }

      .member-image-wrapper::before {
        content: "";
        position: absolute;
        inset: -5px;
        border-radius: 50%;
        background: linear-gradient(
          135deg,
          var(--mint) 0%,
          var(--mint-dark) 100%
        );
        animation: rotateBorder 3s linear infinite;
        z-index: -1;
      }

      @keyframes rotateBorder {
        0% {
          transform: rotate(0deg);
        }
        100% {
          transform: rotate(360deg);
        }
      }

      .member-image {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid white;
        transition: all 0.4s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      }

      .team-member:hover .member-image {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        transform: scale(1.05);
      }

      .member-name {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--dark);
      }

      .member-role {
        color: var(--mint-dark);
        font-weight: 600;
        margin-bottom: 1rem;
        font-size: 1.05rem;
      }

      .member-bio {
        opacity: 0.8;
        line-height: 1.6;
        color: var(--dark);
      }

      /* CTA Section */
      #cta {
        background: linear-gradient(
          135deg,
          var(--mint) 0%,
          var(--mint-dark) 100%
        );
        color: white;
        padding: 6rem 5%;
        border-radius: 40px;
        margin: 4rem auto;
        max-width: 1400px;
        box-shadow:
          0 30px 80px rgba(0, 0, 0, 0.25),
          0 15px 40px rgba(0, 0, 0, 0.15);
        transform: translateY(0);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
      }

      #cta > div {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
      }

      #cta::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(
          circle,
          rgba(255, 255, 255, 0.1) 0%,
          transparent 70%
        );
        animation: ctaGlow 4s ease-in-out infinite;
      }

      @keyframes ctaGlow {
        0%,
        100% {
          transform: translate(0, 0);
        }
        50% {
          transform: translate(10%, 10%);
        }
      }

      #cta:hover {
        transform: translateY(-10px);
        box-shadow:
          0 40px 100px rgba(0, 0, 0, 0.3),
          0 20px 50px rgba(0, 0, 0, 0.2);
      }

      #cta h2 {
        font-family: "Space Grotesk", sans-serif;
        font-size: clamp(2.5rem, 5vw, 4rem);
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        animation: ctaTextFloat 3s ease-in-out infinite;
      }

      @keyframes ctaTextFloat {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-10px);
        }
      }

      #cta p {
        font-size: 1.3rem;
        margin-bottom: 3rem;
        opacity: 0.95;
        position: relative;
        z-index: 1;
      }

      .cta-form {
        display: flex;
        gap: 1rem;
        max-width: 600px;
        margin: 0 auto;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        z-index: 1;
      }

      .cta-input {
        flex: 1;
        min-width: 250px;
        padding: 1.2rem 1.5rem;
        border: none;
        border-radius: 50px;
        font-size: 1rem;
        outline: none;
      }

      .cta-button {
        padding: 1.2rem 3rem;
        background: var(--dark);
        color: white;
        border: none;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .cta-button:hover {
        background: rgba(26, 26, 26, 0.8);
        transform: translateY(-2px);
      }

      /* Footer */
      footer {
        background: var(--dark);
        color: white;
        padding: 4rem 5% 2rem;
      }

      .footer-content {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        margin-bottom: 3rem;
      }

      .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        color: var(--mint);
      }

      .footer-section ul {
        list-style: none;
      }

      .footer-section ul li {
        margin-bottom: 0.8rem;
      }

      .footer-section a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .footer-section a:hover {
        color: var(--mint);
      }

      .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0.7;
      }

      /* Mobile Menu */
      .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        color: var(--dark);
        z-index: 1001;
        padding: 0.5rem;
      }

      .mobile-menu-btn:hover {
        color: var(--mint);
      }

      /* Responsive */
      @media (max-width: 968px) {
        /* Navbar Mobile */
        nav {
          padding: 1rem 3%;
        }

        .logo-container .logo {
          display: none; /* Hide company name on mobile */
        }

        .logo-image {
          width: 60px;
          height: 60px;
        }

        .nav-links {
          position: fixed;
          top: 0;
          right: -100%;
          width: 70%;
          height: 100vh;
          background: rgba(233, 236, 239, 0.98);
          backdrop-filter: blur(30px);
          flex-direction: column;
          justify-content: center;
          align-items: center;
          gap: 2rem;
          transition: right 0.4s ease;
          z-index: 1000;
          box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
          padding: 2rem;
          border-left: 2px solid rgba(63, 55, 201, 0.3);
        }

        .nav-links.active {
          right: 0;
        }

        .nav-links a {
          font-size: 1.3rem;
        }

        .mobile-menu-btn {
          display: block;
        }

        /* Move Get Started button to mobile menu */
        .nav-container > .nav-cta {
          display: none;
        }

        .nav-links .nav-cta {
          display: block;
          padding: 1rem 2.5rem;
          font-size: 1rem;
          margin-top: 1rem;
        }

        /* Hero Section Mobile */
        .hero-title {
          font-size: clamp(2rem, 8vw, 3rem);
        }

        .hero-subtitle {
          font-size: clamp(1rem, 3vw, 1.2rem);
        }

        .hero-stats {
          grid-template-columns: 1fr;
          gap: 1.5rem;
        }

        /* Keep animations on mobile - just reduce tech icon count */
        .tech-float-icon:nth-child(n + 15) {
          display: none; /* Show only first 15 tech icons instead of 25 */
        }

        /* Services Mobile */
        .services-grid {
          grid-template-columns: 1fr;
          gap: 1.5rem;
        }

        .service-card {
          padding: 2rem 1.5rem;
        }

        /* Tech Stack Mobile */
        #tech-stack {
          margin: 2rem 3%;
          padding: 4rem 3%;
        }

        .bento-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 1rem;
        }

        .bento-item {
          padding: 1.5rem;
        }

        .tech-icon {
          font-size: 2.5rem;
        }

        /* Projects Mobile */
        .projects-grid {
          grid-template-columns: 1fr;
          gap: 2rem;
        }

        .project-overlay {
          transform: translateY(0);
          background: linear-gradient(
            to top,
            rgba(26, 26, 26, 0.95),
            rgba(26, 26, 26, 0.7)
          );
        }

        /* Testimonials Mobile */
        .testimonial-nav {
          width: 40px;
          height: 40px;
          font-size: 1.2rem;
        }

        .testimonial-nav.prev {
          left: 5px;
        }

        .testimonial-nav.next {
          right: 5px;
        }

        .testimonial-card {
          padding: 2rem 1.5rem;
        }

        .testimonial-text {
          font-size: 1.1rem;
        }

        /* Team Mobile */
        .team-grid {
          grid-template-columns: 1fr;
          gap: 2rem;
        }

        .member-image-wrapper {
          width: 150px;
          height: 150px;
        }

        .team-member {
          padding: 1rem;
        }

        /* CTA Mobile */
        #cta {
          margin: 2rem 3%;
          padding: 4rem 3%;
          border-radius: 20px;
        }

        .cta-form {
          flex-direction: column;
        }

        .cta-input {
          min-width: 100%;
        }

        /* Footer Mobile */
        .footer-content {
          grid-template-columns: 1fr;
          gap: 2rem;
        }

        /* Section Padding */
        section {
          padding: 4rem 3%;
        }

        .section-title {
          font-size: clamp(2rem, 5vw, 3rem);
        }

        .section-subtitle {
          font-size: 1rem;
        }
      }

      /* Extra Small Screens */
      @media (max-width: 480px) {
        .logo-image {
          width: 50px;
          height: 50px;
        }

        .nav-links {
          width: 85%;
        }

        .bento-grid {
          grid-template-columns: 1fr;
        }

        .hero-ctas {
          flex-direction: column;
          gap: 1rem;
        }

        .btn-primary,
        .btn-secondary {
          width: 100%;
          text-align: center;
        }

        .testimonial-nav.prev {
          left: 0;
        }

        .testimonial-nav.next {
          right: 0;
        }
      }

      /* Scroll animations */
      .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition:
          opacity 0.6s ease,
          transform 0.6s ease;
      }

      .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* Animated Background Elements */
      .section-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
        pointer-events: none;
      }

      .float-element {
        position: absolute;
        opacity: 0.12;
        animation: sectionFloat 25s infinite;
        pointer-events: none;
        font-size: 2rem;
      }

      @keyframes sectionFloat {
        0%,
        100% {
          transform: translateY(0) translateX(0) rotate(0deg);
        }
        25% {
          transform: translateY(-80px) translateX(60px) rotate(90deg);
        }
        50% {
          transform: translateY(-160px) translateX(-60px) rotate(180deg);
        }
        75% {
          transform: translateY(-80px) translateX(80px) rotate(270deg);
        }
      }