
        * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    :root {
      --navy-blue:   #0a2b3e;
      --navy-dark:   #06212e;
      --navy-mid:    #0d3550;
      --green-accent:#2c7a4d;
      --green-hover: #1e5a38;
      --green-light: #e6f4ec;
      --border:      #d8eae0;
      --bg-light:    #f4f8f5;
      --text-dark:   #0d1f2d;
      --text-muted:  #5a7a8a;
    }

    html, body {
  overflow-x: hidden;
}

    body {
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
    }

    h1, h2, h3, h4, .navbar-brand, .btn, .nav-link {
      font-family: 'Poppins', sans-serif;
    }

    /* Modern Top Bar */
    .top-bar {
     background: linear-gradient(135deg, #2c7a4d, #198754); /* deep navy, professional government tech */
      color: #e2e8f0;
      padding: 10px 0;
      font-size: 0.85rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .top-bar a {
      color: #cbd5e1;
      text-decoration: none;
      transition: all 0.2s ease;
      margin: 0 6px;
      font-size: 0.85rem;
    }
    .top-bar a:hover {
      color: #60a5fa;
      transform: translateY(-1px);
    }
    .social-icons a {
      font-size: 0.9rem;
      margin-left: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      transition: all 0.2s;
    }
    .social-icons a:hover {
      background: #2563eb;
      color: white !important;
      transform: translateY(-2px);
    }
    .top-bar .bi-geo-alt, .top-bar .bi-envelope, .top-bar .bi-telephone {
      margin-right: 5px;
    }
    .top-bar .divider {
      color: #334155;
      margin: 0 10px;
    }

   
    .btn-outline-modern {
      border: 1.5px solid #2563eb;
      border-radius: 40px;
      padding: 8px 22px;
      font-weight: 600;
      color: #2563eb;
      transition: all 0.2s;
    }
    .btn-outline-modern:hover {
      background: #2563eb;
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 8px 18px rgba(37,99,235,0.2);
    }

   
    .btn-hero-primary {
      background: #2563eb;
      border: none;
      padding: 12px 32px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.2s;
      box-shadow: 0 8px 20px rgba(37,99,235,0.3);
    }
    .btn-hero-primary:hover {
      background: #1d4ed8;
      transform: translateY(-3px);
      box-shadow: 0 15px 25px rgba(37,99,235,0.4);
    }
    .btn-hero-outline {
      background: transparent;
      border: 1.5px solid #2563eb;
      padding: 12px 32px;
      border-radius: 50px;
      font-weight: 600;
      color: #1e40af;
      margin-left: 15px;
      transition: all 0.2s;
    }
    .btn-hero-outline:hover {
      background: #2563eb;
      color: white;
      transform: translateY(-3px);
    }
    .hero-stats {
      margin-top: 3rem;
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .stat-item h3 {
      font-weight: 800;
      font-size: 1.8rem;
      color: #0f2b3d;
      margin-bottom: 0;
    }

    /* Services Section */
    .section-title {
      font-weight: 700;
      font-size: 2.4rem;
      margin-bottom: 1rem;
      color: #0f172a;
    }
   
    
 /* ================= NAVBAR ================= */
.kiwi-navbar {
  background: #fff;
  border-bottom: 1px solid #edf2f7;
  transition: all .3s ease;
}

/* Scroll hone ke baad */
.kiwi-navbar.sticky-nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  animation: slideDown .3s ease;
}

@keyframes slideDown{
  from{
    transform: translateY(-100%);
  }
  to{
    transform: translateY(0);
  }
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  min-height: 72px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  white-space: nowrap;
  background: linear-gradient(135deg, #0F2F3F, #1C5D4A);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  color: #1f2e3a;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 40px;
  white-space: nowrap;
  transition: 0.2s ease;
}

.nav-link:hover {
  background: #f0f4fa;
  color: #1b4f3f;
}

/* ================= MEGA MENU ================= */
.megamenu {
  position: fixed;
  top: 142px;              /* adjust 135-150 if needed */
  left: 50%;
  transform: translateX(-50%);
  width: calc(100vw - 48px);
  max-width: 1150px;
  background: #fff;
  border: 1px solid #eef2f8;
  border-radius: 24px;
  box-shadow: 0 22px 45px rgba(0,0,0,.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 99999;
  transition: opacity .15s ease, visibility .15s ease;
}

/* Open on hover */
.dropdown:hover .megamenu,
.megamenu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Invisible bridge: stops auto close while moving mouse down */
.dropdown::after {
  content: "";
  position: absolute;
  left: -20px;
  top: 100%;
  width: calc(100% + 40px);
  height: 80px;
  background: transparent;
  z-index: 99998;
}

.megamenu-inner {
  padding: 32px;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.mega-col h4 {
  margin: 0 0 18px;
  padding-left: 12px;
  border-left: 4px solid #2c7a4d;
  color: #2c7a4d;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.mega-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-col ul li {
  margin-bottom: 14px;
}

.mega-col ul li a {
  display: inline-block;
  color: #213d4f;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
  transition: 0.2s ease;
}

.mega-col ul li a:hover {
  color: #2c7a4d;
  transform: translateX(5px);
}

.web3-callout {
  margin-top: 28px;
  padding: 16px 24px;
  background: linear-gradient(105deg, #f0f7f3, #eaf3ef);
  border: 1px solid #d0e3db;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.web3-callout span {
  color: #155a3b;
  font-size: 0.95rem;
  font-weight: 800;
}

.web3-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: #fff;
  color: #0f2b3d;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
}

.web3-link:hover {
  background: #2c7a4d;
  color: #fff;
}

/* ================= MOBILE ================= */
.mobile-toggle {
  display: none;
  background: none;
  border: 0;
  color: #1e2f3e;
  font-size: 1.7rem;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .megamenu {
    width: calc(100vw - 32px);
    max-width: 960px;
  }

  .mega-grid {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    padding: 22px 18px 40px;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    overflow-y: auto;
    transition: left .3s ease;
    z-index: 9999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 13px 16px;
    border-radius: 14px;
  }

  .dropdown::after {
    display: none;
  }

  .megamenu {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin-top: 8px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border-radius: 18px;
  }

  .megamenu.mobile-open {
    display: block;
  }

  .megamenu-inner {
    padding: 20px;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .web3-callout {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .nav-container {
    padding: 0 14px;
  }

  .logo {
    font-size: 1.45rem;
  }
}

/* Prevent horizontal scroll */
html,
body {
  overflow-x: hidden;
}

    /* Demo content styling */
    .hero {
      max-width: 1200px;
      margin: 60px auto;
      padding: 40px 24px;
      text-align: center;
    }
    .hero h1 {
      font-size: 2.8rem;
      font-weight: 700;
      background: linear-gradient(130deg, #0f2f3f, #236b4e);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-top: 12px;
    }
    .badge {
      background: #eef2ff;
      padding: 4px 14px;
      border-radius: 40px;
      font-size: 0.8rem;
      display: inline-block;
    }
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
      margin-top: 48px;
    }
    .card {
      background: white;
      border-radius: 28px;
      padding: 28px;
      border: 1px solid #eef2f8;
      transition: 0.2s;
    }
    .card i {
      font-size: 2rem;
      color: #2c7a4d;
      margin-bottom: 16px;
    }
   



     /* ── Carousel wrapper ── */
    #heroCarousel { position: relative; }

    .carousel-indicators [data-bs-target] {
      width: 10px; height: 10px;
      border-radius: 50%;
      background-color: rgba(255,255,255,0.4);
      border: none;
      margin: 0 5px;
      transition: background 0.3s;
    }
    .carousel-indicators .active { background-color: var(--green-accent) !important; }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: rgba(44,122,77,0.6);
      border-radius: 50%;
      padding: 18px;
      background-size: 50%;
    }

    /* ── Shared hero styles ── */
    .hero-section {
      background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-dark) 100%);
      padding: 30px 0;
      position: relative;
      overflow: hidden;
      min-height: 520px;
    }
    .hero-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: radial-gradient(circle at 10% 30%, rgba(44,122,77,0.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-title {
      font-size: 3rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: white;
      line-height: 1.1;
    }
    .hero-title span {
      color: var(--green-accent);
      border-bottom: 3px solid var(--green-accent);
      display: inline-block;
      padding-bottom: 4px;
    }
    .hero-subtitle {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.85);
      margin-bottom: 1.5rem;
      max-width: 90%;
    }
    .btn-green {
      background-color: var(--green-accent);
      border: none;
      color: white;
      padding: 12px 28px;
      font-weight: 600;
      border-radius: 40px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .btn-green:hover {
      background-color: var(--green-hover);
      transform: translateY(-2px);
      color: white;
      box-shadow: 0 8px 20px rgba(44,122,77,0.3);
    }
    .btn-outline-light {
      border: 2px solid rgba(255,255,255,0.5);
      background: transparent;
      color: white;
      padding: 10px 26px;
      border-radius: 40px;
      font-weight: 500;
      transition: 0.3s;
    }
    .btn-outline-light:hover {
      background: rgba(255,255,255,0.1);
      border-color: white;
      transform: translateY(-2px);
    }
    .service-badge {
      background: rgba(44,122,77,0.15);
      backdrop-filter: blur(2px);
      border-radius: 60px;
      padding: 6px 12px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.85rem;
      font-weight: 500;
      color: #e0f2e9;
      margin-bottom: 20px;
      border: 1px solid rgba(44,122,77,0.3);
    }
    .service-badge i { color: var(--green-accent); font-size: 1rem; }
    .hero-stats {
      display: flex;
      gap: 30px;
      margin-top: 22px;
      flex-wrap: wrap;
    }
    .stat-item { display: flex; flex-direction: column; }
    .stat-number {
      font-size: 1.8rem;
      font-weight: 800;
      color: white;
      line-height: 1.2;
    }
    .stat-label {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.7);
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .icon-soft-hard {
      display: flex;
      gap: 20px;
      margin: 20px 0 10px;
      flex-wrap: wrap;
    }
    .icon-card {
      background: rgba(255,255,255,0.05);
      border-radius: 20px;
      padding: 12px 18px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255,255,255,0.1);
    }
    .icon-card i { font-size: 1.6rem; color: var(--green-accent); }
    .icon-card span { color: white; font-weight: 500; font-size: 0.9rem; }

    /* slide-specific bg accent positions */
    .slide2-section::before {
      background: radial-gradient(circle at 90% 20%, rgba(44,122,77,0.1) 0%, transparent 60%);
    }
    .slide3-section::before {
      background: radial-gradient(circle at 50% 80%, rgba(44,122,77,0.1) 0%, transparent 60%);
    }

    /* floating pill badge */
    .float-pill {
      background: var(--navy-blue) !important;
      border-left: 4px solid var(--green-accent);
      color: white;
      font-size: 0.8rem;
      font-weight: 500;
    }

    /* progress bar strip at bottom */
    .slide-progress {
      position: absolute;
      bottom: 0; left: 0;
      height: 3px;
      background: var(--green-accent);
      animation: progress 5s linear infinite;
      width: 0%;
    }
    @keyframes progress { from { width: 0% } to { width: 100% } }

    @media (max-width: 768px) {
      .hero-section { padding: 60px 0; text-align: center; }
      .hero-title { font-size: 2.3rem; }
      .hero-subtitle { max-width: 100%; }
      .hero-stats { justify-content: center; }
      .icon-soft-hard { justify-content: center; }
    }


    .mission-vision-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #ffffff 0%, #f5f9fc 100%);
    }
    .section-badge {
      background: rgba(44,122,77,0.12);
      color: var(--green-accent);
      border-radius: 60px;
      padding: 6px 18px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 20px;
    }
    .section-title {
      font-weight: 800;
      font-size: 2.2rem;
      color: var(--navy-blue);
      margin-bottom: 16px;
    }
    .section-sub {
      color: #5a6e7f;
      max-width: 700px;
      margin: 0 auto 48px auto;
    }
    .mv-card {
      background: white;
      border-radius: 32px;
      padding: 40px 32px;
      height: 100%;
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border: 1px solid rgba(44, 122, 77, 0.15);
      text-align: center;
    }
    .mv-card:hover {
      transform: translateY(-8px);
      border-color: var(--green-accent);
      box-shadow: 0 28px 40px -12px rgba(10, 43, 62, 0.2);
    }
    .mv-icon {
      background: rgba(44, 122, 77, 0.12);
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin: 0 auto 24px auto;
    }
    .mv-icon i {
      font-size: 2.5rem;
      color: var(--green-accent);
    }
    .mv-card h3 {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--navy-blue);
      margin-bottom: 20px;
    }
    .mv-card p {
      color: #4b6a7f;
      line-height: 1.6;
      font-size: 1rem;
    }
    .highlight-green {
      color: var(--green-accent);
      font-weight: 600;
    }
    .core-values {
      margin-top: 60px;
      text-align: center;
    }
    .value-item {
      background: white;
      border-radius: 20px;
      padding: 20px 16px;
      transition: 0.2s;
      border: 1px solid #eef2f8;
      height: 100%;
    }
    .value-item i {
      font-size: 1.8rem;
      color: var(--green-accent);
      margin-bottom: 12px;
    }
    .value-item h5 {
      font-weight: 700;
      color: var(--navy-blue);
    }
    @media (max-width: 768px) {
      .mission-vision-section {
        padding: 60px 0;
      }
      .section-title {
        font-size: 1.8rem;
      }
      .mv-card {
        padding: 28px 20px;
      }
      .mv-card h3 {
        font-size: 1.5rem;
      }
    }



    /* ─── SERVICES SECTION ─── */
    .services-section {
      background:var(--navy-blue); padding:90px 0 80px; position:relative;
    }
    .services-section::before {
      content:''; position:absolute; top:0; left:0; right:0; height:5px;
      background:linear-gradient(90deg,var(--navy-dark),var(--green-accent),var(--navy-dark));
    }

    .section-eyebrow {
      display:inline-flex; align-items:center; gap:8px;
      background:var(--green-light); border:1px solid var(--border); border-radius:40px;
      padding:5px 16px; font-size:.78rem; font-weight:700; letter-spacing:.08em;
      text-transform:uppercase; color:var(--green-accent); margin-bottom:16px;
    }
    .section-title { font-family:'Syne',sans-serif; font-size:2.6rem; font-weight:800; color:var(--bg-light); letter-spacing:-.025em; line-height:1.15; }
    .section-title span { color:var(--green-accent); }
    .section-subtitle { font-size:1.05rem; color:var(--bg-light); max-width:580px; line-height:1.75; }

    /* Stats row */
    .hdr-stats { display:flex; gap:28px; flex-wrap:wrap; align-items:center; }
    .hdr-stat-num { font-family:'Syne',sans-serif; font-size:2rem; font-weight:800; color:var(--bg-light); }
    .hdr-stat-lbl { font-size:.78rem; color:var(--green-accent); text-transform:uppercase; letter-spacing:1px; }
    .hdr-divider { width:1px; height:48px; background:var(--border); }

    /* Category tabs */
    .cat-tabs {
      display:flex; gap:8px; flex-wrap:wrap; margin-bottom:44px;
      border-bottom:1.5px solid var(--border); padding-bottom:0;
    }
    .cat-tab {
      background:transparent; border:none; cursor:pointer;
      font-family:'Manrope',sans-serif; font-size:.88rem; font-weight:600;
      color:var(--bg-light); padding:10px 22px;
      border-bottom:3px solid transparent; margin-bottom:-1.5px;
      transition:.25s; border-radius:8px 8px 0 0;
    }
    .cat-tab:hover { color:var(--navy-dark); background:rgba(44,122,77,.06); }
    .cat-tab.active { color:var(--green-accent); border-bottom-color:var(--green-accent); background:rgba(44,122,77,.06); }
    .cat-tab i { margin-right:7px; }

    /* Service grid */
    .srv-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
    .srv-card {
      background:#fff; border-radius:20px; border:1.5px solid var(--border);
      padding:32px 28px; position:relative; overflow:hidden; transition:.3s; cursor:default;
    }
    .srv-card::after {
      content:''; position:absolute; bottom:0; left:0; width:100%; height:3px;
      background:linear-gradient(90deg,var(--green-accent),transparent);
      transform:scaleX(0); transform-origin:left; transition:.3s;
    }
    .srv-card:hover { transform:translateY(-6px); box-shadow:0 20px 48px rgba(10,43,62,.1); border-color:rgba(44,122,77,.35); }
    .srv-card:hover::after { transform:scaleX(1); }
    .srv-card.featured {
      background:linear-gradient(145deg,var(--navy-dark) 0%,var(--navy-mid) 100%);
      border-color:rgba(44,122,77,.4);
    }
    .srv-card.featured .srv-title { color:#fff; }
    .srv-card.featured .srv-desc { color:rgba(255,255,255,.7); }
    .srv-card.featured .srv-tag { background:rgba(44,122,77,.25); color:#a3e4bc; border-color:rgba(44,122,77,.4); }
    .srv-card.featured .srv-link { color:#5fcea0; }
    .srv-card.featured::after { background:linear-gradient(90deg,var(--green-accent),rgba(44,122,77,.2)); }
    .srv-icon-wrap {
      width:54px; height:54px; border-radius:14px;
      background:var(--green-light); border:1.5px solid var(--border);
      display:flex; align-items:center; justify-content:center; margin-bottom:20px; transition:.3s;
    }
    .srv-card:hover .srv-icon-wrap { background:var(--green-accent); border-color:var(--green-accent); }
    .srv-card:hover .srv-icon-wrap i { color:#fff; }
    .srv-icon-wrap i { font-size:1.4rem; color:var(--green-accent); transition:.3s; }
    .srv-card.featured .srv-icon-wrap { background:rgba(44,122,77,.2); border-color:rgba(44,122,77,.35); }
    .srv-card.featured .srv-icon-wrap i { color:#5fcea0; }
    .srv-card.featured:hover .srv-icon-wrap { background:var(--green-accent); border-color:var(--green-accent); }
    .srv-card.featured:hover .srv-icon-wrap i { color:#fff; }
    .srv-title { font-family:'Syne',sans-serif; font-size:1.1rem; font-weight:700; color:var(--navy-dark); margin-bottom:10px; line-height:1.3; }
    .srv-desc { font-size:.87rem; color:var(--text-muted); line-height:1.7; margin-bottom:18px; }
    .srv-tags { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:20px; }
    .srv-tag {
      font-size:.7rem; font-weight:700; letter-spacing:.04em;
      background:var(--green-light); color:var(--green-accent);
      border:1px solid var(--border); border-radius:30px; padding:3px 11px; text-transform:uppercase;
    }
    .srv-link { display:inline-flex; align-items:center; gap:6px; font-size:.84rem; font-weight:700; color:var(--green-accent); text-decoration:none; transition:gap .2s; }
    .srv-link:hover { gap:10px; }
    .srv-link i { font-size:.78rem; }
    .feat-badge {
      position:absolute; top:20px; right:20px;
      background:var(--green-accent); color:#fff;
      font-size:.68rem; font-weight:700; letter-spacing:.08em;
      text-transform:uppercase; padding:4px 12px; border-radius:20px;
    }

    /* Tab panels */
    .tab-panel { display:none; }
    .tab-panel.active { display:block; }

    /* CTA strip */
    .services-cta {
      margin-top:56px;
      background:linear-gradient(135deg,var(--navy-dark) 0%,var(--navy-mid) 100%);
      border-radius:24px; padding:48px 56px;
      display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:28px;
      position:relative; overflow:hidden;
    }
    .services-cta::before {
      content:''; position:absolute; right:-60px; top:-60px;
      width:260px; height:260px; border-radius:50%; background:rgba(44,122,77,.12);
    }
    .services-cta::after {
      content:''; position:absolute; left:40%; bottom:-80px;
      width:200px; height:200px; border-radius:50%; background:rgba(44,122,77,.07);
    }
    .cta-text { position:relative; z-index:2; }
    .cta-text h3 { font-family:'Syne',sans-serif; font-size:1.65rem; font-weight:800; color:#fff; margin:0 0 8px; letter-spacing:-.02em; }
    .cta-text p { color:rgba(255,255,255,.7); font-size:.95rem; margin:0; }
    .cta-actions { display:flex; gap:14px; flex-wrap:wrap; position:relative; z-index:2; }
    .btn-cta-primary {
      background:var(--green-accent); color:#fff; border:none;
      padding:13px 30px; border-radius:40px; font-weight:700;
      font-family:'Manrope',sans-serif; font-size:.92rem; transition:.3s; cursor:pointer;
    }
    .btn-cta-primary:hover { background:var(--green-hover); transform:translateY(-2px); }
    .btn-cta-outline {
      background:transparent; color:#fff; border:2px solid rgba(255,255,255,.35);
      padding:11px 28px; border-radius:40px; font-weight:600;
      font-family:'Manrope',sans-serif; font-size:.92rem; transition:.3s; cursor:pointer;
    }
    .btn-cta-outline:hover { border-color:#fff; background:rgba(255,255,255,.08); }

    /* Responsive */
    @media(max-width:991px){ .srv-grid{grid-template-columns:repeat(2,1fr);} }
    @media(max-width:767px){
      .hero-section{padding:60px 0;text-align:center;}
      .hero-title{font-size:2.2rem;}
      .hero-subtitle{max-width:100%;}
      .hero-stats{justify-content:center;}
      .icon-soft-hard{justify-content:center;}
      .srv-grid{grid-template-columns:1fr;}
      .section-title{font-size:2rem;}
      .services-cta{padding:36px 28px;text-align:center;justify-content:center;}
      .cat-tabs{overflow-x:auto;flex-wrap:nowrap;-webkit-overflow-scrolling:touch;}
      .hdr-stats{justify-content:center;}
    }


/* MODERN INDUSTRIES SECTION (custom design) */
    .industries-section {
      padding: 5rem 0;
      background: var(--navy-mid);
      position: relative;
    }
    .section-badge {
      display: inline-block;
      background: var(--green-light);
      color: var(--green-accent);
      font-weight: 600;
      font-size: 0.8rem;
      padding: 0.3rem 1rem;
      border-radius: 40px;
      margin-bottom: 1rem;
      letter-spacing: 0.3px;
    }
    .section-title {
      font-weight: 800;
      font-size: 2.6rem;
      margin-bottom: 1rem;
      color: var(--navy-dark);
      letter-spacing: -0.02em;
    }
    .section-sub {
      color: var(--text-muted);
      max-width: 620px;
      margin-bottom: 2.5rem;
    }
    /* industry card - modern minimal with green accents */
    .industry-card-modern {
      background: white;
      border-radius: 1.5rem;
      padding: 1.6rem 1rem;
      text-align: center;
      transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
      border: 1px solid var(--border);
      box-shadow: 0 5px 15px rgba(0,0,0,0.02);
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      cursor: default;
    }
    .industry-card-modern:hover {
      transform: translateY(-6px);
      border-color: var(--green-accent);
      box-shadow: 0 20px 30px -12px rgba(44,122,77,0.12), 0 0 0 1px rgba(44,122,77,0.1);
    }
    .industry-icon-circle {
      width: 70px;
      height: 70px;
      background: var(--green-light);
      border-radius: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
      transition: 0.2s;
    }
    .industry-card-modern:hover .industry-icon-circle {
      background: var(--green-accent);
    }
    .industry-icon-circle i {
      font-size: 2rem;
      color: var(--green-accent);
      transition: 0.2s;
    }
    .industry-card-modern:hover .industry-icon-circle i {
      color: white;
    }
    .industry-name-modern {
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--navy-blue);
      letter-spacing: -0.2px;
    }
    /* get in touch special card */
    .touch-card-special {
      background: linear-gradient(145deg, var(--navy-blue), #0e3a4f);
      border: none;
      box-shadow: 0 12px 20px -10px rgba(10,43,62,0.3);
    }
    .touch-card-special .industry-icon-circle {
      background: rgba(255,255,255,0.18);
    }
    .touch-card-special .industry-icon-circle i {
      color: #ffecb3;
    }
    .touch-card-special .industry-name-modern {
      color: white;
    }
    .touch-card-special:hover {
      transform: translateY(-6px);
      background: linear-gradient(145deg, #0e3a4f, var(--navy-dark));
    }
    /* technologies section */
    .tech-section {
      background: var(--bg-light);
      padding-top: 5rem;
      border-top: 1px solid var(--border);
    }
    .tech-card-modern {
      background: white;
      border-radius: 2rem;
      padding: 1rem 0.5rem;
      text-align: center;
      transition: all 0.2s ease;
      border: 1px solid #e2f0e6;
      box-shadow: 0 2px 6px rgba(0,0,0,0.02);
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      flex-direction: column;
    }
    .tech-card-modern:hover {
      border-color: var(--green-accent);
      background: white;
      transform: translateY(-3px);
      box-shadow: 0 12px 20px -12px rgba(44,122,77,0.15);
    }
    .tech-icon-lg {
      font-size: 2.2rem;
      margin-bottom: 0.3rem;
    }
    .tech-name-modern {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--text-dark);
    }
   

   .drone-section {
      background: linear-gradient(145deg, #ffffff 0%, #f6fafd 100%);
      padding: 5rem 0;
      position: relative;
      overflow: hidden;
    }
    .drone-section::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(44,122,77,0.05) 0%, rgba(44,122,77,0) 70%);
      border-radius: 50%;
      z-index: 0;
    }
    .badge-modern {
      background: #e9f5ef;
      color: #1f6e43;
      font-weight: 600;
      font-size: 0.8rem;
      padding: 0.4rem 1.2rem;
      border-radius: 40px;
      letter-spacing: 0.3px;
      display: inline-block;
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'Poppins', sans-serif;
      font-weight: 800;
      font-size: 2.8rem;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #0a2b3e 0%, #1c5d4a 100%);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }
    .section-sub {
      font-size: 1.1rem;
      color: #4a627a;
      max-width: 650px;
      margin-bottom: 2rem;
    }
    .feature-card {
      background: white;
      border-radius: 1.75rem;
      padding: 1.8rem 1.2rem;
      transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
      border: 1px solid #e2edf0;
      box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.05);
      height: 100%;
      position: relative;
      z-index: 2;
    }
    .feature-card:hover {
      transform: translateY(-10px);
      border-color: #2c7a4d;
      box-shadow: 0 25px 35px -18px rgba(44,122,77,0.2);
    }
    .feature-icon {
      width: 70px;
      height: 70px;
      background: #eef6f2;
      border-radius: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }
    .feature-icon i {
      font-size: 2rem;
      color: #2c7a4d;
    }
    .feature-title {
      font-weight: 800;
      font-size: 1.4rem;
      margin-bottom: 0.75rem;
      font-family: 'Poppins', sans-serif;
    }
    .feature-text {
      color: #5a6e85;
      font-size: 0.95rem;
      line-height: 1.5;
    }
    .drone-img-main {
      border-radius: 2rem;
      box-shadow: 0 25px 40px -18px rgba(0, 0, 0, 0.25);
      transition: transform 0.3s;
      width: 100%;
      object-fit: cover;
    }
    .drone-img-main:hover {
      transform: scale(1.02);
    }
    .cert-badge {
      background: linear-gradient(105deg, #fff8e7, #ffffff);
      border-left: 5px solid #2c7a4d;
      border-radius: 1rem;
      padding: 0.8rem 1.2rem;
      margin: 1.5rem 0;
    }
    .army-gallery img {
      border-radius: 1.5rem;
      transition: all 0.3s;
      width: 100%;
      object-fit: cover;
      height: 180px;
      box-shadow: 0 12px 20px -12px rgba(0,0,0,0.15);
    }
    .army-gallery img:hover {
      transform: scale(1.03);
      box-shadow: 0 20px 25px -15px rgba(0,0,0,0.2);
    }
    .btn-cta-primary {
      background: #2c7a4d;
      border: none;
      padding: 12px 32px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.2s;
      box-shadow: 0 8px 18px rgba(44,122,77,0.3);
    }
    .btn-cta-primary:hover {
      background: #1e5a38;
      transform: translateY(-3px);
      box-shadow: 0 15px 25px rgba(44,122,77,0.4);
    }
    .btn-outline-accent {
      border: 1.5px solid #2c7a4d;
      background: transparent;
      padding: 12px 32px;
      border-radius: 50px;
      font-weight: 600;
      color: #1f5e3e;
      transition: 0.2s;
      margin-left: 12px;
    }
    .btn-outline-accent:hover {
      background: #2c7a4d;
      color: white;
      transform: translateY(-3px);
    }
    .dgca-tag {
      background: #fef7e0;
      border-radius: 60px;
      padding: 6px 18px;
      font-size: 0.8rem;
      font-weight: 600;
      color: #b26b00;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    @media (max-width: 768px) {
      .drone-section { padding: 3rem 0; }
      .section-title { font-size: 2rem; }
      .feature-card { padding: 1.2rem; }
      .btn-outline-accent { margin-left: 0; margin-top: 12px; }
    }


