* {
  padding: 0;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: rgba(14, 15, 36, 1);
  width: 100%;
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  /* Prevent horizontal scrolling */
  padding-top: 90px;
  /* Add padding to prevent overlap with the fixed header */
}


:root {
  --primary-color: #006838;
  --secondary-color: #ffffff;
  --font-family: "Inter";
}


.header {
  background-color: #FFFFFF;
  height: 50px;
  padding: 0.5%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 96%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  margin: auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  margin-top: 0.5%;
  gap: 35%;
  clip-path: polygon(0% 0%, 100% 0%, 98% 100%, 2% 100%);
  /* Adjusted for bottom corner cuts */
  overflow: hidden;
}


.header.fullwidth {
  width: 100%;
  height: 65px;
  border-radius: 0;
  margin: 0;
  padding-left: 15px;
  clip-path: none;
  box-shadow: 0 8px 20px rgba(0, 104, 56, 0.5);
  /* Shadow with color #D51832 */
}

.logo-container {
  width: auto;
  height: 100%;
  margin-top: 15px;
}

.logo-container .logo {
  width: 150px;
  /* height: 120px; */
}

a {
  text-decoration: none;
  color: #1e1b25;
}

.list-items-align {
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-decoration: none;
  gap: 40px;
}

.nav-item {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  position: relative;
}

.none-item {
  list-style-type: none;
  padding-bottom: 10px;
}

.nav-item.active {
  color: #006838;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}

.nav-item.active::after {
  content: "•";
  /* Unicode for a dot */
  color: #006838;
  /* Match the dot color to the active item color */
  font-size: 30px;
  /* Adjust size if needed */
  position: absolute;
  left: 50%;
  top: 15px;
  transform: translateX(-50%);
  /* Center the dot below the text */
}

/* Toggle button styling */
.toggle-button {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.toggle-button span {
  width: 25px;

  height: 3px;
  background-color: #000;
  border-radius: 2px;
}

.image-con-about-us {
  width: 70%;
  height: 100%;
}

.about-us-discription {
  width: 300px;
  height: 150px;
  border-radius: 15px;
  /* border: solid 0.1px white; */
  margin-bottom: 10px;

}

@media screen and (min-width:1600px) {
  .about-us-discription {
    width: 85%;
  }
}

/* mobiile header */
/* Mobile Header */
@media screen and (max-width: 768px) {
  .header {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    padding: 0px 20px;
    background-color: #FFFFFF;
    height: 60px;
    position: fixed;
    width: 85%;
    top: 0;
    left: 0;
    z-index: 1000;
    clip-path: none;
    margin-top: 10px;
  }

  .toggle-button {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .toggle-button span {
    width: 25px;
    height: 3px;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .toggle-button.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .toggle-button.open span:nth-child(2) {
    opacity: 0;
  }

  .toggle-button.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-container {
    display: none;
    position: fixed;
    top: -400px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: top 0.3s ease;
  }

  .nav-container.show {
    display: block;
    top: 75px;
    width: 35%;
    margin-left: auto;
    border-radius: 15px;
  }

  .list-items-align {
    flex-direction: column;
    padding: 10px;
    gap: 15px;
  }

  .list-items-align .none-item {
    text-align: center;
  }

  /* Initial state for nav-container */
  #navContainer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    /* Smooth transition for max-height */
  }

  /* When the nav-container is visible */
  #navContainer.show {
    max-height: 500px;
    /* Or a suitable value larger than the container's max height */
  }
}


/* footer */
.section6 {
  background: linear-gradient(to bottom, rgba(14, 15, 36, 1) 50%, #FFFFFF 50%);
  height: fit-content;
  padding-top: 2%;
  padding-bottom: 2%;
}

.backgroun-footer-con {
  background-color: #1E1B25;
  height: fit-content;
}

.input-btn-align {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 5%;
}

.footer-background {
  background-color: var(--primary-color);
  display: flex;
  width: 82%;
  flex-direction: column;
  /* align-items: center; */

  justify-content: space-around;
  padding: 2%;
  border-style: none;
  border-radius: 20px;
  margin: auto;
}

.Do-you {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 28.8px;
  color: #FFFFFF;
  width: 80%;
  /* margin-left:-10%; */
}

.span-footer {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 28.8px;
  color: #0E0F24;
}

.input-field {
  width: 300px;
  height: 40px;
  border: none;
  outline: none;
  font-size: 16px;
}

.input-field::placeholder {
  font-size: 18px;
  font-family: var(--font-family);
  font-weight: normal;
  color: #1e1b25;
  padding-left: 15px;
}

.paras-align-bottom {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 28%;
}

@media screen and (min-width:1600px) {
  .paras-align-bottom {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 38%;
  }
}

.bottom-line1 {
  position: relative;
  font-family: var(--font-family);
  color: #1e1b25;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -1.5%;
  line-height: 12px;
  padding-left: 3%;
  padding-top: 5px;
}

.bottom-line2 {
  position: relative;
  font-family: var(--font-family);
  font-weight: 400;
  color: #1e1b25;
  font-size: 14px;
  letter-spacing: -1.5%;
  line-height: 12px;
  padding-top: 5px;
  padding-right: 3%;
}

/* input-and-btn */
.frame2 {
  display: flex;
  width: 60%;
  height: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  position: relative;
  background-color: #ffffff;
  border-radius: 20px;
  margin-left: 15%;
  /* gap: 300px; */
}

.frame2 .text-wrapper {
  position: relative;
  width: fit-content;
  margin-top: -10px;
  margin-bottom: -8px;
  font-family: var(--font-family);
  font-weight: 400;
  color: #1e1b25;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 60px;
  white-space: nowrap;
}

.frame2 .div-wrapper {
  display: flex;
  flex-direction: column;
  width: 156px;
  height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  margin-top: -4px;
  margin-bottom: -4px;
  margin-right: -28px;
  background-color: #0E0F24;
  border-radius: 12px;
}

.frame2 .div {
  position: relative;
  width: 58px;
  height: 14px;
  padding-left: 10px;
  font-family: var(--font-family);
  font-weight: 400;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;

}

.hr-color {
  width: 100%;
  color: #FFFFFF;
  margin-top: 10px;
}

/* lower footer */
.frame3 {
  display: inline-flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 15%;
}

.frame3 .div {
  display: inline-flex;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  flex: 0 0 auto;
}

.frame3 .img {
  position: relative;
  width: 50px;
  height: 50px;
}

.corporate-office {
  position: relative;
  width: 255px;
  margin-top: -1px;
  font-family: var(--font-family);
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.48px;
  line-height: 19px;
  font-weight: 400;
}

.frame3 .div-2 {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  position: relative;
  flex: 0 0 0;
}

.phone {
  position: relative;
  width: 160px;
  margin-top: -1px;
  font-family: var(--font-family);
  color: #FFFFFF;
  font-size: 14px;
  letter-spacing: 0.48px;
  line-height: 19px;
  font-weight: 400;
}

.frame3 .text-wrapper {
  font-size: 14px;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.06px;
}

.frame3.img-2 {
  height: 45px;
  position: relative;
  margin-bottom: 20px;
}

/* icons set */
.icons-set {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 10px;
}

.icon {
  margin: 0px;
  height: 45px;
  width: 45px;
  /* Ensure width is also consistent */
}

@keyframes bounce-call {

  0%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-5px);
  }

  60% {
    transform: translateY(-3px);
  }
}

.bounce-phone {
  animation: bounce-call 1.2s infinite;
  transition: transform 0.2s;
  cursor: pointer;
}


@media screen and (min-width:1600px) {
  .icon-5 {
    height: 230px;
  }
}

@media (max-width: 600px) {
  .icon {
    margin-top: 10px;
    height: 25px;
    width: 35px;
    /* Ensure width is also consistent */
  }
}

.sub-btn {
  background-color: transparent;
  font-size: 16px;
  font-family: var(--font-family);
  font-weight: 400;
  color: #FFFFFF;
  cursor: pointer;
  border: none;
}

.callus-container {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 10px 14px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family);
  font-size: 14px;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  animation: bounce-call 1.5s infinite;
}

.callus-container i {
  font-size: 18px;
}

/* ✅ Mobile adjustments */
@media screen and (max-width: 480px) {
  .callus-container {
    padding: 8px 12px;
    font-size: 12px;
    bottom: 80px;
    right: 15px;
  }

  .callus-container i {
    font-size: 16px;
  }

  .callus-container .call-label {
    font-size: 12px;
  }
}


/* Popup Styles */
#popup-message {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  width: 90%;
  max-width: 400px;
  background-color: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  font-family: Arial, sans-serif;
}

#popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
}

#popup-heading {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

#popup-para {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

#close-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: var(--primary-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#close-btn:hover {
  background-color: #d55d07;
}

/********************* whatsapp container */
.whatsapp-container {
  position: fixed;
  z-index: 99;
  bottom: 0;
  right: 3%;
  width: 50px;
  height: 50px;
  background-color: transparent;
}

.whatsapp-container i {
  font-size: 40px;
  color: #25D366;
  display: inline-block;
  animation: whatsappbeat 1.5s infinite;
}

@keyframes whatsappbeat {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

/* smaller laptops */
@media only screen and (min-width:1120px) and (max-width: 1280px) {
  .popup {
    width: 70%;
    /* Adjust width for smaller screens */
    padding: 15px;
    /* Adjust padding for better fit */
  }

  .pop-up-heading {
    font-size: 24px;
    /* Adjust font size */
  }

  .pop-up-para {
    font-size: 14px;
    /* Adjust font size */
  }

  .close-btn {
    font-size: 14px;
    /* Adjust font size */
    padding: 8px 16px;
    /* Adjust padding */
  }

  .input-btn-align {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .footer-background {
    width: 87%;
  }

  .Do-you,
  .span-footer {
    /* width: 60%; */
    text-align: left;
    font-size: 24px;
  }

  .input-field {
    /* width: 100%; */
    max-width: 370px;
  }

  .frame3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .frame3 .div {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    flex: 1 1 0;
  }

  .frame3 .div-2 {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    position: relative;
    flex: 1 0 0;
  }

  .frame2 {
    width: 90%;
    margin-left: 0;
    gap: 10px;
  }

  .corporate-office {
    /* width: 100% !important;
      font */
    font-weight: normal;
    font-family: var(--font-family);
  }

  .phone {
    /* width: 100%; */
    font-weight: normal;
    font-family: var(--font-family);
  }

  .paras-align-bottom {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 25%;
  }

}

/* tablet */
@media screen and (min-width:720px) and (max-width:1024px) {
  .popup {
    width: 92%;
    /* Adjust width for mobile screens */
    padding: 10px;
    /* Adjust padding for better fit */
  }

  .pop-up-heading {
    font-size: 20px;
    /* Adjust font size */
  }

  .pop-up-para {
    font-size: 10px;
    /* Adjust font size */
    font-weight: 100;
    letter-spacing: 2px;
  }

  .close-btn {
    font-size: 12px;
    /* Adjust font size */
    padding: 6px 12px;
    /* Adjust padding */
  }

  .section6 {
    padding-top: 5%;
    padding-bottom: 0%;
  }

  .footer-background {
    width: 90%;
    padding: 5%;
    border-radius: 0px
  }

  .input-btn-align {
    flex-direction: column;
    gap: 15px;
  }

  .Do-you {
    font-size: 25px;
    line-height: 22px;
    text-align: center;
    width: 100%;
  }

  .frame2 {
    width: 95%;
    margin: auto;
    padding: 5px 20px;
    height: 48px;
  }

  .input-field {
    width: 100%;
    height: 35px;
    font-size: 12px;
  }

  .frame2 .div-wrapper {
    width: 25%;
    height: 32px;
    margin: 0;
    padding-bottom: 5px;
  }

  .input-field::placeholder {
    font-size: 10px;
    font-family: "Raleway Bold";
    font-weight: 400;
    color: #1e1b25;
    padding-left: 15px;
  }

  .frame2 .div {
    text-align: center;
    padding: 0 !important;
    font-size: 15px;
  }

  .sub-btn {
    background-color: transparent;
    font-size: 12px;
    font-family: "Raleway Bold";
    font-weight: 100;
    color: #FFFFFF;
    border: none;
    letter-spacing: 1px;
    padding-bottom: 7px;
  }

  .hr-color {
    margin-top: 20px;
  }

  .frame3 {
    flex-direction: column;
    align-items: center;
    /* gap: 20px; */
  }

  .frame3 .div,
  .frame3 .div-2 {
    width: 100%;
    text-align: center;
  }

  .frame3 .img {
    position: relative;
    width: 40px;
    height: 40px;
  }

  .frame3 .text-wrapper {
    font-size: 12px;
    color: #FFFFFF;
    font-family: var(--font-family);
    font-weight: 600;
    text-align: center;
    line-height: 16px;
    letter-spacing: 1.5px;
    width: 100%;
  }

  .corporate-office {
    font-size: 12px;
    color: #FFFFFF;
    font-family: var(--font-family);
    font-weight: 600;
    text-align: center;
    line-height: 16px;
    letter-spacing: 1.5px !important;
    width: 100%;
  }

  .phone {
    font-size: 12px;
    color: #FFFFFF;
    font-family: var(--font-family);
    font-weight: 600;
    text-align: center;
    line-height: 16px;
    letter-spacing: 1.5px !important;
    width: 100%;
    padding-bottom: 3%;
  }

  .icons-set {
    justify-content: center;
  }

  .paras-align-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-color: #1e1b25;
    /* gap:40%; */
  }

  .icon-visible {
    width: 35px;
    height: 35px;
  }

  .bottom-line1 {
    font-size: 12px;
    color: #FFFFFF;
    font-family: var(--font-family);
    font-weight: 600;
    text-align: center;
    line-height: 16px;
    letter-spacing: 1.5px;
  }

  .bottom-line2 {
    font-size: 12px;
    color: #1e1b25;
    font-family: var(--font-family);
    font-weight: 600;
    text-align: center;
    line-height: 16px;
    letter-spacing: 1.5px;
    padding-bottom: 4%;
  }

}

/* Mobile View Footer Adjustments */
@media (max-width: 550px) {
  .popup {
    width: 92%;
    /* Adjust width for mobile screens */
    padding: 10px;
    /* Adjust padding for better fit */
  }

  .pop-up-heading {
    font-size: 20px;
    /* Adjust font size */
  }

  .pop-up-para {
    font-size: 10px;
    /* Adjust font size */
    font-weight: 100;
    letter-spacing: 2px;
  }

  .close-btn {
    font-size: 12px;
    /* Adjust font size */
    padding: 6px 12px;
    /* Adjust padding */
  }

  .section6 {
    padding-top: 5%;
    padding-bottom: 0;
  }

  .footer-background {
    width: 90%;
    padding: 5%;
    border-radius: 0px
  }

  .input-btn-align {
    flex-direction: column;
    gap: 15px;
  }

  .Do-you {
    font-size: 19px;
    line-height: 22px;
    text-align: center;
    width: 100%;
  }

  .frame2 {
    width: 89%;
    margin: auto;
    padding: 5px 20px;
    height: 48px;
  }

  .input-field {
    width: 100%;
    height: 35px;
    font-size: 12px;
  }

  .frame2 .div-wrapper {
    width: 25%;
    height: 32px;
    margin: 0;
    padding-bottom: 5px;
  }

  .input-field::placeholder {
    font-size: 10px;
    font-family: "Raleway Bold";
    font-weight: 400;
    color: #1e1b25;
    padding-left: 15px;
  }

  .frame2 .div {
    text-align: center;
    padding: 0 !important;
    font-size: 15px;
  }

  .sub-btn {
    background-color: transparent;
    font-size: 12px;
    font-family: "Raleway Bold";
    font-weight: 100;
    color: #FFFFFF;
    border: none;
    letter-spacing: 1px;
    padding-bottom: 7px;
  }

  .hr-color {
    margin-top: 20px;
  }

  .frame3 {
    flex-direction: column;
    align-items: center;
    /* gap: 20px; */
  }

  .frame3 .div,
  .frame3 .div-2 {
    width: 100%;
    text-align: center;
  }

  .frame3 .img {
    position: relative;
    width: 40px;
    height: 40px;
  }

  .frame3 .text-wrapper {
    font-size: 12px;
    color: #FFFFFF;
    font-family: var(--font-family);
    font-weight: 600;
    text-align: center;
    line-height: 16px;
    letter-spacing: 1.5px;
    width: 100%;
  }

  .corporate-office {
    font-size: 12px;
    color: #FFFFFF;
    font-family: var(--font-family);
    font-weight: 600;
    text-align: center;
    line-height: 16px;
    width: 100%;
    letter-spacing: 1.5px;
    margin: auto;
    margin-bottom: 10px;
  }

  .phone {
    font-size: 12px;
    color: #FFFFFF;
    font-family: var(--font-family);
    font-weight: 600;
    text-align: center;
    line-height: 16px;
    letter-spacing: 1.5px !important;
    width: 100%;
    margin: auto;
  }

  .icons-set {
    justify-content: center;
    width: 100%;
    margin: auto;
    padding-top: 10px;
    margin-left: 15px;
  }

  .paras-align-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-color: var(--primary-color);
    /* gap:40%; */
  }

  .icon-visible {
    width: 30px;
    height: 30px;
  }

  .bottom-line1 {
    font-size: 12px;
    color: #FFFFFF;
    font-family: var(--font-family);
    font-weight: 600;
    text-align: center;
    line-height: 16px;
    letter-spacing: 1.5px;
  }

  .bottom-line2 {
    font-size: 12px;
    color: #FFFFFF;
    font-family: var(--font-family);
    font-weight: 600;
    text-align: center;
    line-height: 16px;
    letter-spacing: 1.5px;
    padding-bottom: 4%;
  }
}

/* hover effect */
.icons-set .icon {
  transition: transform 0.3s ease-in-out;
}

.icons-set a:hover .icon {
  transform: scale(1.2);
}