  :root {
      --primary: #ffd54a;
      --secondary: #1d4ed8;
      --dark: #081120;
      --dark2: #10203a;
      --card: #10233a;
      --text: #ffffff;
      --muted: #c7d4e6;
      --border: rgba(255,255,255,0.12);
      --yellow: #ffc83d;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", Arial, sans-serif;
      background: var(--dark);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(1180px, 92%);
      margin: auto;
    }

    .topbar {
      background: #040b14;
      border-bottom: 1px solid var(--border);
      padding: 10px 0;
      font-size: 14px;
      color: var(--muted);
    }

    .topbar-inner {
      display: flex;
      justify-content: space-between;
      gap: 15px;
      flex-wrap: wrap;
    }

    .topbar a {
      color: var(--muted);
      margin-right: 18px;
    }

    .navbar {
      background: rgba(7, 17, 31, 0.96);
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      /* min-height: 78px; */
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 25px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      font-size: 25px;
      box-shadow: 0 10px 30px rgba(0,184,255,0.25);
    }

    .brand h1 {
      font-family: "Outfit", sans-serif;
      font-size: 24px;
      line-height: 1.1;
    }

    .brand span {
      display: block;
      font-size: 12px;
      color: var(--muted);
      font-weight: 500;
      letter-spacing: 0.5px;
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 28px;
      font-weight: 600;
      font-size: 15px;
    }

    .menu a:hover {
      color: var(--primary);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 22px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      font-weight: 700;
      border: 0;
      cursor: pointer;
      box-shadow: 0 12px 32px rgba(0,184,255,0.28);
    }

    .btn-outline {
      background: transparent;
      border: 1px solid var(--border);
      box-shadow: none;
    }

    .hero {
      position: relative;
      min-height: 720px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(7,17,31,0.96) 0%, rgba(7,17,31,0.86) 48%, rgba(7,17,31,0.48) 100%),
        url("/assets/img/slider/slider-1-1.png") center/cover no-repeat;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 20%, rgba(0,184,255,0.22), transparent 28%),
        radial-gradient(circle at 90% 60%, rgba(15,117,188,0.18), transparent 35%);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 720px;
      padding: 90px 0;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 15px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.06);
      color: var(--muted);
      margin-bottom: 20px;
      font-weight: 600;
    }

    .hero h2 {
      font-family: "Outfit", sans-serif;
      font-size: clamp(42px, 6vw, 78px);
      line-height: 1.02;
      margin-bottom: 24px;
    }

    .hero h2 span {
      color: var(--primary);
    }

    .hero p {
      color: var(--muted);
      font-size: 19px;
      max-width: 620px;
      margin-bottom: 32px;
    }

    .hero-actions {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      margin-bottom: 38px;
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(130px, 1fr));
      gap: 15px;
      max-width: 650px;
    }

    .hero-point {
      padding: 18px;
      background: rgba(255,255,255,0.07);
      border: 1px solid var(--border);
      border-radius: 18px;
      backdrop-filter: blur(8px);
    }

    .hero-point strong {
      display: block;
      font-size: 24px;
      color: var(--primary);
      margin-bottom: 3px;
    }

    .hero-point span {
      color: var(--muted);
      font-size: 14px;
    }

    section {
      padding: 95px 0;
    }

    .section-head {
      max-width: 720px;
      margin: 0 auto 50px;
      text-align: center;
    }

    .section-subtitle {
      color: var(--primary);
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-size: 13px;
      margin-bottom: 10px;
    }

    .section-title {
      font-family: "Outfit", sans-serif;
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1.12;
      margin-bottom: 16px;
    }

    .section-text {
      color: var(--muted);
      font-size: 17px;
    }

    .about {
      background: #fff;
      color: #0b1a2b;
    }

    .about .section-text,
    .about .muted {
      color: #5f6b7a;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 45px;
      align-items: center;
    }

    .about-card {
      background: #f4f8fc;
      border-radius: 28px;
      padding: 34px;
      border: 1px solid #e6eef6;
    }

    .about-card h3 {
      font-size: 24px;
      margin-bottom: 14px;
      font-family: "Outfit", sans-serif;
    }

    .check-list {
      display: grid;
      gap: 14px;
      margin-top: 24px;
    }

    .check-list li {
      list-style: none;
      display: flex;
      gap: 12px;
      color: #26384e;
      font-weight: 600;
    }

    .check-list li::before {
      content: "✓";
      color: #fff;
      background: var(--secondary);
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      flex: 0 0 24px;
      font-size: 14px;
    }

    .about-image {
      border-radius: 30px;
      min-height: 470px;
      background:
        linear-gradient(rgba(7,17,31,0.2), rgba(7,17,31,0.45)),
        url("/assets/img/about/about-1-1.png") center/cover no-repeat;
      position: relative;
      overflow: hidden;
    }

    .floating-card {
      position: absolute;
      left: 22px;
      bottom: 22px;
      right: 22px;
      padding: 24px;
      border-radius: 22px;
      background: rgba(7,17,31,0.88);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.18);
    }

    .floating-card strong {
      color: var(--primary);
      font-size: 26px;
      display: block;
    }

    .services-section {
      background: var(--dark2);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .service-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 30px 24px;
      transition: 0.25s ease;
      min-height: 260px;
    }

    .service-card:hover {
      transform: translateY(-8px);
      border-color: rgba(0,184,255,0.45);
      box-shadow: 0 22px 45px rgba(0,0,0,0.24);
    }

    .service-icon {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: rgba(0,184,255,0.13);
      color: var(--primary);
      font-size: 28px;
      margin-bottom: 22px;
    }

    .service-card h3 {
      font-family: "Outfit", sans-serif;
      font-size: 22px;
      margin-bottom: 12px;
    }

    .service-card p {
      color: var(--muted);
      font-size: 15px;
    }

    .why {
      background:
        linear-gradient(rgba(7,17,31,0.92), rgba(7,17,31,0.92)),
        url("assets/img/project/project-1-1.png") center/cover no-repeat;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .why-box {
      padding: 28px;
      border-radius: 22px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.06);
    }

    .why-box h3 {
      font-family: "Outfit", sans-serif;
      font-size: 22px;
      margin-bottom: 10px;
    }

    .why-box p {
      color: var(--muted);
    }

    .team-section {
      background: #fff;
      color: #0b1a2b;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(240px, 420px));
      justify-content: center;
      gap: 25px;
    }

    .team-card {
      background: #f5f9fd;
      border: 1px solid #e6eef6;
      padding: 34px;
      border-radius: 26px;
      text-align: center;
    }

    .team-avatar {
      width: 86px;
      height: 86px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 34px;
      margin: 0 auto 18px;
      font-weight: 800;
    }

    .team-card h3 {
      font-size: 24px;
      font-family: "Outfit", sans-serif;
    }

    .team-card p {
      color: #5f6b7a;
      margin-top: 6px;
    }

    .coverage {
      background: var(--dark2);
      text-align: center;
    }

    .coverage-box {
      max-width: 900px;
      margin: auto;
      padding: 50px;
      border-radius: 30px;
      background:
        radial-gradient(circle at top left, rgba(0,184,255,0.20), transparent 35%),
        rgba(255,255,255,0.06);
      border: 1px solid var(--border);
    }

    .coverage-box h2 {
      font-family: "Outfit", sans-serif;
      font-size: clamp(32px, 4vw, 52px);
      margin-bottom: 15px;
    }

    .coverage-box p {
      color: var(--muted);
      font-size: 18px;
      margin-bottom: 25px;
    }

    .contact-section {
      background: #fff;
      color: #0b1a2b;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 30px;
      align-items: stretch;
    }

    .contact-info {
      background: #07111f;
      color: #fff;
      padding: 36px;
      border-radius: 28px;
    }

    .contact-info h3 {
      font-family: "Outfit", sans-serif;
      font-size: 30px;
      margin-bottom: 18px;
    }

    .contact-item {
      display: flex;
      gap: 14px;
      padding: 18px 0;
      border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    .contact-item:last-child {
      border-bottom: 0;
    }

    .contact-item span {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(0,184,255,0.14);
      color: var(--primary);
      flex: 0 0 40px;
    }

    .contact-item strong {
      display: block;
      margin-bottom: 3px;
    }

    .contact-item p,
    .contact-item a {
      color: var(--muted);
    }

    .form-box {
      background: #f5f9fd;
      border: 1px solid #e6eef6;
      border-radius: 28px;
      padding: 36px;
    }

    .form-box h3 {
      font-family: "Outfit", sans-serif;
      font-size: 30px;
      margin-bottom: 18px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }

    input,
    textarea,
    select {
      width: 100%;
      padding: 15px 16px;
      border: 1px solid #dce7f1;
      border-radius: 14px;
      font-family: inherit;
      font-size: 15px;
      margin-bottom: 15px;
      outline: none;
      background: #fff;
    }

    textarea {
      min-height: 130px;
      resize: vertical;
    }

    footer {
      background: #040b14;
      padding-top: 70px;
      color: var(--muted);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
      gap: 35px;
      padding-bottom: 45px;
      border-bottom: 1px solid var(--border);
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
    }

    .footer-logo .brand-icon {
      width: 44px;
      height: 44px;
      font-size: 22px;
    }

    .footer-logo h3 {
      color: #fff;
      font-family: "Outfit", sans-serif;
      font-size: 23px;
      line-height: 1.1;
    }

    .footer-col h4 {
      color: #fff;
      font-size: 18px;
      margin-bottom: 18px;
      font-family: "Outfit", sans-serif;
    }

    .footer-col ul {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .footer-col a:hover {
      color: var(--primary);
    }

    .copyright {
      padding: 22px 0;
      text-align: center;
      font-size: 14px;
    }

    .whatsapp {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 60;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25d366;
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 28px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    }

    @media (max-width: 992px) {
      .menu {
        display: none;
      }

      .hero {
        min-height: auto;
      }

      .hero-points,
      .about-grid,
      .contact-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

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

    @media (max-width: 640px) {
      .topbar-inner {
        display: block;
      }

      .topbar a {
        display: block;
        margin: 4px 0;
      }

      .nav-inner {
        min-height: 70px;
      }

      .brand h1 {
        font-size: 19px;
      }

      .brand-icon {
        width: 42px;
        height: 42px;
      }

      .hero-content {
        padding: 70px 0;
      }

      .hero-actions,
      .form-row,
      .team-grid,
      .services-grid,
      .why-grid {
        grid-template-columns: 1fr;
        display: grid;
      }

      .hero-points {
        grid-template-columns: 1fr;
      }

      section {
        padding: 70px 0;
      }

      .coverage-box,
      .contact-info,
      .form-box {
        padding: 28px;
      }
    }

    .achievements-section {
  background: #fff;
  color: #07111f;
  padding: 110px 0;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  text-align: center;
}

.achievement-box {
  width: 230px;
  height: 230px;
  margin: auto;
  border-radius: 50%;
  border: 1px solid #3154ff;
  background: #f3f4f6;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.achievement-box h2 {
  font-size: 58px;
  color: #06135c;
  font-family: "Outfit", sans-serif;
}

.achievement-box p {
  font-weight: 700;
  color: #06135c;
}


.testimonial-section {
  background:
    linear-gradient(rgba(245,247,250,0.94), rgba(245,247,250,0.94)),
    url("assets/img/testimonial/testi-shap-1.png") center/cover no-repeat;
  color: #07111f;
  padding: 110px 0;
  overflow: hidden;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.testimonial-slider {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.testimonial-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: testimonialSlide 32s linear infinite;
}

.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: 520px;
  min-height: 330px;
  background: #fff;
  border: 1px solid #d9dde7;
  border-radius: 40px 0 40px 0;
  padding: 38px;
  flex-shrink: 0;
  box-shadow: 0 18px 45px rgba(7,17,31,0.08);
}

.stars {
  color: #f3aa08;
  font-size: 28px;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 21px;
  line-height: 1.75;
  color: #06135c;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
}

.client-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 800;
  flex: 0 0 64px;
}

.client-info h4 {
  color: #06135c;
  font-size: 18px;
  margin-bottom: 2px;
  font-family: "Outfit", sans-serif;
}

.client-info span {
  color: #536179;
}

@keyframes testimonialSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.blog-section {
  background: #fff;
  color: #07111f;
  padding: 110px 0;
}

.blog-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 55px;
  gap: 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 30px;
}

.blog-card {
  overflow: hidden;
}

.blog-img {
  height: 340px;
  border-radius: 45px 0 45px 0;
  background-size: cover;
  background-position: center;
}

.large-blog .blog-img {
  height: 530px;
}

.blog-content {
  padding-top: 25px;
}

.blog-content span {
  color: #4f5b75;
  font-size: 15px;
}

.blog-content h3 {
  margin-top: 12px;
  font-size: 24px;
  line-height: 1.35;
  color: #06135c;
  font-family: "Outfit", sans-serif;
}

@media (max-width: 992px) {
  .achievement-grid,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .testimonial-card {
    width: 430px;
  }

  .large-blog {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .achievement-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

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

  .testimonial-card {
    width: 310px;
    padding: 28px;
  }

  .large-blog {
    grid-column: span 1;
  }

  .achievement-box {
    width: 210px;
    height: 210px;
  }

  .testimonial-card p {
    font-size: 18px;
  }

  .blog-head {
    display: block;
  }

  .blog-head .btn {
    margin-top: 20px;
  }
}
  

/* ===== MOBILE OPTIMIZATION FIX ===== */
.mobile-menu {
  display: none;
}

@media (max-width: 992px) {
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 32px, 1180px);
  }

  .navbar {
    position: sticky;
  }

  .mobile-menu {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0 16px 14px;
    scrollbar-width: none;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .mobile-menu::-webkit-scrollbar {
    display: none;
  }

  .mobile-menu a {
    flex: 0 0 auto;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.10);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
  }

  .nav-inner {
    gap: 12px;
  }

  .nav-call-btn {
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    background-position: center right;
  }

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

  .about-image {
    min-height: 360px;
  }

  .achievement-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }

  .achievement-box {
    width: 180px;
    height: 180px;
  }

  .achievement-box h2 {
    font-size: 44px;
  }

  .testimonial-section {
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-slider {
    width: 100vw;
    margin-left: calc(-1 * ((100vw - 100%) / 2));
    padding-left: 16px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .testimonial-track {
    gap: 16px;
    animation-duration: 38s;
  }

  .testimonial-card {
    width: min(84vw, 430px);
    min-height: auto;
  }

  .blog-grid {
    gap: 22px;
  }

  .blog-img,
  .large-blog .blog-img {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 8px 0;
  }

  .topbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    flex-wrap: nowrap;
  }

  .topbar-inner > div:first-child a:last-child {
    display: none;
  }

  .topbar-inner > div {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .topbar a,
  .topbar span {
    display: inline-flex;
    align-items: center;
    margin: 0;
    font-size: 12px;
    white-space: nowrap;
  }
  .nav-inner {
    min-height: 66px;
    padding: 10px 0;
  }

  .brand {
    gap: 9px;
    min-width: 0;
  }

  .brand h1 {
    font-size: 16px;
    max-width: 165px;
    white-space: normal;
  }

  .brand span {
    font-size: 10px;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
    font-size: 20px;
    border-radius: 11px;
    flex: 0 0 38px;
  }

  .nav-call-btn {
    padding: 9px 12px;
    font-size: 12px;
  }

  
  section {
    padding: 58px 0;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-text {
    font-size: 15px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(7,17,31,0.96) 0%, rgba(7,17,31,0.90) 55%, rgba(7,17,31,0.82) 100%),
      url("assets/img/slider/slider-1-1.jpg") center/cover no-repeat;
  }

  .hero-content {
    padding: 54px 0;
  }

  .hero h2 {
    font-size: 36px;
    line-height: 1.08;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  

  .hero-actions .btn {
    width: 100%;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-point {
    padding: 14px;
  }

  .about-grid {
    gap: 26px;
  }

  .about-image {
    min-height: 310px;
    border-radius: 22px;
  }

  .floating-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
  }

  .services-grid,
  .why-grid,
  .team-grid,
  .contact-grid,
  .footer-grid,
  .blog-grid {
    grid-template-columns: 1fr !important;
  }

  .service-card,
  .why-box,
  .team-card,
  .contact-info,
  .form-box,
  .coverage-box {
    border-radius: 20px;
  }

  .achievements-section {
    padding: 58px 0;
  }

  .achievement-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px;
  }

  .achievement-box {
    width: 145px;
    height: 145px;
  }

  .achievement-box h2 {
    font-size: 34px;
  }

  .achievement-box p {
    font-size: 13px;
    padding: 0 10px;
  }

  .testimonial-section {
    padding: 58px 0;
  }

  .testimonial-grid {
    gap: 24px;
  }

  .testimonial-card {
    width: 82vw;
    padding: 24px;
    border-radius: 26px 0 26px 0;
  }

  .testimonial-card p {
    font-size: 16px;
    line-height: 1.65;
  }

  .stars {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .client-avatar {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    font-size: 20px;
  }

  .blog-section {
    padding: 58px 0;
  }

  .blog-head {
    margin-bottom: 30px;
  }

  .blog-img,
  .large-blog .blog-img {
    height: 230px;
    border-radius: 28px 0 28px 0;
  }

  .blog-content h3 {
    font-size: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    gap: 25px;
  }

  .whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand h1 {
    font-size: 15px;
    max-width: 145px;
  }

  .nav-call-btn {
    padding: 8px 10px;
  }

  .hero h2 {
    font-size: 32px;
  }

  .achievement-box {
    width: 132px;
    height: 132px;
  }

  .achievement-box h2 {
    font-size: 30px;
  }
}

/* Add this at the bottom of /asset/css/style.css */

.menu a.active {
  color: var(--primary);
}

.inner-hero {
  position: relative;
  padding: 125px 0 110px;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(7,17,31,0.84), rgba(7,17,31,0.88)),
    url("../img/breadcrumb/breadcrumb.jpg") center/cover no-repeat;
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0,184,255,0.22), transparent 30%),
    radial-gradient(circle at 85% 70%, rgba(15,117,188,0.20), transparent 35%);
  pointer-events: none;
}

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

.page-badge {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  margin-bottom: 18px;
}

.inner-hero h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  max-width: 940px;
  margin: 0 auto 20px;
}

.inner-hero p {
  color: var(--muted);
  max-width: 740px;
  margin: 0 auto 24px;
  font-size: 18px;
}

.breadcrumb-list {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.breadcrumb-list a:hover {
  color: var(--primary);
}

.about-page-section {
  padding: 105px 0;
}

.about-image-tall {
  min-height: 610px;
}

.about-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.mini-card {
  background: #f5f9fd;
  border: 1px solid #e6eef6;
  padding: 22px;
  border-radius: 22px;
}

.mini-card span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(0,184,255,0.12);
  margin-bottom: 15px;
  font-size: 24px;
}

.mini-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  margin-bottom: 8px;
  color: #07111f;
}

.mini-card p {
  color: #5f6b7a;
  font-size: 14px;
}

.about-why-section {
  padding: 105px 0;
}

.why-about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
  align-items: center;
}

.why-image-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  padding: 18px;
}

.why-image-card img {
  width: 100%;
  border-radius: 22px;
}

.why-small-box {
  position: absolute;
  right: 35px;
  bottom: 35px;
  background: #fff;
  color: #07111f;
  padding: 20px 24px;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.22);
}

.why-small-box strong {
  display: block;
  font-size: 34px;
  color: var(--secondary);
  line-height: 1;
}

.why-small-box span {
  font-weight: 700;
}

.why-points-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.why-points-list > div {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
}

.why-points-list span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  font-weight: 800;
}

.why-points-list h3 {
  font-family: "Outfit", sans-serif;
  font-size: 21px;
  margin-bottom: 5px;
}

.why-points-list p {
  color: var(--muted);
}

.service-highlight-section {
  background: var(--dark2);
}

.about-cta-section .coverage-box .btn-outline {
  margin-left: 12px;
}

.testimonial-slider {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.testimonial-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: testimonialSlide 30s linear infinite;
}

.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: 500px;
  min-height: 320px;
  flex-shrink: 0;
}

@keyframes testimonialSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-52%); }
}

@media (max-width: 992px) {
  .why-about-grid,
  .about-mini-grid {
    grid-template-columns: 1fr;
  }

  .about-image-tall {
    min-height: 460px;
  }

  .testimonial-card {
    width: 430px;
  }
}

@media (max-width: 768px) {
  .inner-hero {
    padding: 85px 0 75px;
  }

  .inner-hero p {
    font-size: 16px;
  }

  .nav-btn {
    display: none;
  }

  .about-page-section,
  .about-why-section {
    padding: 70px 0;
  }

  .why-image-card {
    padding: 12px;
  }

  .why-small-box {
    position: static;
    margin-top: 14px;
  }

  .why-points-list > div {
    padding: 18px;
  }

  .about-cta-section .coverage-box .btn-outline {
    margin-left: 0;
    margin-top: 12px;
  }
}

@media (max-width: 640px) {
  .about-image-tall {
    min-height: 380px;
  }

  .floating-card {
    position: static;
    margin: 16px;
  }

  .testimonial-card {
    width: 310px;
    min-height: 300px;
    padding: 26px;
  }

  .testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
  }

  .client-avatar {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
}


/* ================================
   Services Page Additions
   Paste at bottom of /asset/css/style.css
================================ */

.page-breadcrumb {
  position: relative;
  padding: 120px 0;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(rgba(7,17,31,0.82), rgba(7,17,31,0.88)),
    url("../../assets/img/breadcrumb/breadcrumb.jpg") center/cover no-repeat;
}

.breadcrumb-content h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 16px;
}

.breadcrumb-content p {
  color: #c7d4e6;
  font-weight: 600;
}

.breadcrumb-content a {
  color: #fff;
}

.breadcrumb-content span {
  padding: 0 10px;
  color: #00b8ff;
}

.services-intro-section {
  background: #fff;
  color: #07111f;
  padding: 110px 0 80px;
}

.services-intro-section .section-text,
.service-why-section .section-text {
  color: #5f6b7a;
}

.service-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-page-card {
  background: #f5f9fd;
  border: 1px solid #e6eef6;
  border-radius: 28px;
  padding: 30px 24px;
  min-height: 310px;
  transition: 0.25s ease;
  display: flex;
  flex-direction: column;
}

.service-page-card:hover {
  transform: translateY(-8px);
  background: #07111f;
  border-color: rgba(0,184,255,0.35);
  box-shadow: 0 22px 45px rgba(7,17,31,0.18);
}

.service-page-card .service-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(0,184,255,0.14);
  font-size: 30px;
  margin-bottom: 22px;
}

.service-page-card h3 {
  font-family: "Outfit", sans-serif;
  color: #06135c;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-page-card p {
  color: #5f6b7a;
  font-size: 15px;
  margin-bottom: 20px;
}

.service-page-card:hover h3,
.service-page-card:hover p,
.service-page-card:hover .service-link {
  color: #fff;
}

.service-link {
  margin-top: auto;
  color: #0f75bc;
  font-weight: 800;
}

.service-why-section {
  background: #f5f9fd;
  color: #07111f;
  padding: 110px 0;
}

.service-why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
  align-items: center;
}

.service-why-image img {
  width: 100%;
  border-radius: 34px 0 34px 0;
  box-shadow: 0 24px 60px rgba(7,17,31,0.14);
}

.service-feature-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid #e6eef6;
  border-radius: 20px;
  padding: 20px;
}

.feature-item span {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #00b8ff, #0f75bc);
  font-weight: 800;
}

.feature-item h4 {
  font-size: 19px;
  color: #06135c;
  margin-bottom: 4px;
  font-family: "Outfit", sans-serif;
}

.feature-item p {
  color: #5f6b7a;
}

.service-process-section {
  background: #07111f;
  padding: 110px 0;
  color: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  border-radius: 28px;
  padding: 30px 24px;
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #00b8ff;
  color: #fff;
  font-weight: 800;
  margin-bottom: 22px;
}

.process-card h3 {
  font-size: 22px;
  font-family: "Outfit", sans-serif;
  margin-bottom: 10px;
}

.process-card p {
  color: #c7d4e6;
}

.service-cta-section {
  background: #fff;
  color: #07111f;
  padding: 90px 0;
}

.service-cta-box {
  text-align: center;
  border-radius: 34px;
  padding: 60px 40px;
  background:
    radial-gradient(circle at top left, rgba(0,184,255,0.18), transparent 35%),
    #f5f9fd;
  border: 1px solid #e6eef6;
}

.service-cta-box h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  color: #06135c;
  margin-bottom: 12px;
}

.service-cta-box p {
  color: #5f6b7a;
  font-size: 18px;
  margin-bottom: 26px;
}

.service-cta-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.service-cta-actions .btn-outline {
  color: #07111f;
  border: 1px solid #dce7f1;
}

@media (max-width: 992px) {
  .service-page-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-breadcrumb {
    padding: 80px 0;
  }

  .services-intro-section,
  .service-why-section,
  .service-process-section,
  .service-cta-section {
    padding: 70px 0;
  }

  .service-page-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-page-card,
  .process-card,
  .service-cta-box {
    border-radius: 22px;
  }

  .service-cta-box {
    padding: 38px 24px;
  }
}

/* ================= TEAM PAGE CSS ADDITIONS ================= */
.page-breadcrumb {
  position: relative;
  padding: 120px 0;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(7, 17, 31, 0.82), rgba(7, 17, 31, 0.88)),
    url("../../assets/img/breadcrumb/breadcrumb.jpg") center/cover no-repeat;
  overflow: hidden;
}

.page-breadcrumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0,184,255,0.22), transparent 30%);
  pointer-events: none;
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
}

.breadcrumb-content h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 14px;
}

.breadcrumb-content p {
  color: #c7d4e6;
  font-weight: 600;
}

.breadcrumb-content a {
  color: #fff;
}

.breadcrumb-content span {
  margin: 0 10px;
  color: var(--primary);
}

.team-intro-section {
  background: #fff;
  color: #07111f;
  padding: 95px 0 55px;
}

.team-intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 35px;
  align-items: center;
}

.team-intro-section .section-text {
  color: #5f6b7a;
  max-width: 720px;
}

.team-intro-card {
  padding: 35px;
  border-radius: 32px 0 32px 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 22px 50px rgba(0, 184, 255, 0.22);
}

.team-intro-card strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 58px;
  line-height: 1;
  margin-bottom: 8px;
}

.team-intro-card span {
  display: block;
  font-weight: 800;
  margin-bottom: 12px;
}

.team-intro-card p {
  color: rgba(255,255,255,0.86);
}

.team-page-section {
  background: #fff;
  color: #07111f;
  padding: 45px 0 110px;
}

.team-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-member-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border-radius: 42px 0 42px 0;
  background: #f3f6fb;
  border: 1px solid #e2e9f2;
  transition: 0.25s ease;
}

.team-member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(7,17,31,0.12);
  border-color: rgba(0,184,255,0.45);
}

.team-member-photo {
  height: 245px;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 54px;
  font-weight: 800;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.28), transparent 26%),
    linear-gradient(135deg, #07111f, #0f75bc);
}

.team-photo-madhu {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.28), transparent 26%),
    linear-gradient(135deg, #10233a, #00b8ff);
}

.team-photo-dinesh {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.28), transparent 26%),
    linear-gradient(135deg, #07111f, #3154ff);
}

.team-member-content {
  padding: 24px;
  background: #fff;
}

.team-member-content h3 {
  font-family: "Outfit", sans-serif;
  color: #06135c;
  font-size: 23px;
  margin-bottom: 4px;
}

.team-member-content p {
  color: var(--secondary);
  font-weight: 800;
  margin-bottom: 10px;
}

.team-member-content span {
  display: block;
  color: #5f6b7a;
  font-size: 14.5px;
  line-height: 1.6;
}

.team-work-section {
  background: var(--dark2);
  color: #fff;
  padding: 105px 0;
}

.team-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.team-work-box {
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  border: 1px solid var(--border);
}

.team-work-box span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0,184,255,0.14);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 22px;
}

.team-work-box h3 {
  font-family: "Outfit", sans-serif;
  font-size: 23px;
  margin-bottom: 12px;
}

.team-work-box p {
  color: var(--muted);
}

.team-cta-section {
  background: #fff;
  color: #07111f;
  padding: 90px 0;
}

.team-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 45px;
  border-radius: 36px 0 36px 0;
  background:
    radial-gradient(circle at top left, rgba(0,184,255,0.18), transparent 32%),
    #f4f8fc;
  border: 1px solid #e2e9f2;
}

.team-cta-box h2 {
  font-family: "Outfit", sans-serif;
  color: #06135c;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 8px;
}

.team-cta-box p {
  color: #5f6b7a;
}

@media (max-width: 1100px) {
  .team-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .team-intro-grid,
  .team-work-grid {
    grid-template-columns: 1fr;
  }

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

  .team-cta-box {
    display: block;
    text-align: center;
  }

  .team-cta-box .btn {
    margin-top: 22px;
  }
}

@media (max-width: 640px) {
  .page-breadcrumb {
    padding: 85px 0;
  }

  .team-intro-section,
  .team-page-section,
  .team-work-section,
  .team-cta-section {
    padding-left: 0;
    padding-right: 0;
  }

  .team-page-grid {
    grid-template-columns: 1fr;
  }

  .team-member-card {
    min-height: auto;
    border-radius: 28px 0 28px 0;
  }

  .team-member-photo {
    height: 210px;
  }

  .team-intro-card,
  .team-work-box,
  .team-cta-box {
    padding: 28px;
  }
}

.blog-section {
  padding: 100px 0;
  background: #f5f7fa;
}

.section-head h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.section-head p {
  color: #666;
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 20px;
}

.blog-content span {
  font-size: 13px;
  color: #00b8ff;
  font-weight: bold;
}

.blog-content h3 {
  font-size: 20px;
  margin: 10px 0;
  color: #07111f;
}

.blog-content p {
  font-size: 14px;
  color: #555;
}

.read-btn {
  display: inline-block;
  margin-top: 10px;
  color: #3154ff;
  font-weight: bold;
}

/* MOBILE */
@media(max-width:992px){
  .blog-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:768px){
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.contact-section {
  padding: 100px 0;
  background: #f5f7fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  background: #07111f;
  color: #fff;
  padding: 40px;
  border-radius: 12px;
}

.contact-info h2 {
  margin-bottom: 10px;
}

.contact-info p {
  color: #ccc;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.contact-item span {
  font-size: 22px;
}

.contact-item strong {
  display: block;
}

.contact-item a {
  color: #00b8ff;
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
}

.contact-form h2 {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 10px;
}

input, textarea, select {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

textarea {
  height: 120px;
}

.btn {
  margin-top: 15px;
  background: #3154ff;
  color: #fff;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

/* MAP */
.map-section {
  margin-top: 50px;
}

/* MOBILE */
@media(max-width:768px){
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }
}

.hero::before{content:"";position:absolute;inset:0;background:linear-gradient(120deg,rgba(255,213,74,.12),transparent 30%,rgba(29,78,216,.18));}
.btn{color:#081120;}
.service-card,.why-box,.team-card,.coverage-box{box-shadow:0 15px 35px rgba(0,0,0,.25);}
.section-title{letter-spacing:-1px;}


/* ===== LOGO + HEADER MOBILE OPTIMIZATION ===== */

.navbar {
  background: #061120;
}

.nav-inner {
  min-height: 118px;
  align-items: center;
}

.brand {
  max-width: 520px;
}

.brand img,
.site-logo,
.logo-img {
  width: 237px;
  max-width: 100%;
  height: auto;
  display: block;
}

.brand-icon,
.brand h1,
.brand span {
  display: none !important;
}

.menu {
  margin-left: auto;
}

.nav-call-btn {
  background: #ffd447;
  color: #061120;
  box-shadow: 0 14px 34px rgba(255, 212, 71, 0.25);
}

.nav-call-btn:hover {
  background: #ffffff;
  color: #061120;
}

/* Tablet */
@media (max-width: 992px) {
  .nav-inner {
    min-height: 95px;
    gap: 16px;
  }

  .brand {
    max-width: 380px;
  }

  .brand img,
  .site-logo,
  .logo-img {
    width: 360px;
  }

  .nav-call-btn {
    padding: 11px 16px;
    font-size: 13px;
  }

  .mobile-menu {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0 16px 14px;
    scrollbar-width: none;
  }

  .mobile-menu::-webkit-scrollbar {
    display: none;
  }

  .mobile-menu a {
    flex: 0 0 auto;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 212, 71, 0.12);
    border: 1px solid rgba(255, 212, 71, 0.25);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .topbar {
    font-size: 12px;
    padding: 8px 0;
  }

  .topbar-inner {
    text-align: center;
    display: block;
  }

  .topbar a,
  .topbar span {
    display: block;
    margin: 3px 0;
  }

  .nav-inner {
    min-height: 84px;
    padding: 0;
  }

  .brand {
    max-width: calc(100% - 95px);
  }

  .brand img,
  .site-logo,
  .logo-img {
    width: 245px;
  }

  .nav-call-btn {
    padding: 9px 12px;
    font-size: 12px;
    border-radius: 18px;
    line-height: 1.15;
  }

  .mobile-menu {
    padding: 0 12px 12px;
  }

  .mobile-menu a {
    font-size: 12px;
    padding: 8px 12px;
  }

  .hero {
    padding-top: 0;
    min-height: auto;
  }

  .hero-content {
    padding: 58px 0;
  }

  .hero h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

/* Small mobile */
@media (max-width: 380px) {
  .brand img,
  .site-logo,
  .logo-img {
    width: 218px;
  }

  .brand {
    max-width: calc(100% - 169px);
  }

  .nav-call-btn {
    padding: 8px 10px;
    font-size: 11px;
  }

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


 .blog-hero-new {
      background:
        radial-gradient(circle at 15% 20%, rgba(255, 213, 74, 0.16), transparent 28%),
        radial-gradient(circle at 85% 35%, rgba(29, 78, 216, 0.18), transparent 32%),
        linear-gradient(135deg, #07111f 0%, #0d1b2f 55%, #07111f 100%);
      padding: 90px 0 70px;
      color: #fff;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .blog-hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 45px;
      align-items: center;
    }

    .blog-tag {
      display: inline-flex;
      padding: 8px 16px;
      border-radius: 999px;
      background: rgba(255, 213, 74, 0.14);
      color: #ffd54a;
      font-weight: 800;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 18px;
    }

    .blog-hero-new h1 {
      font-family: "Outfit", sans-serif;
      font-size: clamp(36px, 5vw, 64px);
      line-height: 1.08;
      margin-bottom: 20px;
      max-width: 900px;
    }

    .blog-hero-new p {
      color: #c7d4e6;
      font-size: 18px;
      line-height: 1.75;
      max-width: 760px;
    }

    .blog-meta {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .blog-meta span {
      padding: 10px 15px;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      color: #e8eef8;
      font-size: 14px;
      font-weight: 700;
    }

    .blog-hero-img {
      min-height: 420px;
      border-radius: 34px;
      background:
        linear-gradient(rgba(7,17,31,0.18), rgba(7,17,31,0.45)),
        url('/assets/img/blog/blog-thumb-1.png') center/cover no-repeat;
      box-shadow: 0 30px 80px rgba(0,0,0,0.35);
      border: 1px solid rgba(255,255,255,0.12);
      position: relative;
      overflow: hidden;
    }

    .blog-hero-img::after {
      content: "Security First";
      position: absolute;
      left: 24px;
      bottom: 24px;
      padding: 14px 20px;
      border-radius: 999px;
      background: #ffd54a;
      color: #07111f;
      font-weight: 900;
      box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    }

    .blog-detail-section-new {
      background: #f4f7fb;
      color: #07111f;
      padding: 80px 0;
    }

    .blog-layout-new {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      gap: 34px;
      align-items: start;
    }

    .blog-article-card {
      background: #fff;
      border: 1px solid #e3eaf3;
      border-radius: 34px;
      padding: 46px;
      box-shadow: 0 22px 60px rgba(7,17,31,0.08);
    }

    .blog-article-card h2 {
      font-family: "Outfit", sans-serif;
      font-size: 36px;
      line-height: 1.2;
      color: #06135c;
      margin-bottom: 22px;
    }

    .blog-article-card h3 {
      font-family: "Outfit", sans-serif;
      font-size: 26px;
      color: #06135c;
      margin: 34px 0 12px;
    }

    .blog-article-card p {
      color: #4f5f75;
      font-size: 17px;
      line-height: 1.9;
      margin-bottom: 18px;
    }

    .blog-highlight-box {
      margin: 32px 0;
      padding: 30px;
      border-radius: 26px;
      background:
        radial-gradient(circle at top left, rgba(255,213,74,0.25), transparent 35%),
        #07111f;
      color: #fff;
      border-left: 6px solid #ffd54a;
    }

    .blog-highlight-box strong {
      display: block;
      font-family: "Outfit", sans-serif;
      color: #ffd54a;
      font-size: 25px;
      margin-bottom: 8px;
    }

    .blog-highlight-box p {
      color: #c7d4e6;
      margin: 0;
    }

    .blog-list {
      display: grid;
      gap: 12px;
      margin: 20px 0 30px;
      padding: 0;
    }

    .blog-list li {
      list-style: none;
      position: relative;
      padding: 15px 18px 15px 48px;
      background: #f5f9fd;
      border: 1px solid #e6eef6;
      border-radius: 16px;
      color: #34465c;
      font-weight: 600;
    }

    .blog-list li::before {
      content: "✓";
      position: absolute;
      left: 16px;
      top: 14px;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: #1d4ed8;
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 13px;
      font-weight: 900;
    }

    .blog-side-card {
      background: #07111f;
      color: #fff;
      border-radius: 28px;
      padding: 28px;
      position: sticky;
      top: 110px;
      box-shadow: 0 22px 60px rgba(7,17,31,0.18);
    }

    .blog-side-card h3 {
      font-family: "Outfit", sans-serif;
      font-size: 26px;
      margin-bottom: 12px;
      color: #fff;
    }

    .blog-side-card p {
      color: #c7d4e6;
      line-height: 1.7;
      margin-bottom: 22px;
    }

    .side-service-list {
      display: grid;
      gap: 12px;
      margin-bottom: 24px;
    }

    .side-service-list span {
      padding: 12px 14px;
      border-radius: 14px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      color: #fff;
      font-weight: 700;
    }

    .blog-cta-box-new {
      margin-top: 42px;
      padding: 34px;
      border-radius: 28px;
      background:
        radial-gradient(circle at top left, rgba(255,213,74,0.28), transparent 38%),
        linear-gradient(135deg, #07111f, #10203a);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .blog-cta-box-new h3 {
      color: #fff;
      margin: 0 0 8px;
    }

    .blog-cta-box-new p {
      color: #c7d4e6;
      margin: 0;
    }

    @media (max-width: 992px) {
      .blog-hero-grid,
      .blog-layout-new {
        grid-template-columns: 1fr;
      }

      .blog-side-card {
        position: static;
      }

      .blog-hero-img {
        min-height: 330px;
      }
    }

    @media (max-width: 640px) {
      .blog-hero-new {
        padding: 60px 0;
      }

      .blog-article-card {
        padding: 26px;
        border-radius: 24px;
      }

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

      .blog-article-card h3 {
        font-size: 23px;
      }

      .blog-hero-img {
        min-height: 240px;
        border-radius: 24px;
      }

      .blog-cta-box-new {
        display: block;
        padding: 26px;
      }

      .blog-cta-box-new .btn {
        width: 100%;
        margin-top: 20px;
      }
    }