
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: sans-serif;
      background-color: #f9f9f9;
    }
    html {
  scroll-behavior: smooth;
}
    

/*header*/
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 60px;
      background-color: rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .logo img {
      height: 90px;
      width: auto;
    }

    nav ul {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 30px;
    }

    nav ul li {
      position: relative;
    }

    nav ul li a {
      text-decoration: none;
      color: #333;
      font-weight: bold;
      padding: 8px 14px;
      transition: background 0.3s;
      border-radius: 6px;
      cursor: pointer;
    }

    nav ul li a:hover {
      background-color: #dae4ed;
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 45px;
      left: 0;
      background-color: #ffffff;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      border-radius: 6px;
      padding: 10px 0;
      min-width: 160px;
      z-index: 999;
    }

    .dropdown-menu li {
      padding: 10px 20px;
    }

    .dropdown-menu li a {
      display: block;
      color: #333;
      text-decoration: none;
    }

    .dropdown-menu li:hover {
      background-color: #f5f5f5;
    }

    /*  Responsive Styles */
    @media (max-width: 768px) {
      header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 30px;
      }

      .logo img {
        height: 70px;
      }

      nav {
        width: 100%;
      }

      nav ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        display: none;
      }

      nav ul.show {
        display: flex;
      }

      nav ul li {
        width: 100%;
      }

      nav ul li a {
        width: 100%;
        padding: 12px 20px;
      }

      .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        min-width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
      }

      .dropdown-menu li {
        padding: 12px 20px;
      }

      .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        margin-bottom: 10px;
      }

      .menu-toggle span {
        width: 25px;
        height: 3px;
        background-color: #333;
        border-radius: 2px;
      }
    }

   
    
/*header*/



/*hero section*/

    .hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
    
    height: 100vh;

  background-size: cover;
  background-position: center;
  position: relative;
}

    .hero img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
      z-index: 2;
      padding: 20px;
      max-width: 800px;
    }

    .hero h1 {
      font-size: 48px;
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 20px;
      color: #ddd;
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 32px;
      }

      .hero p {
        font-size: 16px;
      }
    }


    /*services*/
    
    .services {
      padding: 60px 20px;
      background-color: #f8f9fa;
      text-align: center;
    }

    .section-title {
      font-size: 36px;
      margin-bottom: 40px;
      color: #12375b;
    }

    .service-boxes {
      display: flex;
      gap: 30px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .service-card {
      background-size: cover;
      background-position: center;
      width: 300px;
      height: 300px;
      border-radius: 12px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s;
      text-decoration: none;
      color: inherit;
      display: block;
    }

    .service-card:hover {
      transform: scale(1.03);
    }

    .service-card .content {
      position: absolute;
      bottom: 0;
      width: 100%;
      padding: 20px;
      background: rgba(0,0,0,0.55);
      color: #fff;
    }

    .service-card h3 {
      margin-bottom: 10px;
      font-size: 24px;
    }

    .service-card p {
      font-size: 14px;
      line-height: 1.5;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .service-boxes {
        flex-direction: column;
        align-items: center;
      }

      .service-card {
        width: 90%;
        margin-bottom: 20px;
      }
    }



    /*what we do*/
    
    .help-section {
      padding: 60px 20px;
      background-color: #fff;
      text-align: center;
    }

    .help-section h2 {
      font-size: 36px;
      margin-bottom: 50px;
      color: #12375b;
    }

    .help-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
    }

    .help-image {
      flex: 1;
      min-width: 300px;
    }

    .help-image img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .help-points {
      flex: 1;
      min-width: 300px;
      text-align: left;
    }

    .help-points ul {
      list-style: none;
      padding-left: 0;
    }

    .help-points li {
      background: #dae4ed;
      margin-bottom: 15px;
      padding: 15px 20px;
      border-left: 5px solid #12375b;
      border-radius: 8px;
      color: #333;
      font-size: 16px;
    }

    @media (max-width: 768px) {
      .help-content {
        flex-direction: column;
        text-align: center;
      }

      .help-points {
        text-align: center;
      }

      .help-points li {
        text-align: left;
      }
    }
/*footer*/
     footer {
      background-color: #ffffff;
      color: #333;
    
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 50px;
       padding: 40px 100px 0;
    }

    .footer-column {
      flex: 1;
      min-width: 200px;
    }

    .footer-logo img {
      height: 70px;
      width: auto;
      margin-bottom: 15px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      color: #444;
      font-size: 15px;
    }

    .contact-item i {
      margin-right: 8px;
    }

    .footer-column h4 {
      margin-bottom: 15px;
      font-weight: bold;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 10px;
    }

    .footer-column ul li a {
      text-decoration: none;
      color: #444;
    }

    .footer-column ul li a:hover {
      color: #000;
    }

    .footer-bottom {
      background-color: #12375b;
      color: white;
      text-align: center;
      padding: 15px 10px;
      margin-top: 30px;
      font-size: 14px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-bottom {
        text-align: center;
      }
    }


/*form section*/

   .form-section {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.form-left {
  flex: 1;
  padding: 40px;
}

.form-left h2 {
  margin-bottom: 25px;
  font-size: 28px;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

.form-check input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 4px;
}

.form-check label {
  display: inline-block;
}

.form-check a {
  color: darkblue;
  text-decoration: none;
}

.form-check a:hover {
  text-decoration: underline;
}


.my-button {
  background-color: #12375b;
  color: #fff;
  border: none;
  padding: 12px 20px;
  width: 100%;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

    .my-button:hover {
        background-color: #869caf;
    }

.form-right {
  flex: 1;
  min-height: 100%;
}

.form-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .form-section {
    flex-direction: column;
  }

  .form-left,
  .form-right {
    width: 100%;
  }

  .form-right {
    height: 250px;
  }
}



    /*term*/
        .terms-container {
  
      margin: 50px auto;
      padding-left: 50px;
      padding-right: 50px;
    }

    .terms-container h1 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 30px;
      color: #12375b;
      letter-spacing: 0.5px;
    }

    .terms-container p {
      margin-bottom: 20px;
      font-size: 17px;
      word-spacing: 1.2px;
      letter-spacing: 0.2px;
      text-align: justify;
       color:#333;
    }
    .terms-container h3 {
     
       color:#12375b;
    }
    .terms-container h2 {
     
       color:#12375b;
    }

    @media (max-width: 768px) {
      .terms-container h1 {
        font-size: 28px;
      }

      .terms-container p {
        font-size: 15px;
      }
    }



    /*privacy*/
       .privacy-container {
  
      margin: 50px auto;
      padding-left: 50px;
      padding-right: 50px;
    }

    .privacy-container h1 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 30px;
      color: #12375b;
      letter-spacing: 0.5px;
    }

    .privacy-container p {
      margin-bottom: 20px;
      font-size: 17px;
      word-spacing: 1.2px;
      letter-spacing: 0.2px;
      text-align: justify;
      color:#333;
    }
      .privacy-container h3 {
     
       color:#12375b;
    }
    .privacy-container h2 {
     
       color:#12375b;
    }

    @media (max-width: 768px) {
      .privacy-container h1 {
        font-size: 28px;
      }

      .privacy-container p {
        font-size: 15px;
      }
    }


    /*contact*/
    
        .contact-section {
    padding: 60px 20px;
    background-color: #f5f9fc;
  }

  .contact-container {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .contact-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #12375b;
  }

  form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  input, textarea {
    flex: 1;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
    width: 100%;
  }

  textarea {
    resize: vertical;
  }

  .submit-row {
    text-align: center;
  }

  button {
    background-color: #12375b;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
  }

  @media (max-width: 768px) {
    .row {
      flex-direction: column;
    }
  }




  /*partner*/
  .partnerscontainer{
     padding-left: 70px;
      line-height: 1.9;
  }
  
    h1.partner {
      color: #12375b;
      font-size: 32px;
      font-weight: bold;
    }

    p.partner {
      font-weight: bold;
      color: #333;
    }

    .columns {
      display: flex;
      gap: 40px;
      margin-top: 20px;
    }

    .column.partner {
      flex: 1;
    }

    ul {
      list-style: disc;
      padding-left: 20px;
    }



