 body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
    }

    /* Navbar */
    .navbar {
      background-color: rgba(0, 0, 0, 0.85);
      padding: 0.7rem 1rem;
      transition: background 0.3s ease;
    }
.navbar-toggler {
  border-color: transparent; /* optional, removes the border */
}

.navbar-toggler-icon {
  filter: invert(1) brightness(1.5);
}

    .navbar-brand {
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff !important;
    }

    .nav-link {
      color: #f8f9fa !important;
      font-weight: 500;
      margin: 0 12px;
      position: relative;
    }

    .nav-link:hover {
      color: #ffd60a !important;
    }

    .btn-call {
      background-color: #ffd60a;
      color: #000;
      border: none;
      border-radius: 25px;
      padding: 8px 20px;
      font-weight: 500;
      transition: 0.3s ease;
    }

    .btn-call:hover {
      background-color: #fcb900;
    }

    @media (max-width: 991px) {
      .nav-center {
        justify-content: center !important;
      }

      .nav-left, .nav-right {
        flex-direction: column;
        align-items: start;
      }
    }


     .hero {
      position: relative;
      min-height: 100vh;
      background: linear-gradient(135deg, #001d3d 60%, #003566 100%);
      overflow: hidden;
    }

    .hero-content {
      z-index: 10;
      position: relative;
      padding: 100px 20px;
      text-align: center;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: 800;
      color: #fff;
    }

    .hero h1 span {
      color: #ffd60a;
    }

    .typed-text {
      color: #00e0ff;
      font-weight: 600;
    }

    .hero p {
      font-size: 1.1rem;
      max-width: 600px;
      margin: 20px auto;
      color: #fff;
    }

    .hero .btn-warning {
      padding: 12px 32px;
      font-weight: 600;
      font-size: 1rem;
      border-radius: 30px;
      box-shadow: 0 10px 20px rgba(255, 214, 10, 0.3);
    }

    .floating-metrics {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .metric-box {
      background: rgba(255, 255, 255, 0.05);
      padding: 20px 30px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      min-width: 200px;
    }

    .metric-box h2 {
      font-size: 2rem;
      color: #ffd60a;
    }

    .blob {
      position: absolute;
      background: radial-gradient(circle at 30% 30%, #ffd60a55, transparent 60%);
      width: 400px;
      height: 400px;
      border-radius: 50%;
      animation: floatBlob 10s infinite ease-in-out;
    }

    .blob2 {
      top: 60%;
      left: 70%;
    }

    @keyframes floatBlob {
      0% { transform: translateY(0); }
      50% { transform: translateY(-40px); }
      100% { transform: translateY(0); }
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.2rem;
      }

      .floating-metrics {
        flex-direction: column;
        gap: 1.2rem;
      }
    }


    