
    a {
      color: inherit;
      text-decoration: none;
    }

    section {
      padding: 80px 8%;
    }

    h1, h2, h3 {
      line-height: 1.2;
    }

    /* ---------------- NAVBAR ---------------- */

    .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(11,12,16,0.7);
      backdrop-filter: blur(12px);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 8%;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .logo {
      font-size: 1.3rem;
      font-weight: 700;
      letter-spacing: 0.5px;
    }

    .nav-links {
      display: flex;
      gap: 28px;
      align-items: center;
    }

    .nav-links a {
      font-size: 0.95rem;
      color: var(--muted);
      transition: 0.2s ease;
    }

    .nav-links a:hover {
      color: white;
    }

    .nav-cta {
      padding: 10px 18px;
      border-radius: 8px;
      background: linear-gradient(135deg, #4f9cff, #7b61ff);
      color: white;
      font-weight: 600;
      font-size: 0.9rem;
      box-shadow: 0 0 18px rgba(79,156,255,0.4);
    }

    /* ---------------- HERO ---------------- */

    .hero {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 60px;
      align-items: center;
      min-height: 90vh;
       background: linear-gradient(
       120deg,
        #020617,
        #1d99f0cc,
        #6344fdcc
      );
        background-size: 400% 400%;
        animation: gradientMove 10s ease infinite;
    }

    @keyframes gradientMove {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .hero h1 {
      font-size: clamp(2.4rem, 4vw, 3.6rem);
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 1.1rem;
      color: var(--muted);
      margin-bottom: 32px;
      max-width: 520px;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
    }

    .btn-primary {
      padding: 14px 26px;
      border-radius: 10px;
      background: linear-gradient(135deg, #4f9cff, #7b61ff);
      color: white;
      font-weight: 600;
      border: none;
      cursor: pointer;
      box-shadow: 0 0 25px rgba(79,156,255,0.45);
    }

    .btn-secondary {
      padding: 14px 26px;
      border-radius: 10px;
      background: transparent;
      border: 1px solid rgba(255,255,255,0.15);
      color: white;
      font-weight: 500;
      transition: 0.2s ease;
    }

    .btn-secondary:hover {
      border-color: var(--accent);
      box-shadow: 0 0 16px rgba(79,156,255,0.25);
    }

    .hero-visual {
      height: 420px;
      border-radius: 20px;
      background-color: black;
      background-image: url(GD13.png);
      /*background-size: cover;*/
      object-fit: fill;
      background-size: ;
      /*background: radial-gradient(circle at 30% 30%, rgba(79,156,255,0.25), transparent 60%),
                  radial-gradient(circle at 70% 70%, rgba(123,97,255,0.2), transparent 60%),
                  #0f1118;*/
      border: 5px solid rgba(255,255,255,0.08);
      /*box-shadow: 0 0 40px rgba(79,156,255,0.15);*/
    }

    .testImg {
      height: 420px;
      background-image: url(Images/GD13.png);
      background-size: cover;
      border-radius: 20px;
      border: 5px solid rgba(255,255,255,1.0);
    }

    /* ---------------- TRUST BAR ---------------- */

    .trust {
      padding-top: 0;
      padding-bottom: 40px;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 30px;
      align-items: center;
      opacity: 0.6;
    }

    .trust-item {
      text-align: center;
      font-weight: 600;
      letter-spacing: 1px;
    }

    /* ---------------- SERVICES ---------------- */

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-size: clamp(1.9rem, 3vw, 2.6rem);
      margin-bottom: 10px;
    }

    .section-title p {
      color: var(--muted);
      max-width: 600px;
      margin: 0 auto;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 10rem;
      justify-items: center;
      max-width: 1600px;
      margin: 0 auto;
    }

    .service-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 18px;
      padding: 28px;
      margin-left: 20px;
      transition: 0.25s ease;
      position: relative;
      overflow: hidden;
      width: 100%;
      max-width: 600px;
    }

    .service-card::before {
      content: "";
      position: absolute;
      inset: -1px;
      background: linear-gradient(120deg, transparent 30%, rgba(79,156,255,0.4), transparent 70%);
      opacity: 0;
      transition: 0.3s ease;
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 0 28px rgba(79,156,255,0.25);
      border-color: rgba(79,156,255,0.6);
    }

    .service-card h3 {
      margin-bottom: 12px;
    }

    .service-card p {
      color: var(--muted);
      font-size: 0.95rem;
    }

    .service-card img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  margin-bottom: 1rem;
}

    /* ---------------- PROJECTS ---------------- */

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      padding-left: 100px;
      padding-right: 100px;
    }

    .project-card {
      height: 260px;
      border-radius: 20px;
      background: linear-gradient(135deg, #141624, #0d0f18);
      border: 1px solid rgba(255,255,255,0.08);
      position: relative;
      overflow: hidden;
      transition: 0.3s ease;
    }

    .project-card::after {
      content: "What we offer";
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(15,17,24,0.85);
      opacity: 0;
      transition: 0.3s ease;
      font-weight: 600;
      letter-spacing: 0.5px;
      color: white;
    }

    .project-card:hover::after {
      opacity: 1;
    }

    .project-card:hover {
      transform: scale(1.02);
      box-shadow: 0 0 35px rgba(79,156,255,0.25);
      border-color: rgba(79,156,255,0.6);
    }

    /* ---------------- PROCESS ---------------- */

    .process-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 28px;
      margin-top: 50px;
    }

    .process-step {
      text-align: center;
      padding: 28px 20px;
      border-radius: 16px;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.08);
    }

    .process-step span {
      display: inline-block;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--accent);
    }

    /* ---------------- TESTIMONIALS ---------------- */

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 28px;
      margin-top: 40px;
    }

    .testimonial-card {
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 18px;
      padding: 28px;
    }

    .testimonial-card p {
      color: var(--muted);
      margin-bottom: 16px;
      font-size: 0.95rem;
    }

    .testimonial-card strong {
      font-size: 0.9rem;
    }

    /* ---------------- CTA BANNER ---------------- */

    .cta {
      background: radial-gradient(circle at 20% 30%, rgba(79,156,255,0.35), transparent 55%),
                  radial-gradient(circle at 80% 70%, rgba(123,97,255,0.3), transparent 55%),
                  #0f1118;
      border-radius: 26px;
      padding: 70px 8%;
      text-align: center;
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow: 0 0 60px rgba(79,156,255,0.25);
    }

    .cta h2 {
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      margin-bottom: 16px;
    }

    .cta p {
      color: var(--muted);
      margin-bottom: 28px;
    }

    /* ---------------- FOOTER ---------------- */

    footer {
      padding: 60px 8% 40px;
      border-top: 1px solid rgba(255,255,255,0.06);
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
    }

    footer h4 {
      margin-bottom: 12px;
      font-size: 0.95rem;
    }

    footer a {
      display: block;
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 8px;
    }

    footer a:hover {
      color: white;
    }

    /* ---------------- RESPONSIVE ---------------- */

    @media (max-width: 900px) {
      .hero {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .hero p {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-buttons {
        justify-content: center;
      }
    }

    .project-card {
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(2, 6, 23, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(96, 165, 250, 0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(59,130,246,0.25);
}

.project-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.project-card:hover .project-img {
  transform: scale(1.05);
}

.project-body {
  padding: 1.1rem 1.1rem 1.2rem;
}

.tag {
  font-size: 0.8rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #dbeafe;
}

.project-cta {
  color: #93c5fd;
  font-weight: 600;
}

.testimonials-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(2, 6, 23, 0.85);
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid rgba(148, 163, 184, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(59,130,246,0.25);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #e5e7eb;
  margin-bottom: 1.5rem;
}

.testimonial-author strong {
  display: block;
  color: #ffffff;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: #94a3b8;
}
