@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Lato';
    src: url(fonts/LATO-FONT/Lato-Regular.ttf);
}

@font-face {
    font-family: 'Gilroy';
    src: url(fonts/GILROY-FONT/Gilroy-Regular.ttf);
}
body, html{
  height: 100%;
    width: 100%;
    font-family: "Barlow", sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

  
  #contact-us {
    background-color: #f8f8f8;
    padding: 50px 0;
  }
  
  .contact-heading {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .contact-heading h1 {
    font-family: poppins, serif;

    margin-top: 6vw;
    font-size: 3vw; /* Decreased text size from 4vw to 3vw */
    color: rgb(6, 6, 69);
    /* Same color grading */
  }
  
  .contact-heading p {
    color: #666;
    font-size: 1.5vw; /* Smaller size for the breadcrumb */
  }
  
  .contact-heading a {
    text-decoration: none;
  }
  
  .contact-boxes {
    display: flex;
    justify-content: center;
    gap: 2vw;
    flex-wrap: wrap;
    margin-top: 8vw;
  
  }
  
  .contact-box {
    background-color: #000000fa;
    color: rgb(235, 235, 235);
    text-align: center;
    width: 22vw;
    height: 22vw; 
    padding: 2vw; 
    border-radius: 4px; 
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .contact-box:hover {
    transform: translateY(-1.5vw); /* Adjusted hover translation */
    box-shadow: 0px 10px 20px #000000ba;
  }
  
  .contact-box .icon {
    font-size: 3vw; /* Adjusted icon size */
    margin-bottom: 1.5vw;
  }
  
  .contact-box h2 {
    margin-bottom: 1vw;
    font-size: 1.5vw; /* Smaller heading size */
  }
  
  .contact-box p {
    font-size: 1.2vw; /* Smaller paragraph text size */
  }
  
  /* Animation */
  .contact-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 100%;
    background-color: rgb(189 189 189 / 31%);
    transition: left 0.3s ease;
  }
  
  .contact-box:hover::before {
    left: 0;
  }

  .social-icons{
    display: flex;
    gap: 3vw;
    padding: 3vw 1vw;
  }
  .social-icons i{
    color: rgb(4, 1, 81);
    font-size: 2.5vw;
  }
  .social-icons i:hover{
    transform: translateY(-12px);
    color: #33a853;
    transition: all 0.3s ease-in;
  }
  
/* GET IN TOuCH AND MAP PART */
.contact-us-p2{
  /* background-image: url('contact-page-bg.jpg');  */
  background-size: cover;
  background-position: center;
  position: relative;
}
.contact-form button:hover
{
  background-color: #0c44a4c0;
}
.contact-flex{
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 9vw 1vw;
  background-color: #F7F7F7;
  box-shadow: none;
}

.contact-form h2{
  color: rgb(6, 6, 69);
}
.contact-form {
  /* box-shadow: none; */
  border: 1.5px solid rgb(202, 202, 202);
  border-radius: 4px;
}
  @media (max-width: 768px) {
    .contact-boxes {
      flex-direction: column;
      align-items: center;
    }
    .social-icons{
      display: flex;
      gap: 4vw;
      padding: 5vw;
    }
    .social-icons i{
      color: rgb(4, 1, 81);
      font-size: 5vw;
    }
    .contact-heading p, .contact-heading a  {
      font-size: 3vw;
  }
    .contact-heading h1 {
      margin-top: 27vw;
      font-size: 6vw;
    }
    .contact-box {
      width: 70vw; /* Increased width for smaller screens */
      height: 55vw; /* Auto height for flexibility on mobile */
      margin-bottom: 4vw;
    }
  
    .contact-box .icon {
      font-size: 6vw; /* Larger icons on smaller screens */
    }
  
    .contact-box h2 {
      font-size: 4vw; /* Adjusted heading size for smaller screens */
    }
  
    .contact-box p {
      font-size: 3.5vw; /* Adjusted paragraph text size */
    }
    .contact-flex{
      flex-direction: column;
    }
    .contact-form{
      padding: 4vw 8vw;
      margin: 10vw 0vw;
      /* box-shadow: none; */
      /* border: 1px solid #d3d3d3; */
    }
  }

  