/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

:root {
  --primary-yellow: #ffd900;
  --primary-yellow-hover: #e6c300;
  --text-dark: #1a1d21;
  --text-gray: #6b7280;
  --social-bg: #eff5e6;
  --social-icon: #3a5f0b;
  --brand-green: #63ab45;
  --brand-green-dark: #4c8a32;
  --brand-green-hover: #528f3a;
  --border-color: #e5e7eb;
  --bg-light-mint: #f2f8f1;
  --footer-bg: #ecf6e6;
}

.container {
  max-width: 90%;
}

@media (max-width: 991px) {
  .container {
    max-width: 100%;
  }
}

/* --- PRELOADER --- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--brand-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: relative;
}

.loader-spinner::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 5px solid transparent;
  border-top: 5px solid var(--primary-yellow);
  border-radius: 50%;
  animation: spin 1.5s linear infinite reverse;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

body {
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

/* --- Top Bar Styling --- */
.top-bar {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
  color: var(--text-gray);
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 24px;
}

.contact-item i {
  color: var(--text-dark);
  font-size: 16px;
}

.social-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.social-link {
  width: 32px;
  height: 32px;
  background-color: var(--social-bg);
  color: var(--social-icon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.social-link:hover {
  background-color: var(--social-icon);
  color: white;
}

/* --- Main Navbar Styling --- */
.main-header {
  padding: 20px 0;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1060;
}

.brand-icon {
  font-size: 32px;
  color: var(--brand-green);
}

.brand-text h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 26px;
  margin: 0;
  line-height: 1;
  color: var(--text-dark);
}

.brand-text span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-gray);
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

.navbar-nav .nav-item {
  margin: 0 10px;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 16px;
  padding: 10px 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar-nav .nav-link:hover {
  color: var(--brand-green);
}

.support-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-right: 25px;
}

.support-icon {
  width: 45px;
  height: 45px;
  background-color: var(--primary-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-dark);
}

.support-info {
  display: flex;
  flex-direction: column;
}

.support-label {
  font-size: 13px;
  color: var(--text-gray);
}

.support-number {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.2;
}

.btn-quote {
  background-color: var(--primary-yellow);
  color: var(--text-dark);
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: none;
  transition: all 0.3s ease;
}

.btn-quote:hover {
  background-color: var(--primary-yellow-hover);
  transform: translateY(-2px);
}

.mobile-close-btn {
  display: none;
}
.mobile-menu-header {
  display: none;
}

/* Responsive Mobile Menu */
@media (max-width: 991px) {
  .top-bar {
    display: none;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    background: white;
    padding: 0;
    z-index: 1055;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    display: block;
    overflow-y: auto;
  }

  .navbar-collapse.show {
    transform: translateX(0);
  }

  .navbar-collapse.show::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
  }

  .mobile-close-btn {
    display: block;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-dark);
    cursor: pointer;
  }

  .navbar-nav {
    padding: 0 20px;
  }
  .navbar-nav .nav-item {
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .navbar-nav .nav-link {
    padding: 15px 0;
    font-size: 15px;
  }
  .header-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    margin-top: 10px;
    border-top: 1px solid var(--border-color);
  }
  .support-box {
    margin-right: 0;
  }
  .btn-quote {
    width: 100%;
  }
}

/* --- HERO SLIDER SECTION --- */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-slide-item {
  position: relative;
  height: 80vh;
  display: flex !important;
  align-items: center;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1);
  transition: transform 1s ease-out;
}

.slick-active .slide-bg {
  animation: zoomEffect 8s linear forwards;
}

@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(95, 92, 92, 0.74) 0%,
    rgba(122, 121, 121, 0.637) 35%,
    rgba(255, 255, 255, 0.1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-title {
  color: white;
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.sub-title {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: var(--primary-yellow);
  border-color: var(--primary-yellow);
  color: var(--text-dark);
}

.btn-primary:hover {
  background-color: var(--primary-yellow-hover);
  border-color: var(--primary-yellow-hover);
  color: var(--text-dark);
}

.btn-outline-dark {
  border: 2px solid white;
  font-weight: 600;
  color: white;
  padding: 10px 30px;
}

.btn-outline-dark:hover {
  background-color: var(--text-dark);
  color: white;
}

.btn-primary {
  padding: 10px 30px;
}

@media (max-width: 991px) {
  .hero-slide-item {
    height: 500px;
  }
  .hero-overlay {
    background: rgba(58, 56, 56, 0.85);
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .btn-outline-dark {
    padding: 5px 10px;
  }

  .btn-primary {
    padding: 5px 10px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-slide-item {
    height: 450px;
  }
}

/* --- STATS SECTION --- */
.stats-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.stats-container {
  position: relative;
}

.stats-border-line {
  position: absolute;
  top: 5px;
  left: 0;
  width: 100%;
  height: 180px;
  z-index: 0;
  pointer-events: none;
}

.stats-path {
  fill: none;
  stroke: var(--brand-green);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.stat-item1 {
  position: relative;
  z-index: 1;
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-item2 {
  position: relative;
  z-index: 1;
  padding: 20px 20px 5px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-item3 {
  position: relative;
  z-index: 1;
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-item.item-top-line {
  margin-top: 50px;
}
.stat-item.item-bottom-line {
  margin-top: 0px;
  padding-bottom: 20px;
}

.stat-icon-circle {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background-color: #eff5e6;
  border: 1px solid #cce3bc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--brand-green);
}

.stat-content h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 36px;
  margin: 0;
  line-height: 1;
  color: var(--text-dark);
}

.stat-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 5px 0 8px;
  color: var(--text-dark);
}

.stat-content p {
  font-size: 14px;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .stats-border-line {
    display: none;
  }
  .stat-item {
    border-bottom: 1px solid #eee;
    margin-top: 0 !important;
    padding-bottom: 30px !important;
    flex-direction: column;
    text-align: center;
  }
  .stat-item:last-child {
    border-bottom: none;
  }
}

/* --- ABOUT SECTION --- */
.about-section {
  padding: 100px 0;
  background-color: #fff;
}

.about-images-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

.about-img-main {
  grid-row: 1 / span 2;
  height: 100%;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-img-sub img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
}

.about-content {
  padding-left: 30px;
}

.section-tag {
  display: inline-block;
  padding: 8px 16px;
  background-color: #eff5e6;
  color: var(--brand-green);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #cce3bc;
  border-radius: 4px;
  margin-bottom: 20px;
  position: relative;
}

.section-tag::after {
  content: "\f005";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -10px;
  right: -15px;
  font-size: 10px;
  color: var(--brand-green);
}
.section-tag::before {
  content: "\f005";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 5px;
  right: -25px;
  font-size: 14px;
  color: var(--brand-green);
  opacity: 0.6;
}

.about-title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 25px;
}

.about-desc {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 16px;
}

.specialty-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.specialty-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 16px;
}

.specialty-list li i {
  color: var(--brand-green);
  margin-right: 12px;
  font-size: 18px;
}

.about-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f9fafb;
  padding: 15px 30px;
  border-radius: 50px;
}

.cta-support {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cta-icon {
  width: 45px;
  height: 45px;
  background-color: var(--primary-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-dark);
}

.cta-text span {
  display: block;
  font-size: 12px;
  color: var(--text-gray);
}

.cta-text strong {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  color: var(--text-dark);
}

.btn-green {
  background-color: var(--brand-green);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-green:hover {
  background-color: var(--brand-green-hover);
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .about-section {
    padding: 60px 0;
  }
  .about-images-grid {
    margin-bottom: 40px;
  }
  .about-content {
    padding-left: 0;
  }
  .about-title {
    font-size: 32px;
  }
  .about-cta-box {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    border-radius: 20px;
    padding: 30px;
  }
  .cta-support {
    flex-direction: column;
  }
  .about-img-sub img {
    height: 150px;
  }
}

/* --- SERVICE SLIDER SECTION --- */
.service-section {
  padding: 50px 0 100px;
  background-color: white;
  position: relative;
  height: 90vh;
}

.service-banner-wrapper {
  max-width: 1700px; /* Large but not full width */
  width: 96%;
  height: 500px;
  margin: 0 auto;
  background-image: url(../img/service_back.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 50px; /* Rounded corners for banner look */
  padding: 80px 0 100px;
  position: relative;
}

.service-section-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.service-tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
}

.service-tag::after {
  content: "\f005";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -10px;
  right: -15px;
  font-size: 10px;
  color: white;
  opacity: 0.8;
}
.service-tag::before {
  content: "\f005";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 5px;
  right: -25px;
  font-size: 14px;
  color: white;
  opacity: 0.5;
}

.service-title {
  color: white;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 42px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.2;
}

.service-content-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 15px;
  position: relative;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-img-box {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  background-color: var(--brand-green);
  padding: 30px 25px;
  position: relative;
  color: white;
  margin-top: -30px;
  border-top-left-radius: 0;
  border-top-right-radius: 60px;
  min-height: 200px;
}

.service-icon-wrapper {
  position: absolute;
  top: -35px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-icon-wrapper i {
  font-size: 32px;
  color: var(--brand-green);
}

.service-icon-wrapper img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.service-content h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 15px;
  margin-top: 10px;
  padding-right: 40px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  margin-top: auto;
}

.service-link i {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transition: 0.3s;
}

.service-link:hover i {
  background: white;
  color: var(--brand-green);
}

.service-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green);
  font-size: 20px;
  cursor: pointer;
  z-index: 20;
  border: none;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-prev {
  left: -30px;
}
.service-next {
  right: -30px;
}

.service-arrow:hover {
  background-color: var(--primary-yellow);
  color: var(--text-dark);
}

@media (max-width: 1400px) {
  .service-arrow {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  .service-prev {
    left: 10px;
  }
  .service-next {
    right: 10px;
  }
}

@media (max-width: 991px) {
  .service-section {
    padding: 40px 0 60px;
  }
  .service-title {
    font-size: 32px;
  }
  .service-banner-wrapper {
    width: 100%;
    border-radius: 0;
    max-width: 100%;
    padding: 60px 0;
  }
  .service-arrow {
    display: none !important;
  }
}

/* --- WHY CHOOSE US SECTION --- */
.why-choose-section {
  padding: 100px 0;
  background-color: var(--bg-light-mint); /* Light mint green bg */
}

.why-choose-content {
  padding-right: 40px;
}

.btn-dark-custom {
  background-color: #1a1d21;
  color: white;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  border: none;
  transition: all 0.3s;
}

.btn-dark-custom:hover {
  background-color: var(--brand-green);
  color: white;
  transform: translateY(-2px);
}

.why-choose-img-wrapper {
  position: relative;
  margin-top: 50px;
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
}

.why-choose-img-wrapper img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
  border-radius: 30px;
}

.clients-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
}

.clients-badge-icon {
  width: 50px;
  height: 50px;
  background-color: #dcfce7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green);
  font-size: 24px;
  margin-bottom: 10px;
}

.clients-badge h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin: 0;
  color: var(--text-dark);
}

.clients-badge p {
  margin: 0;
  font-size: 13px;
  color: var(--text-gray);
  font-weight: 500;
}

.feature-item {
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: stretch;
  margin-bottom: 24px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  min-height: 140px;
}

.feature-img-box {
  width: 35%;
  position: relative;
}

.feature-img-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.feature-text-box {
  width: 65%;
  padding: 30px 30px 30px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-text-box h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feature-text-box p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.feature-number {
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #1a1d21;
  font-family: "Outfit", sans-serif;
  z-index: 5;
  box-shadow: 0 0 0 5px white;
}

.bg-green-badge {
  background-color: #4c8a32;
  color: white;
}
.bg-yellow-badge {
  background-color: var(--primary-yellow);
  color: var(--text-dark);
}

@media (max-width: 991px) {
  .why-choose-section {
    padding: 60px 0;
  }
  .why-choose-content {
    padding-right: 0;
    margin-bottom: 50px;
  }
  .feature-item {
    flex-direction: column;
  }
  .feature-img-box {
    width: 100%;
    height: 200px;
  }
  .feature-text-box {
    width: 100%;
    padding: 30px;
  }
  .feature-number {
    top: 200px;
    left: 30px;
    transform: translate(0, -50%);
  }
}

/* --- PROJECT SLIDER SECTION --- */
.project-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.project-slider-wrapper {
  position: relative;
  padding: 0 40px;
}

/* Project Card Styling */
.project-card {
  margin: 0 15px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 500px;
  transition: all 0.3s ease;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Info Box - Hidden by default for side items */
.project-info-box {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 245, 157, 0.95),
    rgba(252, 226, 5, 0.95)
  ); /* Yellow Gradient */
  width: 85%;
  padding: 30px;
  border-top-left-radius: 30px;
  opacity: 1; /* Hidden by default */
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 2;
}

.project-info-tag {
  display: inline-block;
  background: white;
  color: var(--brand-green);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.project-info-box h3 {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.4;
}

.project-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #333;
}

.project-meta li {
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
}

.project-meta li strong {
  font-weight: 700;
  color: var(--text-dark);
}

@media (max-width: 991px) {
  .project-section {
    padding: 60px 0;
  }
  .project-card {
    height: 550px;
  }
  .project-info-box {
    width: 90%;
    padding: 20px;
  }
  .slick-center .project-card {
    transform: scale(1);
  }
  .project-info-box {
    opacity: 1;
    transform: translateY(0);
    width: 100%;
    bottom: 0;
    border-radius: 0;
  }
  .project-slider-wrapper {
    position: relative;
    padding: 0px;
  }
}

/* --- FAQ SECTION --- */
.faq-section {
  padding: 100px 0;
  background: #fff;
}

.faq-img-wrapper {
  position: relative;
  height: 600px; /* Tall vertical image */
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

/* Diagonal Cut clip-path */
.faq-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Creates the diagonal cut at top right */
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 0 100%);
}

.faq-content {
  padding-left: 30px;
}

/* Custom Accordion Styling */
.accordion-item {
  border: none;
  background: transparent;
  margin-bottom: 20px;
}

.accordion-button {
  background-color: #eff5e6; /* Light Green background */
  color: var(--text-dark);
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  padding: 20px 25px;
  border-radius: 10px !important; /* Always rounded */
  box-shadow: none !important;
  transition: all 0.3s;
}

.accordion-button:not(.collapsed) {
  background-color: #eff5e6; /* Keep same bg on open */
  color: var(--brand-green);
  box-shadow: none;
}

/* Hide default arrow */
.accordion-button::after {
  display: none;
}

/* Custom Plus Icon in Circle */
.faq-icon-box {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green);
  font-size: 12px;
  transition: all 0.3s;
}

/* Rotate icon when open */
.accordion-button:not(.collapsed) .faq-icon-box {
  background: var(--brand-green);
  color: white;
  transform: translateY(-50%) rotate(45deg); /* Turn plus to x */
}

.accordion-body {
  padding: 20px;
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 15px;
}

@media (max-width: 991px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-img-wrapper {
    height: 400px;
    margin-bottom: 40px;
  }
  .faq-content {
    padding-left: 0;
  }
}

/* --- APPOINTMENT SECTION --- */
.appointment-section {
  padding: 100px 0;
  background: white;
}

/* Left Image Card */
.app-image-card {
  position: relative;
  height: 100%;
  min-height: 500px;
  border-radius: 30px;
  overflow: hidden;
}

.app-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}

.app-image-overlay h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 15px;
}

.app-image-overlay p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.9;
}

/* Form Container */
.appointment-form-wrapper {
  background: linear-gradient(
    135deg,
    #fff9c4 0%,
    #ffffff 50%,
    #e8f5e9 100%
  ); /* Yellow to white to faint green gradient */
  border-radius: 30px;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.app-form-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.app-form-title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--text-dark);
}

.app-form-desc {
  font-size: 14px;
  color: var(--text-gray);
  max-width: 300px;
  text-align: right;
}

.app-input {
  width: 100%;
  padding: 15px 25px;
  border: 1px solid #f0f0f0;
  background-color: white;
  border-radius: 50px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: all 0.3s;
}

.app-input:focus {
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 3px rgba(255, 217, 0, 0.1);
}

.app-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
}

.btn-green-form {
  background-color: #4c8a32; /* Strong Green */
  color: white;
  width: 100%;
  padding: 15px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.btn-green-form:hover {
  background-color: var(--brand-green);
  transform: translateY(-2px);
}

/* Quality Badge Graphic */
.quality-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  max-width: 150px;
  display: none; /* Hide on small screens, show on lg */
}

@media (min-width: 1200px) {
  .quality-badge {
    display: block;
  }
}

/* --- BOTTOM BANNER --- */
.bottom-cta-banner {
  margin-top: 50px;
  background-image: url(../img/banner.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 30px;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  flex-wrap: wrap;
  gap: 30px;
}

.banner-text h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 28px;
  margin: 0;
  line-height: 1.3;
  max-width: 400px;
}

.banner-cert {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 25px;
  border-radius: 15px;
}

.cert-icon {
  font-size: 32px;
  color: var(--primary-yellow);
}

.cert-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--primary-yellow);
}

.cert-info span {
  font-size: 13px;
  color: white;
  opacity: 0.8;
}

.btn-yellow-banner {
  background-color: var(--primary-yellow);
  color: var(--text-dark);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-yellow-banner:hover {
  background-color: white;
  color: var(--text-dark);
}

@media (max-width: 991px) {
  .appointment-section {
    padding: 60px 0;
  }
  .app-image-card {
    min-height: 300px;
    margin-bottom: 30px;
  }
  .appointment-form-wrapper {
    padding: 30px;
  }
  .app-form-header {
    flex-direction: column;
    gap: 10px;
  }
  .app-form-desc {
    text-align: left;
  }
  .bottom-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  .banner-cert {
    width: 100%;
    justify-content: center;
  }
  .btn-yellow-banner {
    width: 100%;
    justify-content: center;
  }
}

/* --- BLOG SECTION --- */
.blog-section {
  padding: 100px 0;
  background: #fff;
}

.blog-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}

.blog-nav-arrows {
  display: flex;
  gap: 15px;
}

.blog-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s;
}

.blog-arrow:hover {
  background-color: var(--brand-green);
  color: white;
  border-color: var(--brand-green);
}

.blog-card {
  margin: 0 15px; /* Spacing for slick */
  background: transparent;
}

.blog-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
  margin-bottom: 25px;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.05);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.blog-category {
  background-color: #eff5e6; /* Light Green */
  color: var(--brand-green);
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-date {
  color: var(--text-gray);
  font-size: 14px;
}

.blog-title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 20px;
  display: block;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-title:hover {
  color: var(--brand-green);
}

.blog-read-link {
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.blog-read-link:hover {
  color: var(--brand-green);
}

@media (max-width: 991px) {
  .blog-section {
    padding: 60px 0;
  }
  .blog-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .blog-nav-arrows {
    display: none;
  } /* Hide arrows on mobile, slick dots or swipe is enough */
}

/* --- FOOTER SECTION --- */
.footer-section {
  background-color: var(--footer-bg);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

/* Background Sparkle Decoration (Pseudo element or absolute image) */
.footer-sparkle {
  position: absolute;
  top: 20px;
  right: 5%;
  font-size: 150px;
  color: white;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 40px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.footer-cta-title {
  font-family: "Outfit", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--brand-green);
}

.footer-widget-title {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.6;
}

.footer-contact-list li i {
  color: var(--brand-green);
  margin-right: 12px;
  margin-top: 5px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list li a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s;
}

.footer-links-list li a:hover {
  color: var(--brand-green);
  padding-left: 5px;
}

.newsletter-box p {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
  display: flex;
  gap: 10px;
}

.newsletter-box p i {
  font-size: 24px;
  color: #98bf62; /* Muted green for bell icon */
}

.newsletter-form {
  position: relative;
  margin-bottom: 30px;
}

.newsletter-input {
  width: 100%;
  padding: 15px 60px 15px 25px;
  border-radius: 50px;
  border: 1px solid white;
  background: white;
  outline: none;
  font-size: 14px;
}

.newsletter-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #4c8a32;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.newsletter-btn:hover {
  background-color: var(--brand-green);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border: 1px solid #d1d5db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s;
  background: transparent;
}

.footer-social-link:hover {
  background-color: var(--brand-green);
  border-color: var(--brand-green);
  color: white;
}

/* Copyright Bar */
.footer-bottom {
  margin-top: 60px;
  padding: 25px 0;
  background-color: white;
  border-top: 1px solid #f0f0f0;
  text-align: center;
  border-radius: 50px;
}

.copyright-text {
  color: var(--text-gray);
  font-size: 14px;
  margin: 0;
}

/* Scroll Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid var(--brand-green);
  color: var(--brand-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.scroll-top-btn:hover {
  background: var(--brand-green);
  color: white;
  transform: translateY(-5px);
}

@media (max-width: 991px) {
  .footer-section {
    padding: 50px 0 0;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 15px;
    flex-wrap: wrap;
  }
  .scroll-top-btn {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
}
