body {
  padding-top: 90px;   /* slightly more than navbar height */
}
body {
    margin: 0;
    padding: 0;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

header {
    margin: 0;
    padding: 0;
}

.navbar {
    margin: 0 !important;
    padding: 8px 0 !important;
}

.navbar-brand img {
    height: 55px;
    display: block;   /* removes small top gap */
     margin-left: auto;   /* Logo right side pe push hoga */
    margin-right: 0;
    order: 2;  
}

.nav-links, .navbar-nav {
    order: 1;
}
/* ===========================
   HERO SLIDER BASE
=========================== */

.hero-slider {
  height: calc(100vh - 20px);
  position: relative;
  
}

/* Slides container */
.slides {
  height: 100%;
  position: relative;
}

/* Slide */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 2.5s ease-in-out, transform 6s ease-in-out;
  z-index: 0;
}

/* Dark overlay */
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Active slide */
.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.readmebtn {
  background-color: #1ebe5d;
  border: 2px solid #00682a;
  color: white;
}

.readmebtn:hover {
  background: #dbffe9;
  color: black;
  border: 2px solid #1ebe5d;
}

/* ===========================
   HERO TEXT (SHOW ONCE)
=========================== */

.hero-content {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 900px;
  text-align: center;
  color: #fff;
  z-index: 10;
  opacity: 0;
}

/* Title */
.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* Subtitle */
.hero-content p {
  font-size: 20px;
  line-height: 1.6;
  padding: 24px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

/* Show animation */
.show-text {
  animation: fadeSlideUp 5.0s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Hide animation */
.hide-text {
  animation: fadeOut 5s ease forwards;
}

/* Fade Slide Up */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translate(-50%, 60px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Fade Out */
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* ===========================
   OPTIONAL EXTRA EFFECT
   Soft Gradient Animation
=========================== */

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.2));
  z-index: 1;
  animation: gradientMove 12s ease infinite alternate;
}

@keyframes gradientMove {
  from {
    opacity: 0.6;
  }

  to {
    opacity: 0.9;
  }
}

/* here is the second section code  */

/* ===== FULL VIEW INTRO SECTION ===== */
.intro-fullview {
  height: calc(100vh - 90px);
  background: #ffffff;
  display: flex;
  align-items: center;
}

/* Card container */
.intro-card {
  position: relative;
  background: #ffffff;
  padding: 60px 60px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  animation: fadeUp 1.2s ease forwards;
}

/* Orange vertical line */
.intro-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #f9a826;
  border-radius: 6px 0 0 6px;
}

/* Headings */
.intro-card h2 {
  font-weight: 700;
  margin-bottom: 25px;
  color: #ffffff;
}

/* Text */
.intro-card p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
}

/* Entry animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* the third section css part */

/* ===============================
   HERO TEXT FIX – 320px MOBILE
=============================== */

@media (max-width: 360px) {

  .hero-content {
    left: 0;                 /* stop centering trick */
    transform: none;         /* IMPORTANT */
    width: 100%;
    max-width: 100%;
    bottom: 10%;              /* move text down */
    padding: 0 16px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .hero-content p {
    font-size: 13px;
    line-height: 1.6;
    padding: 14px;
    margin: 0 auto;
    word-break: normal;      /* ensure horizontal flow */
    white-space: normal;     /* prevent vertical stacking */
  }
}

/* ===== WHO WE ARE SECTION ===== */
.who {
  padding: 100px 0;
  background: #f8f9fa;
}

/* Image */
.who img {
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Content */
.whoc {
  padding-left: 40px;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 600;
  color: #f9a826;
  display: inline-block;
  margin-bottom: 10px;
}

.container h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #222;
}

.container .lead {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

.container p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
}

/* start  */
.animate-left {
  animation: slideInLeft 0.8s ease-in-out forwards;
}

.animate-right {
  animation: slideInRight 0.8s ease-in-out forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* end  */
/* here is the dopdown section   */
/* Dropdown box style */
.dropdown-menu {
  border: none;
  border-radius: 0;
  padding: 0;
  min-width: 260px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Dropdown items */
.dropdown-item {
  padding: 14px 18px;
  font-size: 15px;
  color: #333;
  border-bottom: 1px solid #eee;
}

/* Hover effect */
.dropdown-item:hover {
  background-color: #379600; /* golden highlight */
  color: #fff;
}

/* Remove last border */
.dropdown-item:last-child {
  border-bottom: none;
}
/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 100px 0;
  background: #ffffff;
}

.services-section h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.section-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* Service cards */
.service-card {
  background: #f9f9f9;
  padding: 35px 30px;
  border-radius: 12px;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.service-card h5 {
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.7;
}

/* Icons */
.service-icon {
  font-size: 36px;
  display: inline-block;
  margin-bottom: 10px;
}

/* Highlight card */
.service-card.highlight {
  background: linear-gradient(135deg, #f9a826, #ffcc66);
  color: #fff;
}

.service-card.highlight p {
  color: #fff;
}

/* Advantages */
.service-advantages {
  margin-top: 60px;
  padding: 40px;
  background: #f8f9fa;
  border-left: 6px solid #f9a826;
}

.service-advantages h3 {
  font-weight: 700;
  margin-bottom: 20px;
}

.service-advantages ul {
  list-style: none;
  padding: 0;
}

.service-advantages li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #444;
}

.service-advantages li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f9a826;
  font-weight: bold;
}

/* ============================= */
/* INTRO SECTION ANIMATIONS */
/* ============================= */

.intro-section {
  background: linear-gradient(135deg, #f8fafc, #eef7f2);
  padding: 100px 0;
  position: relative;
}

/* Floating Background Circle */
.floating-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(45, 106, 79, 0.08);
  border-radius: 50%;
  top: -80px;
  right: -80px;
  animation: floatMove 6s infinite ease-in-out;
}

@keyframes floatMove {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Heading Animation */
.intro-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1b4332;
  opacity: 0;
  animation: fadeSlideDown 1s forwards;
}

.intro-title span {
  color: #2d6a4f;
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Text Reveal Animation */
.reveal-text {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal-text.active {
  opacity: 1;
  transform: translateY(0);
}

/* Paragraph Styling */
.intro-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Button Animation */
.intro-btn {
  background: #2d6a4f;
  color: #fff;
  padding: 10px 28px;
  border-radius: 30px;
  transition: all 0.4s ease;
}

.intro-btn:hover {
  background: #1b4332;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* =============================== */
/* PRODUCT RANGE SECTION */
/* =============================== */

/* .product-range-section {
  background: #ffffff;
  padding: 100px 0;
} */

/* .product-range-section .row {
  justify-content: center !important;
  
} */


/* Titles */
.section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #379600;
  margin-bottom: 10px;
}

.section-intro {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* =============================== */
/* PRODUCT HOVER BACKGROUND LIST */
/* =============================== */

.product-hover-list {
  max-width: 1100px;
  margin: auto;
  font-family: "Poppins", sans-serif;
}

.product-hover-list a {
    color: white;
}

.product-hover-list a:hover {
    color: white;
}

/* =============================== */
/* UL WITH FULL BACKGROUND */
/* =============================== */

.product-hover-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  /* min-height: 420px; */
  width: calc(100% + 300px); /* increase total width */
  /* margin-left: -150px; pull left */
  /* margin-right: -150px;  pull right */
}

/* DEFAULT BACKGROUND */
.product-hover-list ul::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("/img/slide_1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.4s ease;
  z-index: 0;
}

/* =============================== */
/* LIST ITEMS */
/* =============================== */

.product-hover-list li {
  position: relative;
  z-index: 2;
  padding: 22px 28px;
  font-size: 1rem;
  font-weight: 500;
  background: #ecf1e6;
  border-left: 10px solid transparent;
  cursor: pointer;

  transition: none;   /* ❌ Remove animation */
}

/* Anchor normal state */
.product-hover-list li a {
  text-decoration: none;
  color: #000;     /* Default text color */
  display: block;  /* Makes full li clickable */
}

/* Hover state */
.product-hover-list li:hover {
  background: #ffffff;
}

/* Text color on hover */
.product-hover-list li:hover a {
  color: #000;
}

/* =============================== */
/* BORDER COLORS */
/* =============================== */

.product-hover-list li:nth-child(1) {
  border-left-color: #3498db;
}

.product-hover-list li:nth-child(2) {
  border-left-color: #ffd071;
}

.product-hover-list li:nth-child(3) {
  border-left-color: #f0776c;
}

.product-hover-list li:nth-child(4) {
  border-left-color: #1abc9c;
}

.product-hover-list li:nth-child(5) {
  border-left-color: #3498db;
}

.product-hover-list li:nth-child(6) {
  border-left-color: #ffd071;
}

.product-hover-list li:nth-child(7) {
  border-left-color: #1abc9c;
}

/* =============================== */
/* BACKGROUND SWITCH ON LI HOVER */
/* =============================== */

/* .product-hover-list ul:has(li:nth-child(1):hover)::before {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("/img/slide_1.jpg");
}

.product-hover-list ul:has(li:nth-child(2):hover)::before {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("/img/slide_2.jpg");
}

.product-hover-list ul:has(li:nth-child(3):hover)::before {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("/img/slide_3.jpg");
}

.product-hover-list ul:has(li:nth-child(4):hover)::before {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("/img/slide_4.jpg");
}

.product-hover-list ul:has(li:nth-child(5):hover)::before {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("/img/slide_5.jpg");
}

.product-hover-list ul:has(li:nth-child(6):hover)::before {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("/img/slide_6.jpg");
}

.product-hover-list ul:has(li:nth-child(7):hover)::before {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("/img/slide_7.png");
} */

/* =============================== */
/* RESPONSIVE */
/* =============================== */

@media (max-width: 768px) {
  .product-hover-list li {
    padding: 18px 20px;
    font-size: 0.95rem;
  }
}



/* =============================== */
/* DEFAULT – MOBILE FIRST (SAFE) */
/* =============================== */

.product-hover-list ul {
  width: 100%;
  
}

/* =============================== */
/* TABLET (≥ 992px) */
/* =============================== */

@media (min-width: 992px) {
  .product-hover-list ul {
    width: calc(100% + 240px);
    margin-left: -120px;
    margin-right: -120px;
  }
}

/* =============================== */
/* LARGE DESKTOP (≥ 1200px) */
/* =============================== */

@media (min-width: 1200px) {
  .product-hover-list ul {
    width: calc(100% + 380px);
    margin-left: -190px;
    margin-right: -190px;
  }
}

/* =============================== */
/* EXTRA LARGE SCREENS (≥ 1400px) */
/* =============================== */

@media (min-width: 1400px) {
  .product-hover-list ul {
    width: calc(100% + 480px);
    margin-left: -240px;
    margin-right: -240px;
  }
}

/* =============================== */
/* SAFETY: NO HORIZONTAL SCROLL */
/* =============================== */

body {
  overflow-x: hidden;
}






/* Description */
.section-description {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

/* Image */
.image-wrapper {
  position: relative;
}

.main-img {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.image-wrapper:hover .main-img {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.image-overlay {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
  pointer-events: none;
}

/* =============================== */
/* WHY CHOOSE SECTION */
/* =============================== */

.why-choose-section {
  background-image: url(/img/lf_index_bg.jpg);
  padding: 100px 0;
}

/* Card */
.strength-card {
  background: #f8fafc;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  height: 90%;

}

.strength-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Icon */
.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #2d6a4f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  transition: 0.4s ease;
}

.strength-card:hover .icon-box {
  background: #1b4332;
  transform: rotate(8deg) scale(1.1);
}

/* Title */
.strength-card h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #1b4332;
  margin-bottom: 12px;
}

/* Description */
.strength-card p {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* =============================== */
/* INQUIRY SECTION */
/* =============================== */

/* Card Style */
.inquiry-card {
  background: rgba(243, 241, 241, 0.9);
  border: 1px solid #379600;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  animation: floatCard 5s ease-in-out infinite;
}

/* Smooth Up-Down Movement */
@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.inquiry-card:hover {
  transform: translateY(-5px);
}

/* Title */
.form-title {
  font-weight: 700;
  color: #1b2b45;
}

/* Floating Inputs */
.input-group-custom {
  position: relative;
}

.input-group-custom i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  transition: 0.3s ease;
}

.form-control {
  border-radius: 12px;
  border: 1px solid #e3e6ea;
  padding-right: 40px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #ff7a00;
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.15);
}

.form-control:focus+label+i {
  color: #ff7a00;
}

/* Button Style */
.inquiry-btn {
  background: #dff8d1;
  color: #000000;
  border: 2px solid #379600;
  border-radius: 20px;
  padding: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.inquiry-btn:hover {
  background: linear-gradient(135deg, #ffe1c4, #ffe7cc);
  border-radius: 20px;
  border: 2px solid #da7400;
  transform: translateY(-3px);
}


/* =============================== */
/* COMPANY OVERVIEW SECTION */
/* =============================== */

.company-overview-section {
  background: #ffffff;
  padding: 120px 0;
  position: relative;
}

/* Background subtle shape */
.overview-bg-shape {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(45, 106, 79, 0.05);
  border-radius: 50%;
  bottom: -120px;
  left: -120px;
  animation: floatShape 8s ease-in-out infinite;
}

@keyframes floatShape {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Subtitle */
.overview-subtitle {
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #2d6a4f;
  font-weight: 600;
}

/* Main Title */
.overview-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1b4332;
  line-height: 1.3;
}

/* Feature List */
.feature-points {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.feature-points li {
  margin-bottom: 10px;
  font-weight: 500;
  color: #1b2b45;
}

.feature-points i {
  color: #ff7a00;
  margin-right: 8px;
}

/* Button Styling */
.split-btn {
  background: #90be75;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.split-btn:hover {
  background: #e6c8ac;
  color: black;
  transform: translateY(-3px);
}

/* Divider Line */
.divider {
  width: 70px;
  height: 3px;
  background: #ff7a00;
  margin: 15px 0 25px;
}

.overview-divider {
  width: 80px;
  height: 3px;
  background: #2d6a4f;
  border-radius: 10px;
  transition: 0.4s ease;
}

.split-description {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 15px;
}

.company-overview-section:hover .overview-divider {
  width: 120px;
}

/* Text */
.overview-text {
  font-family: 'Lora', serif;
  font-size: 1.08rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 25px;
  transition: 0.4s ease;
}

.overview-text:hover {
  color: #2d6a4f;
}

/* ============================= */
/* PROFESSIONAL LIGHT FOOTER */
/* ============================= */

.footer-section {
  background: #f3f3f3;
  color: #333;
}

/* Main Layout */
.footer-main {
  padding: 60px 0 40px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
}

/* Column Divider */
/* .footer-col {
  border-right: 1px solid #dcdcdc;
} */

.footer-col:last-child {
  border-right: none;
}
.footer-col {
  padding-top: 0 !important;
}

.footer-logo {
  
  display: block;
}


  /* margin-top: 5px !important; */

/* Logo FIX */
.footer-logo {
  width: 200px;
  /* Increased size */
  /* margin-bottom: 70px; */
}

/* Text */
.footer-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
  margin-top: -50px;
}

/* Heading */
.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #555;
  font-size: 15px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #ff8800;
  padding-left: 5px;
}

/* Follow Section */
/* Follow Title Center (Optional) */
.follow-title {
  font-weight: 600;
  margin-bottom: 12px;
}

/* Make whole social row centered */
.footer-social {
  display: flex;
  gap: 15px;
}

/* Circle */
.footer-social a {
  position: relative;
  width: 44px;
  height: 44px;
  background: #e6e6e6;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
}

/* ABSOLUTE CENTER FIX */
.footer-social a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: #555;
}

/* Hover */
.footer-social a:hover {
  background: #ff8800;
}

.footer-social a:hover i {
  color: #fff;
}



/* Contact Items */
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

/* PERFECT CIRCLE FIX */
.icon-circle {
  min-width: 45px;
  height: 45px;
  background: #e6e6e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 16px;
}

/* Contact Text */
.contact-text strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-text p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #dcdcdc;
  padding: 15px 0;
  font-size: 14px;
  background: #f3f3f3;
}

/* Responsive Fix */
@media (max-width: 991px) {
  .footer-col {
    border-right: none;
    margin-bottom: 30px;
  }
}

/* Contact Section */
.footer-contact-item {
  display: flex;
  margin-bottom: 20px;
}

.icon-circle {
  width: 45px;
  height: 45px;
  background: #e9e9e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 16px;
  color: #333;
}

.footer-contact-item p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #555;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #ddd;
  padding: 15px 0;
  font-size: 14px;
  background: #f4f4f4;
}

/* ===============================
   CONTACT SECTION BACKGROUND
================================ */


/* ===============================
   CARD STYLING
================================ */
.contact-card .card {
  background: #ffffff;
  border-radius: 22px;
  transition: all 0.35s ease;
}

.contact-card .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* ===============================
   CARD BODY SPACING
================================ */
.contact-card .card-body {
  background: #ffffff;
  border-radius: 22px;
}

/* ===============================
   FORM LABELS
================================ */
.contact-card .form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}

/* ===============================
   INPUT & TEXTAREA
================================ */
.contact-card .form-control {
  border-radius: 14px;
  border: 1px solid #dfe3e8;
  padding: 14px 16px;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  background-color: #fafbfc;
}

/* Focus Effect */
.contact-card .form-control:focus {
  background-color: #ffffff;
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

/* Disable resize for textarea */
.contact-card textarea {
  resize: none;
}

/* ===============================
   BUTTON STYLING
================================ */
.contact-btn {
  background: linear-gradient(135deg, #0d6efd, #084298);
  border: none;
  padding: 12px 45px;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: all 0.35s ease;
}

/* Button Hover */
.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(13, 110, 253, 0.4);
}

/* Button Click */
.contact-btn:active {
  transform: scale(0.96);
}

/* ===============================
   PLACEHOLDER COLOR
================================ */
.contact-card ::placeholder {
  color: #9aa0a6;
  font-size: 0.9rem;
}

/* ===============================
   FORM GRID SPACING
================================ */
.contact-card .row.g-3>* {
  margin-bottom: 6px;
}

/* ===============================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 768px) {
  .contact-card {
    padding: 50px 15px;
  }

  .contact-btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .contact-card .card {
    border-radius: 18px;
  }

  .contact-card .form-control {
    font-size: 0.9rem;
  }
}


/* ===============================
   404 PAGE SECTION
================================ */
.error-404 {
  min-height: 100vh;
  background: linear-gradient(135deg, #fff7f0, #ffffff);
  position: relative;
  overflow: hidden;
}

/* ===============================
   TEXT STYLING
================================ */
.error-code {
  font-size: 120px;
  font-weight: 800;
  color: #ff8c00;
  line-height: 1;
  animation: floatText 3s ease-in-out infinite;
}

.error-title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.error-text {
  font-size: 16px;
  color: #555;
  max-width: 450px;
}

/* ===============================
   BUTTON
================================ */
.error-btn {
  background: linear-gradient(135deg, #ff8c00, #ffae00);
  color: #fff;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.error-btn:hover {
  background: linear-gradient(135deg, #ffae00, #ff8c00);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 140, 0, 0.4);
}

/* ===============================
   RIGHT SIDE ANIMATED SHAPES
================================ */
.error-shape {
  position: relative;
  width: 260px;
  height: 260px;
  margin: auto;
}

.error-shape span {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff8c00, #ffae00);
  opacity: 0.15;
  animation: rotateShape 10s linear infinite;
}

.error-shape span:nth-child(2) {
  animation-duration: 14s;
  opacity: 0.2;
}

.error-shape span:nth-child(3) {
  animation-duration: 18s;
  opacity: 0.25;
}

/* ===============================
   ANIMATIONS
================================ */
@keyframes rotateShape {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes floatText {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .error-code {
    font-size: 90px;
  }

  .error-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, 50%);
    max-width: 90%;
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 35px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .hero-content p {
    font-size: 18px;
    padding: 12px 14px;
    line-height: 1.5;
  }
}

.logo_h img {
  height: 100px;
  width: 115px;
  margin-left: -30px;
  margin: 10px;
}

.about-split-section {
  background: #ffffff;
  overflow: hidden;
}

/* About Section Styling */
.about-section {
  min-height: 100vh;
  background-image: url(/img/index_bg.jpg);
  padding: 80px 20px;
}

.section-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff7a00;
  font-weight: 600;
}


.highlight-text {
  color: #379600;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1b2b45;
  margin: 15px 0;
  line-height: 1.3;
}

.title-divider {
  width: 80px;
  height: 3px;
  background: #ff7a00;
  margin-bottom: 30px;
  animation: fadeUp 1.3s ease forwards;
}

.about-description {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  animation: fadeUp 1.5s ease forwards;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feature-list span {
  font-weight: 500;
  color: #1b2b45;
  font-size: 16px;
  animation: fadeUp 1.7s ease forwards;
}

.feature-list i {
  color: #ff7a00;
  margin-right: 8px;
}

.btn-primary {
  background: #1b2b45;
  border: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #ff7a00;
  transform: translateY(-3px);
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}






/* =====================================
   CONTACT SECTION
===================================== */

.aa-contact-section {
  background: #f3f5f8;
  padding: 80px 0;
}

/* ---------- LEFT SIDE ---------- */

.aa-title {
  font-weight: 700;
  font-size: 34px;
  color: #1b2b45;
}

.aa-info-card {
  background: #f6fff1;
  border: 1px solid #379600;
  padding: 22px;
  border-radius: 20px;
  display: flex;
  gap: 18px;
  align-items: center;
  transition: 0.4s ease;
}

.aa-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.aa-icon-circle {
  width: 55px;
  height: 55px;
  min-width: 55px;
  min-height: 55px;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* ---------- RIGHT PANEL ---------- */

.aa-contact-panel {
  position: relative;
  background:
    linear-gradient(rgba(130, 255, 157, 0.35), rgba(111, 255, 143, 0.35)),
    url("/img/lf_index_bg.jpg") center center no-repeat;
  background-size: cover;

  border-radius: 35px;
  padding: 80px 20px;
  overflow: hidden;
  width: 90%;

  /* CENTERING */
  display: flex;
  justify-content: center;
  align-items: center;
}

.aa-form-box {
  background: #ffffff;
  padding: 45px;
  border-radius: 25px;
  width: 100%;
  max-width: 600px;   /* increase form width */
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  animation: fadeUp 1s ease;
}

/* ---------- IMAGE SIDE ---------- */

.aa-contact-image img {
  width: 110%;
  max-width: 420px;
  height: auto;
  border-radius: 20px;
}

/* ---------- FORM BOX ---------- */

.aa-form-box {
  background: #ffffff;
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.aa-form-title {
  font-weight: 700;
}

/* ---------- FORM INPUT ---------- */

.aa-form-box .form-control {
  border-radius: 12px;
  padding: 12px;
  border: 1px solid #ddd;
  transition: 0.3s ease;
}

.aa-form-box .form-control:focus {
  border-color: #ff9800;
  box-shadow: 0 0 0 4px rgba(255, 152, 0, 0.15);
}

/* ---------- BUTTON ---------- */

.aa-submit-btn {
  background: linear-gradient(135deg, #7dffa4, #7dffa4);
  color: #000000;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s ease;
}

.aa-submit-btn:hover {
  background: linear-gradient(135deg, #7dffa4, #7dffa4);
  color: black;
  transform: translateY(-3px);
}

/* =====================================
   BREADCRUMB SECTION
===================================== */
.breadcrumb-banner h1 {
  color: white;            /* Dark text */
  font-weight: 800;         /* Extra bold */
  font-size: 48px;
  position: relative;
  z-index: 2;
}

/* Add text shadow for visibility */
.breadcrumb-banner h1 {
  /* background: transparent;   remove white box */
  padding: 0;
}
/* .organic-breadcrumb {
  background: url("../img/index_all.png") center center no-repeat;
  background-size: cover;
  padding: 130px 0;
  position: relative;
}

.breadcrumb-banner h1 {
  color: #111;
  font-weight: 900;
  
  display: inline-block;
  padding: 8px 20px;
  border-radius: 6px;
} */

.organic-breadcrumb {
  background: url("../img/certification.jpg") center center no-repeat;
  background-size: cover;
  padding: 130px 0;
  position: relative;
  height: 600px;
}

/* Remove overlay */
.organic-breadcrumb::before {
  display: none;
}

.organic-breadcrumb2 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.315), rgba(0, 0, 0, 0.315)),
    url("../img/hd.png") center no-repeat;
  background-size: cover;
  height: 600px;   /* Set your required height */
  display: flex;
  align-items: center;
  color: black;
}
.organic-breadcrumb2 h1 {
  color: white !important;
  font-weight: 700 !important;
 padding-bottom: 500px;
  margin-top: 150px;
}
.organic-breadcrumb1 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.315), rgba(0, 0, 0, 0.315)),
    url("../img/service_page_image.jpeg") center no-repeat;
  background-size: cover;
  height: 600px;   /* Set your required height */
  display: flex;
  align-items: center;
  color: black;
}
.organic-breadcrumb1 h1 {
  color: white !important;
  font-weight: 700 !important;
 padding-bottom: 500px;
  margin-top: 150px;
}


.organic-breadcrumb h1,
.organic-breadcrumb a,
.organic-breadcrumb span {
  color: white !important;
  
}

.breadcrumb-banner a {
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-banner a:hover {
  color: #ffb74d !important;
}
.organic-breadcrumb4 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.315), rgba(0, 0, 0, 0.315)),
    url("../img/track_shipment.jfif") center no-repeat;
  background-size: cover;
  height: 600px;   /* Set your required height */
  display: flex;
  align-items: center;
  color: black;
}
.organic-breadcrumb4 h1 {
  color: white !important;
  font-weight: 700 !important;
 padding-bottom: 500px;
  margin-top: 150px;
 margin-right: -50px;
}
.organic-breadcrumb5 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.315), rgba(0, 0, 0, 0.315)),
    url("../img/compliance_certificate_3000x1581.jpg") center no-repeat;
  background-size: cover;
  height: 600px;   /* Set your required height */
  display: flex;
  align-items: center;
  color: black;
}
.organic-breadcrumb5 h1 {
  color: white !important;
  font-weight: 700 !important;
 /* padding-bottom: 400px; */
  /* margin-top: 190px; */
  /* padding-top: 60px; */
  /* margin-bottom: 90px; */
}
.organic-breadcrumb6 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.315), rgba(0, 0, 0, 0.315)),
    url("../img/import_process.jfif") center no-repeat;
  background-size: cover;
  height: 600px;   /* Set your required height */
  display: flex;
  align-items: center;
  color: black;
}
.organic-breadcrumb6 h1 {
  color: white !important;
  font-weight: 700 !important;
 padding-bottom: 500px;
  margin-top: 150px;
}
.contact-animate{
    font-size: 42px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(40px);
    animation: contactReveal 1.2s ease forwards;
}

@keyframes contactReveal{
    0%{
        opacity:0;
        transform: translateY(40px);
    }
    100%{
        opacity:1;
        transform: translateY(0);
    }
}
/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 992px) {

  .aa-contact-panel {
    padding: 40px 20px;
  }

  .aa-form-box {
    margin-top: 30px;
  }

  .aa-contact-image img {
    width: 100%;
    max-width: 100%;
  }
}

.aa-contact-panel {
  border-radius: 35px;
  padding: 90px 30px;  /* increase spacing */
}




/* ============================= */
/* FLOATING BUTTONS */
/* ============================= */

.floating-btn {
  position: fixed;
  bottom: 25px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
}

/* WhatsApp - Left Side */
/* WhatsApp Infinite Pulse */
.whatsapp-btn {
  left: 25px;
  background: #25D366;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-btn i {
  font-size: 30px;
}

/* Pulse Animation */
@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: scale(1.1);
}

.whatsapp-btn:hover i {
  color: #ffffff;
}

/* Scroll To Top - Right Side */
.scroll-top-btn {
  right: 25px;
  background: #ff8800;
  border: none;
  opacity: 0;
  visibility: hidden;
}

.scroll-top-btn:hover {
  background: #e67600;
  transform: scale(1.1);
}

/* Show button when active */
.scroll-top-btn.active {
  opacity: 1;
  visibility: visible;
}


#Frozen {
    position: relative;
    background: url("/product_images/frozen_replacement.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;   /* Makes background fixed */
    padding: 80px 0;
}

/* White overlay with low opacity */
#Frozen::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.555);  /* Adjust opacity here */
    z-index: 1;
}

/* Make content appear above overlay */
#Frozen .container-fluid {
    position: relative;
    z-index: 2;
}
body {
    margin: 0;
    padding: 0;
}


.main_menu {
    width: 100%;
    background: #ffffff;  /* or your color */
}

/* .main_box {
    width: 100%;
} */
.product-hover-list ul {
    list-style: none;
    padding: 0;
   
}

.product-hover-list li {
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}



.product-hover-list a {
    text-decoration: none;
    color: #000;
    display: block;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .product-hover-list li {
        padding: 15px;
        font-size: 14px;
    }
}
/* Increase Main Navigation Text */
.header_area .menu_nav .nav-link {
    font-size: 12px !important;
    font-weight: 500 !important;
}
/* =============================== */
/* PRODUCT RANGE SECTION */
/* =============================== */

.product-range-section {
  background: #ffffff;
  padding: 100px 0;
}

.product-range-section .row {
  justify-content: center !important;
  /* Changed from flex-start */
}


/* Titles */
.section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #379600;
  margin-bottom: 10px;
}

.section-intro {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}
.certification-section .row {
    display: flex;
    flex-wrap: wrap;
}

.certification-section .col-lg-4 {
    display: flex;
}

.cert-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
}

.cert-card p {
    flex-grow: 1;
}
body {
  padding-top: 90px; /* prevents hero overlap */
}

.navbar {
  padding: 15px 0;
}

.nav-link {
  font-weight: 500;
}

.nav-link:hover {
  color: #198754 !important;
}
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

   .change4 {
        font-size: 38px !important;
        line-height: 1.2;
    }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
}
body {
  padding-top: 85px;   /* adjust if navbar height slightly different */
}

.header_area {
  z-index: 9999;
}
.navbar-nav .nav-item {
  margin: 0 15px;   /* equal spacing left & right */
}
.navbar-brand img {
  height: 55px;     /* keep normal height */
  transform: scale(1.7);  /* makes logo look bigger */
  
}
.organic-breadcrumb {
  background: url("../img/certification.jpg") center center no-repeat;
  background-size: cover;
  padding: 150px 0;
  position: relative;
}

.breadcrumb-banner h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}
/* Contact Section */
.aa-contact-section {
  padding: 60px 0;
}

.aa-info-card {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.aa-icon-circle {
  background: #2E7D32;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aa-contact-panel {
  background: #ebecee;
  padding: 40px;
  border-radius: 10px;
}

.aa-submit-btn{
  background-color: #007bff !important;
  border: none !important;
  color: #ffffff !important;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.aa-submit-btn:hover{
  /* background-color: #0056d2 !important; */
  color: black !important;
  transform: translateY(-3px);
}

/* Mobile Fix */
@media (max-width: 991px) {
  .aa-contact-panel {
    margin-top: 30px;
  }

  .navbar-nav {
    text-align: center;
  }
}
header {
    margin: 0;
    padding: 0;
}

.navbar {
    margin: 0 !important;
    padding: 6px 0 !important;
}
.container,
.container-fluid {
    padding-top: 0 !important;
}
header {
    margin-top: 0 !important;
}
/* Remove extra space from banner section */
.banner-area {
    padding: 40px 0 !important;   /* reduce height */
    margin: 0 !important;
}

/* Remove top gap completely */
.organic-breadcrumb {
    padding-top: 0 !important;
}

/* Remove container top padding */
.banner-area .container {
    padding-top: 0 !important;
}
.banner-area {
    padding: 60px 0 50px 0 !important;
    margin: 0;
}

.nav-link.btn-success,
.nav-link.btn-success:hover,
.nav-link.btn-success:focus {
    /* background-color: #28a745 !important; */
    color: black !important;
    /* transition: none !important; */
}
.nav-link.btn-success {
    /* background:#28a745; */
    padding:8px 16px;
    border-radius:6px;
    font-weight:500;
}
/* Dropdown box */
.dropdown-menu{
    border-radius:10px;
    padding:10px 0;
    border:none;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    min-width:220px;
}

/* Dropdown items */
.dropdown-menu .dropdown-item{
    padding:8px 18px;
    font-size:15px;
    color:#333;
}

/* Hover effect */
/* .dropdown-menu .dropdown-item:hover{
    background:#f5f5f5;
    color:#28a745;
} */
/* =====================================
   CONTACT SECTION
===================================== */

.aa-contact-section {
  background: #f3f5f8;
  padding: 80px 0;
}

/* ---------- LEFT SIDE ---------- */

.aa-title {
  font-weight: 700;
  font-size: 34px;
  color: #1b2b45;
}

.aa-info-card {
  background: #f6fff1;
  border: 1px solid #379600;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: 0.3s ease;
}

.aa-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.aa-icon-circle {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* ---------- RIGHT PANEL ---------- */

.aa-contact-panel {
  background:
  linear-gradient(rgba(130,255,157,0.35),rgba(111,255,143,0.35)),
  url("../img/lf_index_bg.jpg") center/cover no-repeat;

  border-radius: 35px;
  padding: 80px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ---------- FORM BOX ---------- */

.aa-form-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 25px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);

  animation: fadeUp 1s ease;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform: translateY(40px);
  }
  to{
    opacity:1;
    transform: translateY(0);
  }
}

.aa-form-title{
  font-weight:700;
}

/* ---------- FORM INPUT ---------- */

.aa-form-box .form-control{
  border-radius:10px;
  padding:12px;
  border:1px solid #ddd;
  transition:0.3s;
}

.aa-form-box .form-control:focus{
  border-color:#ff9800;
  box-shadow:0 0 0 3px rgba(255,152,0,0.15);
}

/* ---------- BUTTON ---------- */

.aa-submit-btn{
  background:#7dffa4;
  border:none;
  padding:12px;
  font-weight:600;
  border-radius:10px;
  transition:0.3s;
}

/* .aa-submit-btn:hover{
  transform:translateY(-3px);
} */
.aa-form-box{
  max-width: 600px;
  padding: 50px;
}
.aa-icon-circle i{
font-size:24px;
color:#379600;
}
.col-lg-4{

padding-left: 5px;

}

.col-lg-8{
padding-left:70px;

}
.navbar-nav .nav-link{
    color:#333;
    transition:0.3s;
}

.navbar-nav .nav-link:hover{
    color:#2ea300;   /* green hover color */
}

.navbar-nav .nav-link.active{
    color:#2ea300;
    font-weight:600;
}
.navbar-nav .nav-item:hover .nav-link{
    color:#2ea300 !important;
}
.navbar-nav .nav-link.active{
    color:#2ea300;
    font-weight:600;
    background:rgba(46,163,0,0.08);
    border-radius:6px;
    padding:8px 14px;
}
/* navbar */

.header_area .menu_nav .nav-link {
    font-size: 12px !important;
    font-weight: 500 !important;
}


.header_area {
  z-index: 9999;
}
.navbar {
    margin: 0 !important;
    padding: 8px 0 !important;
}

.navbar-brand img {
    height: 55px;
    display: block;   /* removes small top gap */
}
.navbar {
  padding: 15px 0;
}
.navbar-nav .nav-item {
  margin: 0 15px;   /* equal spacing left & right */
}
.navbar-brand img {
  height: 55px;     /* keep normal height */
  transform: scale(1.7);  /* makes logo look bigger */
  
}
/* Mobile Fix */
@media (max-width: 991px) {
  .aa-contact-panel {
    margin-top: 30px;
  }

  .navbar-nav {
    text-align: center;
  }
}
header {
    margin: 0;
    padding: 0;
}

.navbar {
    margin: 0 !important;
    padding: 6px 0 !important;
}



.aa-form-box{
    background:#fff;
    padding:30px;
    border-radius:10px;
}

@media (max-width:768px){

.aa-form-box{
    padding:20px;
}

.aa-form-title{
    font-size:18px;
}

.form-control{
    font-size:14px;
}

.aa-submit-btn{
    padding:12px;
    font-size:15px;
}

}
/* Mobile Responsive Fix for Contact Form */
@media (max-width: 768px) {

  .aa-contact-panel{
    padding: 0 10px;
  }

  .aa-form-box{
    width: 100%;
    padding: 20px 15px;
    border-radius: 12px;
  }

  .aa-form-title{
    font-size: 16px;
  }

  .form-control{
    font-size: 14px;
    padding: 10px;
  }

  .aa-submit-btn{
    padding: 10px;
    font-size: 15px;
  }

}
/* Center contact info boxes on mobile */
@media (max-width: 768px) {

  .aa-contact-section .col-lg-4{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .aa-contact-section .col-lg-4 > div{
    width: 100%;
    max-width: 320px;
  }

  .aa-contact-section .col-lg-4 .contact-box{
    text-align: center;
  }

}
/* Mobile Navbar Fix */
@media (max-width: 768px) {

  .navbar-brand img{
    height:45px;
  }

  .navbar{
    padding-top:5px;
    padding-bottom:5px;
  }

  .navbar-toggler{
    padding:4px 8px;
    font-size:16px;
  }

}
/* ===== MOBILE SERVICES FIX ===== */

@media (max-width:768px){

.services-overview-section .col-lg-8{
padding-left:15px !important;
padding-right:15px !important;
}

.services-title{
font-size:28px;
line-height:1.3;
}

.services-text{
font-size:15px;
}

.services-subtitle{
font-size:14px;
letter-spacing:1px;
}

.services-divider{
width:60px;
height:3px;
}

}



/* ===== KEY SERVICES MOBILE FIX ===== */

@media (max-width:768px){

/* reduce heading space */
.key-services-section{
padding-top:30px !important;
padding-bottom:30px !important;
}

/* heading size */
.key-services-section .services-title{
font-size:24px;
line-height:1.4;
padding:0 10px;
}

/* subtitle */
.key-services-section .services-subtitle{
font-size:13px;
letter-spacing:1px;
}

/* grid spacing */
.key-services-section .row{
row-gap:15px;
}

/* service card */
.service-card{
padding:18px 15px;
border-radius:12px;
margin:0 10px;
}

/* icon */
.service-icon{
font-size:26px;
margin-bottom:8px;
}

/* text */
.service-card h5{
font-size:15px;
line-height:1.4;
}

}


/* ===== CONTACT SECTION MOBILE CENTER FIX ===== */

@media (max-width:768px){

.aa-contact-section .col-lg-4{
padding-left:15px !important;
padding-right:15px !important;
margin:auto;
text-align:center;
}

/* center cards */
.aa-info-card{
justify-content:center;
text-align:left;
}

/* center heading */
.aa-title{
text-align:center;
}

}


/* Mobile view spacing for footer logo */

@media (max-width: 768px) {
    .footer-logo{
        margin-bottom: 10px;
    }

    .footer-text{
        margin-top: 5px;
        
    }
}

@media (max-width: 768px) {

    .aa-contact-panel{
        background-size: cover;
        padding: 30px 10px;
    }

}
@media (max-width:768px){

    .col-lg-8{
        padding-left:0 !important;
        padding-right:0 !important;
    }

}
@media (max-width:768px){

    .aa-contact-panel{
        max-width:420px;
        margin:20px;
        padding:25px 15px;
    }

    .aa-form-box{
        padding:20px;
    }

}
@media (max-width:991px){

.navbar-collapse{
background:#fff;
padding:15px;
margin-top:10px;
border-radius:6px;
}

.navbar-nav .nav-link{
padding:10px 0;
}

.dropdown-menu{
border:none;
}

}
.header_area{
transition: all 0.3s ease;
}

.hide-navbar{
transform: translateY(-100%);
}
.goog-logo-link { display: none !important; }
.goog-te-gadget > span { display: none !important; }
.goog-te-gadget-simple .VIpgJd-ZVi9od-vH1Gmf { display: none !important; }
.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob { display: none !important; }

.service-advantages-section {
  background: #f8fafc;
  border: 1px solid #008f56;
  padding: 120px 0;
  position: relative;
}
/* Card */
.advantage-card {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  height: 90%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Icon */
.advantage-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #2d6a4f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 26px;
  transition: 0.4s ease;
}
.service-card {
  background-color: #f5fdfa;
  border: 1px solid #008f56;
}
/* PURANA - hatao */
/*#google_translate_element {*/
/*  position: fixed;*/
/*  bottom: 20px;*/
/*  right: 20px;*/
/*  z-index: 99999;*/
/*  background: white;*/
/*  padding: 8px 12px;*/
/*  border-radius: 30px;*/
/*  box-shadow: 0 4px 20px rgba(0,0,0,0.15);*/
/*  border: 1px solid #e0e0e0;*/
/*}*/

/* NAYA - lagao */
/*#google_translate_element {*/
/*  background: white;*/
/*  padding: 4px 10px;*/
/*  border-radius: 20px;*/
/*  box-shadow: 0 2px 8px rgba(0,0,0,0.12);*/
/*  border: 1px solid #e0e0e0;*/
/*  display: inline-block;*/
/*}*/
/*#google_translate_element {*/
/*  background: white;*/
/*  padding: 4px 10px;*/
/*  border-radius: 20px;*/
/*  border: 1px solid #e0e0e0;*/
/*  display: inline-block;*/
/*}*/
#google_translate_element {
  display: inline-block !important;
  position: static !important;
  bottom: unset !important;
  right: unset !important;
  z-index: unset !important;
  background: white;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
/*.navbar-nav .nav-link {*/
/*  font-size: 13px !important;*/
/*  padding-left: 8px !important;*/
/*  padding-right: 8px !important;*/
/*}*/

.navbar-nav {
  gap: 0 !important;
}

.nav-item {
  white-space: nowrap;
}

#google_translate_element {
  display: inline-block !important;
  position: static !important;
  bottom: unset !important;
  right: unset !important;
  z-index: unset !important;
  background: white;
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}


.navbar-brand {
  margin-right: 40px !important;
}
/* Active link highlight */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus {
  background-color: #2e7d32 !important;
  color: white !important;
  border-radius: 20px;
  padding-left: 14px !important;
  padding-right: 14px !important;
}

/* Hover animation */
.navbar-nav .nav-link {
  transition: all 0.3s ease !important;
  border-radius: 20px;
}

.navbar-nav .nav-link:hover {
  background-color: #e8f5e9 !important;
  color: #2e7d32 !important;
  transform: translateY(-2px);
}
body {
  top: 0 !important;
}

.goog-te-banner-frame {
  display: none !important;
}

#goog-gt-tt,
.goog-te-balloon-frame,
div#goog-gt- {
  display: none !important;
}
/*.header_area {*/
/*  position: fixed !important;*/
/*  top: 0 !important;*/
/*  left: 0 !important;*/
/*  right: 0 !important;*/
/*  z-index: 99999 !important;*/
/*  width: 100% !important;*/
/*}*/
/* Mobile navbar fix */
@media (max-width: 991px) {
  .navbar-collapse {
    background: white;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 10px;
  }

  .navbar-nav .nav-link {
    padding: 10px 15px !important;
    border-bottom: 1px solid #f0f0f0;
    transform: none !important;
  }

  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  #google_translate_element {
    margin: 10px 0;
    display: block !important;
  }

  .navbar-brand img {
    height: 40px !important;

  }
}
.navbar-nav .nav-link {
  font-weight: 500 !important;
}
.navbar-nav .nav-link {
  font-size: 15px !important;
  font-weight: 500 !important;
  /*padding-left: 12px !important;*/
  padding-right: 12px !important;
  color: #000 !important;
}
.navbar-brand img {
    height: 50px !important;
    width: auto;
}

@media (min-width: 992px) {
    .header_area .navbar {
        min-height: 100px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .header_area .navbar .container-fluid {
        padding-left: 112px !important;
    }
    .header_area .navbar-collapse {
        justify-content: flex-start !important;
    }
    .header_area .navbar-nav {
        margin-left: 0 !important;
    }
    .header_area {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
    }
}
.header_area .navbar {
        min-height: 100px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
