
body {
    margin: 0;
    padding: 0;
  }
  .navbar {
    background-image: linear-gradient(to bottom, black, transparent);
    min-height: 12%;
  }
  
  .navbar .container-fluid {
    gap: 3%;
  }
  
  .navbar-nav {
    width: 95%;
    display: flex;
    justify-content: space-between;
    padding-right: 5%;
  }
  
  .nav-item {
    font-size: 1.5vw;
  }
  
  .nav-link {
    color: #fff;
  }
  
  .navbar-brand {
    margin-left: 3%;
    width: max(13vw, 60px);
    height: max(3.5vw, 40px);
    background-image: url("../src/images/home/logo-w.webp");
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  
  .navbar.fixed-top {
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
  }
  
  .navbar.hide-nav {
    transform: translateY(-100%);
  }
  
  .navbar.transparent {
    background-color: transparent;
  }
  
  .navbar.transparent .navbar-brand {
    width: max(13vw, 60px);
    height: max(3.5vw, 40px);
    background-image: url("../src/images/home/logo-w.webp");
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  .navbar .container-fluid button {
    border: none;
    outline: none;
    transition: border-color 0.3s ease;
  }
  
  .nav-link:hover {
    transform: scale(1.3);
    transform-origin: center;
    transition: transform 0.2s ease;
    white-space: normal;
    word-break: break-word;
  }
  
  .nav-item:hover .nav-link {
    color: #fff;
  }
  
  .navbar.with-background .nav-link {
    color: #000;
  }
  
  .nav-item.dropdown:hover .nav-link {
    transform: scale(1.3);
    transform-origin: center;
    transition: transform 0.2s ease;
    white-space: normal;
    word-break: break-word;
  }
  
  .navbar .container-fluid button span i {
    color: #fff;
  }
  
  .navbar.with-background .container-fluid button i {
    color: #000;
  }
  
  .navbar.transparent .container-fluid button span i {
    color: #fff;
  }
  
  .navbar.with-background {
    background-image: linear-gradient(to bottom, rgb(255, 255, 255), white);
  }
  
  .menu-button {
    background-color: transparent;
    width: 60px;
    height: 75px;
  }
  
  @media screen and (min-width: 992px) {
    .menu-button {
      display: none;
    }
  }
  
  .navbar.with-background .navbar-brand {
    width: max(13vw, 60px);
    height: max(3.5vw, 40px);
    background-image: url("../src/images/home/logo-b.webp");
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  .dropdown-menu {
    font-size: 16px;
    background-color: #fff;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    width: max-content;
  }
  
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
  
  .navbar.with-background .nav-item:hover .nav-link {
    color: #000;
  }
  
  .dropdown-item {
    color: #000;
    position: relative;
    padding: 8px 20px;
  }
  
  .dropdown-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
  }
  
  .dropdown-item:last-child::after {
    display: none;
  }
  
  .dropdown-item:hover {
    background-color: #000;
    color: #fff;
    transform: scale(1.1);
    transform-origin: center;
    transition: transform 0.2s ease;
    white-space: normal;
    word-break: break-word;
  }
  
  @media screen and (max-width: 992px) {
    .navbar-brand {
      width: max(13vw, 60px);
    height: max(3.5vw, 40px);
      background-image: url("../src/images/home/logo-b.webp");
      background-size: contain;
      background-repeat: no-repeat;
    }
  
    .navbar .navbar-brand {
      width: max(13vw, 60px);
    height: max(3.5vw, 40px);
      background-image: url("../src/images/home/logo-w.webp");
    }
  
    .navbar-nav {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
  
    .nav-item {
      color: #000;
    }
  
    .nav-item:hover .nav-link {
      color: #000;
    }
  
    .dropdown-menu {
      position: absolute;
      top: 10%;
      left: 76%;
      min-width: 160px;
      background-color: #fff;
      border: 1px solid #000;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      z-index: 1;
      display: none;
      padding: 0;
      margin: 0;
    }
  
    .navbar-nav .nav-item:hover .dropdown-menu {
      display: block;
    }
  }
  .navbar-nav .nav-item .nav-link.active,
  .navbar-nav .nav-item.dropdown.active .nav-link {
    color: #0370dd;
    font-weight: bold;
  }
  .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item.active {
    background-color: #000;
    color: #fff;
  }
  
  
  
  
  

  
  
  
  
  /* The responsive div */
  
  .responsive-div {
    width: 100%;
    height: 100vh; /* Set the height to 100% of the viewport height */
    background-color: #ffffff; /* Change the background color to your preference */
    font-size: 2rem;
    color: #333;
    background-repeat: no-repeat ;
    background-blend-mode: multiply;
    color: rgb(0, 0, 0);
    background-size: 150% 150%;
    background-position-x: -500px;
    background-position-y: -300px;
    transition: background-size 2s ease, background-position-x 2s ease, background-position-y 2s ease;
  }
  
  .animation-res{
    background-size: 100% 100%;
    background-position-x: 0px;
    background-position-y: 0px;
  }
  
  
  
  .responsive-div::before {
  
    content: "";
    position: absolute;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to right, black, transparent);
    z-index: 1;
    }
  
  
  
    #for-center-data{
  
      height: 100vh;
      display: flex;
      align-items: center ;
  
    }
  
  
  
    .contact-us-text{
  
      color: white;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 3px;
      padding-top: 100px;
      z-index: 2;
      opacity: 0;
      transition: opacity 2s ease-in-out;
    }
  
    .contact-us-main-heading{
  
      color: white;
      z-index: 2;
      font-size: 4vw;
      font-weight: 1000;
      padding-bottom: 25px;
      padding-top: 20px;
      line-height: 1.2;
      opacity: 0;
      transition: opacity 2s ease-in-out;
    }
  
    .contact-us-description{
  
      color: white;
      font-size: max(1.5vw,12px);
      z-index: 2;
      opacity: 0;
      transition: opacity 2s ease-in-out;
    }
  
    
  
  #container-cover-for-description{
  
      width: 70%;
      margin-left: 5%;
  
    }
  
    .cover-button a {
  
  
      font-size: 15px;
      color:rgb(255, 255, 255);
      text-decoration: none;
      padding: 10px 18px;
      border: 1px solid rgb(255, 255, 255);
      background-color: none;
      letter-spacing: 3px;
      font-weight: 600;
      opacity: 1;
  
    }
  
    .text-appear {
      opacity: 1;
    }
  
    #cover-button  i{
      padding-left: 10px;
  
  
      transition: padding 0.5s ease;
  
    }
    #cover-button a:hover i{
  
      padding-left: 20px;
  
    }
  
  
  
    #cover-button {
  
      padding-top: 60px;
      z-index: 2;
      left: -300px;
      transition: transform 2s ease-in-out;
    }
  
    .transform {
      transform: translateX(300px);
    }
  
  
  
  
  @media (max-width: 767px) {
  
  
        .responsive-div {
        font-size: 1.5rem;
  
        }
    .contact-us-main-heading{
  
        font-size: 5vw;
        font-weight: 1000;
        padding-bottom: 25px;
  
        }
  
        .contact-us-description{
  
        font-size: 18px;
  
          }
  
          #container-cover-for-description{
  
            width: 90%;
            margin-left: 5%;
  
          }
  
      
  
    }
  
    .col-12 .navbar{
  
        width: 85px;
  
    }

  #sectiona {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#sectiona h2 {
    font-weight: 700;
    font-size: max(4vw, 20px);
}

#sectiona .container-fluid {
    margin-top: 3%;
    width: 90%;
}

#sectiona .container-fluid .row .col-lg-4 {
  margin-top: 50px;
   position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#sectiona .container-fluid .row .col-lg-4 div{
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: 150px;
    min-height: 150px;
    transition: max-height 0.5s ease, min-height 1s ease, opacity 0.5s ease;
    
}

#sectiona .container-fluid .row .col-lg-4 div img{
    width: max(25vw,100px);
    transition: width 0.5s ease;
}

#sectiona .container-fluid .row .col-lg-4 div p{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding-top: 5%;
    text-align: center;
    letter-spacing: 1px;
    font-size: 0;
    transition: font-size 0.5s ease;
}

#sectiona .container-fluid .row .col-lg-4:hover {
    cursor: pointer;
    max-height: 400px;
}

#sectiona .container-fluid .row4 .last-col:hover {
  margin-bottom: 30px;
}

#sectiona .container-fluid .row .col-lg-4:hover div {
  min-height: 400px;
}

#sectiona .container-fluid .row .col-lg-4:hover p{
  border-radius: 30px;
  background-color: #000;
  padding: max(1vw,10px);
  color: #fff;
  width: 80%;
  display: block;
  font-size: max(1.1vw, 16px);
}

#sectiona .container-fluid .row .col-lg-4:hover img{
  background-color: #fff;
    width: max(20vw,100px);
}

@media screen and (max-width: 992px) {
    #sectiona .container-fluid .row .col-lg-4 div img{
    width: max(60vw,100px);
    }
    #sectiona .container-fluid .row .col-lg-4:hover img{
    width: max(50vw,100px);
    }
    #sectiona .container-fluid .row .col-lg-4:hover p {
    width: 90%;
  }
}

@media screen and (max-width: 500px) {
    #sectiona .container-fluid .row .col-lg-4:hover p {
    width: 100%;
  }
}





#section1 {
  margin: 0;
  max-width: 100vw;
  height: 100vh;
  background-image: url('https://creativechaos.co/wp-content/uploads/2020/08/lad-page-fourth-fold-bg.jpg');
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#section1 .container-fluid {
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}



#section1 .container-fluid .row2 {
  padding-top: 1%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#section1 .container-fluid .row1 h1 {
  /* padding-top: 5%; */
  font-size: 2.5vw;
  color: #fff;
  width: 100%;
  font-weight: 700;
  text-align: center;
}

#section1 .container-fluid .row2 p {
  font-size: 1.5vw;
  color: #fff;
  width: 60%;
  text-align: center;
}

#section1 .row3,
#section1 .row4 {
  padding-top: 2%;
  width: 90%;
}

#section1 .row3 .col-lg-3{
  display: flex;
  justify-content: center;
  align-items: center;
}

#section1 .row3 .col-lg-3 p {
  padding-top: 10%;
  color: #fff;
  font-size: 1.2rem;
  width: 70%;
}

#section1 .row3 .col-lg-3 img {
  width: 100px;
}

#section1 .row4 .col-lg-3 div {
  padding-top: 10%;
  padding-left: 10%;
  padding-right: 10%;
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

#section1 .row4 .col-lg-3 div h3 {
  color: #2a89fc;
  text-align: center;
  font-size: 1vw;
  letter-spacing: 2px;
  font-weight: 500;
}

#section1 .row4 .col-lg-3 div p {
  padding-top: 5%;
  text-align: center;
  font-size: 1vw;
}


@media screen and (max-width: 992px) {
  #section1{
    height: auto;
  }
  #section1 .container-fluid .row1 h1 {
    font-size: max(4.5vw, 20px) !important;
  }

  #section1 .container-fluid .row2 p {
    font-size: max(3vw, 15px) !important;
    width: 80%;
  }

  #section1 .row3 .col-lg-3 p {
    font-size: max(2.5vw, 15px) !important;
    padding-top: 3%;
  }

  #section1 .row4 .col-lg-3 {
    margin-top: 2%;
  }

  #section1 .row4 .col-lg-3 div {
   padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }


  #section1 .row4 .col-lg-3 div h3 {
    font-size: max(2.5vw, 20px) !important;
  }

  #section1 .row4 .col-lg-3 div p {
    font-size: max(2.5vw, 15px) !important;
  }
}
