@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

body {
  overflow-x: hidden;
  position: relative;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 28px;
  color: #6a6a6a;
  font-size: 16px;
  background-color: #eff2f1;
}

a {
  text-decoration: none;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  color: #2f2f2f;
  text-decoration: underline;
}

a:hover {
  color: #2f2f2f;
  text-decoration: none;
}

a.more {
  font-weight: 600;
}

.custom-navbar {
  background: #ffffff !important;
  padding: 0;
}

.custom-navbar img {
  height: 70px;
  object-fit: contain;
}

.custom-navbar .container {
  height: auto;
}

.custom-navbar .navbar-toggler {
  border-color: transparent;
}

.custom-navbar .navbar-toggler:active,
.custom-navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

/* Desktop spacing between nav items */
@media (min-width: 992px) {
  .custom-navbar .custom-navbar-nav li {
    margin-left: 15px;
    margin-right: 15px;
  }
}

/* Nav link default style */
.custom-navbar .custom-navbar-nav li a {
  font-weight: 500;
  color: #0D1B2A !important;
  opacity: 0.5;
  font-size: 16px;
  transition: 0.3s ease;
  position: relative;
}

/* Active link */
.custom-navbar .custom-navbar-nav li a.active {
  color: #000 !important;
  border-bottom: 5px solid #f9bf29;
  opacity: 1;
  font-weight: 700;
}

/* Hover animation */
.custom-navbar .custom-navbar-nav li a:hover:before {
  width: calc(100% - 16px);
}

/* Add responsiveness for logo and spacing */
@media (max-width: 768px) {
  .custom-navbar img {
    height: 50px;
  }

  .custom-navbar .custom-navbar-nav li {
    margin: 10px 0;
  }
}


.btn {
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  color: #2f2f2f;
  /* background: #2f2f2f; */
  border-color: #2f2f2f;
}

.btn:hover {
  color: #ffffff;
  background: #222222;
  border-color: #222222;
}

.btn:active,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn.btn-primary {
  background: #3b5d50;
  border-color: #3b5d50;
}

.btn.btn-primary:hover {
  background: #314d43;
  border-color: #314d43;
}

.btn.btn-secondary {
  color: #2f2f2f;
  background: #f9bf29;
  border-color: #f9bf29;
}

.btn.btn-secondary:hover {
  background: #f8b810;
  border-color: #f8b810;
}

.btn.btn-white-outline {
  background: transparent;
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn.btn-white-outline:hover {
  border-color: white;
  color: #ffffff;
}

.section-title {
  color: #2f2f2f;
}

.product-section {
  padding: 3rem 0;
}

.why-choose-section {
  margin-top: 10%;
}

.why-choose-section .img-wrap {
  position: relative;
}

.why-choose-section .img-wrap:before {
  position: absolute;
  content: "";
  width: 150px;
  height: 120px;
  background-image: url("../images/dots-yellow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-20%, -20%);
  right: -10%;
  bottom: -15%;
  z-index: -1;
}

.why-choose-section .img-wrap img {
  border-radius: 20px;
}

.feature {
  margin-bottom: 30px;
}

.feature .icon {
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
}

.feature .icon:before {
  content: "";
  width: 33px;
  height: 33px;
  position: absolute;
  background: rgba(59, 93, 80, 0.2);
  border-radius: 50%;
  right: -8px;
  bottom: 0;
}

.feature h3 {
  font-size: 14px;
  color: #2f2f2f;
}

.feature p {
  font-size: 15px;
  line-height: 22px;
  color: #6a6a6a;
}

.we-help-section {
  padding: 4rem 0 0;
}

.we-help-section .imgs-grid {
  display: -ms-grid;
  display: grid;
  /* -ms-grid-columns: (1fr)[27]; */
  grid-template-columns: repeat(27, 1fr);
  position: relative;
}

.we-help-section .imgs-grid:before {
  position: absolute;
  content: "";
  width: 255px;
  height: 217px;
  background-image: url("../images/dots-green.svg");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: translate(-40%, -40%);
  -ms-transform: translate(-40%, -40%);
  transform: translate(-40%, -40%);
  z-index: -1;
}

.we-help-section .imgs-grid .grid {
  position: relative;
}

.we-help-section .imgs-grid .grid img {
  border-radius: 20px;
  max-width: 100%;
}

.we-help-section .imgs-grid .grid.grid-1 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 18;
  grid-column: 1 / span 18;
  -ms-grid-row: 1;
  -ms-grid-row-span: 27;
  grid-row: 1 / span 27;
}

.we-help-section .imgs-grid .grid.grid-2 {
  -ms-grid-column: 19;
  -ms-grid-column-span: 27;
  grid-column: 19 / span 27;
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  grid-row: 1 / span 5;
  padding-left: 20px;
}

.we-help-section .imgs-grid .grid.grid-3 {
  -ms-grid-column: 14;
  -ms-grid-column-span: 16;
  grid-column: 14 / span 16;
  -ms-grid-row: 6;
  -ms-grid-row-span: 27;
  grid-row: 6 / span 27;
  padding-top: 20px;
}

.custom-list {
  width: 100%;
}

.custom-list li {
  display: inline-block;
  width: calc(50% - 20px);
  margin-bottom: 12px;
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
}

.custom-list li:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #3b5d50;
  position: absolute;
  left: 0;
  top: 8px;
}

.before-footer-section {
  padding: 7rem 0 12rem 0 !important;
}

.footer-section {
  padding: 60px 0 10px;
  background: #0D1B2A;
  font-size: 15px;
}

.footer-section .relative {
  position: relative;
}

.footer-section a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.footer-section a:hover {
  color: #f9bf29;
}

.footer-section .links-wrap {
  margin-top: 0px;
}

.footer-section .links-wrap ul li {
  margin-bottom: 10px;
  color: #fff !important;
}

.footer-section .custom-social li {
  margin: 2px;
  display: inline-block;
}

.footer-section .custom-social li a {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  display: inline-block;
  background: #fff;
  color: #0D1B2A;
  border-radius: 50%;
  border: none;
}

.footer-section .custom-social li a:hover {
  background: none;
  color: #f9bf29;
  border: 1px solid #f9bf29;
}

.footer-section .border-top {
  border-color: #dce5e4;
}

.footer-logo-wrap img {
  width: 180px;
}

.footer-logo-wrap {
  margin-top: -12px;
}

.footer-section .border-top.copyright {
  font-size: 14px !important;
  text-align: center;
  color: #fff;
}

.untree_co-section {
  padding: 3rem 0 5rem;
}

.untree_co-section h2 {
  margin-bottom: 3rem;
  text-align: center;
  color: #000;
  font-size: 35px;
  font-weight: 500;
  font-style: italic;
}

.form-control {
  height: 50px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
}

.form-control:active,
.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #3b5d50;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
}

.form-control::-webkit-input-placeholder {
  font-size: 14px;
}

.form-control::-moz-placeholder {
  font-size: 14px;
}

.form-control:-ms-input-placeholder {
  font-size: 14px;
}

.form-control:-moz-placeholder {
  font-size: 14px;
}

.service {
  line-height: 1.5;
}

.service .service-icon {
  border-radius: 10px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #084298;
  margin-right: 20px;
  color: #ffffff;
}

.service-contents a {
  padding-bottom: 7px;
  text-decoration: none;
}

textarea {
  height: auto !important;
}

.about_heading h3 {
  margin-top: 3rem;
  margin-bottom: 3rem;
  text-align: center;
  color: #000;
  font-size: 35px;
  font-weight: 500;
  font-style: italic;
}

.hero-slider {
  width: 100%;
  height: auto;
}

.hero-slider .swiper-slide img {
  width: 100%;
  height: 88vh;
  object-fit: cover;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  color: #fcdf94;
  background: #fff;
  border-radius: 50px;
  padding: 15px;
  width: 30px !important;
  height: 30px !important;
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
  font-size: 20px;
}

.customer-swiper {
  width: 100%;
  padding: 4rem 0;
}

.customer-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.customer-swiper img {
  width: 100%;
  max-width: 200px;
  object-fit: contain;
  transition: transform 0.3s;
}

.customer-swiper img:hover {
  transform: scale(1.1);
}

.hero-container {
  position: relative;
  width: 100%;
}

.about_bg {
  height: 80vh !important;
  object-fit: cover !important;
}

.hero-container img {
  width: 100%;
  height: 100%;
  display: block;
}

/* .product-section {
  padding: 3rem 0 3rem;
  display: grid;
  gap: 20px;
} */

.product-card {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgb(229 229 229);
}

.product-image {
  flex: 1 1 300px;
  min-width: 280px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-details {
  flex: 2 1 400px;
  padding: 20px;
}

.product-details h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #0D1B2A;
}

.product-details p {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.product-features h3,
.product-applications h3 {
  margin-top: 40px;
  color: #0D1B2A;
}

@media (max-width: 768px) {
  .product-card {
    flex-direction: column;
  }

  .customer-swiper {
    padding: 2rem 0 3rem;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .service {
    margin-bottom: 20px;
  }

  .custom-navbar img {
    height: 85px;
  }

  .hero-slider .swiper-slide img {
    height: 100%;
    object-fit: cover;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 22px;
  }

  .why-choose-section {
    padding: 3rem 0;
  }

}

.features-section h2 {
  font-size: 16px;
  color: #0D1B2A;
  margin-bottom: 10px;
  margin-top: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
}

.feature-title {
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 0;
}

.feature-detail {
  font-size: 14px;
  color: #555;
}

/* .product-section .swiper {
  width: 100%;
  height: 100%;
}

.product-section {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
} */

.map-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {

  .our_work img {
    width: 100%;
    height: 100% !important;
  }

  .our_work {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }
}

.our_work {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.our_work img {
  width: 100% !important;
  max-width: 400px;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .why-choose-section .img-wrap:before {
    width: 200px;
    height: 160px;
    transform: translate(-25%, -25%);
    right: -20% !important;
    bottom: -20% !important;
  }
}

@media (max-width: 769px) {
  .why-choose-section .img-wrap:before {
    width: 255px;
    height: 217px;
    transform: translate(-10%, -10%);
    right: -8% !important;
    bottom: -15%
  }
}

@media (max-width: 991px) {
  .about_heading h3 {
    margin-top: 2rem;
    font-size: 28px;
  }

  .about_bg {
    height: 100% !important;
  }

  .we-help-section {
    padding: 2rem 0 0;
  }

  .we-help-section .p-5 {
    padding: 1rem !important;
  }

  .we-help-section .imgs-grid .grid.grid-2 {
    display: none;
  }

  .we-help-section .imgs-grid .grid.grid-3 {
    grid-column: 12 / span 16;
    grid-row: 6 / span 26;
    padding-top: 20px;
  }

  .details_lumens {
    grid-template-columns: 1fr 1fr !important;
  }
}

.details_lumens {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  margin-top: 30px;
}

.details_lumens .details_card {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
}

.details_lumens .details_card .section-title {
  font-size: 20px;
}

@media screen and (max-width: 551px) {
  .details_lumens {
    grid-template-columns: 1fr !important;
  }

  .about_bg {
    height: 100% !important;
  }
}

.product-section {
  padding: 3rem 0 3rem;
}

.product-section .product-item {
  text-align: center;
  text-decoration: none;
  display: block;
  position: relative;
  padding-bottom: 50px;
  cursor: pointer;
}

.product-section .product-item .product-thumbnail {
  margin-bottom: 30px;
  position: relative;
  top: 0;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.product-section .product-item h3 {
  font-weight: 600;
  font-size: 16px;
}

.product-section .product-item strong {
  font-weight: 800 !important;
  font-size: 18px !important;
}

.product-section .product-item h3,
.product-section .product-item strong {
  color: #2f2f2f;
  text-decoration: none;
}

.product-section .product-item .icon-cross {
  position: absolute;
  width: 35px;
  height: 35px;
  display: inline-block;
  background: #2f2f2f;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-bottom: -17.5px;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.product-section .product-item .icon-cross img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.product-section .product-item:before {
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  content: "";
  background: #dce5e4;
  height: 0%;
  z-index: -1;
  border-radius: 10px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.product-section .product-item:hover .product-thumbnail {
  top: -25px;
}

.product-section .product-item:hover .icon-cross {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

.product-section .product-item:hover:before {
  height: 70%;
}

.modal-dialog {
  max-width: 1200px;
}

.country-wrap {
  margin-top: 50px;
}

.country-wrap .service-box {
  margin-bottom: 90px;
  position: relative;
}

.country-wrap .service-box .service-content {
  background-color: #ffffff;
  padding: 30px 10px;
  border-radius: 15px;
  position: absolute;
  width: -webkit-fill-available;
  bottom: -55px;
  margin: 0 auto;
  display: block;
  transition: all 0.5s;
  box-shadow: 20px 0px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  column-gap: 13px;
  left: 0;
  right: 0;
}

.country-wrap .service-box .service-content h4 {
  padding: 0 0 7px 0;
  color: #0A0B0D;
  font-size: 20px;
  font-weight: 600;
}

.country-wrap .service-box .service-content p {
  font-size: 16px;
  color: #000;
}

.country-wrap .service-box .service-content .img-main {
  max-width: 40px;
}

.country-wrap .service-box .service-content img {
  width: 100%;
}

.country-wrap .service-box:hover .service-content {
  bottom: 15px;
  background-color: #ffffff;
}

.country-wrap .service-box:hover .service-content h4,
.country-wrap .service-box:hover .service-content a {
  color: #0A0B0D;
}

.ec_heading_wrap {
  margin: 0 auto 40px;
  text-align: center;
}

.ec_heading_wrap h3 {
  font-size: 42px;
  font-weight: 700;
  color: #0A0B0D;
  margin-bottom: 10px;
}

.ec_heading_wrap p {
  font-size: 20px;
  font-weight: 400;
  color: #0A0B0D;
  margin: 0 auto;
  /* text-align: left !important; */
}

.contact_main_container {
    padding: 80px 100px;
}

.contact_main_container h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact_main_container span {
    font-size: 16px;
    font-weight: 400;
}

.contact_informationCont {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    flex-direction: column;
}

.contact_informationCont .contact_phone {
    display: flex;
    gap: 35px;
    align-items: center;
}

.contact_informationCont .contact_phone .phone_svg {
    border: 1px solid #DBDDE1;
    padding: 15px;
    border-radius: 50px;
}

.contact_informationCont .contact_phone .phone_details h4 {
    font-size: 20px;
    font-size: 600;
}

.contact_informationCont .contact_phone .phone_details span {
    font-size: 16px;
    font-weight: 400;
}

.contact_main_container .contact_form {
    padding: 20px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.contact_main_container .contact_form .contcat_input {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 15px;
}

.contact_main_container .contact_form .contcat_input label {
    font-size: 16px;
    font-weight: 400;
}

.contact_main_container .contact_form .contcat_input input,
textarea,
select {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #DBDDE1;
    background: #f3f3f3;
}

.contact_main_container .contact_form .contcat_input
textarea {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #DBDDE1;
    background: #f3f3f3;
    width: 100% !important;
}

.email-text {
  font-size: 1rem;
  word-break: break-word;   /* forces breaking inside words if needed */
  overflow-wrap: break-word; /* modern property */
}

@media (max-width: 576px) {
  .email-text {
    font-size: 0.9rem;   /* a bit smaller on mobile */
    display: inline-block;
    max-width: 100%;     /* forces wrapping */
    white-space: normal; /* allows wrapping */
  }
}

