* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    box-shadow: #c3c0c066 0px 25px 50px -12px;
    z-index: 1000;
    position: sticky;
  }
  .navbar .logo {
    display: flex;
    align-items: center;
  }
  .navbar .logo img {
    height: 40px;
    margin-right: 10px;
  }
  .navbar ul {
    display: flex;
    list-style: none;
    gap: 35px;
  }

  
  .navbar ul li a {
    text-decoration: none;
    color: #333;
    font-weight:200;
    position: relative;
  }
  .navbar ul li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: #2e79f6;
    left: 0;
    bottom: -5px;
    transition: width 0.3s;
  }
  .navbar ul li a:hover::after {
    width: 100%;
  }



  /* hero section */

   .hero-section {
      background-image: url(image/contact.jpg);
      background-size: cover;
      background-position: center;
      height: 60vh;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 30px;
      color: white;
      background-repeat: no-repeat;
       z-index: 1;
    }
    .hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Black with 60% opacity */
  z-index: -1;
}

    .breadcrumb {
      font-size: 16px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: #f0f0f0;
    }

    .breadcrumb a {
      text-decoration: none;
      color: #f0f0f0;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .breadcrumb span {
      color: #cccccc;
    }

    .page-title {
      font-size: 42px;
      font-weight: 600;
      letter-spacing: 1px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    @media (max-width: 768px) {
      .hero-section {
        height: 40vh;
        padding: 20px;
      }

      .page-title {
        font-size: 28px;
      }

      .breadcrumb {
        font-size: 14px;
      }
    }


    .contact-section {
      padding: 60px 20px;
      
      text-align: center;
    }
    .contact-section h2 {
      font-size: 36px;
      margin-bottom: 10px;
    }
    .contact-boxes {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }
    .box {
      background: #fdfdfd;
      padding: 30px;
      width: 220px;
      box-shadow: rgba(50, 50, 93, 0.112) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
      border-radius: 8px;
    }
    .box i {
      font-size: 28px;
      margin-bottom: 10px;
      color: #2e79f6;
    }
    .box h4 {
      margin: 10px 0 5px;
      font-size: 16px;
      font-weight: 600;
    }
    .box p {
      font-size: 14px;
      color: #aaa;
    }
    .loan-section {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      padding: 60px 20px;
            justify-content: center;
    }
    .loan-form {
      flex: 1 1 300px;
      max-width: 500px;
    }
    .loan-form h3 {
      font-size: 24px;
      margin-bottom: 20px;
    }
    .loan-form form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .loan-form input, .loan-form textarea {
      padding: 12px;
      border: none;
      border-radius: 4px;

      color: white;
    }
    .loan-form button {
      padding: 12px;
      background: #2e79f6;
      color: white;
      border: none;
      border-radius: 4px;
      font-weight: bold;
      cursor: pointer;
    }
    .map {
      flex: 1 1 300px;
    }
    iframe {
      width: 100%;
      height: 100%;
      min-height: 300px;
      border: 0;
      border-radius: 8px;
    }