@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins: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=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Poppins: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=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
  padding: 0;
  margin: 0;
}

.allsection {
  /* width: 100% ; */
  margin-top: 100px;
}
body {
  overflow-x: hidden;
  background-color: white;
  font-family: 'Mona Sans', sans-serif !important;
}
.nav {
  position: sticky !important;
  top: 0px !important;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75);
}

.nav-items > ul > li {
  position: relative;
  display: inline;
  list-style: none;
  margin-right: 1px;
  padding: 10px 15px;
  cursor: pointer;
}
.nav-items > ul {
  margin-left: 50px;
  padding-right: 130px;
}

.nav-items > ul > li > a {
  color: black;
  text-decoration: none;
}
.nav-items > ul > li:hover {
  color: #2c4f9e;
}
.nav-items a:hover {
  color: #2c4f9e;
}

/* .nav-items > ul:last-child::after {
    background-color:none;
} */
.nav-items > ul > li::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.17rem;
  /* background-color: #c52726; */
  left: 0;
  bottom: 0;
  transform-origin: 0% 100%;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-items > ul > li:hover::after {
  transform: scaleX(1);
}

.nav-logo img,
.nav-button a {
  color: white;
  list-style: none;
  text-decoration: none;
  display: flex;
}

.nav-logo img {
  height: 80px;
  padding-top: 10px;
  margin-bottom: 10px;
  padding-right: 100px;
}

.nav-button {
  background-color: #2c4f9e;
  border-radius: 50px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}

.anim-layer {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 100%;
  background-color: greenyellow;
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-button:hover .anim-layer {
  width: 100%;
  left: 0;
}

.nav-button:hover a {
  color: #141214;
}

.nav-button a {
  display: block;
  /* padding: 5px 10px; */
  color: white;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.nav-enquiry-btn {
  text-decoration: none;
  background-color: #8aaee0;
  border-radius: 50px;
  color: black;
  /* margin-bottom: 10px; */
  margin-right: 10px;

  padding: 10px 31px 10px 36px;
}
.nav-enquiry-btn > a {
  text-align: center;
  text-decoration: none;
  color: black;
}
.nav-enquiry-btn:hover {
  background-color: #adc920;
  transition: width 0.3s ease, left 0.3s ease;
}

#hamburger-menu,
#mobile-menu {
  display: none;
}

.company-name {
  font-size: 24px;
  font-weight: 800;
  color: #2c4f9e;
}
/* dropdown */
.nav-items > ul > li:hover .dropdown {
  visibility: visible;
  opacity: 1;
}
.drop-down {
  position: relative;
}
.drop-down > ul {
  text-align: center;
  padding: 10px;
}
.drop-down:hover {
  .drop-down-submenu {
    background-color: aliceblue;
    width: 100%;
    left: 0;
    top: 30px;
    z-index: 10;
    display: block;
    list-style: none;
  }
  .drop-down-submenu > li {
    padding: 10px;
    text-align: left;
    /* font-weight: 700;
    font-size: 14px; */
  }
  .drop-down-submenu > li > a {
    text-decoration: none;
    color: #141214;
  }
  .drop-down-submenu > li > a:hover {
    text-decoration: none;
    color: #284faa;
  }
}

.drop-down-submenu {
  position: absolute;
  display: none;
}

@media only screen and (max-width: 770px) {
  #mobile-menu {
    background-color: #c52726;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
  }

  .mobile-nav-items > ul {
    padding: 0px;
  }

  .mobile-nav-items > ul > li {
    text-align: center;
    position: relative;
    list-style: none;
    margin: 10px;
    padding: 10px 20px;
    cursor: pointer;
  }

  .mobile-nav-items > ul > li > a {
    color: white;
    text-decoration: none;
  }

  .mobile-nav-items > ul > li::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0.17rem;
    background-color: white;
    left: 0;
    bottom: 0;
    transform-origin: 0% 100%;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .mobile-nav-items > ul > li:hover::after {
    transform: scaleX(1);
  }

  .mobile-nav-button {
    background-color: #141214;
    border-radius: 50px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
  }

  .mobile-nav-button .anim-layer {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: white;
    transition: width 0.3s ease, left 0.3s ease;
  }

  .mobile-nav-button:hover .anim-layer {
    width: 100%;
    left: 0;
  }

  .mobile-nav-button:hover a {
    color: #141214;
  }

  .mobile-nav-button a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    position: relative;
    z-index: 1;
  }

  .nav-items > ul,
  .nav-button {
    display: none;
  }

  #hamburger-cross {
    display: block;
    color: white;
    cursor: pointer;
    font-size: 40px;
    position: absolute;
    top: 20px;
    right: 26px;
  }

  #hamburger-menu {
    display: block;
    color: white;
    cursor: pointer;
    font-size: 24px;
  }
}

/* section -6 footer */
footer {
  /* padding: 30px; */
  left: 0;
  bottom: 0;
  width: 100%;
  margin-top: 22px;
  background-color: #8aaee0;
  text-align: center;
  /* padding-top:6px; */
}
.footer-section {
  display: flex;
  justify-content: space-evenly;
}
.footer-section > div {
  padding-top: 20px;
}

footer a {
  text-decoration: none;
  /* color: #141214; */
  color: whitesmoke;
}
.company-content > p {
  color: whitesmoke;
}
.copy-write {
  margin-top: 0px;
  text-align: center;
  color: #101302;
}
.contact-icons a {
  padding-right: 15px;
}
.contact-icons h4 {
  padding-right: 15px;
}
.innovation p,
.useful-links p,
.contact-icons p {
  padding-top: 10px;
}

/* enquiry */
.enquiry-page {
  display: flex;
  justify-content: center;
}
.enquiry-content > h3 {
  text-align: center;
  color: #2c4f9e;
  margin: 30px 0px;
}
.enquiry-content > p {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}
.row {
  width: 40%;
}
.column {
  margin-top: 30px;
  /* margin-right: 4px; */
  float: left;
  width: 50%;
}
.column > input {
  padding: 15px;
  background-color: rgb(241, 237, 241);
  border: none;
  border-radius: 20px;
  width: 75%;
}

.column > label {
  font-size: 18px;
}
.enquiry-form-btn {
  margin-right: 15px;
  text-align: center;
}
.enquiry-form-btn > button {
  border-radius: 20px;
  border: none;
  color: #fff;
  padding: 10px 20px;
  width: 20%;
  background-color: #8aaee0;
}
.enquiry-form-btn > button:hover {
  color: black;
  background-color: #adc920;
}
.enquiry-form > form > .splite {
  display: flex;
  justify-content: center;
}

/* contact information  */
.contact-information {
  width: 100%;
}

.contact-info {
  margin-top: 30px;
  margin-bottom: 0px;
  display: flex;
  justify-content: space-around;
}
.contact-info > div {
  width: 20%;
  background-color: #e4edfa;
  padding: 30px 40px;
}
.contact-info-icon {
  background-color: #fff;
  padding: 7px;
  border-radius: 30px;
}
.our-contact-info {
  margin-top: 30px;
  display: flex;
  justify-content: space-evenly;
}
.icon-content {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
}

.contact-info > div:hover {
  /* background-color: #b5d156; */
  background-color: rgba(167, 206, 167, 0.749);
  transition: width 0.3s ease, left 0.3s ease;
  .contact-info-icon {
    background-color: #adc920;
    padding: 7px;
    border-radius: 20px;
  }
}
.google-map {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.google-map > iframe {
  /* margin-left: 150px; */
  height: 300px;
  width: 60%;
}

/* blog css */

#Comming {
  color: red;
  text-align: center;
  font-weight: 500;
  padding-top: 170px;
  padding-bottom: 200px;
}

#Online {
  background: #000;
  text-decoration: none;
  color: #fff;
  text-align: center;
  padding: 10px;
  margin-top: 100px;
  margin-left: 600px;
  margin-bottom: 250px;
  border-radius: 10px;
}
#Online:hover {
  background: #000000;
  cursor: pointer;
}
#Online a {
  color: white;
  text-decoration: none;
}

/* fa-solid fa-arrow-right */
.Arrow i {
  margin: 5px;
  color: #adc920;
}

/* Basic slider container */
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Set up each slide's style */
.slider-item {
  width: 100%;
  display: none; /* Initially hide the slides */
}

.slider-item img {
  width: 100%;
  height: auto;
}

/* Show the first slide */
.slider-item:first-child {
  display: block;
}

/* Add transition effect */
.slider {
  position: relative;
}

.slider-item {
  transition: transform 1s ease-in-out;
}

/* Animation for automatic sliding */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  33% {
    transform: translateX(-100%);
  }
  66% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}

.slider {
  animation: slide 9s infinite;
}

/* If you want to add navigation buttons for manual sliding, you can add these styles */

/* Navigation buttons (Optional) */
.prev,
.next {
  position: absolute;
  top: 50%;
  padding: 10px;
  font-size: 20px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  cursor: pointer;
  transform: translateY(-50%);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}
