
  .banner {
  background-color: #1e1e2f;
  color: #fff;
  height: 570px;
  text-align: center;
  padding: 190px 20px 60px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.banner h1 {
  font-size: 60px;
  margin: 50px 0;
  color: #f49d1a;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
  margin-top: -50px;
}

@media (max-width: 992px) {
  .banner {
    height: 550px;
    padding: 140px 20px 40px;
  }

  .banner h1 {
    font-size: 50px;
    margin: 30px 0;
  }
}

@media (max-width: 600px) {
  .banner {
    height: 450px;
    padding: 100px 15px 30px;
  }

  .banner h1 {
    font-size: 42px;
    margin: 20px 0;
  }
}

    .office-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      top: -120px;
      position: relative; 
      text-align: center;
      margin-top: 40px;
     
    }

    .office {
      background: white;
      padding: 25px;
      height:150px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.17);
      width: 320px;
      display: flex;            /* ✅ add */
      flex-direction: column;   /* ✅ add */
      justify-content: center;  /* ✅ add: vertically center */
      align-items: center; 
    }

    .office h3 {
      margin-bottom: 10px;
      color:#640d6b;
      font-size: 18px;
    }

    .office p {
      margin: 5px 0;
      font-size: 14px;
      
    }

    .office a {
      display: inline-block;
      margin-top: 10px;
      text-decoration: underline;
      color: #1e40af;
      font-weight: bold;
    }

    .contact-section {
    padding: 60px 20px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;  /* ➔ ADD this */
    flex-wrap: wrap;
    gap: 150px;
    min-height: 500px;  /* optional: ensures enough height to show the centering effect */
}

.contact-info {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* ➔ ADD this to vertically center the text inside */
}


    .contact-info h5 {
      font-size: 28px;
      margin-bottom: 6px;
      color:#640d6b;
    }
 .contact-info h6 {
      font-size: 32px;
      margin-bottom: 6px;
      color:#f49d1a;
      font-weight: bold;
    }

    .contact-info p {
      font-size: 15px;
      margin-bottom: 10px;
    }

    .social-icons a img {
        width: 32px;
        height: 32px;
        object-fit: contain;
        display: inline-block;
        margin-right: 22px; 
        margin-top:20px;
        text-decoration:none;
        transition: transform 0.2s ease;
    }
    .social-icons a i {
        width: 55px; /* increased from 45px */
        height: 55px; /* increased from 45px */
        font-size: 25px; /* added to increase actual icon size */
        object-fit: contain;
        display: inline-block;
        margin-right: -5px;
        margin-top: 0px;
        text-decoration: none;
        transition: transform 0.2s ease;
        line-height: 55px; /* vertically center icon */
        text-align: left; /* horizontally center icon */
        color: #640d6b;
    }


    .social-icons a img:hover {
      transform: scale(1.1);
    }


.contact-form {
  background: rgb(244, 236, 253); /* Purple-ish box */
  padding: 30px;
  border: 2px solid #640d6b;
  border-radius: 10px;
  width: 100%;
  max-width: 600px;
  box-sizing: border-box; /* Include padding/border in width */
}

.contact-form form {
  width: 100%; /* Ensures the form inside matches outer box */
  box-sizing: border-box;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 15px;
  border: none;
  border-radius: 6px;
  background-color: #ffffff; /* Clean white background */
  color: #000000;
  outline: none;
  box-shadow: 0 0 0 1px #ccc; /* Optional subtle border effect */
  box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #640d6b;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  box-sizing: border-box;
}

.contact-form button:hover {
  background: #f49d1a;
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
  }

  .contact-info,
  .contact-form {
    width: 95%;
  }
}



    .map-section {
      padding: 40px 20px;
      background-color: #f1f1f1;
      text-align: center;
    }

    .map-section h2 {
      font-size: 28px;
      margin-bottom: 20px;
      color:#640d6b;
    }


    iframe {
      width: 100%;
     
      height: 400px;
      border: none;
      border-radius: 8px;
    }

    .office p .icon {
  width: 20px;    /* or your preferred size */
  height: 20px;
  margin-right: 8px; /* space between icon and text */
  object-fit: contain;
}

.office p {
  display: flex;
  align-items: center;
  margin: 8px 0;
}

#close-text{

  margin-left:10px;
}

#open-timing{

margin-left:10px;
}

.office i {
    margin-right: 8px;

  }
  .phone-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* keep it left-aligned */
  gap: 6px; /* space between phone rows */
}

.phone-row {
  display: flex;
  align-items: center; /* ✅ align icon and text vertically */
  gap: 8px; /* space between icon and number */
}

.office-line {
  color: #28a745; /* purple */
}

.mobile-line {
  color: #28a745; /* green */
}



    @media (max-width: 768px) {
      .contact-section {
        flex-direction: column;
        align-items: center;
      }

      .contact-info,
      .contact-form {
        width: 90%;
      }

      iframe {
        width: 100%;
        height: 300px;
      }
    }
