* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: roboto;
}

body {
  width: 100vw;
  background-color: #f7f9fc;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

html,
body {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

/* SECTION BACKGROUND */
.counter-section {
  background: #fff;
  padding: 60px 0;
}

/* FLEX WRAPPER */
.counter-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px;
  flex-wrap: wrap;
}

/* Each counter box */
.counter-box {
  flex: 1 1 calc(25% - 40px);
  text-align: center;
  padding: 20px;
}

/* Icons */
.counter-icon {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
}

/* Number Styling */
.counter-number {
  font-size: 40px;
  font-weight: 700;
  color: #070707; /* PRIMARY COLOR */
  margin: 10px 0;
}

/* Title text */
.counter-title {
  font-size: 20px;
  font-weight: 600;
  color: #070707;
  margin-top: 5px;
}

.counter-section h2 {
      text-align: center;
}

/* Responsive for tablets */
@media (max-width: 992px) {
  .counter-box {
    flex: 1 1 calc(50% - 20px);
  }
}

/* Responsive for mobile */
@media (max-width: 576px) {
  .counter-box {
    flex: 1 1 100%;
  }

  .counter-number {
    font-size: 32px;
  }

  .counter-title {
    font-size: 18px;
  }

  .counter-icon {
    width: 60px;
  }
}



header {
  width: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

.conAdd {
  width: 100%;
  height: 5vh;
  position: absolute;
  display: flex;
  align-items: center;
  background-color: #e9edf6;
  position: fixed;
}

#conAdd1 {
  position: absolute;
  right: 5.5%;
  bottom: 2px;
  display: flex;
  align-items: center;
  gap: 15px;
}

#conAdd1 p {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
}

#conAdd1 img {
  width: 18px;
}

#conAdd1 hr {
  height: 15px;
  width: 2px;
  background-color: gray;
  border: none;
}

.mainHeader {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.navbar {
  width: 90%;
  background-color: rgba(233, 237, 246, 0.4);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 6vh;
  padding: 5.5px;
  box-shadow: 0px 6px 6px rgba(48, 71, 157, 0.7);
  position: fixed;
}

.allPages {
  display: flex;
  align-items: center;
  gap: 10px;
}

.allPages a {
  text-decoration: none;
  color: black;
}

.allPages a.active {
  color: #30479D;
  font-weight: bold;
}

#aBtn {
  background-color: rgba(48, 71, 157, 0.6);
  padding: 5px;
  color: white;
  border-radius: 5px;
}

.navbar img {
  width: 55px;
}

.menu-icon {
  display: none;
}

.fa-xmark {
  color: #070707;
  font-size: 20px;
}

.cross-btn {
  background: none;
  align-self: flex-end;
  margin-right: 10px;
  padding: 20px;
  display: none;
}

.navbar button {
  border: none;
}

#sec1 {
  width: 100vw;
  height: 70vh;
  position: relative;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100vw;
  height: 90vh;
}

.slide {
  position: relative;
  width: 100vw;
  height: 90vh;
}

.slide .p1 {
  width: 100%;
  height: 98vh;
  object-fit: cover;
  position: relative;
  top: -8vh;
}

#imageContent {
  width: 68vw;
  position: absolute;
  left: 5vw;
  top: 25vh;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#imageContent h2 {
  font-size: clamp(0.7rem, 2vw + 2.5rem, 4.8rem);
  color: white;
}

#imageContent p {
  font-size: clamp(1rem, 1.5vw + 0.06rem, 2.5rem);
  width: 45vw;
  color: white;
}

#imageContent .aBtn1 {
  width: 150px;
  padding: 10px 15px;
  background: rgba(48, 71, 157, 0.6);
  color: #fff;
  text-align: center;
  border-radius: 5px;
  font-size: 16px;
  text-decoration: none;
}

.imageCircle {
  position: absolute;
  bottom: 15vh;
  left: 50%;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #30479d;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imageCircle img {
  width: 20px;
  height: 20px;
  z-index: 6;
}

.slick-dots {
  width: 25px;
  border-radius: 50%;
  position: absolute;
  top: 65%;
  right: 10%;
  transform: translateY(-50%);
  display: flex !important;
  flex-direction: column;
  gap: 10px;
}

.slick-dots li button:before {
  font-size: 14px;
  color: #FFFFFFCC;
  opacity: 0.7;
}

.slick-dots li.slick-active button:before {
  color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0px 6px #FFFFFF8A;
  opacity: 1;
}


#sec2 {
  width: 100%;
  /* background-color: #e9edf6; */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 20px;
}

#sec2Images {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 2%;
}

.sec2d {
  width: 25%;
  display: flex;
  justify-content: center;
  background:
    radial-gradient(circle at center right, black 2px, transparent 100%) right center / 2px 100% no-repeat;
  box-sizing: border-box;
}

.sec2d img:first-child {
  width: 90%;
  height: 200px;
}

.sec2d img:nth-child(2) {
  height: 200px;
  display: none;
}

.slick-initialized .slick-slide {
  display: flex;
  gap: 10px;
}

#sec2 h2 {
  font-size: 40px;
  text-align: center;
}

#sec3 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#sec3 h2 {
  font-size: 54px;
  text-align: center;
  padding: 20px;
}



.sec3d2 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sec3image {
  width: 560px;
  color: white;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sec3image h4 {
  width: 90%;
  font-size: 24px;
  padding: 30px 0 0px 10px;
}

.sec3image p {
  width: 90%;
  font-size: 24px;
  padding: 20px 5px 30px 10px;
}

/* #sec3image1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.4)), url(images/image7.jpg);
  background-position: center;
  background-size: cover;
  box-shadow: 4px 6px 8px #30479DCC;
}

#sec3image2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.4)), url(images/image6.jpg);
  background-position: center;
  background-size: cover;
  box-shadow: 4px 6px 8px #30479DCC;
} */
h2{
  font-size: 35px !important;
}

#sec4 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#sec4div {
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  margin-top: 2%;
}

.news-slider {
  width: 90%;
}

.sec4Content {
  background-color: #fff;
  border: 1px solid #898989;
  box-sizing: border-box;
  padding: 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0 10px;
  min-height: 170px;
}

.sec4Content p {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.sec4Content .sec4span {
  font-size: 15px;
  font-weight: 400;
  color: #555555;
}


.slick-prev:before,
.slick-next:before {
  color: #D9D9D9;
  border-radius: 50%;
  font-size: 25px;
}

.sec5 {
  width: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding: 40px 0;
}

.sec5 h2 {
  font-size: 54px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

#sec8 h2 {
    font-size: 54px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.sec5d1 {
  width: 85%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.sec5-Btn {
  height: 35px;
  width: 35px;
  border: none;
  border-radius: 2px;
  background-color: #30479d;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.sec5d1d1 {
  width: 80%;
}

.sec5d2 {
  width: 170px;
  height: 60px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-color: #4b4b4b;
  border-radius: 5px;
  margin: 0 10px;
}

.sec5d2 img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

#sec6 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
}

.sec6d1 {
  width: 100%;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.sec6inner {
  width: 560px;
  border-radius: 20px;
  height: 250px;
  background-position: center;
  background-size: cover;
  color: white;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-end;
}

.sec6inner h2 {
  width: 100%;
  font-size: 35px;
  font-weight: 500;
  text-transform: uppercase;
}

.sec6inner a {
     width: fit-content;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    background-color: rgba(48, 71, 157, 0.6);


    box-shadow: 1px 2px 8px #FFFFFF73;
}


#sec6innerid1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.4)), url(images/image13.jpg);
  background-position: center;
  background-size: cover;
  box-shadow: 4px 6px 8px #30479DCC;
}

#sec6innerid2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.4)), url(images/image14.jpg);
  background-position: center;
  background-size: cover;
  box-shadow: 4px 6px 8px #30479DCC;
}

#sec6innerid3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.4)), url(images/image15.jpg);
  background-position: center;
  background-size: cover;
  box-shadow: 4px 6px 8px #30479DCC;
}

#sec6innerid4 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.4)), url(images/image12.jpg);
  background-position: center;
  background-size: cover;
  box-shadow: 4px 6px 8px #30479DCC;
}

.r-a-d {
  width: 1150px;
  height: 250px;
  border-radius: 20px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.4)), url(images/image14.jpg);
  background-position: center;
  background-size: cover;
  box-shadow: 4px 6px 8px #30479DCC;
}

/* .r-a-d1 {
  width: 100%;
} */

#sec7 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.certifications-slider {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  overflow: hidden;
  width: 100%;
  max-width: 1440px;
}

.certifications-slider img {
  border-radius: 20px;
  transition: all 0.5s ease-in-out;
  object-fit: cover;
  background: #FFFFFFB2;
  border: 1px solid #FFFFFF4D;
  box-shadow: 0px 8px 32px 0px #30479D40;
  /* padding: 10px; */
  margin: 20px 0px;
  backdrop-filter: blur(6px);
}

/* --- Sizes --- */
.img-left-3,
.img-right-3 {
  width: 120px;
  height: 120px;
  opacity: 0.4;
  transform: scale(0.75);
}

.img-left-2,
.img-right-2 {
  width: 150px;
  height: 150px;
  opacity: 0.6;
  transform: scale(0.85);
}

.img-left-1,
.img-right-1 {
  width: 200px;
  height: 200px;
  opacity: 0.8;
  transform: scale(0.92);
}

.center-img {
  width: 260px;
  height: 260px;
  opacity: 1;
  transform: scale(1);
}

/* --- Responsive --- */
@media (max-width: 1024px) {

  .img-left-3,
  .img-right-3 {
    display: none;
  }

  .img-left-2,
  .img-right-2 {
    width: 90px;
    height: 90px;
  }

  .img-left-1,
  .img-right-1 {
    width: 140px;
    height: 140px;
  }

  .center-img {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {

  .img-left-3,
  .img-right-3,
  .img-left-2,
  .img-right-2 {
    display: none;
  }

  .img-left-1,
  .img-right-1 {
    width: 140px;
    height: 140px;
  }

  .sec6inner h2{
  font-size: 28px;
}

  .center-img {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 425px) {

  .img-left-3,
  .img-right-3,
  .img-left-2,
  .img-right-2,
  .img-left-1,
  .img-right-1 {
    display: none;
  }
  .sec6inner h2{
  font-size: 28px;
}
  .center-img {
    width: 220px;
    height: 220px;
  }
}

/* .sec7d {
  width: 200px;
  height: 200px;
  background-color: #ffffff;
  box-shadow: 1px 1px 3px #30479d;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

#sec7Images {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

#sec7Images .sec7d img {
  width: 140px;
} */



.certifications-slider .slick-slide {
  transform: scale(0.5);
  /* far side = smallest */
  opacity: 0.5;
  z-index: 1;
  transition: transform 0.5s ease, opacity 0.5s ease, z-index 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.certifications-slider .slick-center {
  transform: scale(0.9);
  opacity: 1;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.certifications-slider .prev-slide,
.certifications-slider .next-slide {
  transform: scale(0.75);
  opacity: 0.8;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}

*/ #sec8 {
  width: 100%;
  background-color: #e9edf6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ===============================
   AMPLITECH PRESS SECTION
================================= */

#press-section {
  width: 100%;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
}

#press-section h2 {
  font-size: 32px;
  margin-bottom: 18px;
}

#press-wrapper {
  width: 90%;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

/* LEFT STATIC IMAGE */
#press-static {
  width: 50%;
}

#press-static img {
  width: 100%;
  height: 301px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #e2e2e2;
  margin-top: 4.5px;
}

/* RIGHT SLIDER */
#press-slider {
  width: 50%;
  position: relative;
  padding: 6px 0;
}

#press-slider .swiper-wrapper {
  align-items: center;
}

.swiper-slide {
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

#press-slider .swiper-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #d5d5d5;
}

/* NAV BUTTONS */
.swiper-button-prev,
.swiper-button-next {
  color: #000;
  font-size: 28px;
  z-index: 30;
}

.swiper-button-prev { left: -40px; }
.swiper-button-next { right: -40px; }

/* PAGINATION */
.swiper-pagination { margin-top: 12px; }

/* RESPONSIVE */
@media (max-width: 992px) {
  #press-wrapper {
    flex-direction: column;
    width: 95%;
  }

  #press-static, 
  #press-slider {
    width: 100%;
  }

  #press-static img { height: 320px; }
  #press-slider .swiper-slide img { height: 240px; }

  .swiper-button-prev { left: 8px; }
  .swiper-button-next { right: 8px; }
}

@media (max-width: 600px) {
  #press-static img { height: 220px; }
  #press-slider .swiper-slide img { height: 180px; }
}


/* Mobile */
@media (max-width: 600px) {
  #press-static img {
    height: 250px;
  }

  #press-slider .swiper-slide img {
    height: 200px;
  }
}


.sec8di {
  width: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.sec8di1i {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 100px;
}

.sec8di1i h2 {
  font-size: 50px;
  font-size: 500;
}

.sec8di1i p {
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  padding: 10px;
}

.sec8di img {
  width: 95%;
}

#iamgesec8 {
  display: flex;
  gap: 15px;
  position: absolute;
  bottom: 20px;
}

#sec8d2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#sec8d2 h2 {
  font-size: 50px;
  font-weight: 500;
  padding: 15px;
  text-align: center;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  overflow: hidden;
}

.carousel {
  display: flex;
  align-items: flex-end;
  /* keeps bottom aligned */
  transition: transform 0.3s ease;
}


.slideMoment {
  flex-shrink: 0;
  width: 300px;
  /* base width */
  height: 300px;
  /* base height */
  margin: 0 15px;
  background: #000000;
  color: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: none; */
  /* font-size: 2rem; */
  transition: transform 0.3s ease;

  /* 👇 Key part for bottom alignment */
  transform-origin: bottom center;
}


/* Buttons */
.prev,
.next {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #30479D;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prev {
  left: 5px;
}

.next {
  right: 5px;
}

.sec8formdiv {
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid black;
  border-radius: 15px;
  background-color: white;
  box-sizing: border-box;
  padding: 50px 35px;
  /* margin-top: 50px; */
}

.form {
  width: 40%;
}

.formdiv {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: -230px;
}

.formRightContent {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.formRightContent h2 {
  font-size: 25px;
  font-weight: 700;
}

.formRightContent span {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #1a1a1ab2;
}

.Address {
  display: flex;
  gap: 10px;
}

.Address img {
  width: 20px;
  height: 20px;
}

.AddressContent,
.AddressContent p {
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#mainformheading {
  width: 68%;
  font-size: 34px;
  font-weight: 700;
}

.cform {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form form label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #30479d;
}

.formdiv1 {
  display: flex;
  width: 100%;
   margin-top: 30px;
}

.form form input,
.form form select {
  width: 85%;
  height: 40px;
  border-radius: 10px;
  border: 1px solid black;
}

.formdiv1 div {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#phone-no1 {
  display: flex;
  flex-direction: row;
  width: 85%;
  height: 40px;
  border-radius: 10px;
  border: 1px solid black;
}

#countryCode {
  width: 20%;
  height: 38px;
  border: none;
}

#phoneNo {
  width: 75%;
  height: 38px;
  border: none;
}

#submitBtn {
  background-color: #30479d;
  border: none;
  border-radius: 10px;
  width: 180px;
  padding: 10px 10px;
  color: white;
  margin: 50px 0px;
}

#sec9 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#sec9 h5 {
  font-size: 54px;
  padding: 20px;
}

#sec9div {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.sec9ContentBtn {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #d9d9d9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec9-Btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: white;
  border: none;
}

.sec9Content {
  width: 30%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.AddressContent p{
 color: #fff;
}

.sec9Content .imgP {
  width: 95%;
  background-color: #30479d;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.sec9Content p {
  font-size: 16px;
  font-weight: 400;
  padding: 5px 10px;
  padding-top: 55px;
  color: white;
}

.imgP img {
  position: absolute;
  top: -50px;
}

.imgP2 {
  position: relative;
  top: -35px;
}

#home-testonomial-btn {
  width: 80%;
  display: flex;
  align-items: center;
}

.aboutTestonomial {
  position: relative;
  top: -30px;
}

.aboutTestonomial p,
.aboutTestonomial h4 {
  padding: 0;
  text-align: center;
}

.aboutTestonomial p {
  color: #30479D;
}


.aboutTestonomial p i {
  color: #FBC007;
}

.testimg {
  position: relative;
  top: 60px;
  z-index: 3;
}


.footer-wrapper {
  background: #3853b8;
  color: white;
  padding: 50px 5%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-left, .footer-middle, .footer-social {
  flex: 1;
  min-width: 220px;
}

.footer-logo img {
  width: 150px;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
}

.footer-title {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #f7b928;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 10px;
}

.footer-social-icons a {
  margin-right: 15px;
  font-size: 24px;
  color: white;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid #fff;
  border-radius: 50%;
  text-decoration: none;
}

footer-social-icons a i {
  font-size: 20px;
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 20px;
  font-size: 14px;
}



/* dropdown header  */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 20px;
  background: #e9edf6;
  min-width: 200px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  z-index: 100;
  border-radius: 5px;
  overflow: hidden;
}

.dropdown-content a {
  color: #000;
  padding: 10px 15px;
  display: block;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown.show .dropdown-content {
  display: block;
}

#dropdownArrow {
  cursor: pointer;
  /* margin-left: 5px; */
  color: #0338b5;
}

.sec8formdiv{
  text-align: left;
  margin-bottom: 5%;
}

#sec8 > .sec8formdiv h2{

  text-align: left;
  margin-bottom: 5%;
} 

.contact-box{
  margin-top: 3%;
}

.amplitechmomenthomeautomation{
  margin-bottom: 20px;
}

/* whatsapp chatbot  */
.chatbotwhatsapp {
  position: fixed;
  z-index: 1;
  right: 80px;
  bottom: 50px;
}

.chatbotwhatsapp img {
  height: 80px;
}

.body{
  background-color: #fff;
}