body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: poppin-bold;
  src: url(font/Poppins/Poppins-Bold.ttf);
}
@font-face {
  font-family: poppin-light;
  src: url(font/Poppins/Poppins-Light.ttf);
}
@font-face {
  font-family: poppin-medium;
  src: url(font/Poppins/Poppins-Medium.ttf);
}
.green {
  color: #299b46;
}
.font-bold {
  font-family: poppin-bold;
}
.font-light {
  font-family: poppin-light;
}
.font-medium {
  font-family: poppin-medium;
}
.top-contact {
  display: flex;
  justify-content: space-between;
  font-family: poppin-light;
}
.top-contact a {
  text-decoration: none;
  color: black;
}
.top-contact a:hover {
  text-decoration: underline;
}
.bg-color {
  background-color: #f5f7f2;
}
.my-nav {
  width: 100%;
  align-items: center;
  display: flex;
  padding: 0;
}
.logo a {
  font-size: 1.2em;
}
.logo {
  margin-bottom: 5px;
  margin-left: -15px;
}
.my-nav-items {
  font-size: 1.2em;
  justify-content: end;
}
.my-nav-items ul {
  align-items: center;
  font-weight: bold;
}
.my-nav-items ul a:hover {
  border-bottom: 4px solid #299b46;
}
.section-one {
  position: relative;
  padding: 50px 0;
}
.section-one::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/background-of-the-geometric-pattern.jpg") no-repeat
    center center/cover;
  opacity: 0.1; /* Lower opacity */
  z-index: -1;
}
.changing-text {
  display: inline-block;
  font-style: italic;
  transition: opacity 0.5s ease-in-out;
  font-size: 1.7em;
}
.section-one-img img {
  position: relative;
  bottom: -50px;
}
.big-text {
  font-size: 1.7em;
  color: #002f47;
}
.section-one .my-btn {
  font-size: 1.2em;
  padding: 15px;
  cursor: pointer;
  background-color: #299b46;
  color: white;
  font-weight: bold;
}
.section-one .my-btn {
  text-decoration: none;
  cursor: pointer;
}
.experience {
  position: relative;
}
.section-one .exp {
  background-color: white;
  padding: 35px;
  position: absolute;
  right: 0px;
  bottom: 0px;
  line-height: 22px;
}
.section-one .exp .num {
  font-weight: bold;
  font-size: 4em;
  color: #299b46;
}
/* top contact info */
.top-contact-info .contact-info-left {
  background-color: #002f47;
  text-align: end;
  padding: 20px;
  color: #ffffff;
  padding-right: 30px;
}
.top-contact-info .contact-info-left .number {
  font-size: 2.6em;
}
.top-contact-info .contact-info-right {
  text-align: start;
  padding: 20px;
  padding-right: 30px;
  background-color: transparent;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1),
    0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
.top-contact-info .contact-info-right .text {
  color: #002f47;
  font-size: 2em;
  width: 70%;
}
.top-contact-info .contact-info-right .my-btn {
  font-size: 1em;
  cursor: pointer;
  background-color: #299b46;
}

/* about section css */

.about-section {
  padding: 0;
  margin: 0;
  width: 100%;
  background-color: #ffffff;
}
.about-section .text {
  font-size: 3em;
  color: #002f47;
  width: 87%;
}
.about-sec {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.about-sec img {
  border-radius: 5px;
}

/* approach section */
.approach-section {
  padding: 0;
  margin: 0;
  margin-top: 100px;
  width: 100%;
  background-color: #f5f7f2;
  margin-bottom: 50px;
}
.approach-section .text {
  font-size: 3em;
  color: #002f47;
}
.approach-section img {
  position: relative;
  top: -20px;
  width: 100%;
  border-radius: 5px;
}
.approach-section .approach-sec {
  display: flex;
  align-items: center;
}
/* Services Section */
.service-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: 0.3s ease-in-out;
}
.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}
.whatsapp-btn {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
}
.services-section {
  margin-top: 100px;
}
/* Vedio Section */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Close button with arrow */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1051; /* Higher than modal content */
}

.close-btn:hover {
  background: rgba(255, 255, 255, 1);
}

/* stats container */
.stats-container {
  text-align: center;
  width: 100%;
  background-color: white;
  position: relative;
  top: -30px;
  z-index: 2;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.stats-container .stats {
  padding: 30px;
  line-height: 20px;
}
.stats-container .stats .text {
  font-size: 3em;
}

.extra-info .extra {
  background-color: #f5f7f2;
  /* padding: 0px 30px; */
  border-radius: 10px;
}
.extra-info .text {
  font-size: 2.7em;
  color: #002f47;
}
.extra-info .extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.extra-info .extra img {
  width: 100%;
}
.whyChoseUsSection {
  background-color: #002f47;
}
.whyChoseUsSection .why-choose-sec {
  display: flex;
  align-items: center;
  padding-top: 50px;
}
.whyChoseUsSection .why-choose-sec .text {
  font-size: 2.6em;
}
.whyChoseUsSection .why-choose-sec .right .box {
  border: 1px solid #2b5266;
  padding: 20px;
  border-radius: 5px;
}
.whyChoseUsSection .why-choose-sec ul {
  margin-top: 20px;
  line-height: 2.2em;
}

/* Client section */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
#targetClients .text {
  color: #002f47;
  margin-top: 100px;
}
.logos {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  height: 50px;
  margin: 0 40px;
}

/* Contact */
.contact-sec .text {
  margin-top: 50px;
  color: #002f47;
}

/* Whatsapp Link CSS */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 10px 15px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.whatsapp-icon img {
  width: 30px;
  height: 30px;
}

.whatsapp-icon span {
  font-size: 16px;
}

.whatsapp-icon:hover {
  background: #1ebe57;
}
.address-info {
  background-color: #002f47;
}

.address-info a:hover {
  color: green !important;
}
/* Footer */
footer .text {
  color: #002f47;
}
footer ul a {
  text-decoration: none;
}
footer ul a:hover {
  color: #299b46 !important;
}
footer .logo-text {
  margin-top: -40px;
}

footer {
  padding-left: 80px;
}
