/* =========================
   ROOT VARIABLES
========================= */
:root {
  --primary-color: #28a745;
  --secondary-color: #d9d9d9;
  --text-color: #000000;
  --white-color: #ffffff;

  --font-main: "Poppins", sans-serif;

  --nav-font-size: 18px;
  --btn-font-size: 14px;

  --border-radius-pill: 25px;
}

/* =========================
   GLOBAL STYLES
========================= */
body {
  margin: 0;
  font-family: var(--font-main);
  overflow-x: hidden;
}

/* =========================
   HEADER
========================= */
.header {
  padding: 15px 0;
}

/* =========================
   NAVBAR
========================= */
.navbar-nav .nav-link {
  font-size: var(--nav-font-size);
  font-weight: 900;
  color: var(--text-color);
  margin: 0 12px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

/* =========================
   BUTTON
========================= */
.btn-enquire {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 6px 22px;
  border-radius: var(--border-radius-pill);
  font-size: var(--btn-font-size);
  font-weight: 500;
  transition: 0.3s;
}

.btn-enquire:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* =========================
   LOGO
========================= */
.logo img {
  height: 50px;
}
/* =========================
   HERO SECTION
========================= */

.hero-section {
  background: #f8f8ef;
  padding: 60px 0;
}

/* LEFT BOX */
.hero-box {
  background: #ffffff;
  padding: 70px 30px;
  border-radius: 20px;
}

.hero-box h1 {
  font-size: 43px;
  font-weight: 600;
  line-height: 1.3;
}

.hero-box h1 span {
  color: var(--primary-color);
}

.hero-box p {
  margin: 20px 0;
  font-size: 14px;
  color: #555;
  max-width: 500px;
  line-height: 30px;
}

/* BUTTON */
.btn-quote {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 500;
  display: inline-block;
  transition: 0.3s;
}

.btn-quote:hover {
  background: var(--primary-color);
  color: #fff;
}

/* BOTTOM AREA */
.hero-bottom {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  align-items: stretch;
  height: 180px; /* 🔥 fixed height like design */
}

/* APPROVAL BOX */
.approval-box {
  background: #238c2c;
  color: #fff;
  border-radius: 15px;
  min-width: 200px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.approval-box h2 {
  font-size: 42px;
  margin-bottom: 5px;
}

.approval-box p {
  margin: 0;
  font-size: 14px;
}
.hero-image-small {
  flex: 1;
  height: 100%;
}

.hero-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* RIGHT IMAGE */
.hero-image-big img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}
/* =========================
   SERVICES SECTION
========================= */
.services-section {
  padding: 40px 0;
}

/* SUBTITLE */
.service-subtitle {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 10px;
}

.service-subtitle .dot {
  margin-right: 6px;
  color: var(--primary-color);
  font-size: 14px;
}

/* TITLE */
.service-title {
  font-size: 43px;
  font-weight: 600;
  max-width: 1000px;
  margin: auto;
  line-height: 1.4;
}

.service-title span {
  color: var(--primary-color);
}

/* CARD */
.service-card {
  background: #f8f8ef;
  padding: 35px 35px 0px 35px;
  border-radius: 20px;
  text-align: left;
  position: relative;
  height: 100%;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
}

/* ICON */
.service-card .icon {
  margin-bottom: 15px;
}

.service-card .icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

/* NUMBER */
.service-card .number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 50px;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px #000;
}

/* TEXT */
.service-card h4 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #555;
  line-height:25px;
}
/* =========================
   ABOUT SECTION
========================= */
.about-section {
  padding: 40px 0;
}

/* SUBTITLE */
.about-subtitle {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 10px;
}

.about-subtitle .dot {
  margin-right: 6px;
  color: var(--primary-color);
  font-size: 14px;
}

/* TITLE */
.about-title {
  font-size: 43px;
  font-weight: 600;
  line-height: 1.3;
}

.about-title span {
  color: var(--primary-color);
}

/* TEXT */
.about-text {
  margin: 20px 0;
  color: #666;
  font-size: 14px;
  max-width: 500px;
  line-height:25px;
}

/* LIST */
.about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.about-list li {
  margin-bottom: 20px;
  font-size: 14px;
  color: #2e7d32;
  position: relative;
  padding-left: 22px;
  font-weight: 800;
}

.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 14px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  border: 2px solid var(--primary-color);
  padding: 12px 20px;
  border-radius: 30px;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

/* IMAGE */
.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}
/* =========================
   WHY SECTION
========================= */
.why-section {
  padding: 40px 0;
}

/* IMAGE WRAP */
.why-image {
  position: relative;
  display: flex;
  justify-content: center;
}

/* IMAGE */
.why-image img {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

/* SUBTITLE */
.why-subtitle {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 10px;
}

.why-subtitle .dot {
  margin-right: 6px;
  color: var(--primary-color);
  font-size: 14px;
}

/* TITLE */
.why-title {
  font-size: 43px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* LIST */
.why-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.why-list li {
  margin-bottom: 20px;
  padding-left: 22px;
  position: relative;
  color: #2e7d32;
  font-size: 14px;
  font-weight: 800;
}

.why-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* TEXT */
.why-text {
  color: #444;
  font-size: 14px;
  max-width: 500px;
  line-height:25px;
}
/* =========================
   FEATURES SECTION
========================= */
.features-section {
  padding: 40px 0;
}

/* SUBTITLE */
.features-subtitle {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 10px;
}

.features-subtitle .dot {
  margin-right: 6px;
  color: var(--primary-color);
  font-size: 14px;
}

/* TITLE */
.features-title {
  font-size: 43px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* TEXT */
.features-text {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
  line-height:25px;
}

.features-text.dark {
  color: #000;
  font-weight: 500;
  font-size: 14px;
}

/* BUTTON */
.features-btn {
  display: inline-block;
  margin-top: 20px;
  border: 2px solid var(--primary-color);
  padding: 20px;
  border-radius: 30px;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.features-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.feature-card {
  background: #e9e6df;
  padding: 25px;
  border-radius: 20px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* ICON */
.feature-card .icon {
  width: 55px;
  height: 55px;
  margin-bottom: 15px;
}

.feature-card .icon img {
  width: 60px;
}

/* TEXT */
.feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-top:15px;
}
/* =========================
   GLOBAL VIDEO SECTION
========================= */
.global-section {
  padding: 60px 0;
}

.global-title {
  font-size: 43px;
  font-weight: 600;
  margin-bottom: 20px;
}


/* VIDEO */
.video-wrapper {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
/* =========================
   CONTACT SECTION
========================= */
.contact-section {
  padding: 40px 0;
}

/* FORM BOX */
.contact-box {
  background: linear-gradient(180deg, #bfe5a8, #d9d9d9);
  padding: 50px;
  border-radius: 25px;
  height: 100%;
}

/* INPUT */
.form-control {
  border-radius: 30px;
  padding: 12px 18px;
  border: none;
  background: #eee;
  font-size: 14px;
}

.form-control:focus {
  box-shadow: none;
  outline: none;
}

.form-select {
  border-radius: 30px;
  padding: 12px 18px;
  border: none;
  background: #eee;
  font-size: 14px;
}

.form-select:focus {
  box-shadow: none;
  outline: none;
}

/* TEXTAREA */
textarea.form-control {
  border-radius: 15px;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  background: #ff6b2c;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.submit-btn:hover {
  opacity: 0.9;
}

/* RIGHT SIDE WITH BACKGROUND IMAGE */
.contact-right {
  background: url('image/contact-bg.jpg') center/cover no-repeat;
  border-radius: 25px;
  padding: 60px 40px;
  position: relative;
  display: flex;
  align-items: start;
  color: #fff;
  overflow: hidden;
}

/* OVERLAY */
.contact-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* CONTENT ABOVE OVERLAY */
.contact-content {
  position: relative;
  z-index: 2;
}

/* TEXT STYLES */
.contact-subtitle {
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
  
}

.contact-subtitle .dot {
  margin-right: 6px;
  font-size: 14px; 
}

.contact-title {
  font-size: 43px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-text {
  font-size: 14px;
  color: #eee;
}
/* =========================
   INDUSTRIES SECTION
========================= */
.industries-section {
  padding: 40px 0;
}

/* SUBTITLE */
.industries-subtitle {
  font-size: 43px;
  font-weight: 600;
  margin-bottom: 15px;
}

.industries-subtitle .dot {
  margin-right: 6px;
  color: var(--primary-color);
  font-size: 14px;
}

/* CARD */
.industry-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.industry-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.3s;
}

/* OVERLAY BOX */
.industry-info {
  position: absolute;
  bottom: 20px;
  left: -10px;
  right: 40px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 15px;
  display: flex;
  align-items: start;
  gap: 15px;
}

/* NUMBER */
.industry-info h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

/* TEXT */
.industry-info p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}

/* HOVER EFFECT */
.industry-card:hover img {
  transform: scale(1.05);
}
/* =========================
   LOGO SLIDER
========================= */
.logo-section {
  padding: 50px 0;
}

.logo-slider .item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-slider img {
  /*max-height: 60px;*/
  width: 80% !important;
  opacity: 1;
}
  .fa-bullets {
    list-style: none;
    padding-left: 0;
  }
  .fa-bullets li {
    margin-bottom: 8px;
  }
  .fa-bullets li i {
    margin-right: 8px;
    font-size:10px;
  }
/* =========================
   FAQ SECTION
========================= */
.faq-section {
  background: #0f1f2a;
  padding: 80px 0 120px;
  color: #fff;
  position: relative;
}

.faq-header h2 {
  font-size: 43px;
}

.faq-subtitle {
  color: var(--primary-color);
}

.faq-desc {
  color: #aaa;
}

/* IMAGE */
.faq-image img {
  width: 100%;
  border-radius: 20px;
}

/* ACCORDION */
.accordion-item {
  background: #2a2a2a;
  border-radius: 15px;
  margin-bottom: 15px;
  border: none;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  padding: 15px;
  display: flex;
  gap: 10px;
  cursor: pointer;
}

.accordion-body {
  display: none;
  padding: 0 15px 15px;
  color: #ccc;
}

.accordion-item.active .accordion-body {
  display: block;
}

/* BADGE */
.badge {
  padding: 5px 10px;
  border-radius: 8px;
  font-size:25px;
}

.badge.orange {
  background: #ff6b2c;
}
.badge.green {
  background: var(--primary-color);
}

/* =========================
   NEWSLETTER OVERLAP
========================= */
.newsletter-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-top: 60px;
  margin-bottom: -170px; /* 🔥 overlap */
  z-index: 5;
  position: relative;
}

/* LEFT */
.newsletter-left {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #000;
}

.newsletter-left img {
  width: 40px;
}

/* RIGHT */
.newsletter-right {
  display: flex;
  gap: 10px;
}

.newsletter-right input {
  padding: 12px 50px;
  border-radius: 25px;
  border: none;
  background:#f8f8ef;
}
.newsletter-right input:focus{
    border:none;
    outline:none;
}
.newsletter-right button {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 25px;
}

/* =========================
   COUNTER SECTION
========================= */
.counter-section {
        background: #f8f8ef;
  padding: 120px 0 80px; /* overlap adjust */
}

.counter-section h2 {
  font-size: 40px;
  color: var(--primary-color);
  font-weight: 600;
}

.counter-section p {
  color: #000;
  font-size: 14px;
}
/* =========================
   PROJECT SLIDER (OWL)
========================= */
.project-section {
  padding: 40px 0;
}

.project-title {
  font-size: 43px;
  margin-bottom: 40px;
}

/* CARD */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.project-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.4s;
}

/* OVERLAY BASE */
.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 20px;
  opacity: 0;
  transition: 0.4s;
}

/* TOP GREEN BOX */
.overlay-top {
  background: #b7d532;
  padding: 15px;
  width: 70%;
  transform: translateY(-100%);
  transition: 0.4s;
}

.overlay-top p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
}

/* BOTTOM WHITE BOX */
.overlay-bottom {
  background: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(100%);
  transition: 0.4s;
}

.overlay-bottom h4 {
  font-size: 16px;
  margin: 0;
}

.overlay-bottom .arrow {
  background: #0c2b1d;
  color: #fff;
  padding: 10px 14px;
  border-radius: 5px;
}

/* HOVER EFFECT */
.project-card:hover img {
  transform: scale(1.05);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-card:hover .overlay-top {
  transform: translateY(0);
}

.project-card:hover .overlay-bottom {
  transform: translateY(0);
}


.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 40px;        /* equal width */
  height: 40px;       /* equal height */
  margin-right: 10px;
  background: var(--primary-color);  /* green background */
  color: #fff;        /* white icon */
  border-radius: 50%; /* perfectly round */
  font-size: 16px !important;
  transition: 0.3s;
}
.social-icons a i{
  color: #fff !important;     
}

.social-icons a:hover {
  background: #0a7f2e; /* darker green on hover */
  transform: translateY(-3px); /* small lift effect */
}
/* =========================
   FOOTER
========================= */
.footer-section {
  background: linear-gradient(90deg, #c6e6b5, #d9d9d9);
  padding: 60px 0 0;
}
.footer-section i{
color:var(--primary-color);
}

/* TITLE */
.footer-section h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* TEXT */
.footer-section a {
  display: inline-block;  
  font-size: 14px;
  color: #333;
  text-decoration: none;
  margin-bottom: 15px;     
}

/* LIST */
.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li a {
  margin-bottom: 8px;
  font-size: 14px;
  cursor: pointer;
  color:#333333;
  text-decoration:none;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

/* NEWSLETTER */
.footer-section input {
  width: 100%;
  padding: 12px;
  border-radius: 25px;
  border: none;
  margin-top: 10px;
  background: #eee;
}

.footer-section button {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  border-radius: 25px;
  border: none;
  background: var(--primary-color);
  color: #fff;
  font-weight: 500;
}

/* BOTTOM */
.footer-bottom {
  background: #0d2a1f;
  padding: 15px 0;
  margin-top: 40px;
}

.footer-bottom p {
  color: #fff;
  margin: 0;
  font-size: 14px;
}

.footer-links a {
  color: #fff;
  margin-left: 15px;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

footer input.error {
  border-color: red;
}

.error-msg {
  color: red;
  font-size: 13px;
  margin-top: 5px;
  display: block;
}
/* =========================
   RESPONSIVE
========================= */
/* MOBILE MENU FIX */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: var(--secondary-color);
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
  }

  .navbar-nav {
    align-items: flex-start; /* LEFT ALIGN */
  }

  .navbar-nav .nav-link {
    margin: 5px 0;
    text-align: left;
  }

  .btn-enquire {
    width: 100%;
    text-align: center;
  }
  .hero-box {
    padding: 25px;
  }

  .hero-box h1 {
    font-size: 28px;
  }

  .hero-bottom {
    flex-direction: column;
  }

  .hero-image-big img {
    height: auto;
  }

  .hero-bottom {
    flex-direction: column;
    height: auto; /* remove fixed height */
  }

  .approval-box {
    width: 100%;
    min-height: 120px;
  }

  .hero-image-small {
    height: 150px;
  }
  .service-title {
    font-size: 28px;
  }

  .service-card {
    text-align: center;
  }

  .service-card .number {
    position: static;
    margin-top: 10px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-text {
    max-width: 100%;
  }

  .about-section {
    padding: 60px 0;
  }
  .why-title {
    font-size: 28px;
  }

  .why-image img {
    width: 100%;
  }

  .why-section {
    padding: 60px 0;
  }
  .features-title {
    font-size: 28px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .global-title {
    font-size: 28px;
  }

  .contact-title,
  .industries-subtitle,
  .faq-header h2,
  .project-title {
    font-size: 28px;
  }

  .contact-section {
    padding: 60px 0;
  }

  .industries-section {
    padding: 60px 0;
  }

  .newsletter-box {
    flex-direction: column;
    gap: 15px;
    margin-bottom: -70px;
  }

  .newsletter-right {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-right input,
  .newsletter-right button {
    width: 100%;
  }
  .project-slider img {
    height: 200px;
  }
  .footer-bottom {
    text-align: center;
  }

  .footer-links {
    margin-top: 10px;
  }
}
@media (max-width: 575px) {
    .services-section,
    .why-section,
    .features-section,
    .global-section,
    .contact-section,
    .counter-section {
        padding-bottom:0;
    }
    .counter-section{
        padding-top:40px;
    }

}
