@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..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&display=swap");
:root {
  --theme-red: #932f2f;
  --theme-white: #fff;
  --theme-black: #000;
  --theme-green: #018b35;
  --theme-dark-green: #0e2e14;
  --theme-black-secondary: #292929;
}
* {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Noto Sans", sans-serif;
  overflow-x: hidden;
}
p {
  font-weight: 400;
  font-size: 16px;
  line-height: 170%;
}

a {
  color: var(--theme-black-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--theme-orange);
}
.borderButton {
  margin-top: 30px;
}
.borderButton a,
.borderButton button {
  color: var(--theme-black);
  border: 1px solid var(--theme-black);
  border-radius: 8px;
  padding: 1rem;
  display: block;
  max-width: 155px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
}
.borderButton button {
  background: transparent;
  white-space: nowrap;
}

section {
  overflow: hidden;
}
/* home css start */
.hero-section {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
}
.hero-section::after {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(1deg, #00000094, transparent);
}
.hero-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.text-rotate {
  height: 60px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  color: #fff;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  left: 50%;
  transform: translate(-50%, -50%);
}

.static {
  display: flex;
  align-items: center;
  height: 60px; /* match words */
}

.words {
  display: flex;
  flex-direction: column;
  height: 60px; /* 🔥 IMPORTANT */
  animation: slideUp 6s infinite;
}

.words span {
  height: 60px;
  display: flex;
  align-items: center;
}
/* Animation */
@keyframes slideUp {
  0% {
    transform: translateY(0%);
  }
  20% {
    transform: translateY(0%);
  }

  33% {
    transform: translateY(-100%);
  }
  53% {
    transform: translateY(-100%);
  }

  66% {
    transform: translateY(-200%);
  }
  86% {
    transform: translateY(-200%);
  }

  100% {
    transform: translateY(0%);
  }
}
.sub-heading img {
  max-width: 35px;
}
.sub-heading span {
  color: var(--theme-green);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
}
.sub-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
h2.heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}
h2.heading span {
  color: var(--theme-green);
}
.primary-btn {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  border-radius: 40px;
  background: var(--theme-green);
  box-shadow:
    10px 10px 23.5px 0 rgba(0, 0, 0, 0.19),
    0 0 28px 0 rgba(0, 0, 0, 0.45) inset;
  padding: 10px 30px 12px 30px;
  display: inline-block;
  margin-top: 20px;
}
.about-section {
  padding: 4rem 0;
}
.abt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.stat-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.stat-box {
  height: 180px;
  background-repeat: no-repeat;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #ffffff8a;
  backdrop-filter: blur(11px);
  border: 1px solid #fff;
}
.stat-box .ic {
  position: absolute;
  top: 0;
  right: 5px;
}
.stat-box::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  right: -26px;
  bottom: -28px;
  background-color: var(--theme-dark-green);
  border-radius: 40px;
}

section.stat span {
  color: var(--theme-white);
}
section.stat h2 {
  color: var(--theme-white);
  margin-bottom: 2rem;
}
section.stat {
  background-image: url(../images/stat-bg.jpg);
  padding: 6rem;
  background-position: center;
}
.stat {
  font-size: 42px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--theme-white);
}
.stat > span {
  font-size: 22px;
}
.stat + span {
  font-size: 16px;
  font-weight: 400;
}
.stat-box .ic img {
  width: 50px;
}
.stat .heading {
  text-align: center;
  margin-bottom: 32px;
}
.why-us-section {
  background-image: url(../images/why-bg.jpg);
  padding: 5rem 0;
  color: var(--theme-white);
  margin: 0 0 4rem;
}
.why-point {
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 7px 6.7px 0 rgba(0, 0, 0, 0.25);
  background: rgb(139 139 139 / 45%);
  border-radius: 20px;
  margin-bottom: 16px;
  padding: 12px;
  backdrop-filter: blur(2px);
}
.why-point p {
  margin-bottom: 0;
  font-weight: 600;
}
.why-point img {
  max-width: 70px;
}
.why-us-section .sub-heading span {
  color: var(--theme-white);
}
.grp-comp .sub-heading,
.case-studies .sub-heading {
  justify-content: center;
}
.grp-comp .heading,
.case-studies .heading {
  text-align: center;
}
.cmpny-profile {
  padding: 1rem;
  border: 1px solid #ccc;
}
.company-swiper {
  position: relative;
}
.cmpny-profile img {
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
  object-fit: cover;
}
h5.cmpny-name {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 0;
  color: var(--theme-black);
  min-height: 55px;
}

/* home css end */

/* swiper arrow */
.eco-nav {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
}

.eco-prev,
.eco-next {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--theme-green);
  color: var(--theme-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.eco-prev:hover,
.eco-next:hover {
  background: var(--theme-dark-green); /* your brand color */
  transform: scale(1.1);
}

/* swiper pagination */
.eco-pagination {
  margin-top: 20px;
  text-align: center;
}

.eco-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #e4e4e4;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.eco-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 20px;
  background: var(--theme-green);
}
section.case-studies {
  margin: 4rem 0;
}
.case-content {
  max-height: 350px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}
.case-content.expanded {
  max-height: 100%;
}
.case-content h3 {
  font-size: 22px;
  line-height: 140%;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--theme-black);
}
.tags span {
  color: var(--theme-green);
  background-color: #e6f1ec;
  padding: 5px 8px;
  font-size: 14px;
  margin-right: 10px;
  border-radius: 4px;
}
.aplc {
  margin: 18px 0 8px;
}
.case-studies p {
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
}
.case-studies .heading {
  text-align: center;
  margin-bottom: 30px;
}

.eco-partner .swiper-slide {
  width: 280px; /* adjust as needed */
}
.partner-logo {
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  padding: 24px;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.viewLink {
  font-size: 18px;
  color: var(--theme-dark-green);
}
.testimonials {
  background-image: url(../images/testimonial-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 4rem 0;
  margin: 4rem 0;
}
.review {
  padding: 4rem 0;
}
.client-img {
  position: relative;
  text-align: end;
}
.client-img::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--theme-green);
  position: absolute;
  z-index: -1;
  max-width: 250px;
  border-radius: 18px;
  right: 20px;
  top: 20px;
}
.content {
    padding: 20px 100px;
    margin: 0 40px;
    text-align: center;
}
.content img.quote-icon {
    display: block;
    max-width: 50px;
    opacity: 0.5;
    margin-top: 12px;
    margin-bottom: 14px;
    margin-left: 0;
    margin-right: auto;
}
.star-rating{
  margin-bottom: 10px;
}
.star-rating img {
  opacity: 1;
  max-width: 25px;
}
.client-info h4 {
  color: var(--theme-green);
  text-transform: capitalize;
  font-weight: 700;
}
.blog-wrap img {
  width: 100%;
}
.info h4 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  min-height: 52px;
  max-height: 52px;
  margin: 14px 0;
  line-height: 150%;
}
.blog-wrap {
  padding: 1rem;
  border: 1px solid #e5e5e5;
}
.events {
  margin: 0 0 4rem;
}
.navbar-brand img {
  max-width: 150px;
}
.mainHeader .navbar-light .navbar-nav .nav-link {
  color: var(--theme-black);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  padding-right: 19px;
}
.copy-email span strong {
  color: var(--theme-green);
}
.bread {
  background-color: var(--theme-dark-green);
  color: var(--theme-white);
  padding: 12px 0;
}
.bread i {
  font-size: 11px;
  display: inline-block;
  margin: 0 4px;
}
.bread a {
  color: var(--theme-white);
  font-size: 14px;
}

footer {
  background-image: url(../images/footer-bg.png);
  padding: 3rem 0 0 0;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--theme-white);
  font-family: "Poppins", sans-serif;
}
.links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.links ul,
ul.cmp {
  padding-left: 0;
  list-style-type: none;
}
.links li,
ul.cmp li {
  margin-bottom: 10px;
}
.links li a,
ul.cmp li a {
  color: var(--theme-white);
}
footer p {
  font-size: 16px;
}
.bottomFooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem 1.5rem 2rem;
  border-top: 1px solid #737373;
  margin-top: 1rem;
}
.bottomFooter span {
  font-weight: 600;
  font-size: 18px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 50px;
  height: 50px;
  border: 1px solid var(--theme-white);
  color: var(--theme-white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 20px;
  transition: all 0.3s ease;
}
.social-links a:hover {
  color: var(--theme-green);
}
footer .footerLinks {
  padding: 0 2rem;
}
.footerLinks h4 {
  color: var(--theme-white);
  position: relative;
  margin-bottom: 24px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footerLinks h4 span {
  width: 50px;
  display: inline-block;
  background-color: var(--theme-white);
  height: 2px;
}
a.fixed-icon {
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 1050;
}
a.fixed-icon img {
  max-width: 50px;
}
label {
  font-size: 13px;
  margin-bottom: 4px !important;
  font-weight: 500;
}
.contact-block {
  padding: 4rem 0;
  margin-bottom: 4rem;
  background-image: url(../images/contact-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.bottom-content h2 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--theme-green);
}
.bottom-content p {
  font-weight: 500;
}
/* .office-info{
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
} */
.contact-block form {
  background-color: var(--theme-white);
  border: 1px solid #dee2e6;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 0 20px 14px #0e2e141f;
}
.contact-emails {
  background-color: #e6f1ec;
  color: var(--theme-white);
  padding: 16px;
  border-radius: 12px;
  position: relative;
  box-shadow: -23px 26px 0px var(--theme-green);
}

/* .contact-emails::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 40px;
  border-radius: 12px;
  right: -10px;
  top: -10px;
  background-color: var(--theme-green);
  z-index: -1;
} */
#copyToast {
  position: fixed;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--theme-green);
  color: var(--theme-white);
  padding: 12px 20px;
  border-radius: 5px;
  transition: 0.3s ease;
  font-size: 14px;
  z-index: 999;
}

#copyToast.show {
  bottom: 30px;
}
.contact-map {
  padding-bottom: 4rem;
}
.contact-emails span {
  color: var(--theme-dark-green);
  font-size: 13px;
  font-weight: 600;
}
.contact-emails div {
  margin-bottom: 22px;
}

.contact-emails div a {
  font-size: 18px;
  font-weight: 600;
}
.contact-emails div a:hover {
  color: var(--theme-green);
}
.contact-map iframe {
  border-radius: 12px;
}
.grid-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.office {
  position: sticky;
  top: 200px;
  align-self: start;
}

.office img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 13px 16px 0px var(--theme-green);
}
section.contact-branches {
  overflow: visible;
  margin-bottom: 4rem;
}
.branch {
  background-color: #e6f1ec;
  padding: 20px 20px 7px;
  margin-bottom: 20px;
  height: 100%;
  border-radius: 10px;
  border: 1px solid #e6f1ec;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.branch::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  right: -26px;
  bottom: -28px;
  background-color: var(--theme-green);
  border-radius: 40px;
}
.branch:hover {
  border-color: var(--theme-green);
  box-shadow: 0 0 17px 4px #f1f1f1;
}
.branch h3 {
  font-size: 20px;
  font-weight: 700;
}
.branch p {
  font-size: 16px;
  margin-bottom: 8px;
}
.clientUl ul.nav {
  flex-direction: column;
  padding: 2rem;
  background: #eff6eb;
  border-radius: 10px;
}
.clientUl ul.nav button {
  width: 100%;
  text-align: left;
  color: var(--theme-black);
}
.clientUl ul.nav button.active {
  background-color: var(--theme-green);
}
.clients {
  padding: 6rem 0;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.brand-grid img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  padding: 16px;
  border: 1px solid #f1f1f1;
  transition: all 0.3s ease;
}
.brand-grid img:hover {
  border-color: var(--theme-green);
  box-shadow: 0 0 17px 4px #f1f1f1;
}
.group-companies {
  padding: 4rem 0;
}
.group-companies .row {
  margin-bottom: 4rem;
}
.group-companies .row p,
.about-section p {
  font-weight: 400;
  font-size: 16px;
  line-height: 170%;
}
.media,
.career {
  margin: 4rem 0;
}
.media nav {
  margin-bottom: 2rem;
}
.media nav .nav-link {
  color: var(--theme-dark-green);
  font-size: 16px;
  width: 25%;
}
.media nav .nav-link.active {
  font-weight: 600;
  border-color: var(--theme-green) var(--theme-green) var(--theme-white);
}

.job-card {
  background: var(--theme-white);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--theme-green);
}
.job-card p {
  max-width: 450px;
  font-size: 16px;
  margin-bottom: 8px;
}
.read-more {
  color: var(--theme-green);
  display: inline-block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}
.badge-custom {
  border: 1px solid #000;
  border-radius: 20px;
  padding: 5px 10px;
  margin-right: 5px;
}
.apply-btn {
  cursor: pointer;
}
.form-section {
  background: #e6f1ec;
  padding: 20px;
  border-radius: 10px;
  position: sticky;
  top: 20px;
}
.hidden {
  display: none;
}
.job-wrap,
.sol-wrap,
.media nav,
.clients .row {
  border-top: 1px solid #f1f1f1;
  margin-top: 3rem;
  padding-top: 1.5rem;
}
.apply-btn {
  color: var(--theme-green);
  font-weight: 600;
  display: flex;
  border: 1px solid var(--theme-green);
  padding: 4px 12px 7px 12px;
  border-radius: 32px;
  align-items: anchor-center;
  gap: 8px;
}
.apply-btn i {
  transform: rotate(320deg);
  transition: transform 0.3s ease;
}
.apply-btn:hover i {
  transform: rotate(360deg);
}
.journey {
  /* height: 100vh; */
  overflow: hidden;
}
.journey .container {
  margin-bottom: 2rem;
}

.timeline-wrapper {
  position: relative;
  width: 100%;
  background: url(../images/timline.jpg) center/cover no-repeat;
  z-index: 0;
}

.timeline-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(65 65 65 / 60%); /* overlay so line visible */
  z-index: 1;
}

.timeline-container {
  position: relative;
  z-index: 4;
  display: flex;
  gap: 150px;
  width: max-content;
  padding: 200px 150px;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  height: 4px;
  width: 100%;
  background: var(--theme-white); /* darker for visibility */
  z-index: 2;
}

.timeline-progress {
  position: absolute;
  top: 50%;
  left: 0;
  height: 4px;
  width: 0%;
  background: #28a745;
  z-index: 3;
}

.timeline-item {
  width: 300px;
  text-align: center;
}

.circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #28a745;
  margin: 20px auto;
  transform: scale(0);
}

.year {
  background: #d1e7dd;
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
}

.card-box {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(50px);
}
.solution,
.box {
  position: relative;
  padding: 2rem;
  background: #018b3508;
  margin-bottom: 29px;
  border-radius: 16px;
  border: 1px solid #018b3524;
  transition: all 0.3s ease;
  cursor: pointer;
}
.solution:hover,
.box:hover {
  border-color: var(--theme-green);
  box-shadow: 0 0 17px 4px #f1f1f1;
}
.solution {
  position: relative;
  overflow: hidden;
}
.solution::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  right: -26px;
  bottom: -28px;
  background-color: var(--theme-green);
  border-radius: 40px;
}

.solution h4 {
  font-size: 22px;
  font-weight: 700;
  /* color: var(--theme-green); */
}

.solution p {
  font-weight: 400;
  font-size: 16px;
  line-height: 170%;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.solution p.expanded {
  -webkit-line-clamp: unset;
}

.more-text {
  display: none;
}

.read-more-box.active .more-text {
  display: block;
}

.read-toggle,
.show-more-btn {
  background: none;
  border: none;
  color: var(--theme-green);
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.read-toggle,
.show-more-btn {
  color: var(--theme-green);
  cursor: pointer;
  font-weight: 500;
  display: inline-block;
  margin: 5px 0 0;
}

.solution p.expanded-temp {
  -webkit-line-clamp: unset;
}
.about-section.program .abt-image img {
  max-width: 450px;
}
.about-section.program .abt-image {
  text-align: center;
}
.about-section.program {
  padding-top: 0;
}
.misionWrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.misionWrap .box {
  background-color: #018b3508;
  padding: 3rem 1rem 1rem 1rem;
  position: relative;
}

.box .ic {
  position: absolute;
  right: 10px;
  top: 10px;
}
.box img.ic {
  width: 60px;
}
.certification .certificate {
  margin-top: 3rem;
}
.certification {
  padding: 4rem 0;
  background-color: #e6f1ec;
  margin-bottom: 4rem;
}
.teams {
  padding: 4rem 0;
  background-color: #e6f1ec;
  margin: 4rem 0 0;
}
.certification .cmpny-profile {
  border: none;
  padding: 0;
  text-align: center;
}
.certification .cmpny-profile img {
  border: 10px solid var(--theme-black-secondary);
  background-color: var(--theme-white);
  width: 200px;
  height: 255px;
  object-fit: cover;
}
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h5.cert-name {
  font-size: 16px;
  max-width: 80%;
  margin: 0 auto;
  line-height: 145%;
  margin-top: 12px;
}
h5.name {
  font-size: 18px;
  line-height: 145%;
  margin-top: 12px;
  color: var(--theme-black);
  font-weight: 600;
  margin-bottom: 2px;
}
span.profile {
  color: var(--theme-green);
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.services-section {
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: #222;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARDS */
.card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Highlight Card */
.highlight {
  background: linear-gradient(
    135deg,
    var(--theme-dark-green),
    var(--theme-green)
  );
  color: #fff;
}
.card h3 {
  margin-bottom: 8px;
  color: var(--theme-green);
  font-size: 20px;
  font-weight: 700;
}
.highlight h3,
.highlight p {
  color: #fff;
}

/* WHY SECTION */
.why-section {
  margin-top: 80px;
}

.why-grid {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.why-item span {
  font-size: 26px;
  font-weight: 600;
  color: var(--theme-green);
}
.why-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  flex: 1;
  min-width: 250px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.why-item:hover {
  transform: translateY(-5px);
}
.blogs {
  padding-bottom: 4rem;
}
.project-img {
  text-align: center;
  margin: 2rem;
}
.faq-sec {
  margin: 10px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
  margin-top: 40px;
}

.faq-item {
  display: flex;
  gap: 24px;
  padding: 10px;
}

.faq-icon {
  font-size: 22px;
  line-height: 1;
  margin-top: 4px;
  color: var(--theme-white);
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  height: 45px;
  border-radius: 4px;
  background: var(--theme-dark-green);
  box-shadow: 0px 2px 20px 4px #f1f1f1;
}
.faq-item h4 {
  font-size: 20px;
  font-weight: 600;
}
.faq-item p {
  font-size: 16px;
  margin-bottom: 0;
}
.director-image::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--theme-green);
  position: absolute;
  z-index: -1;
  max-width: 250px;
  border-radius: 18px;
  left: 70px;
  top: 20px;
}
.director-image img {
  border-radius: 22px;
}
.brnds .d-flex {
  margin-bottom: 20px;
}
/* hover dropdown (desktop) */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.eco-navbar {
  background: var(--theme-white);
  padding: 14px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* NAV LINKS */
.eco-navbar .nav-link {
  color: var(--theme-black-secondary);
  font-weight: 500;
  margin: 0 12px;
  position: relative;
  transition: 0.3s;
}

/* SIMPLE UNDERLINE (clean, no mess) */
.eco-navbar .nav-link:hover {
  color: var(--theme-green);
}

/* DROPDOWN FIX */
.eco-dropdown-parent {
  position: relative;
}

/* DROPDOWN MENU */
.eco-dropdown {
  position: absolute;
  top: 100%; /* 🔥 FIX: no overlap */
  left: 0;
  min-width: 240px;
  background: var(--theme-white);
  border-radius: 10px;
  padding: 10px 0;
  border: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
  z-index: 999;
}

/* SHOW DROPDOWN */
.eco-dropdown-parent:hover .eco-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* DROPDOWN ITEMS */
.eco-dropdown .dropdown-item {
  padding: 10px 18px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--theme-black-secondary);
  transition: 0.2s;
}

/* ICON */
.eco-dropdown .dropdown-item i {
  color: var(--theme-green);
  width: 16px;
}

/* HOVER */
.eco-dropdown .dropdown-item:hover {
  background: rgba(1, 139, 53, 0.08);
  color: var(--theme-green);
}

/* MEGA MENU */
.mega-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  min-width: 420px;
  padding: 15px;
}

/* items */
.mega-menu .dropdown-item {
  white-space: normal;
  border-radius: 6px;
}
.case-wrapper .project-img {
  text-align: center;
  margin: 0;
}
.case-wrapper .project-img img, .project-img img {
  border-radius: 10px;
  overflow: hidden;
  width: 100%
}
.case-wrapper .row {
  align-items: center;
  gap: 70px 0;
}
p a{
  color: var(--theme-green);
  font-weight: 600;
}

.ai-section {
  margin-top: 2rem;
}
.ai-section .accordion-item {
  margin-bottom: 20px;
  position: relative;
  padding: 30px;
  background-color: #f4f4f5;
  border-radius: 30px;
  box-shadow:
    0px 7.77px 16px 0px rgba(0, 0, 0, 0.0588235294),
    0px 3px 3px 0px rgba(0, 0, 0, 0.1019607843),
    0px -8px 0px 0px rgba(0, 0, 0, 0.0509803922) inset,
    0px 4px 0px 0px rgba(255, 255, 255, 0.6) inset;
  overflow: hidden;
}
.ai-section .accordion-item .accordion-button:focus {
  z-index: 3;
  border-color: unset;
  outline: 0;
  box-shadow: none;
  background: transparent;
}
.ai-section .accordion-item .accordion-button {
  background: transparent;
}
.ai-section .accordion-item .accordion-button:not(.collapsed) {
  color: #111;
  border-bottom: none !important;
}
.ai-section h2.accordion-header button {
  font-size: 28px;
  font-weight: 800;
  color: #696969;
}
.ailist li {
  list-style: circle;
}
ul.ailist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 0;
  padding-left: 20px;
  margin-top: 12px;
  gap: 10px 50px;
}
.ai-content {
  position: relative;
}
.ai-number {
  position: absolute;
  right: -20px;
  top: -20px;
  font-size: 121px;
  line-height: 1;
  font-weight: 800;
  z-index: 1;
  opacity: 0.1;
}
/* MOBILE FIX */
@media (max-width: 991px) {
  .eco-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 15px;
  }
}

.why-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--theme-green);
  transform: scaleX(0);
  transition: 0.4s;
  transform-origin: left;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.why-card .icon {
  width: 75px;
  height: 75px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--theme-green), var(--theme-green));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 10px 30px rgba(0, 56, 150, 0.25);
}

.why-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.why-card p {
  color: #666;
  line-height: 1.8;
  margin: 0;
  font-size: 15px;
}
.why-choose-section .row {
  gap: 20px 0;
}
.why-choose-section {
  margin-bottom: 5rem;
}
.compny-tag {
  margin-bottom: 18px;
  font-weight: 600;
}
#jobList {
  max-height: 450px;
  overflow-y: auto;
}
.read-more-box.active {
  max-height: 500px;
  overflow-y: auto;
}

.gallery-section {
  padding: 4rem 16px;
  background-color: #e6f1ec;
  margin-bottom: 3rem;
}

/* TABS */

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.gallery-tab {
  border: none;
  padding: 12px 22px;
  border-radius: 40px;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
  font-size: 15px;
}

.gallery-tab.active,
.gallery-tab:hover {
  background: var(--theme-green);
  color: #fff;
}

/* GRID */

.gallery-grid {
  column-count: 4;
  column-gap: 18px;
}

.gallery-item {
  display: block;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  break-inside: avoid;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 16px;
  transition: 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item.hide {
  display: none;
}

/* OPTIONAL HEIGHT CONTROL */

.gallery-item.landscape img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-item.portrait img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.advisors-list {
  max-height: 500px;
  overflow-y: auto;
  padding: 22px 26px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fafafa;
}


.advisors-list ul {
  list-style: none;
  padding: 0;
}

.advisors-list li {
  break-inside: avoid;
  margin-bottom: 14px;
  padding: 11px 10px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--theme-black);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 7px;
  border: 1px solid var(--theme-green);
  box-shadow: 0 8px 24px rgba(46, 139, 87, 0.12);
}

.advisors-list li::marker {
  color: #111;
  font-size: 18px;
}

/* Scrollbar */
.advisors-list::-webkit-scrollbar {
  width: 6px;
}

.advisors-list::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 10px;
}

.advisors-list::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 10px;
}

.advisors-list:hover::-webkit-scrollbar-thumb {
  background: var(--theme-green);
}
.ai-section hr {
  margin: 20px 0 40px;
  background-color: #979797;
}
.ai-section .section-title h3 {
  text-align: center;
  font-size: 32px;
  color: #222;
  font-weight: 700;
}
hr{
    margin: 2rem 0;
}
.solH5{
  font-weight: 700;
}
.mobile-menu-head,
.mobile-menu-overlay {
    display: none;
}
/* RESPONSIVE */
.brochure-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
}

.brochure-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    background: #f8f7f2;
    border-radius: 8px;
    text-decoration: none;
    color: #111;
    transition: 0.25s ease;
    border: 1px solid transparent;
}

.brochure-card:hover {
    background: #eef7ef;
    transform: translateY(-2px);
    border: 1px solid var(--theme-green);
}

.brochure-card span {
    line-height: 1.4;
}

.brochure-icon {
    width: 28px;
    min-width: 28px;
    height: auto;
}

@media (max-width: 767px) {
    .brochure-grid {
        grid-template-columns: 1fr;
    }

    .brochure-card {
        padding: 14px 15px;
    }
}
@media (max-width: 1200px) {
  .gallery-grid {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .gallery-section {
    padding: 60px 15px;
  }

  .gallery-grid {
    column-count: 1;
  }

  .gallery-tab {
    padding: 10px 18px;
    font-size: 14px;
  }
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.folder-card {
  width: 350px;
  text-align: center;
  cursor: pointer;
}

.folder-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.folder-title {
  margin-top: 8px;
  font-weight: bold;
}
