 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #f4f4f4;
      color: #000000;
    }

    /* Navbar Styles */
    nav {
      background-color: #1f1f1f !important;
      color: #fff;
      padding: 15px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      position: fixed;
    }

    .nav-logo {
      font-size: 22px;
      font-weight: bold;
    }

    .nav-links {
      display: flex;
      gap: 20px;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-size: 16px;
    }

    .nav-links a:hover {
      text-decoration: underline;
    }

    /* Header */
    header {
      color: #000;
      padding: 60px 40px;
      text-align: center;
    }

    .hero {
      padding: 50px 20px;
      background: #f4f4f4;
      color: black;
      text-align: center;
    }

    .hero h2 {
      font-size: 36px;
      margin-bottom: 10px;
    }

    .hero p {
      font-size: 18px;
      max-width: 700px;
      margin: 0 auto;
    }

    .features {
      max-width: 1100px;
      margin: 40px auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }

    .card {
      background-color: #f4f4f4 !important;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      padding: 20px;
      transition: transform 0.2s;
    }

    .card:hover {
      transform: scale(1.02);
    }

    .card h3 {
      margin-bottom: 10px;
      color: #007BFF;
    }

    .details {
      max-width: 1000px;
      margin: 50px auto;
      padding: 20px;
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      line-height: 1.6;
    }

    footer {
      background-color: #1f1f1f;
      color: white;
      text-align: center;
      padding: 30px 10px;
      margin-top: 40px;
    }

    .btn {
      background-color: #007BFF;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      margin-top: 15px;
    }

    .btn:hover {
      background-color: #0056b3;
    }

    /* Modal Styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0!important;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
    }

    .modal-content {
      background-color: white;
      margin: 3% auto !important;
      padding: 30px;
      border-radius: 10px;
      max-width: 500px;
      text-align: center;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    }
   /* Add modal CSS here (from above) */
        /* Modal Styling */
    .modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.6);
    }

    .modal-content {
      background-color: #fff;
      margin: 10% auto;
      padding: 30px;
      border: 1px solid #ccc;
      width: 90%;
      max-width: 800px;
      text-align: center;
      border-radius: 10px;
      position: relative;
    }

    .modal-content h2 {
      color: #002c8b;
      margin-bottom: 15px;
    }

    .modal-content .button {
      margin-top: 15px;
    }

    .close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      cursor: pointer;
    }








    /* for model */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background-color: #f4f4f4;
      color: #333;
    }

    .modal-content .header {
      background-color: white !important;
      padding: 20px;
      color: #000 !important;
    }

    .modal-content .header .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    @media (min-width: 768px) {
      .header .container {
        flex-direction: row;
        justify-content: space-between;
      }
    }

    @media (max-width: 500px) {

      .modal-content .card h2,
      .modal-content .contactContainer h2 {
        font-size: 18px;
      }

      .modal-content .card p,
      .modal-content .contactContainer p {
        font-size: 14px;
      }

      .features .card {
        margin: 0 auto;
      }

      .modal-content .contactContainer {
        margin-top: -40px;
      }

      .modal-content .contactContainer button {
        padding: 6px;
        width: 180px;
        gap: 0px;
        font-size: 12px;
      }
    }
    .close {
      float: right;
      font-size: 24px;
      cursor: pointer;
      color: #aaa;
    }

    .close:hover {
      color: #000;
    }

    @media (max-width: 768px) {
      .nav-links {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
      }
    }


    nav {
      background-color: #1f1f1f;
      color: white;
      padding: 15px 30px;
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      /* margin: 0 auto; */
      gap: 55px;
    }

    .nav-logo {
      font-size: 22px;
      font-weight: bold;
    }

    .nav-links {
      display: flex;
      gap: 20px;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-size: 16px;
    }

    .nav-links a:hover {
      text-decoration: underline;
    }

    .nav-toggle {
      display: none;
      font-size: 26px;
      cursor: pointer;
    }

    /* Responsive Nav */
    @media (max-width: 768px) {
      .nav-toggle {
        display: block;
      }

      .nav-container {
        gap: 182px;
        margin: 0 auto;
      }

      .nav-logo {
        height: 42px;
        width: 42px;
      }

      .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
      }

      .nav-links.active {
        display: flex;
      }

      .nav-links a {
        padding: 10px 0;
        border-top: 1px solid #444;
      }

      footer a {
        font-size: 14px;
      }

      .flinks {
        margin-left: 40px;
      }
    }

    /* Modal Styling */
    .modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.6);
    }

    .modal-content {
      background-color: #fff;
      margin: 10% auto;
      padding: 30px;
      border: 1px solid #ccc;
      width: 90%;
      max-width: 800px;
      text-align: center;
      border-radius: 10px;
      position: relative;
    }

    .modal-content h2 {
      color: #002c8b;
      margin-bottom: 15px;
    }

    .modal-content .button {
      margin-top: 15px;
    }

    .close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      cursor: pointer;
    }








    /* for model */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background-color: #f4f4f4;
      color: #333;
    }

    .modal-content .header {
      background-color: #002c8b;
      padding: 20px;
      color: white;
    }

    .modal-content .header .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    @media (min-width: 768px) {
      .header .container {
        flex-direction: row;
        justify-content: space-between;
      }
    }

    @media (max-width: 500px) {

      .modal-content .card h2,
      .modal-content .contactContainer h2 {
        font-size: 18px;
      }

      .modal-content .card p,
      .modal-content .contactContainer p {
        font-size: 14px;
      }

      .features .card {
        margin: 0 auto;
      }

      .modal-content .contactContainer {
        margin-top: -40px;
      }

      .modal-content .contactContainer button {
        padding: 6px;
        width: 180px;
        gap: 0px;
        font-size: 12px;
      }
    }

    .logo {
      height: 40px;
      margin-bottom: 10px;
    }

    nav {
      width: 100%;
    }

    .nav {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: center;
    }

    @media (min-width: 768px) {
      .nav {
        flex-direction: row;
        gap: 20px;
        justify-content: flex-end;
      }
    }

    .nav a {
      color: white;
      text-decoration: none;
      font-weight: bold;
    }

    .hero {
      background-color: #e6eefc;
      padding: 60px 20px;
      text-align: center;
    }

    .hero h1 {
      font-size: 28px;
      margin-bottom: 10px;
    }

    .hero p {
      font-size: 16px;
      margin-bottom: 20px;
    }

    .search-box {
      padding: 10px;
      width: 90%;
      max-width: 400px;
      border-radius: 5px;
      border: 1px solid #ccc;
    }

    .content {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      padding: 40px 20px;
    }

    .card {
      background-color: white;
      padding: 20px;
      border-radius: 10px;
      width: 90%;
      max-width: 300px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .footer {
      background-color: #002c8b;
      color: white;
      text-align: center;
      padding: 20px 10px;
    }

    /* button for call */
    /* From Uiverse.io by adeladel522 */
    .button {
      position: relative;
      transition: all 0.3s ease-in-out;
      box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
      padding-block: 0.5rem;
      padding-inline: 1.25rem;
      background-color: rgb(0 107 179);
      border-radius: 9999px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #ffff;
      gap: 10px;
      font-weight: bold;
      border: 3px solid #ffffff4d;
      outline: none;
      overflow: hidden;
      font-size: 15px;
      margin: 0 auto;
    }

    .icon {
      width: 24px;
      height: 24px;
      transition: all 0.3s ease-in-out;
    }

    .button:hover {
      transform: scale(1.05);
      border-color: #fff9;
    }

    .button:hover .icon {
      transform: translate(4px);
    }

    .button:hover::before {
      animation: shine 1.5s ease-out infinite;
    }

    .button::before {
      content: "";
      position: absolute;
      width: 100px;
      height: 100%;
      background-image: linear-gradient(120deg,
          rgba(255, 255, 255, 0) 30%,
          rgba(255, 255, 255, 0.8),
          rgba(255, 255, 255, 0) 70%);
      top: 0;
      left: -100px;
      opacity: 0.6;
    }

    @keyframes shine {
      0% {
        left: -100px;
      }

      60% {
        left: 100%;
      }

      to {
        left: 100%;
      }
    }


    .contactContainer {
      text-align: center;
      padding: 30px;
      margin: 20px;
      background-color: #f4f4f4 !important;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .contactContainer h2 {
      color: #0056b3;
    }

    .contactContainer p {
      color: #555;

    }

    .cmargin{
      margin-top: 0;
      padding-top:180px;
    }

    .pmargin{
      margin-top: 0;
      padding-top:80px;
    }

    .abtn{
      outline: none;
      border: none;
      background-color: transparent;
      color: white;
      font-size: 16px;
    }
    .abtn:hover{
      text-decoration: underline;
      cursor: pointer;
    }
