:root {
  --green: #176B45;
  --dark-green: #0B3D2E;
  --green-2: #21865A;
  --light-green: #F1F8F3;
  --orange: #F47A20;
  --light-orange: #FFF3E9;
  --cream: #FFF9F4;
  --white: #ffffff;
  --black: #17221D;
  --gray: #68736E;
  --border: #DFE9E2;
  --shadow: 0 20px 60px rgba(11, 61, 46, .10);
  --radius: 22px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  color: var(--black);
  background: #fff;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1240px;
}
/* =========================================
           TOP BAR
        ========================================= */
.topbar {
  background: var(--dark-green);
  color: #fff;
  padding: 9px 0;
  font-size: 13px;
}
.topbar i {
  color: var(--orange);
  margin-right: 5px;
}
.topbar a {
  color: #fff;
  margin-left: 20px;
}
/* =========================================
           NAVBAR
        ========================================= */
.navbar {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(15px);
  box-shadow: 0 5px 30px rgba(0, 0, 0, .06);
  padding: 6px 0;
  transition: .3s;
}
.navbar-brand {
  font-family: "Plus Jakarta Sans";
  font-weight: 800;
  font-size: 25px;
  color: var(--dark-green);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
      max-width: 157px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  position: relative;
}
.logo-mark::after {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--orange);
  border-radius: 50%;
  position: absolute;
  right: 5px;
  top: 5px;
}
.navbar-nav .nav-link {
  color: #26372F;
  font-size: 14px;
  font-weight: 600;
  margin: 0 7px;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: .3s;
}
.navbar-nav .nav-link:hover {
  color: var(--green);
}
.navbar-nav .nav-link:hover::after {
  width: 100%;
}
.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 12px 20px !important;
  border-radius: 50px;
  margin-left: 15px !important;
}
.nav-cta:hover {
  background: var(--green);
}
/* =========================================
           HERO
        ========================================= */
.hero {
  position: relative;
}
.hero .carousel-item {
  height: 540px;
  min-height: 520px;
  position: relative;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 35, 25, .90) 0%, rgba(5, 35, 25, .67) 40%, rgba(5, 35, 25, .15) 75%, rgba(5, 35, 25, .10) 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero-content .container {
  padding-top: 40px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 50px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 3px;
}
.hero-tag i {
  color: var(--orange);
}
.hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.03;
  max-width: 850px;
  letter-spacing: -3px;
  margin-bottom: 25px;
}
.hero h1 span {
  color: #FF9B50;
}
.hero p {
  font-size: 18px;
  line-height: 1.75;
  max-width: 650px;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 35px;
}
.btn-main {
  background: var(--orange);
  color: #fff;
  border-radius: 50px;
  padding: 15px 27px;
  font-weight: 700;
  border: 2px solid var(--orange);
  transition: .3s;
}
.btn-main:hover {
  background: #fff;
  color: var(--green);
  border-color: #fff;
}
.btn-outline-light-custom {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50px;
  padding: 15px 27px;
  font-weight: 600;
  margin-left: 10px;
}
.btn-outline-light-custom:hover {
  background: #fff;
  color: var(--green);
}
.hero-controls {
  position: absolute;
  right: 6%;
  bottom: 45px;
  z-index: 10;
  display: flex;
  gap: 10px;
}
.hero-controls button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .5);
  background: rgba(0, 0, 0, .15);
  color: #fff;
  backdrop-filter: blur(8px);
}
.hero-controls button:hover {
  background: var(--orange);
  border-color: var(--orange);
}
/* =========================================
           TRUST STRIP
        ========================================= */
.trust-strip {
  background: var(--white);
  padding: 25px 0;
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: center;
  color: #176b45;
  font-size: 19px;
  font-weight: 700;
}
.trust-item i {
  color: var(--green);
  font-size: 23px;
}
/* =========================================
           SECTION
        ========================================= */
section {
  padding: 100px 0;
}
.section-label {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--dark-green);
}
.section-text {
  color: #292929;
  line-height: 1.6;
}
/* =========================================
           INTRO
        ========================================= */
.intro-section {
  background: #fff;
}
.intro-img {
  border-radius: 30px;
  height: 480px;
  width: 100%;
  object-fit: cover;
}
.intro-content {
  padding-left: 0px;
}
.intro-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}
.intro-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  color: #53615A;
}
.intro-list i {
  color: var(--orange);
  font-size: 18px;
}
/* =========================================
           PRODUCTS
        ========================================= */
.products-section {
  background: var(--light-green);
}
.product-card {
  background: #fff;
  border: 1px solid rgba(23, 107, 69, .08);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: .4s;
}
.product-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow);
}
.product-image {
  overflow: hidden;
  position: relative;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}
.product-card:hover .product-image img {
  transform: scale(1.07);
}
.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--orange);
  color: #fff;
  border-radius: 50px;
  padding: 6px 11px;
  font-size: 11px;
  font-weight: 700;
}
.product-body {
  padding: 25px;
}
.product-body h4 {
  font-size: 18px;
  color: var(--dark-green);
  margin-bottom: 7px;
}
.product-body p {
  color: #292929;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 13px;
}
.spec-link {
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}
.spec-link i {
  color: var(--orange);
  margin-left: 5px;
  transition: .3s;
}
.spec-link:hover i {
  margin-left: 10px;
}
/* =========================
   SERVICES SECTION
========================= */
.services-section {
  background: #176b45;
  padding: 80px 0;
}
.services-section .section-title {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -2px;
  color: #fff;
}
.services-section .section-text {
  color: #fff;
  line-height: 1.6;
}
/* Service Card */
.service-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 32px;
  height: 100%;
  background: #196e47;
  transition: .4s ease;
}
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}
/* Icon */
.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  background: #164e34;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin-bottom: 25px;
}
/* Heading */
.service-card h4 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 12px;
}
/* Description */
.service-card p {
  color: #fff;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 20px;
}
/* Arrow Link */
.service-arrow {
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
}
.service-arrow i {
  color: var(--orange);
  margin-left: 5px;
  transition: .3s;
}
.service-card:hover .service-arrow i {
  margin-left: 10px;
}
/* Controls */
.service-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 30px;
}
.service-controls button {
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  border-radius: 50%;
  color: #ffffff;
  transition: .3s ease;
}
.service-controls button:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #151515;
}
/* Mobile */
@media (max-width: 767px) {
  .services-section {
    padding: 60px 0;
  }
  .service-card {
    padding: 25px;
  }
}
/* =========================================
           GALLERY
        ========================================= */
.gallery-section {
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .9fr;
  grid-template-rows: 260px 260px;
  gap: 15px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.gallery-item:nth-child(1) {
  grid-row: span 2;
}
.gallery-item:nth-child(4) {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px 20px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .75));
  color: #fff;
}
.gallery-overlay h5 {
  margin: 0;
  font-size: 17px;
}
.gallery-overlay span {
  font-size: 12px;
  opacity: .8;
}
/* =========================================
           STATS
        ========================================= */
.stats-section {
  padding: 65px 0;
  background: var(--dark-green);
  color: #fff;
}
.stat {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .15);
}
.stat:last-child {
  border-right: 0;
}
.counter {
  font-family: "Plus Jakarta Sans";
  font-size: 48px;
  font-weight: 800;
  color: #fff;
}
.counter span {
  color: var(--orange);
}
.stat p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* =========================================
           CASE STUDY
        ========================================= */
.case-section {
  background: #fff;
}
.case-box {
  background: var(--light-green);
  border-radius: 30px;
  padding: 55px;
  position: relative;
  overflow: hidden;
}
.quote-icon {
  position: absolute;
  right: 45px;
  top: 25px;
  font-size: 100px;
  color: rgba(23, 107, 69, .08);
}
.case-quote {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.35;
  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  color: var(--dark-green);
  max-width: 820px;
}
.client {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}
.client img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}
.client strong {
  display: block;
  color: var(--dark-green);
}
.client span {
  font-size: 13px;
  color: var(--gray);
}
/* =========================================
           CTA
        ========================================= */
.cta-section {
  padding: 0 0 100px;
}
.cta-box {
  background: linear-gradient(100deg, rgba(11, 61, 46, .97), rgba(23, 107, 69, .91)), url("https://images.unsplash.com/photo-1625246333195-78d9c38ad449?auto=format&fit=crop&w=1800&q=90");
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  padding: 70px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-box h2 {
  font-size: clamp(30px, 4vw, 48px);
  max-width: 650px;
  margin-bottom: 15px;
}
.cta-box p {
  max-width: 620px;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 30px;
}
/* =========================================
           FOOTER
        ========================================= */
footer {
  background: #082B20;
  color: #fff;
  padding-top: 80px;
}
.footer-brand {
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 20px;
}
footer p {
  color: rgba(255, 255, 255, .62);
  line-height: 1.8;
  font-size: 14px;
}
.footer-title {
  font-size: 15px;
  margin-bottom: 22px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 6px;
}
.footer-links a {
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  transition: .3s;
}
.footer-links a:hover {
  color: var(--orange);
  padding-left: 5px;
}
.contact-line {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
}
.contact-line i {
  color: var(--orange);
}
.socials {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}
.socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 55px;
  padding: 20px 0;
  color: rgba(255, 255, 255, .45);
  font-size: 12px;
}
/* =========================================
           RESPONSIVE
        ========================================= */
@media(max-width: 991px) {
  .topbar {
    display: none;
  }
  .navbar-nav {
    padding-top: 20px;
  }
  .nav-cta {
    display: inline-block;
    margin: 10px 0 0 !important;
  }
  .hero .carousel-item {
    height: 650px;
  }
  .hero h1 {
    letter-spacing: -2px;
  }
  .intro-content {
    padding-left: 0;
    margin-top: 35px;
  }
  .stat {
    border-right: 0;
    margin-bottom: 30px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 250px 250px;
  }
  .gallery-item:nth-child(1) {
    grid-row: span 2;
  }
  .gallery-item:nth-child(4) {
    grid-column: span 2;
  }
  .cta-box {
    padding: 45px 35px;
  }
}
@media(max-width: 767px) {
  section {
    padding: 70px 0;
  }
  .hero .carousel-item {
height: 309px;
        min-height: 309px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero p {
    font-size: 15px;
  }
  .btn-main, .btn-outline-light-custom {
    display: inline-block;
    padding: 13px 19px;
    font-size: 13px;
  }
  .btn-outline-light-custom {
    margin-left: 4px;
  }
  .hero-controls {
    bottom: 25px;
    right: 20px;
  }
  .trust-item {
    justify-content: flex-start;
    margin-bottom: 10px;
  }
  .intro-img {
    height: 330px;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 260px);
  }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
  .case-box {
    padding: 35px 25px;
  }
  .quote-icon {
    right: 15px;
    top: 10px;
    font-size: 70px;
  }
  .cta-box {
    padding: 40px 25px;
    border-radius: 22px;
  }
  .counter {
    font-size: 40px;
  }
}
/* =========================================
   ABOUT SECTION - WHITE VERSION
========================================= */
.about-section {
  background: #fff;
  padding: 60px 0;
  color: #222;
  overflow: hidden;
}
/* LABEL */
.about-label {
  display: inline-block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  margin-bottom: 18px;
}
/* HEADING */
.about-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 45px;
  line-height: 1.15;
  font-weight: 700;
  color: #20251f;
  margin-bottom: 25px;
  max-width: 600px;
}
.about-title span {
  color: var(--orange);
}
/* TEXT */
.about-lead {
  color: #444 !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
  margin-bottom: 18px;
}
.about-text {
  color: #292929 !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
  margin-bottom: 15px;
  text-align: justify;
}
/* BUTTON */
.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 14px 24px;
  background: var(--orange);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: .35s ease;
}
.about-btn i {
  transition: .35s ease;
}
.about-btn:hover {
  background: #222;
  color: #fff;
}
.about-btn:hover i {
  transform: translateX(5px);
}
/* =========================================
   IMAGE
========================================= */
.about-image-wrap {
  position: relative;
  padding: 20px;
}
.about-image {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #e7e7e7;
}
.about-image img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
  filter: brightness(.9);
  transition: .5s ease;
}
.about-image:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}
/* ORANGE CORNER */
.about-image-wrap::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  top: 0;
  right: 0;
  border: 1px solid var(--orange);
  border-radius: 20px;
  z-index: 1;
}
/* INFO BOX */
.about-info-box {
  position: absolute;
  left: 0;
  bottom: 45px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 24px;
  background: var(--orange);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .18);
}
.about-info-box strong {
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
}
.about-info-box span {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}
/* DECORATIVE CIRCLE */
.about-decoration {
  position: absolute;
  width: 100px;
  height: 100px;
  right: -25px;
  bottom: -25px;
  border-radius: 50%;
  background: rgba(217, 154, 69, .10);
}
/* =========================================
   HIGHLIGHTS
========================================= */
.about-highlights {
  margin-top: 85px;
  padding-top: 45px;
  border-top: 1px solid #e8e8e8;
}
.about-highlight {
  display: flex;
  gap: 18px;
  height: 100%;
}
.highlight-number {
  min-width: 30px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}
.about-highlight h4 {
  color: #222;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 9px;
}
.about-highlight p {
  color: #777;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}
/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 991px) {
  .about-section {
    padding: 75px 0;
  }
  .about-title {
    font-size: 38px;
  }
  .about-image-wrap {
    margin-top: 15px;
  }
  .about-image img {
    height: 450px;
  }
  .about-highlights {
    margin-top: 65px;
  }
}
@media (max-width: 767px) {
  .about-section {
    padding: 60px 0;
  }
  .about-title {
    font-size: 32px;
  }
  .about-lead {
    font-size: 15px !important;
  }
  .about-text {
    font-size: 14px !important;
  }
  .about-image-wrap {
    padding: 10px;
  }
  .about-image img {
    height: 360px;
  }
  .about-info-box {
    left: -2px;
    bottom: 25px;
    padding: 15px 18px;
  }
  .about-info-box strong {
    font-size: 28px;
  }
  .about-highlights {
    margin-top: 55px;
    padding-top: 35px;
  }
}
/* =========================================
   BREADCRUMB SECTION
========================================= */
.breadcrumb-section {
  position: relative;
  background-image: url("../images/banner-fertilizer.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 65px 0;
  overflow: hidden;
  border-bottom: 1px solid #eeeeee;
}
/* Background Overlay */
.breadcrumb-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 20, 20, 0.78), rgba(20, 20, 20, 0.45));
  z-index: 1;
}
/* Orange Decorative Circle */
.breadcrumb-section::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(217, 154, 69, 0.35);
  border-radius: 50%;
  right: -70px;
  top: -80px;
  z-index: 1;
}
/* Content */
.breadcrumb-content {
  position: relative;
  z-index: 2;
}
.breadcrumb-label {
  display: inline-block;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
}
.breadcrumb-content h1 {
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 18px;
}
/* Breadcrumb Navigation */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: .3s ease;
}
.breadcrumb-nav a:hover {
  color: var(--orange);
}
.breadcrumb-nav i {
  color: var(--orange);
  font-size: 11px;
}
.breadcrumb-nav span {
  color: #fff;
  font-weight: 600;
}
/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 767px) {
  .breadcrumb-section {
    padding: 45px 0;
    background-position: center;
  }
  .breadcrumb-content h1 {
    font-size: 34px;
  }
  .breadcrumb-label {
    font-size: 10px;
    letter-spacing: 2px;
  }
  .breadcrumb-nav {
    font-size: 13px;
  }
}
/* =====================================================
           CONTACT
        ===================================================== */
.contact-section {
  background: white;
}
.contact-box {
  padding: 32px;
  background: var(--light-green);
  border-radius: 20px;
  height: 100%;
}
.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: white;
  color: var(--green);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
.contact-item h6 {
  margin-bottom: 4px;
  color: var(--dark-green);
}
.contact-item p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
}
.contact-form {
  padding: 35px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-control {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 14px;
}
.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(20, 107, 58, .08);
}
textarea.form-control {
  min-height: 130px;
}
/* =========================================
   GALLERY
========================================= */
.gallery-section {
  padding: 90px 0;
  background: #f8faf7;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.gallery-item {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  background: #ddd;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.10);
}
/* Overlay */
.gallery-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 25px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
  opacity: 0;
  transition: 0.35s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay h4 {
  margin: 5px 0 0;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
}
.gallery-category {
  color: #b8d94b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.gallery-view {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #1c7c45;
  font-size: 18px;
  transition: 0.3s ease;
}
.gallery-item:hover .gallery-view {
  background: #1c7c45;
  color: #fff;
  transform: rotate(10deg);
}
/* =========================================
   LIGHTBOX
========================================= */
.image-lightbox {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.image-lightbox.active {
  opacity: 1;
  visibility: visible;
}
/* Image */
.lightbox-content {
  width: calc(100% - 180px);
  height: calc(100% - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  transform: scale(0.85);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}
.image-lightbox.active .lightbox-content img {
  transform: scale(1);
  opacity: 1;
}
/* Close */
.lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s ease;
}
.lightbox-close:hover {
  background: #fff;
  color: #111;
}
/* Previous / Next */
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s ease;
}
.lightbox-prev {
  left: 30px;
}
.lightbox-next {
  right: 30px;
}
.lightbox-prev:hover, .lightbox-next:hover {
  background: #fff;
  color: #1c7c45;
}
/* Counter */
.lightbox-counter {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 16px;
  border-radius: 30px;
}
/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1199px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lightbox-content {
    width: calc(100% - 120px);
  }
}
@media (max-width: 575px) {
  .gallery-section {
    padding: 60px 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    height: 300px;
  }
  .gallery-overlay {
    opacity: 1;
  }
  .lightbox-content {
    width: calc(100% - 40px);
    height: calc(100% - 140px);
  }
  .lightbox-prev, .lightbox-next {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
  .lightbox-close {
    top: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
  }
}
/* =========================================
   LOGIN SECTION
========================================= */
.login-section {
  padding: 70px 0;
  background: #ffffff;
}
.login-content {
  padding-right: 30px;
}
.login-content h1 {
  margin: 0;
  color: #111111;
  font-family: Arial, sans-serif;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
}
/* Yellow line */
.login-line {
  display: block;
  width: 75px;
  height: 3px;
  margin-top: 14px;
  margin-bottom: 21px;
  background: #f47a20;
  border-radius: 10px;
}
/* Subtitle */
.login-subtitle {
  margin: 0 0 14px;
  color: #292929;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.2px;
}
/* Form */
.login-form {
  width: 100%;
}
.login-form .form-group {
  margin-bottom: 22px;
}
.login-form .form-control {
  width: 100%;
  height: 51px;
  padding: 0 20px;
  border: 1px solid #d9dfe3;
  border-radius: 7px;
  background: #ffffff;
  color: #292929;
  font-size: 14px;
  font-weight: 400;
  box-shadow: none;
  outline: none;
  transition: all 0.3s ease;
}
.login-form .form-control::placeholder {
  color: #63758a;
  opacity: 1;
}
.login-form .form-control:focus {
  border-color: #28234f;
  box-shadow: 0 0 0 3px rgba(40, 35, 79, 0.08);
}
/* Submit Button */
.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 165px;
  height: 48px;
  margin-top: 5px;
  padding: 0 35px;
  border: none;
  border-radius: 6px;
  background: #28234f;
  color: #ffffff;
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.login-btn:hover {
  background: #1d193d;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(40, 35, 79, 0.2);
}
/* =========================================
   RIGHT IMAGE
========================================= */
.login-image {
  width: 100%;
  overflow: hidden;
}
.login-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 991px) {
  .login-section {
    padding: 60px 0;
  }
  .login-content {
    padding-right: 0;
  }
  .login-content h1 {
    font-size: 42px;
  }
  .login-subtitle {
    font-size: 21px;
  }
  .login-image {
    margin-top: 10px;
  }
}
@media (max-width: 575px) {
  .login-section {
    padding: 45px 0;
  }
  .login-content h1 {
    font-size: 36px;
  }
  .login-line {
    width: 65px;
    height: 5px;
    margin-top: 18px;
    margin-bottom: 25px;
  }
  .login-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .login-form .form-control {
    height: 62px;
    font-size: 18px;
  }
  .login-btn {
    width: 100%;
    height: 62px;
    font-size: 20px;
    margin-top: 10px;
  }
}
.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}
.pb_70 {
    padding-bottom: 70px;
}
.pt_70 {
    padding-top: 70px;
}

.p_relative {
    position: relative;
}
.blog-btn {
    margin-top: 7px;
    border-radius: 4px;
    padding: 10px 18px;
    color: #fff;
    background-color: #c39d48;
    display: inline-block;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    font-size: 14px;
}
.list12 {
    list-style: none;
}
.list12 li {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: inline-block;
}