    :root {
      --primary: #004e64;
      --secondary: #0b6e4f;
      --dark: #0a0a0a;
      --light: #ffffff;
      --gray: #f4f6f8;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: var(--light);
      color: #333;
      line-height: 1.6;
    }

    a { text-decoration: none; }
    img { max-width: 100%; }

    /* ================= HEADER ================= */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(255,255,255,0.95);
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      z-index: 1000;
    }

    .nav {
      max-width: 1200px;
      margin: auto;
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--primary);
    }

    .nav ul {
      display: flex;
      list-style: none;
      gap: 2rem;
    }

    .nav ul li a {
      color: #333;
      font-weight: 500;
      transition: color .3s;
    }

    .nav ul li a:hover { color: var(--secondary); }

    .btn {
      padding: .7rem 1.6rem;
      border-radius: 30px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      font-weight: 500;
      transition: transform .3s, box-shadow .3s;
      display: inline-block;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0,0,0,.15);
    }

    /* ================= HERO ================= */
    .hero {
      height: 100vh;
      background: linear-gradient(120deg, var(--primary), var(--secondary));
      display: flex;
      align-items: center;
      color: #fff;
      padding-top: 80px;
    }

    .hero-content {
      max-width: 1200px;
      margin: auto;
      padding: 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .hero h1 {
      font-size: 3rem;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .hero p {
      opacity: .95;
      margin-bottom: 2rem;
    }

    .hero-img {
      animation: float 4s ease-in-out infinite;
    }

    @keyframes float {
      0% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
      100% { transform: translateY(0); }
    }

    /* ================= SECTIONS ================= */
    section {
      padding: 5rem 1.5rem;
    }

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

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

    .section-title h2 {
      font-size: 2.2rem;
      color: var(--primary);
    }

    .section-title p { max-width: 600px; margin: auto; }

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

    .service-card {
      background: #fff;
      border-radius: 18px;
      padding: 2.5rem 2rem;
      box-shadow: 0 20px 50px rgba(0,0,0,.06);
      transition: transform .4s, box-shadow .4s;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 60px rgba(0,0,0,.12);
    }

    .service-card i {
      font-size: 2.8rem;
      color: var(--secondary);
      margin-bottom: 1rem;
    }

    /* ==================OUR PROCESSES======================= */
    .process {
  background: linear-gradient(135deg, #004e64, #0b6e4f);
  color: #fff;
}

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

.process-step {
  background: rgba(255,255,255,0.1);
  padding: 2.5rem;
  border-radius: 16px;
  position: relative;
  transition: transform .3s;
}

.process-step:hover {
  transform: translateY(-10px);
}

.process-step span {
  font-size: 2.5rem;
  font-weight: 700;
  opacity: .3;
}

    /* ================= TRUSTED CLIENTS ================= */
    .trusted {
  padding: 3rem 1.5rem;
  background: #f9fbfc;
  text-align: center;
}

.trusted-title {
  font-weight: 500;
  color: #555;
  margin-bottom: 1.5rem;
}

.logo-marquee {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.logo-marquee img {
  height: 70px;
  opacity: 1;
  transition: .3s;
}


   
    /* ================= CONTACT ================= */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }

    .contact-info i {
      color: var(--secondary);
      margin-right: .6rem;
    }

    form input, form textarea {
      width: 100%;
      padding: 1rem;
      margin-bottom: 1rem;
      border-radius: 8px;
      border: 1px solid #ddd;
    }

    /* ================= FOOTER ================= */
    footer {
      background: var(--dark);
      color: #ccc;
      padding: 3rem 1.5rem;
    }

    footer p { text-align: center; }

    /* ================= RESPONSIVE ================= */
    @media (max-width: 900px) {
      .hero-content { grid-template-columns: 1fr; text-align: center; }
      .contact-grid { grid-template-columns: 1fr; }
      .nav ul { display: none; }
    }
    /* WHY CHOOSE SYNERBYTE TECHNOLOGIES LIMITED */
    .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 2rem;
}

.why-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.why-card i {
  font-size: 2.5rem;
  color: #0b6e4f;
  margin-bottom: 1rem;
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  z-index: 999;
}

/* ====================FREQUENTLY ASKED QUESIONS======================== */
.faq-section {
  background: #ffffff;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 1rem;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #004e64;
}

.faq-question i {
  font-size: 1.4rem;
  transition: transform .3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  padding: 0 1rem;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  color: #555;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
  color: #0b6e4f;
}

@media(max-width: 768px) {
  .faq-question {
    font-size: 1rem;
  }
}

.intro-elite {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
  color: #fff;
}

.intro-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.intro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 78, 100, 0.92),
    rgba(11, 110, 79, 0.92)
  );
  z-index: 2;
}

.intro-elite-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.location-badge {
  display: inline-block;
  padding: .4rem 1rem;
  background: rgba(255,255,255,0.15);
  border-radius: 30px;
  font-size: .85rem;
  margin-bottom: 1.5rem;
}

.intro-elite h2 {
  font-size: 2.3rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.highlight {
  position: relative;
  padding: 0 .3rem;
  font-weight: 600;
}

.highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: .1em;
  width: 100%;
  height: .35em;
  background: rgba(255,255,255,0.25);
  z-index: -1;
  animation: highlightPulse 3s ease-in-out infinite;
}

@keyframes highlightPulse {
  0%, 100% { opacity: .4; }
  50% { opacity: .9; }
}

.intro-elite p {
  font-size: 1.05rem;
  opacity: .95;
  margin-bottom: 2rem;
}

.intro-metrics {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.metric strong {
  display: block;
  font-size: 1.8rem;
}

.metric span {
  font-size: .85rem;
  opacity: .85;
}

@media(max-width: 768px){
  .intro-elite h2 {
    font-size: 1.9rem;
  }
}
