@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@300;600&family=Montserrat+Alternates:wght@500&family=Nunito:wght@500&family=Rajdhani:wght@500&family=Roboto:wght@100;300;400;500;700;900&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

/* NAVBAR SECTION */

.navbar{
    padding-left: 8rem;
    padding-right: 2rem;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    background-color: white;
    backdrop-filter: blur(30px);
    position: fixed;
    z-index: 100;
}

.company-logo img {
  max-width: 100px; 
  height: auto; 
  cursor: pointer;
}

.navbar li{
  list-style: none;
  display: inline-block;
  font-size: 22px;
  cursor: pointer;
  font-weight: 300;
  font-size: 20px;
  transition: ease-in 0.1s;
}

.navbar li:hover{
  scale: 110%;
}

#about-us{
  margin-right: 20px;
}

.navbar li a {
  text-decoration: none;
  color: black;
}

@media (min-width:300px) and (max-width:900px) {

  .navbar{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .navbar li{
    font-size: 15px;

  }
  #about-us{ 
    display: none;
  }
}

/* HERO SECTION */

.hero-container{
  text-align: center;
  color: black;
  height: 100vh;
}

.hero-container::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/bg.jpeg');
  filter: blur(2px);
}

.hero-content{
  position: relative;
  top: 40%;
}

.hero-content h2{
  font-size: 35px;
  margin-bottom: 20px;
}

.hero-content p{
  font-size: 19px;
}

.hero-content button{
  padding: 20px;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 10px;
  background-color: #24a0ed;
  border: none;
  color: white;
}

.hero-content button:hover{
  cursor: pointer;
  box-shadow: rgb(255, 255, 255);
}

.hero-container a{
  color: white;
  text-decoration: none;
  font-size: 15px;
}

@media (min-width: 450px ) {
  .hero-content button{
    display: none;
  }
}

@media (max-width: 480px) {

    .hero-section{
      height: 80vh;
    }
   
    .hero-container::before{
      width: 100%;
      height: 80%;
      background-image: url('images/bg.jpeg');
      filter: blur(2px);
    }

  .hero-content{
    top: 20%;
    padding: 30px;
  }
  .hero-content p{
    display: none;
  }
}

@media (max-width: 650px) {
  .hero-content{
  top: 20%;
  }
}

/* SERVICES SECTION */

.service-section {
  text-align: center;
  padding: 30px 0;
  background-color: #0392df;
}

.service-section h1{
  color: white;
}

.parent-card{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  /* padding: 20px 300px;
  width: 400px; */
  margin: 20px 400px;
  gap: 40px;
}

.child-card {
  width: 200px;
  height: 170px;
  position: relative;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  text-align: center;
  cursor: pointer;
  transition: all ease 0.3s;
}

.child-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/Electrical.jpeg');
  filter: blur(1px);
  z-index: -1; 
}

.child-card p:first-child {
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
}

.child-card p:last-child {
  font-size: 14px;
  margin-top: 15px;
} 

.child-card:hover{
  width: 220px;
  height:190px;
  
}

@media (min-width:320px) and (max-width:900px) {

  .parent-card{
    margin: 20px 40px;
  }
}

/* IMAGE SECTION */

.image-section{
  height: 600px;
  background-color: #0392df;
  padding-top: 50px;
  padding-bottom: 50px;
}

swiper-container {
  width: 60%;
  height: 100%;
  margin-left: 20%;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}

.mySwiper .swiper-pagination-bullet {
    color: #fff;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width:750px) {
  .image-section{
    height: 400px;
  }
  swiper-container{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 5px;
  }
  swiper-slide, swiper-slide img{
    border-radius: 10px;
  }
}

/* COLAB SECTION */

.colab-section{
  margin-top: 50px;
  margin-bottom: 100px;
  height: auto;
}

.colab-section h1{
  text-align: center;
  padding-top: 20px;
  font-weight: 300;
}

.logos{
  margin-top: 50px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.logo img{
    width: 150px;
    height: 100px;
    /* aspect-ratio: 3/2; */
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Founders Section */

.founder-Section{
  height: 400px;
}

.founders{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 150px;
}

.founder-Section #Leaders {
  font-size: 30px;
  text-align: center;
  margin-bottom: 50px;
}

.director, .manager{
  text-align: center;
}

.director a, .manager a{
  text-decoration: none;
  color: #0392DF;
}


.director img, .manager img{
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

@media (max-width:600px) {
  .founders{
    gap: 50px;
  }
}

@media (max-width: 450px) {
  .founder-Section{
    height: auto;
    padding-bottom: 50px;
  }
}

/* CONTACT SECTION */

.contact-section{
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0px;
  background-color: #0392df;
  color: white;
}

.address{
  /* position: relative; */
  margin-left: 8rem;
  font-weight: 300;
  margin-bottom: 30px;
  margin-top: 30px;
}

.address h1{
  /* margin-bottom: 10px; */
  font-size: 28px;
  font-weight: 300;
}

.address p{
  font-size: 20px;
  font-weight: 300;
}

.address p a{
  text-decoration: none;
  color: rgb(255, 252, 252);
}

/* .location{
  position: relative;
  right: 5%;
}

.location iframe{
  border-radius: 20px;
} */

@media (min-width:320px) and (max-width:900px) {
  .contact-section{
    flex-direction: column;
  }
  .address{
    margin: 0px;
    /* margin-left: 1rem; */
  }
  .address h1{
    font-size: 1.5rem;
  }
  .address p{
    font-size: 1rem;
  }
  /* .location{
    right: 0%;
    margin-bottom: 10px;
  }
  .location iframe{
    width: 250px;
    height: 250px;
  } */
}

/* FOOTER SECTION */

.footer-section{
  background-color: #252525;
  height: auto;
  padding: 20px 0px;
  line-height: 1.5rem;
}

.footer-section ul{
  list-style: none;
}

.footer-container{
  max-width: 1117px;
  margin-left: 8rem;
}

.footer-row{
  display: flex;
  flex-wrap: wrap;
}

.footer-col{
  width: 25%;
}

.footer-col li a{
  text-decoration: none;
  color: white;
}

.social-links a{
  text-decoration: none;
  color: white;
}

.footer-col h4{
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 15px;
  font-weight: 500;
  color:#0392DF;
}

@media (min-width:320px) and (max-width:900px) {
  .footer-container{
    margin-left: 0rem;
    /* max-width: 300px; */
  }
  .footer-row{
    display: flex;
    flex-direction: column;
    align-items: start; 
    margin-left: 30px;
    /* width: 100%; */
    /* flex-wrap: nowrap; */
  }
  .footer-col h4{
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .footer-col{
    width: auto
  }
}


.whatsapp-container {
  position: fixed;
  bottom: 10px; /* Adjust the distance from the bottom as needed */
  right: 10px; /* Adjust the distance from the right as needed */
  z-index: 1000; /* Ensure it's above other content */
  background-color: #25D366; /* Set your preferred background color */
  padding: 12px; /* Add padding to create some space around the icon */
  border-radius: 50%; /* Create a circular background shape */
}
.whatsapp-container:hover {
  scale: 110%;
}

.whatsapp-container i {
  color: white;
  font-size: 2rem; /* Adjust the icon size as needed */
   /* Adjust the icon color as needed */
}


