.nav-item{
    margin-left:4px;
  }
  .nav-item a{
    color: white;
    font-size: 1.2rem;
  }
  .nav-item a:hover{
    background-color: grey;
    border-radius: 5px;
  }
  .btn1 {
    border-radius: 30px;
    background-color: white;
    color: black;
    padding: 0.6em 1.5em;
    margin: 0 1%;
    font-size: 1rem;
    border: 1px solid black;
    cursor: pointer;
    display: inline-block;
    text-align: center;
  }
  /* logo */
  @media (max-width: 900px) {
    .container-fluid img{
        width:20%;
    }
  }
  @media (max-width: 700px) {
    .container-fluid img{
        width:25%;
    }
  }
  @media (max-width: 500px) {
    .container-fluid img{
        width:40%;
    }
  }
  /* Tablet (≤768px) */
  @media (max-width: 768px) {
    .btn1 {
      font-size: 0.95rem;
      padding: 0.5em 1.2em;
      border-radius: 10px;
    }
  }
  
  /* Mobile (≤480px) */
  @media (max-width: 480px) {
    .btn1 {
      font-size: 0.9rem;
      padding: 0.4em 1em;
      width: 90%;
      border-radius: 8px;
      margin: 2% auto;
    }
  }
  
  
  .container-fluid img {
    padding-bottom: 10px;
  }  
  /* fomr starts */
  .contact-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #111;
    background-color: #f9f9f9;
  }
  
  .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .form-container {
    background: #fff;
    padding: 30px;
    margin-top: -120px;
    border-radius: 10px;
    position: relative;
    z-index: 2;
  }
  
  .breadcrumb {
    color: gray;
    margin-bottom: 10px;
    font-size: 14px;
  }
  
  .breadcrumb a {
    color: gray;
    text-decoration: none;
  }
  
  .form-container h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .subtext {
    font-size: 15px;
    margin-bottom: 25px;
  }
  
  .subtext a {
    text-decoration: none;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }
  
  form input,
  form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    width: 100%;
    resize: vertical;
  }
  
  button {
    padding: 12px;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
  }
  
  
  .contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    padding: 20px;
    border-radius: 10px;
  }
  
  .detail-box {
    flex: 1 1 300px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .label {
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .detail-box a {
    color: green;
    text-decoration: none;
    display: inline-block;
    margin-top: 5px;
  }
  .footer {
    background-color: #1e1e1e;
    color: #aaa;
    font-size: 14px;
    border-top: 1px solid #333;
    padding: 20px 0;
  }
  
  .footer .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  @media (max-width: 768px) {
    .form-container h1 {
      font-size: 22px;
    }
  
    .detail-box {
      flex: 1 1 100%;
    }
  }
  