    :root {
      --primary-color: #0f2a50;
    }

    body {
      font-family: "Poppins", sans-serif;
      background: #f8f9fa;
      margin: 0%;
    }

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

    .navbar {
      background-color: #fff;
      position: sticky;
      top: 0;
      z-index: 99;
      transition: all 0.3s ease;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .navbar-brand,
    .nav-link {
      color: var(--primary-color) !important;
      position: relative;
      transition: 0.3s ease;
    }


    .nav-link:hover {
      color: #0a1c37 !important;
    }


    .nav-link::after {
      content: "";
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary-color);
      transition: width 0.3s ease;
    }


    .nav-link:hover::after {
      width: 100%;
    }

    button {
      background-color: var(--primary-color);
      color: #fff;
      padding: 12px 24px;
      border: 1px solid var(--primary-color);
      border-radius: 12px;
      -webkit-border-radius: 12px;
      -moz-border-radius: 12px;
      -ms-border-radius: 12px;
      -o-border-radius: 12px;
      font-weight: 700;
    }

    button:hover {
      background-color: transparent;
      color: var(--primary-color);
    }

    section {
      background-color: #ffffff;
      padding: 60px 0px;
    }

    .hero {
      padding: 40px 0px !important;
    }

    .section-bg {
      background-color: #f4f6f8;
    }

    .section-title {
      color: var(--primary-color);
      font-weight: 700;
      margin-bottom: 20px;
    }

    .service-card {
      border: none;
      padding: 25px;
      background: #fff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      border-radius: 10px;
      transition: 0.3s;
    }

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


    footer {
      background-color: var(--primary-color);
      color: #fff;
      padding-top: 60px;
      padding-bottom: 20px;
    }

    footer h4 {
      font-weight: 700;
      margin-bottom: 24px;
    }

    .footer-nav-link {
      color: #fff;
      position: relative;
      transition: 0.3s ease;
    }