/* General CSS */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@200;300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap'); */

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  outline: none;
}

:root {
  --primary-color: #0878D1;
  --secondary-color: #1FA9F5;
  --third-color: #063B73;
  --btn: #0878D1;
  --hover: #063B73;
  --accent: #22B8F2;
  --bg: #F4FAFF;
  --ink: #102A43;
  --muted: #6B7C93;
  --panel-green-1: #E3F3FC;
  --panel-green-2: #D0EBF9;
  --price: #E3502B;
  --shadow: 0 30px 60px -20px rgba(6, 59, 115, 0.25);
  --primary-font: 'Lato', sans-serif;
}

body,
html {
  color: var(--primary-text);
  font-size: 16px;
  font-weight: 400;
  font-family: var(--primary-font);
  scroll-behavior: smooth;
  line-height: 1.5;
  overflow-x: hidden;
  background-color: #FAF7F0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0%;
}

h1 {
  color: var(--bg-white);
  font-size: 5vw;
  margin: 1vw 0;
  font-weight: 600;
}

h2 {
  color: var(--bg-dark-color);
  font-size: 4.80vh;
  margin: 1vw 0;
  font-weight: 600;
}

h3 {
  color: var(--light-white);
  /* font-size: 16px; */
  font-weight: 600;
}

p {
  color: var(--dark-color);
  font-size: 16px;
}

/* span{
    font-size: 12px;
} */
iframe,
img,
object {
  max-width: 100%;
}

ul {
  margin: 0%;
  padding: 0%;
  list-style: none;
}

li a {
  color: var(--text-white);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #1c2a1b;
}

a:hover,
button:hover {
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--white);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
}


/* ---------------- NAVBAR ---------------- */
nav {
  background-color: #283629;
}

a.nav-link {
  color: #1c2a1b;
  font-weight: 700;
}

.nav-link:focus,
.nav-link:hover {
  color: var(--hover);
}

a.nav-link.active {
  color: var(--hover);
}

.navbar-brand img {
  height: 80px;
  width: auto;
  border-radius: 100px;
  transition: height 0.3s ease;
}

.navbar-brand {
  padding: 0;
}


/* =================================
   PRODUCT DROPDOWN - GLASS EFFECT
================================= */

.navbar .dropdown-menu {
  background: rgba(250, 247, 240, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 16px;

  padding: 10px;

  min-width: 220px;

  box-shadow:
    0 20px 45px rgba(28, 42, 27, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);

  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}


/* Dropdown Open */

.navbar .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* Dropdown Items */

.navbar .dropdown-menu .dropdown-item {
  color: var(--ink);

  font-size: 14px;
  font-weight: 600;

  padding: 11px 14px;

  border-radius: 10px;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}


/* Hover */

.navbar .dropdown-menu .dropdown-item:hover {
  background: rgba(134, 191, 62, 0.15);
  color: var(--ink);

  transform: translateX(4px);
}


/* Active */

.navbar .dropdown-menu .dropdown-item:active {
  background: var(--btn);
  color: #fff;
}


/* Divider */

.navbar .dropdown-menu .dropdown-divider {
  border-color: rgba(28, 42, 27, 0.10);
  margin: 7px 5px;
}


/* Dropdown Arrow */

.navbar .dropdown-toggle::after {
  margin-left: 7px;
  vertical-align: 2px;

  border-top-color: var(--ink);

  transition: transform 0.3s ease;
}

.social-buttons a {
  color: var(--primary-color);
  font-size: 20px;
}

/* Arrow Rotate */

.navbar .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}


/* =================================
 DESKTOP HOVER
================================= */

@media (min-width: 992px) {

  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

}


/* =================================
 MOBILE DROPDOWN
================================= */

@media (max-width: 991px) {

  .navbar .dropdown-menu {
    background: rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-radius: 12px;

    box-shadow:
      0 10px 25px rgba(28, 42, 27, 0.10);

    transform: none;
    position: static;
    /* let it flow naturally inside the collapsed menu instead of floating */
  }

  .navbar .dropdown-menu.show {
    transform: none;
  }

}


/* =========================================================
   NAVBAR SHELL — glass pill, fixed, hidden until you scroll
   ========================================================= */

.navbar {
  position: fixed !important;
  /* fixed, not absolute, so it can react to scroll anywhere on the page */
  top: 28px;
  left: 50%;
  width: min(92%, 1180px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px rgba(28, 42, 27, 0.06);
  z-index: 1050;

  /* --- hidden state: sits just above the viewport, invisible, non-interactive --- */
  transform: translate(-50%, -160%);
  opacity: 0;
  pointer-events: none;

  transition:
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    /* spring / "pop" easing, Apple-notification feel */
    opacity 0.35s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    top 0.3s ease,
    width 0.3s ease,
    border-radius 0.3s ease,
    padding 0.3s ease;
}

/* Revealed after scrolling past the threshold */
.navbar.nav-visible {
  transform: translate(-50%, 0) !important;
  opacity: 1 !important;
  pointer-events: auto;
}

/* Slightly tighter / more opaque once scrolled further, like a docked notification */
.navbar.nav-scrolled {
  top: 14px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 40px rgba(28, 42, 27, 0.14);
}

/* Respect users who don't want motion */
@media (prefers-reduced-motion: reduce) {
  .navbar {
    transition: opacity 0.2s ease;
    transform: translate(-50%, 0);
  }
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

  .navbar {
    top: 16px;
    width: 94%;
    border-radius: 26px;
    padding: 8px 16px;
  }

  .navbar.nav-scrolled {
    top: 10px;
  }

  .navbar-brand img {
    height: 56px;
  }

  #mainNavbar {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 18px;
    margin-top: 14px;
    padding: 14px 10px;
    box-shadow: 0 10px 30px rgba(28, 42, 27, 0.12);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .navbar-nav {
    gap: 2px !important;
  }

  .navbar-nav .nav-link {
    padding: 12px 16px !important;
    border-radius: 10px;
    font-weight: 600;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background: rgba(134, 191, 62, 0.12);
  }

  .navbar-nav .dropdown-menu {
    margin-left: 12px;
    margin-bottom: 6px;
  }

  #mainNavbar .d-flex.gap-2 {
    justify-content: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(28, 42, 27, 0.08);
  }

  .page {
    gap: 60px;
  }

  .agr-phone-box {
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .navbar {
    width: 96%;
    top: 10px;
    border-radius: 22px;
    padding: 6px 12px;
  }

  .navbar-brand img {
    height: 58px;
  }

  #mainNavbar {
    margin-top: 10px;
    padding: 12px 8px;
  }

  .navbar-nav .nav-link {
    font-size: 14px;
    padding: 10px 14px !important;
  }

  .page {
    gap: 60px !important;
  }

  .agr-phone-box {
    margin-top: 20px;
  }
}


/* =========================================================
   (unused decorative classes kept from original file,
   harmless if not referenced anywhere)
   ========================================================= */

.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--price);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.75;
  cursor: pointer;
  transition: opacity .25s ease;
  position: relative;
}

.nav-links li.active {
  opacity: 1;
}

.nav-links li.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--price);
  border-radius: 2px;
}

.nav-links li:hover {
  opacity: 1;
}

.nav-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 42, 27, 0.05);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
  position: relative;
}

.icon-btn:hover {
  background: rgba(28, 42, 27, 0.1);
  transform: translateY(-2px);
}

.icon-btn svg {
  width: 17px;
  height: 17px;
  stroke: var(--ink);
}

.cart-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--price);
}

/* ---------------- LAYOUT ---------------- */
.page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 4vh 6vw;
  gap: 20px;
}

/* ---------------- LEFT PANEL ---------------- */
.content {
  position: relative;
  z-index: 10;
  /* padding-top: 40px; */
  max-width: 480px;
}

.eyebrow {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  /*display: flex;*/
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--muted);
}

.eyebrow span {
  color: var(--primary-color);
}

h1.title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 18px 0;
  min-height: 1.1em;
  perspective: 600px;
}

h1.title .char {
  display: inline-block;
  will-change: transform, opacity;
}

.price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--price);
  margin-bottom: 20px;
}

.desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 30px;
  max-width: 420px;
  min-height: 84px;
}

.controls-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 34px;
}

.qty {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px solid rgba(28, 42, 27, 0.14);
  border-radius: 100px;
  padding: 9px 16px;
  font-weight: 600;
  font-size: 14px;
}

/* .qty button{ border:none; background:none; cursor:pointer; width:18px; height:18px; font-size:16px; color: var(--ink); line-height:1; display:flex; align-items:center; justify-content:center; } */
.order-btn {
  border: none;
  cursor: pointer;
  padding: 14px 34px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  color: #fff;
  background: var(--btn);
  box-shadow: 0 14px 30px -10px rgba(134, 191, 62, 0.55);
  transition: background .45s ease, box-shadow .45s ease, transform .2s ease;
}

.order-btn:hover {
  transform: translateY(-2px);
  color: #1c2a1b;
}

button#prevBtn,
button#nextBtn {
  border: none;
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  font-size: 11px;
  color: #fff;
  background: #1c2a1b;
}

.step-row {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.step-count {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.step-nav {
  display: flex;
  gap: 8px;
}

/* .step-nav button{ background:none; border:none; cursor:pointer; font-size:13px; font-weight:600; color: var(--ink); display:flex; align-items:center; gap:6px; opacity:0.6; transition:opacity .2s ease; font-family:'Inter', sans-serif; } */
/* .step-nav button:hover{ opacity:1; } */
.footer-note {
  position: absolute;
  bottom: 36px;
  left: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 500;
}

.footer-note b {
  color: var(--ink);
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
}

/* ---------------- RIGHT: STAGE ---------------- */
.stage-wrap {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stage {
  position: relative;
  width: min(46vw, 640px);
  height: min(46vw, 640px);
  max-width: 640px;
  max-height: 640px;
}

.blob {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, var(--panel-green-1), var(--panel-green-2) 70%);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.5);
}

.orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.orbit-path {
  fill: none;
  stroke: rgba(28, 42, 27, 0.28);
  stroke-width: 1.6;
  stroke-dasharray: 2 10;
  stroke-linecap: round;
}

.leaf {
  position: absolute;
  width: 26px;
  height: 26px;
  opacity: 0.85;
  pointer-events: none;
  z-index: 6;
}

/* All dishes (main + perimeter) share one class; position/size driven by inline transform set via GSAP */
.dish {
  position: absolute;
  left: 0;
  top: 0;
  width: 110px;
  height: 110px;
  transform: translate(-50%, -50%);
  will-change: left, top, transform;
  z-index: 15;
}

.dish.is-main {
  z-index: 20;
  cursor: default;
}

.dish:not(.is-main) {
  cursor: pointer;
}

.dish img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 5px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px -8px rgba(28, 42, 27, 0.35);
  transition: box-shadow .3s ease, border-color .35s ease;
  background: #eee;
}

.dish.is-main img {
  box-shadow: var(--shadow);
  border-width: 7px;
}

.dish:not(.is-main):hover img {
  box-shadow: 0 16px 32px -6px rgba(28, 42, 27, 0.45);
}

.dish .ring {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity .35s ease, transform .35s ease;
}

.dish.is-main .ring {
  opacity: 1;
  transform: scale(1);
}

.floating-note {
  position: absolute;
  left: 50%;
  bottom: -4%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 11px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 30px -10px rgba(28, 42, 27, 0.2);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  z-index: 30;
  white-space: nowrap;
}

.floating-note .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(134, 191, 62, 0.25);
}

@media (max-width: 980px) {
  .navbar {
    padding: 12px 18px;
  }

  .nav-links {
    display: none;
  }

  .page {
    grid-template-columns: 1fr;
    padding: 40px 6vw 40px;
    min-height: auto;
  }

  .stage-wrap {
    height: auto;
    order: 1;
    margin-bottom: 10px;
  }

  .stage {
    width: min(88vw, 460px);
    height: min(88vw, 460px);
  }

  .content {
    order: 2;
    padding-top: 0;
    max-width: 100%;
  }

  .footer-note {
    position: relative;
    bottom: auto;
    margin-top: 26px;
  }

  .dish {
    width: 80px;
    height: 80px;
  }
}


/* banner */

/* all page banner  */
/* =========================================================
   INNER PAGE BANNER
========================================================= */

.banner_section {
  position: relative;

  min-height: 390px;

  display: flex;
  align-items: center;

  background-image:
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.58) 45%,
      rgba(0, 0, 0, 0.35) 100%),
    url("https://png.pngtree.com/thumb_back/fh260/background/20230707/pngtree-d-rendering-of-an-international-shipping-and-logistics-company-s-import-image_3817709.jpg");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  overflow: hidden;

  isolation: isolate;
}


/* =========================================================
 SOFT OVERLAY
========================================================= */

.banner_section::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: -1;

  background:
    linear-gradient(180deg,
      rgba(28, 42, 27, 0.15),
      rgba(28, 42, 27, 0.55));

  pointer-events: none;
}


/* =========================================================
 IMAGE MOVEMENT / PARALLAX FEEL
========================================================= */

.banner_section::after {
  content: "";

  position: absolute;
  inset: -10px;

  z-index: -2;

  background:
    inherit;

  background-size: cover;
  background-position: center;

  transform: scale(1.04);

  animation:
    bannerZoom 12s ease-in-out infinite alternate;
}


@keyframes bannerZoom {

  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.10);
  }

}


/* =========================================================
 CONTENT
========================================================= */

.banner_section .container {
  position: relative;

  z-index: 3;
}


.banner-content.about-con {
  text-align: center;

  padding: 75px 15px;
}


/* =========================================================
 HEADING
========================================================= */
.banner-content.about-con h1 {
  position: relative;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
  text-shadow:
    0 5px 25px rgba(0, 0, 0, 0.25);
}

/* Green line */
.banner-content.about-con h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 50px;
  background: var(--primary-color);
  box-shadow:
    0 0 15px rgba(134, 191, 62, 0.45);
  animation:
    lineGrow 1s ease forwards;
}

@keyframes lineGrow {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 60px;
    opacity: 1;
  }
}

/* =========================================================
 BREADCRUMBS
========================================================= */
.breadcrumbs-list {
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 500;
}

.breadcrumbs-list li {
  white-space: nowrap;
}

.breadcrumbs-list li a {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  transition:
    color 0.3s ease;
}

.breadcrumbs-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 20px;
  background: var(--primary-color);
  transition:
    width 0.3s ease;
}

.breadcrumbs-list li a:hover {
  color: var(--primary-color);
}

.breadcrumbs-list li a:hover::after {
  width: 100%;
}

.breadcrumbs-list li.active {
  color: var(--primary-color);
  font-weight: 700;
}


/* =========================================================
 BOTTOM CURVE
========================================================= */

.banner_section .container::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -100px;
  width: 180px;
  height: 180px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(5, 46, 122, 0.08);
  pointer-events: none;
}


/* =========================================================
 TABLET
========================================================= */

@media (max-width: 991px) {

  .banner_section {
    min-height: 340px;

    background-position: center;
  }

  .banner-content.about-con {
    padding: 65px 15px;
  }

}


/* =========================================================
 MOBILE
========================================================= */

@media (max-width: 767px) {

  .banner_section {
    min-height: 300px;

    background-image:
      linear-gradient(rgba(28, 42, 27, 0.68),
        rgba(28, 42, 27, 0.68)),
      url("assets/images/banner-slide/1.jpg");

    background-position: center;
  }

  .banner-content.about-con {
    padding: 55px 15px;
  }

  .banner-content.about-con h1 {
    font-size: 38px;

    letter-spacing: -0.5px;
  }

  .breadcrumbs-list {
    font-size: 13px;
  }

  /*.floating-note {*/
  /*    display: none;*/
  /*}*/

}


/* =========================================================
 SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .banner_section {
    min-height: 270px;
  }

  .banner-content.about-con {
    padding: 48px 10px;
  }

  .banner-content.about-con h1 {
    font-size: 34px;
  }

}


/* =========================================================
 REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .banner_section::after,
  .banner-content.about-con h1::after {
    animation: none !important;
  }

}

/* all page banner  */

/* about us  */
.primery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 174px;
  height: 46px;
  padding: 0 20px;
  border-radius: 30px;
  background: var(--btn);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primery-btn:hover {
  background: var(--third-color);
  color: #ffffff;
}

.agr-about-section {
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
}

.agr-about-wrapper {
  position: relative;
}

.agr-about-content {
  padding-right: 25px;
}

.agr-about-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #4d554e;
  font-size: 13px;
  font-weight: 500;
}

.agr-about-label i {
  color: #82b440;
  font-size: 16px;
}

.agr-about-title {
  margin: 0 0 22px;
  color: #0d3514;
  font-size: 38px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.agr-about-description {
  margin-bottom: 27px;
  color: #707773;
  font-size: 13px;
  line-height: 1.9;
}


.agr-feature-list {
  margin-bottom: 27px;
}

.agr-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  color: #68706c;
  font-size: 13px;
}

.agr-feature-item i {
  color: #6ca15b;
  font-size: 14px;
  font-weight: 700;
}


.agr-about-bottom {
  display: flex;
  align-items: center;
  gap: 30px;
}

.agr-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 174px;
  height: 46px;
  padding: 0 20px;
  border-radius: 30px;
  background: #5c9557;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.agr-more-btn:hover {
  background: #0d3514;
  color: #ffffff;
}

.agr-more-btn i {
  font-size: 13px;
}

.agr-phone-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.agr-phone-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--secondary-color);
  color: var(--third-color);
  font-size: 20px;
}

.agr-phone-content span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
}

.agr-phone-content strong {
  color: var(--primary-color);
  font-size: 14px;
}


.agr-image-area {
  position: relative;
  min-height: 430px;
}

.agr-main-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 82%;
  height: 225px;
  object-fit: cover;
  border-radius: 10px;
}


.agr-trust-card {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 78%;
  padding: 43px 28px 36px;
  border-radius: 10px;
  background: var(--btn);
}

.agr-trust-label {
  margin-bottom: 5px;
  color: #fdfdfd;
  font-size: 12px;
  font-weight: 500;
}

.agr-trust-number {
  margin: 0 0 13px;
  color: #eaf1eb;
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
}

.agr-trust-divider {
  width: 100%;
  margin: 0 0 16px;
  border-top: 1px dashed #f5f5f4;
}

.agr-trust-text {
  margin: 0;
  color: #dfe0d9;
  font-size: 12px;
  line-height: 1.9;
}



@media (max-width: 1199px) {
  .agr-about-title {
    font-size: 34px;
  }

  .agr-trust-number {
    font-size: 34px;
  }

  .agr-main-image {
    width: 85%;
  }

  .agr-trust-card {
    width: 82%;
  }
}

@media (max-width: 991px) {
  .agr-about-section {
    padding: 60px 0;
  }

  .agr-about-content {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .agr-about-title {
    font-size: 36px;
  }

  .agr-image-area {
    min-height: 440px;
  }

  .agr-main-image {
    width: 82%;
    height: 260px;
  }

  .agr-trust-card {
    width: 72%;
  }
}

@media (max-width: 767px) {
  .agr-about-section {
    padding: 45px 0;
  }

  .agr-about-title {
    font-size: 30px;
    line-height: 1.3;
  }

  .agr-about-description {
    font-size: 13px;
  }

  .agr-feature-list {
    margin-bottom: 20px;
  }

  .agr-about-bottom {
    flex-wrap: wrap;
    gap: 20px;
  }

  .agr-image-area {
    min-height: 390px;
    margin-top: 10px;
  }

  .agr-trust-card {
    width: 78%;
    padding: 30px 22px;
  }

  .agr-trust-number {
    font-size: 30px;
  }

  .agr-main-image {
    width: 88%;
    height: 220px;
  }
}

@media (max-width: 480px) {
  .agr-about-title {
    font-size: 26px;
  }

  .agr-about-bottom {
    display: block;
  }

  .agr-more-btn {
    margin-bottom: 20px;
  }

  .agr-image-area {
    min-height: 350px;
  }

  .agr-trust-card {
    width: 90%;
    padding: 25px 18px;
  }

  .agr-trust-number {
    font-size: 27px;
  }

  .agr-main-image {
    width: 94%;
    height: 190px;
  }
}

/* about us  */




/* home product */
.products-section {
  background: var(--bg);
  padding: 80px 0;
}

.products-heading {
  text-align: center;
  margin-bottom: 45px;
}

.products-heading .small-title {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.products-heading h2 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  margin-bottom: 12px;
}

.products-heading p {
  color: var(--muted);
  max-width: 650px;
  margin: auto;
  font-size: 16px;
}

/* Product Card */
.product-card {
  height: 100%;
  background: #fff;
  border: 1px solid rgba(28, 42, 27, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(28, 42, 27, 0.07);
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

/* Image */
.product-image {
  position: relative;
  height: 230px;
  background: var(--panel-green-1);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

/* Product Badge */
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--ink);
  color: #fff;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

/* Content */
.product-content {
  padding: 22px;
}

.product-category {
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 7px;
}

.product-title {
  color: var(--ink);
  font-size: 20px;
  font-weight: 750;
  margin-bottom: 8px;
}

.product-description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Bottom */
/* .product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
} */

.product-price {
  color: var(--price);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 15px;
}

.product-price span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--btn);
  color: var(--ink);
  border: none;
  padding: 10px 17px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.product-btn:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 575px) {
  .products-section {
    padding: 55px 0;
  }

  .product-image {
    height: 210px;
  }

  .product-content {
    padding: 18px;
  }

  .product-title {
    font-size: 18px;
  }
}

.product-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 35px 0 45px;
}

.filter-btn {
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--third-color);
  color: #fff;
  border-color: var(--third-color);
}

.product-item {
  transition: all 0.35s ease;
}

.product-item.hide {
  display: none;
}

.product-item.show {
  display: block;
}


/* Mobile */
@media (max-width: 576px) {

  .product-filters {
    gap: 8px;
    margin: 25px 0 35px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

/* home product */


/* we do */
.card-box {
  position: relative;
  height: 100%;
  padding: 38px 32px;
  background: linear-gradient(145deg,
      #ffffff 0%,
      var(--panel-green-1) 100%);

  border: 1px solid rgba(28, 42, 27, 0.08);
  border-radius: 22px;

  text-align: center;

  overflow: hidden;

  box-shadow:
    0 12px 30px rgba(28, 42, 27, 0.08);

  transition:
    transform 0.4s cubic-bezier(.2, .8, .2, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}


/* Decorative glow */

.card-box::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  top: -70px;
  right: -70px;
  background: var(--panel-green-2);
  border-radius: 50%;
  opacity: 0.45;
  transition: all 0.5s ease;
}


/* Bottom decorative circle */
.card-box::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  bottom: -55px;
  left: -55px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.08;
  transition: all 0.5s ease;
}


/* Hover */
.card-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: rgba(134, 191, 62, 0.35);
}

.card-box:hover::before {
  width: 200px;
  height: 200px;
  opacity: 0.7;
}

.card-box:hover::after {
  transform: scale(1.5);
}

.icon-circle {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 25px;
  box-shadow:
    0 12px 25px rgba(28, 42, 27, 0.18);
  transition:
    transform 0.4s ease,
    background 0.4s ease,
    color 0.4s ease;
}


/* Icon hover */

.card-box:hover .icon-circle {
  transform: rotate(-8deg) scale(1.08);
  background: var(--primary-color);
  color: var(--ink);
}

.card-title {
  position: relative;
  z-index: 2;
  margin-bottom: 13px;
  color: var(--ink);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.card-text {
  position: relative;
  z-index: 2;
  max-width: 360px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  transition: color 0.3s ease;
}




.card-animate {
  opacity: 0;

  transform: translateY(40px);

  animation: cardReveal 0.8s cubic-bezier(.2, .8, .2, 1) forwards;
}


/* Animation */

@keyframes cardReveal {

  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }

}


/* =========================
   ANIMATION DELAYS
========================= */

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.25s;
}

.delay-3 {
  animation-delay: 0.4s;
}


/* =========================
   ICON FLOAT ANIMATION
========================= */

.card-animate .icon-circle {
  animation: iconFloat 4s ease-in-out infinite;
}

.delay-2 .icon-circle {
  animation-delay: 0.5s;
}

.delay-3 .icon-circle {
  animation-delay: 1s;
}


@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .card-box {
    padding: 32px 24px;
  }

  .card-title {
    font-size: 21px;
  }

}


@media (max-width: 767px) {

  .card-box {
    padding: 35px 28px;
  }

  .icon-circle {
    width: 64px;
    height: 64px;

    font-size: 22px;

    margin-bottom: 18px;
  }

  .card-title {
    font-size: 21px;
  }

  .card-text {
    font-size: 14px;
  }

}


@media (prefers-reduced-motion: reduce) {

  .card-animate,
  .card-animate .icon-circle {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .card-box {
    transition: none;
  }

}

/* we do */




/* exin */
.exin {
  width: 100%;
  padding: 0;
  margin: 0;
}

.exin .row {
  margin: 0;
}

.exin .col-12 {
  padding: 0;
}

.exin-banner {
  position: relative;

  min-height: 500px;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 80px 20px;

  overflow: hidden;

  background-image:
    linear-gradient(rgba(28, 42, 27, 0.62),
      rgba(28, 42, 27, 0.62)),
    url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRnmfJXSkYfUbrR9HdDET1w4aQUyT3pWhH3ZEDL_TGWGzfRizf4gbpNbNTY&s=10");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  background-attachment: fixed;
}



.exin-banner::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(135deg,
      rgba(28, 42, 27, 0.72),
      rgba(28, 42, 27, 0.35));

  z-index: 1;
}


/* =========================
   CONTENT
========================= */

.exin-info {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 850px;

  margin: auto;

  padding: 20px;
}


/* Heading */

.exin-info h2 {
  color: #ffffff;

  font-size: clamp(32px, 5vw, 56px);

  line-height: 1.15;

  font-weight: 800;

  letter-spacing: -1px;

  margin-bottom: 20px;

  text-shadow:
    0 4px 20px rgba(0, 0, 0, 0.25);
}


/* Paragraph */

.exin-info p {
  max-width: 700px;

  margin-left: auto;
  margin-right: auto;

  color: rgba(255, 255, 255, 0.9) !important;

  font-size: 17px;

  line-height: 1.75;

  font-weight: 400;
}


/* =========================
   BUTTON
========================= */

.exin .main-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 13px 28px;

  background: #86BF3E;

  color: #1C2A1B;

  border: 2px solid #86BF3E;

  border-radius: 10px;

  font-size: 15px;

  font-weight: 700;

  text-decoration: none;

  transition:
    all 0.3s ease;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.18);
}


.exin .main-btn:hover {
  background: #ffffff;

  border-color: #ffffff;

  color: #1C2A1B;

  transform: translateY(-3px);

  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.25);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

  .exin-banner {
    min-height: 440px;

    padding: 60px 18px;

    /* Fixed background mobile par
           sometimes problematic hota hai */
    background-attachment: scroll;

    background-position: center;
  }

  .exin-info {
    padding: 10px;
  }

  .exin-info h2 {
    font-size: 32px;

    line-height: 1.2;
  }

  .exin-info p {
    font-size: 15px;

    line-height: 1.65;

    margin-bottom: 25px !important;
  }

  .exin .main-btn {
    padding: 12px 24px;

    font-size: 14px;
  }
}

/* exin */

/* gallery */


/* =========================================
   GALLERY SECTION
========================================= */

.gallery_section {
  position: relative;

  padding: 90px 0;

  background: var(--bg);

  overflow: hidden;
}


/* =========================================
   HEADING
========================================= */

.gallery_section .section-title {
  position: relative;

  display: inline-block;

  color: var(--ink);

  font-size: clamp(32px, 4vw, 46px);

  font-weight: 800;

  line-height: 1.2;

  margin-bottom: 15px;

  letter-spacing: -0.5px;
}


/* Green underline */

.gallery_section .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 55px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 50px;
  transform: translateX(-50%);
}


/* Subtitle */

.gallery_section .section-subtitle {
  max-width: 680px;

  margin: 25px auto 0;

  color: var(--muted);

  font-size: 16px;

  line-height: 1.7;
}


/* =========================================
   GALLERY ITEM
========================================= */

.gallery_section .col-sm-6 {
  overflow: hidden;
}


/* Image wrapper through anchor */

.gallery_section a {
  position: relative;

  display: block;

  width: 100%;

  height: 270px;

  overflow: hidden;

  border-radius: 18px;

  background: var(--panel-green-1);

  box-shadow:
    0 10px 25px rgba(28, 42, 27, 0.08);

  text-decoration: none;

  transform: translateY(0);

  transition:
    transform 0.4s cubic-bezier(.2, .8, .2, 1),
    box-shadow 0.4s ease;
}


/* =========================================
   IMAGE
========================================= */

.gallery_section a img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.7s cubic-bezier(.2, .8, .2, 1),
    filter 0.5s ease;
}


/* =========================================
   DARK OVERLAY
========================================= */

.gallery_section a::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 1;

  background:
    linear-gradient(to top,
      rgba(28, 42, 27, 0.65),
      rgba(28, 42, 27, 0.05) 60%);

  opacity: 0;

  transition:
    opacity 0.4s ease;
}


/* =========================================
   VIEW ICON
========================================= */

.gallery_section a::after {
  content: "↗";

  position: absolute;

  z-index: 2;

  top: 50%;
  left: 50%;

  width: 52px;
  height: 52px;

  display: flex;

  align-items: center;
  justify-content: center;

  transform:
    translate(-50%, -40%) scale(0.7);

  border-radius: 50%;

  background: var(--btn);

  color: var(--ink);

  font-size: 24px;

  font-weight: 700;

  opacity: 0;

  transition:
    all 0.4s cubic-bezier(.2, .8, .2, 1);
}


/* =========================================
   HOVER EFFECT
========================================= */

.gallery_section a:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow);
}


.gallery_section a:hover img {
  transform: scale(1.08);

  filter: brightness(0.85);
}


.gallery_section a:hover::before {
  opacity: 1;
}


.gallery_section a:hover::after {
  opacity: 1;

  transform:
    translate(-50%, -50%) scale(1);
}


/* =========================================
   AOS + EXTRA ANIMATION
========================================= */

.gallery_section .gallery-item {
  opacity: 0;

  animation:
    galleryReveal 0.8s cubic-bezier(.2, .8, .2, 1) forwards;
}


@keyframes galleryReveal {

  from {
    opacity: 0;

    transform:
      translateY(35px) scale(0.97);
  }

  to {
    opacity: 1;

    transform:
      translateY(0) scale(1);
  }

}


/* =========================================
   STAGGERED ANIMATION
========================================= */

.gallery_section .col-sm-6:nth-child(3) {
  animation-delay: 0.10s;
}

.gallery_section .col-sm-6:nth-child(4) {
  animation-delay: 0.20s;
}

.gallery_section .col-sm-6:nth-child(5) {
  animation-delay: 0.30s;
}

.gallery_section .col-sm-6:nth-child(6) {
  animation-delay: 0.40s;
}

.gallery_section .col-sm-6:nth-child(7) {
  animation-delay: 0.50s;
}

.gallery_section .col-sm-6:nth-child(8) {
  animation-delay: 0.60s;
}

.gallery_section .col-sm-6:nth-child(9) {
  animation-delay: 0.70s;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

  .gallery_section {
    padding: 70px 0;
  }

  .gallery_section a {
    height: 240px;
  }

}


@media (max-width: 575px) {

  .gallery_section {
    padding: 55px 0;
  }

  .gallery_section .section-title {
    font-size: 32px;
  }

  .gallery_section .section-subtitle {
    padding: 0 10px;

    font-size: 14px;

    line-height: 1.6;
  }

  .gallery_section a {
    height: 230px;

    border-radius: 15px;
  }

  .gallery_section a::after {
    width: 45px;
    height: 45px;

    font-size: 20px;
  }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  .gallery_section a,
  .gallery_section a img,
  .gallery_section a::before,
  .gallery_section a::after {
    transition: none;
  }

  .gallery_section .gallery-item {
    animation: none;
    opacity: 1;
  }

}

/* gallery */

/* about page */
/* =========================================
   PROFILE SECTION
========================================= */

.profile-wrapper {
  position: relative;

  width: 100%;

  padding: 70px 20px;

  background:
    radial-gradient(circle at 5% 15%,
      rgba(134, 191, 62, 0.13),
      transparent 25%),
    radial-gradient(circle at 95% 85%,
      rgba(211, 228, 196, 0.55),
      transparent 28%),
    var(--bg);

  overflow: hidden;
}


/* Decorative circles */

.profile-wrapper::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -150px;
  left: -120px;
  background: var(--panel-green-2);
  border-radius: 50%;
  opacity: 0.45;
  animation: profileFloat 8s ease-in-out infinite;
}

.profile-wrapper::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  bottom: -130px;
  right: -90px;
  background: var(--btn);
  border-radius: 50%;
  opacity: 0.08;
  animation: profileFloat 10s ease-in-out infinite reverse;
}

@keyframes profileFloat {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(20px, -15px);
  }
}


/* =========================================
   PROFILE CARD
========================================= */

.profile-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(28, 42, 27, 0.08);
  box-shadow: var(--shadow);
  animation:
    profileReveal 0.9s cubic-bezier(.2, .8, .2, 1) both;
}


@keyframes profileReveal {

  from {
    opacity: 0;

    transform:
      translateY(45px) scale(0.97);
  }

  to {
    opacity: 1;

    transform:
      translateY(0) scale(1);
  }

}


/* =========================================
   HEADER
========================================= */

.profile-header {
  position: relative;

  padding: 42px 35px;

  text-align: center;

  background:
    linear-gradient(135deg,
      var(--ink),
     var(--accent));

  overflow: hidden;
}


/* Header glow */

.profile-header::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  top: -100px;
  right: 8%;

  background: rgba(96, 97, 95, 0.18);

  border-radius: 50%;
}


.profile-header::after {
  content: "";

  position: absolute;

  width: 100px;
  height: 100px;

  bottom: -65px;
  left: 12%;

  background: rgba(255, 255, 255, 0.05);

  border-radius: 50%;
}


/* Header title */

.profile-header h1 {
  position: relative;

  z-index: 2;

  margin: 0 0 8px;

  color: #ffffff;

  font-size: clamp(28px, 4vw, 40px);

  font-weight: 800;

  letter-spacing: -0.5px;
}


/* Company name */

.profile-header p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.4px;
}


/* =========================================
   TABLE WRAPPER
========================================= */

.profile-table {
  width: 100%;

  padding: 28px 35px 35px;

  overflow-x: auto;
}


/* =========================================
   TABLE
========================================= */

.profile-table table {
  width: 100%;

  border-collapse: separate;

  border-spacing: 0 8px;

  color: var(--ink);
}


/* Rows */

.profile-table tr {
  transition:
    transform 0.3s ease;
}


.profile-table tr:hover {
  transform: translateX(5px);
}


/* =========================================
   TH
========================================= */

.profile-table th {
  width: 32%;

  padding: 16px 20px;

  background: var(--panel-green-1);

  color: var(--ink);

  text-align: left;

  font-size: 14px;

  font-weight: 750;

  border-left: 4px solid transparent;

  border-radius: 10px 0 0 10px;

  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}


.profile-table tr:hover th {
  background: var(--panel-green-2);
  border-left-color: var(--primary-color);
}


/* =========================================
   TD
========================================= */

.profile-table td {
  padding: 16px 20px;

  background: #fafcf8;

  color: var(--muted);

  font-size: 14px;

  line-height: 1.65;

  border-radius: 0 10px 10px 0;

  border: 1px solid rgba(28, 42, 27, 0.04);

  border-left: none;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}


.profile-table tr:hover td {
  background: #f4f8ef;
  color: var(--ink);
}


/* =========================================
   SPECIAL HIGHLIGHT
========================================= */

/* GST */

.profile-table tr td {
  color: var(--third-color);
  font-weight: 700;
  letter-spacing: 0.3px;
}


/* Production Capacity */

.profile-table tr:nth-last-child(3) td {
  color: var(--price);
  font-weight: 750;
}

/* ================================ MAIN SECTION ================================ */
.agr-product-detail-section {
  padding: 80px 0;
  background: var(--bg);
  overflow: hidden;
}

.agr-product-detail-wrapper {
  background: #fff;
  border-radius: 30px;
  padding: 45px;
  box-shadow: var(--shadow);
}

/* ================================ PRODUCT GALLERY ================================ */
.agr-product-gallery {
  padding-right: 25px;
}

.agr-main-product-image {
  height: 500px;
  background: linear-gradient(145deg, var(--panel-green-1), var(--panel-green-2));
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.agr-main-product-image::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  top: -100px;
  right: -80px;
}

.agr-main-product-image img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.6s ease, opacity .2s ease;
}

.agr-main-product-image:hover img {
  transform: scale(1.06);
}

/* ================================ BADGE ================================ */
.agr-product-badge {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  background: var(--primary-color);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
}

/* ================================ THUMBNAILS ================================ */
.agr-product-thumbnails {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.agr-thumb {
  width: 82px;
  height: 82px;
  padding: 5px;
  background: var(--panel-green-1);
  border: 2px solid transparent;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .35s ease;
  cursor: pointer;
}

.agr-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.agr-thumb:hover,
.agr-thumb.active {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(28, 42, 27, .10);
}

/* ================================ PRODUCT INFORMATION ================================ */
.agr-product-info {
  padding-left: 25px;
}

.agr-product-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--panel-green-1);
  color: var(--ink);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.agr-product-category span {
  width: 7px;
  height: 7px;
  background: var(--primary-color);
  border-radius: 50%;
}

.agr-product-title {
  color: var(--ink);
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 15px;
  letter-spacing: -1px;
}

.agr-product-description {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 20px;
}

/* ================================ RATING ================================ */
.agr-product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 20px;
}

.agr-stars {
  color: #E9A93A;
  font-size: 18px;
  letter-spacing: 2px;
}

.agr-rating-divider {
  color: #D6DDD1;
}

/* ================================ PRICE ================================ */
.agr-product-price {
  color: var(--price);
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 22px;
}

.agr-product-price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

/* ================================ BREADCRUMB ================================ */
.agr-breadcrumb-section {
  background: var(--ink);
  padding: 28px 0;
}

.agr-breadcrumb-title {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}

.agr-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.agr-breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
}

.agr-breadcrumb-list li:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: rgba(255, 255, 255, .4);
}

.agr-breadcrumb-list a {
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  font-weight: 600;
}

.agr-breadcrumb-list a:hover {
  color: var(--accent);
}

/* ================================ QUANTITY ================================ */
.agr-qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.agr-qty-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--panel-green-2);
  border-radius: 12px;
  overflow: hidden;
}

.agr-qty-box button {
  width: 40px;
  height: 42px;
  border: none;
  background: var(--panel-green-1);
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease;
}

.agr-qty-box button:hover {
  background: var(--panel-green-2);
}

.agr-qty-box input {
  width: 60px;
  height: 42px;
  border: none;
  text-align: center;
  font-weight: 700;
  color: var(--ink);
}

.agr-qty-box input:focus {
  outline: none;
}

.agr-stock-note {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 700;
}

/* ================================ META DETAILS ================================ */
.agr-product-meta {
  background: linear-gradient(135deg, var(--panel-green-1), var(--panel-green-2));
  padding: 18px 22px;
  border-radius: 18px;
  margin-bottom: 22px;
}

.agr-meta-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(28, 42, 27, .08);
}

.agr-meta-item:last-child {
  border-bottom: 0;
}

.agr-meta-item span {
  color: var(--muted);
  font-size: 13px;
}

.agr-meta-item strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

/* ================================ BUTTONS ================================ */
.agr-product-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.agr-enquiry-btn,
.agr-contact-btn {
  flex: 1;
  padding: 14px 22px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all .35s ease;
  border: 1px solid var(--ink);
  cursor: pointer;
}

.agr-enquiry-btn {
  background: var(--btn);
  border-color: var(--btn);
  color: #fff;
}

.agr-enquiry-btn span {
  margin-left: 8px;
  transition: transform .3s ease;
  display: inline-block;
}

.agr-enquiry-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: translateY(-3px);
}

.agr-enquiry-btn:hover span {
  transform: translateX(5px);
}

.agr-contact-btn {
  color: var(--ink);
  background: transparent;
}

.agr-contact-btn:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-3px);
}

/* ================================ TRUST POINTS ================================ */
.agr-trust-points {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.agr-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
}

.agr-trust-icon {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--panel-green-1);
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

/* ================================ DESCRIPTION + RELATED ================================ */
.agr-description-section,
.agr-related-section {
  background: #fff;
  border-radius: 30px;
  padding: 40px 45px;
  box-shadow: var(--shadow);
  margin-top: 30px;
}

.agr-section-heading {
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 12px;
}

.agr-section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
}

.agr-description-body {
  color: var(--muted);
}

.agr-related-card {
  background: var(--bg);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}

.agr-related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px -15px rgba(28, 42, 27, .25);
}

.agr-related-img {
  height: 200px;
  background: linear-gradient(145deg, var(--panel-green-1), var(--panel-green-2));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.agr-related-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.agr-related-body {
  padding: 18px 20px 22px;
}

.agr-related-title {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
  min-height: 44px;
}

.agr-related-price {
  color: var(--price);
  font-weight: 800;
  margin-bottom: 12px;
}

.agr-related-link {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 10px;
  background: var(--btn);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.agr-related-link:hover {
  background: var(--ink);
  color: #fff;
}

/* ================================ ENQUIRY MODAL ================================ */
.agr-modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.agr-modal-header {
  background: var(--ink);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.agr-modal-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.agr-modal-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: .8;
}

.agr-modal-close:hover {
  opacity: 1;
}

.agr-modal-body {
  padding: 26px;
  background: #fff;
}

.agr-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.agr-form-group {
  flex: 1 1 220px;
}

.agr-form-label {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.agr-form-input,
.agr-form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--panel-green-2);
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink);
  background: var(--bg);
}

.agr-form-input:focus,
.agr-form-textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.agr-form-textarea {
  resize: vertical;
  min-height: 90px;
}

.agr-form-static {
  padding: 11px 14px;
  border-radius: 10px;
  background: var(--panel-green-1);
  color: var(--ink);
  font-size: 14px;
}

.agr-alert {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.agr-alert-success {
  background: #E4F3DC;
  color: #2E5B1A;
}

.agr-alert-danger {
  background: #FBE3DD;
  color: #8A2A16;
}

.agr-modal-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 6px;
}

.agr-submit-btn {
  padding: 12px 26px;
  border-radius: 12px;
  border: none;
  background: var(--btn);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .3s ease;
}

.agr-submit-btn:hover {
  background: var(--ink);
}

.agr-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, .5);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  animation: agr-spin .7s linear infinite;
}

@keyframes agr-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ================================ RESPONSIVE ================================ */
@media (max-width: 991px) {
  .agr-product-detail-section {
    padding: 55px 0;
  }

  .agr-product-detail-wrapper {
    padding: 30px;
  }

  .agr-product-gallery {
    padding-right: 0;
    margin-bottom: 25px;
  }

  .agr-product-info {
    padding-left: 0;
  }

  .agr-product-title {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .agr-product-detail-wrapper {
    padding: 18px;
    border-radius: 20px;
  }

  .agr-main-product-image {
    height: 330px;
    border-radius: 20px;
  }

  .agr-product-title {
    font-size: 30px;
  }

  .agr-product-price {
    font-size: 28px;
  }

  .agr-thumb {
    width: 68px;
    height: 68px;
  }

  .agr-product-actions {
    flex-direction: column;
  }

  .agr-trust-points {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

/* =========================================
   ANIMATED ROW REVEAL
========================================= */

.profile-table tr {
  opacity: 0;

  animation:
    rowReveal 0.55s ease forwards;
}


@keyframes rowReveal {

  from {
    opacity: 0;

    transform:
      translateX(-15px);
  }

  to {
    opacity: 1;

    transform:
      translateX(0);
  }

}


/* Stagger */

.profile-table tr:nth-child(1) {
  animation-delay: 0.15s;
}

.profile-table tr:nth-child(2) {
  animation-delay: 0.20s;
}

.profile-table tr:nth-child(3) {
  animation-delay: 0.25s;
}

.profile-table tr:nth-child(4) {
  animation-delay: 0.30s;
}

.profile-table tr:nth-child(5) {
  animation-delay: 0.35s;
}

.profile-table tr:nth-child(6) {
  animation-delay: 0.40s;
}

.profile-table tr:nth-child(7) {
  animation-delay: 0.45s;
}

.profile-table tr:nth-child(8) {
  animation-delay: 0.50s;
}

.profile-table tr:nth-child(9) {
  animation-delay: 0.55s;
}

.profile-table tr:nth-child(10) {
  animation-delay: 0.60s;
}

.profile-table tr:nth-child(11) {
  animation-delay: 0.65s;
}

.profile-table tr:nth-child(12) {
  animation-delay: 0.70s;
}

.profile-table tr:nth-child(13) {
  animation-delay: 0.75s;
}

.profile-table tr:nth-child(14) {
  animation-delay: 0.80s;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

  .profile-wrapper {
    padding: 50px 15px;
  }

  .profile-header {
    padding: 32px 22px;
  }

  .profile-table {
    padding: 20px 18px 25px;
  }

  .profile-table th {
    width: 35%;

    padding: 14px;

    font-size: 13px;
  }

  .profile-table td {
    padding: 14px;

    font-size: 13px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

  .profile-wrapper {
    padding: 35px 10px;
  }

  .profile-card {
    border-radius: 18px;
  }

  .profile-header {
    padding: 28px 18px;
  }

  .profile-header h1 {
    font-size: 27px;
  }

  .profile-header p {
    font-size: 14px;
  }

  .profile-table {
    padding: 15px 10px 20px;

    overflow-x: visible;
  }

  .profile-table table {
    border-spacing: 0 7px;
  }

  .profile-table tr {
    display: flex;

    flex-direction: column;

    margin-bottom: 10px;
  }

  .profile-table th {
    width: 100%;

    display: block;

    padding: 10px 14px;

    border-left: 4px solid var(--btn);

    border-radius: 9px 9px 0 0;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 0.4px;
  }

  .profile-table td {
    width: 100%;

    display: block;

    padding: 12px 14px;

    border-radius: 0 0 9px 9px;

    border: 1px solid rgba(28, 42, 27, 0.05);

    border-top: none;

    font-size: 13px;

    word-break: break-word;
  }

  .profile-table tr:hover {
    transform: translateY(-2px);
  }

}


/* =========================================
   VERY SMALL DEVICES
========================================= */

@media (max-width: 380px) {

  .profile-header h1 {
    font-size: 24px;
  }

  .profile-table th,
  .profile-table td {
    padding: 11px 12px;
  }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  .profile-card,
  .profile-table tr,
  .profile-wrapper::before,
  .profile-wrapper::after {
    animation: none !important;
  }

}

/* about page */

/* contact us */
/* =========================================================
   CONTACT SECTION - PREMIUM ANIMATED
========================================================= */




/* =========================================================
 MAIN SECTION
========================================================= */

.contact-page-sec {
  position: relative;

  padding: 90px 0;

  background:
    radial-gradient(circle at 5% 15%,
      rgba(134, 191, 62, 0.13),
      transparent 25%),
    radial-gradient(circle at 95% 80%,
      rgba(211, 228, 196, 0.55),
      transparent 28%),
    var(--bg);

  overflow: hidden;
}


/* Decorative floating blob */

.contact-page-sec::before {
  content: "";

  position: absolute;

  width: 320px;
  height: 320px;

  top: -170px;
  right: -100px;

  border-radius: 50%;

  background: var(--panel-green-2);

  opacity: 0.5;

  animation:
    contactBlob 9s ease-in-out infinite;
}


.contact-page-sec::after {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  bottom: -120px;
  left: -80px;

  border-radius: 50%;

  background: var(--btn);

  opacity: 0.07;

  animation:
    contactBlob 11s ease-in-out infinite reverse;
}


@keyframes contactBlob {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(25px, -20px) scale(1.1);
  }

}


/* =========================================================
 CONTACT INFO CARDS
========================================================= */

.contact-page-sec .col-md-4 {
  position: relative;
  z-index: 2;
}

.contact-info {
  height: 100%;
}

.contact-info-item {
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px 25px;
  margin-bottom: 25px;
  border-radius: 20px;
  background:
    linear-gradient(145deg,
      #1b222a,
      #064a83);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  box-shadow:
    0 15px 35px rgba(28, 42, 27, 0.16);
  transition:
    transform 0.45s cubic-bezier(.2, .8, .2, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

/* Glow inside card */

.contact-info-item::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -65px;
  top: -65px;
  border-radius: 50%;
  background:
    rgba(222, 223, 222, 0.16);
  transition:
    transform 0.5s ease;
}

.contact-info-item::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  left: -45px;
  bottom: -45px;
  border-radius: 50%;
  background:
    rgba(255, 255, 255, 0.04);
}

/* Hover */
.contact-info-item:hover {
  transform: translateY(-9px);
  border-color:
    rgba(134, 191, 62, 0.35);
  box-shadow:
    0 25px 50px rgba(28, 42, 27, 0.24);
}

.contact-info-item:hover::before {
  transform: scale(1.5);
}

/* =========================================================
 CONTACT ICON
========================================================= */

.contact-info-icon {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--primary-color);
  color: var(--ink);
  font-size: 22px;
  box-shadow:
    0 10px 25px rgba(134, 191, 62, 0.20);
  animation:
    contactIconFloat 4s ease-in-out infinite;
  transition:
    transform 0.4s ease,
    border-radius 0.4s ease;
}

.contact-info-item:hover .contact-info-icon {
  transform:
    rotate(-8deg) scale(1.1);
  border-radius: 50%;
}

@keyframes contactIconFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* =========================================================
 CONTACT TEXT
========================================================= */

.contact-info-text {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
}

.contact-info-text h2 {
  margin: 0 0 8px;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: 0.3px;
}

.contact-info-text h5 {
  margin: 0 0 7px;
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
}

.contact-info-text span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.65;
  word-break: break-word;
  transition:
    color 0.3s ease;
}

.contact-info-item:hover .contact-info-text span {
  color: rgba(255, 255, 255, 0.9);
}

/* =========================================================
 FORM
========================================================= */

.contact-page-form {
  position: relative;
  z-index: 2;
  padding: 40px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(28, 42, 27, 0.07);
  box-shadow:
    var(--shadow);

  overflow: hidden;
}

/* Form top accent */

.contact-page-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background:
    linear-gradient(90deg,
      var(--primary-color),
      var(--panel-green-2),
      var(--primary-color));
  background-size: 200% 100%;
  animation:
    gradientMove 4s linear infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

/* Form heading */
.contact-page-form h2 {
  margin: 0 0 30px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.contact-page-form h2::after {
  content: "";
  display: block;
  width: 45px;
  height: 4px;
  margin-top: 10px;
  border-radius: 20px;
  background: var(--btn);
}

/* =========================================================
 INPUTS
========================================================= */

.single-input-field {
  position: relative;
  margin-bottom: 20px;
}

.single-input-field input,
.single-input-field textarea {
  width: 100%;
  padding: 15px 17px;
  border: 1px solid #e1e7dc;
  border-radius: 11px;
  background: #fafcf8;
  color: var(--ink);
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.single-input-field input {
  height: 52px;
}

.single-input-field textarea {
  min-height: 150px;

  resize: vertical;
}

/* Placeholder */

.single-input-field input::placeholder,
.single-input-field textarea::placeholder {
  color: #9ba398;
  transition:
    color 0.3s ease;
}

/* Focus */

.single-input-field input:focus,
.single-input-field textarea:focus {
  border-color: var(--primary-color);
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(134, 191, 62, 0.12),
    0 10px 25px rgba(28, 42, 27, 0.06);
  transform: translateY(-2px);
}

.single-input-field input:focus::placeholder,
.single-input-field textarea:focus::placeholder {
  color: #b4bbb0;
}

/* =========================================================
 MESSAGE
========================================================= */

.message-input {
  margin-top: 2px;
}


/* =========================================================
 SUBMIT BUTTON
========================================================= */

.single-input-fieldsbtn {
  margin-top: 5px;
}

.single-input-fieldsbtn .main-btn {
  position: relative;
  min-width: 145px;
  padding: 13px 28px;
  border: 0;
  border-radius: 11px;
  background: var(--btn);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-transform: capitalize;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    0 10px 25px rgba(134, 191, 62, 0.22);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.single-input-fieldsbtn .main-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transform: skewX(-20deg);
  transition:
    left 0.6s ease;
}

.single-input-fieldsbtn .main-btn:hover {
  transform: translateY(-4px);
  background: var(--ink);
  color: #fff;
  box-shadow:
    0 16px 30px rgba(28, 42, 27, 0.20);
}

.single-input-fieldsbtn .main-btn:hover::before {
  left: 140%;
}

/* =========================================================
 RIGHT IMAGE
========================================================= */

.contact-page-map {
  position: relative;

  height: 100%;

  min-height: 430px;

  border-radius: 22px;

  overflow: hidden;

  background: var(--panel-green-1);

  box-shadow:
    var(--shadow);
}


/* Image */

.contact-page-map img {
  width: 100%;
  height: 100%;

  min-height: 430px;

  display: block;

  object-fit: cover;

  transition:
    transform 0.8s cubic-bezier(.2, .8, .2, 1),
    filter 0.6s ease;
}


/* Image overlay */

.contact-page-map::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 1;

  background:
    linear-gradient(180deg,
      rgba(28, 42, 27, 0.05),
      rgba(28, 42, 27, 0.45));

  pointer-events: none;

  transition:
    opacity 0.4s ease;
}


.contact-page-map:hover img {
  transform: scale(1.07);

  filter: brightness(0.88);
}


.contact-page-map:hover::before {
  opacity: 0.7;
}


/* =========================================================
 SCROLL / ENTRY ANIMATION
========================================================= */

.contact-page-sec .contact-info-item,
.contact-page-sec .contact-page-form,
.contact-page-sec .contact-page-map {
  will-change: transform, opacity;
}


/* =========================================================
 RESPONSIVE
========================================================= */

@media (max-width: 991px) {

  .contact-page-sec {
    padding: 70px 0;
  }

  .contact-info-item {
    padding: 24px 18px;
  }

  .contact-info-icon {
    width: 52px;
    height: 52px;

    font-size: 19px;
  }

  .contact-page-form {
    padding: 30px;
  }

  .contact-page-map {
    min-height: 380px;
  }

  .contact-page-map img {
    min-height: 380px;
  }

}


@media (max-width: 767px) {

  .contact-page-sec {
    padding: 55px 0;
  }

  .contact-info-item {
    min-height: auto;

    margin-bottom: 18px;

    padding: 22px 18px;
  }

  .contact-page-form {
    margin-top: 10px;

    padding: 27px 20px;

    border-radius: 18px;
  }

  .contact-page-form h2 {
    font-size: 26px;
  }

  .contact-page-map {
    min-height: 300px;

    margin-top: 25px;

    border-radius: 18px;
  }

  .contact-page-map img {
    min-height: 300px;
  }

}


@media (max-width: 480px) {

  .contact-info-item {
    gap: 14px;
  }

  .contact-info-icon {
    width: 48px;
    height: 48px;

    border-radius: 13px;

    font-size: 17px;
  }

  .contact-info-text h2 {
    font-size: 16px;
  }


  .contact-page-form {
    padding: 25px 16px;
  }

  .single-input-field input {
    height: 49px;
  }

  .single-input-field textarea {
    min-height: 130px;
  }

}


/* =========================================================
 REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .contact-page-sec::before,
  .contact-page-sec::after,
  .contact-info-icon,
  .contact-page-form::before {
    animation: none !important;
  }

  .contact-info-item,
  .contact-page-map img,
  .single-input-field input,
  .single-input-field textarea,
  .single-input-fieldsbtn .main-btn {
    transition: none !important;
  }

}

/* contact us */















/* footer */


.footer-section {
  position: relative;

  background:
    radial-gradient(circle at 10% 20%,
      rgba(134, 191, 62, 0.12),
      transparent 28%),
    radial-gradient(circle at 90% 80%,
      rgba(134, 191, 62, 0.08),
      transparent 30%),
    #072142;

  color: #fff;

  overflow: hidden;

  padding-top: 0;
}


/* Decorative glow */

.footer-section::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  top: -220px;
  right: -150px;

  background: rgba(136, 138, 135, 0.1);

  border-radius: 50%;

  filter: blur(5px);

  animation: footerGlow 8s ease-in-out infinite;
}

.footer-section::after {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  bottom: -180px;
  left: -120px;

  background: rgba(196, 196, 196, 0.08);

  border-radius: 50%;

  animation: footerGlow 10s ease-in-out infinite reverse;
}


@keyframes footerGlow {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(25px, 20px) scale(1.12);
  }

}



.footer-cta {
  position: relative;

  z-index: 2;

  padding-top: 65px !important;
  padding-bottom: 55px !important;

  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}




.single-cta {
  position: relative;

  min-height: 90px;

  display: flex;

  align-items: center;

  gap: 18px;

  padding: 20px 25px;

  border-radius: 16px;

  background:
    rgba(255, 255, 255, 0.045);

  border: 1px solid rgba(255, 255, 255, 0.07);

  backdrop-filter: blur(10px);

  transition:
    transform 0.4s ease,
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}


.single-cta:hover {
  transform: translateY(-7px);

  background:
    rgba(134, 191, 62, 0.10);

  border-color:
    rgba(134, 191, 62, 0.35);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18);
}


/* CTA Icon */

.single-cta>i {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--primary-color);
  color: var(--ink);
  font-size: 20px;
  box-shadow:
    0 10px 25px rgba(134, 191, 62, 0.20);
  transition:
    transform 0.4s ease,
    border-radius 0.4s ease;
}


.single-cta:hover>i {
  transform:
    rotate(-8deg) scale(1.08);

  border-radius: 50%;
}


/* CTA Text */

.cta-text {
  min-width: 0;
}


.cta-text h4 {
  margin: 0 0 7px;

  color: #fff;

  font-size: 17px;

  font-weight: 700;
}


.cta-text span {
  display: inline;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.6;
  word-break: break-word;
}



.footer-content {
  position: relative;

  z-index: 2;

  padding-top: 65px !important;
  padding-bottom: 55px !important;
}




.footer-logo {
  margin-bottom: 25px;
}


.footer-logo img {
  height: 100px;
  border-radius: 16px;
  object-fit: contain;
  background-color: var(--bg);

  transition: transform 0.4s ease, filter 0.4s ease;
}


.footer-logo img:hover {
  transform: translateY(-4px) scale(1.03);

  filter:
    drop-shadow(0 8px 18px rgba(134, 191, 62, 0.22));
}



.footer-text {
  max-width: 430px;
}


.footer-text p {
  margin-bottom: 25px;

  color: rgba(255, 255, 255, 0.58);

  font-size: 14px;

  line-height: 1.8;
}

.footer-social-icon {
  margin-top: 20px;
}


.footer-social-icon span {
  display: block;

  margin-bottom: 13px;

  color: #fff;

  font-size: 14px;

  font-weight: 700;
}


.footer-social-icon a {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  margin-right: 7px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.07);

  color: rgba(255, 255, 255, 0.75);

  font-size: 14px;

  text-decoration: none;

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}


.footer-social-icon a:hover {
  transform:
    translateY(-6px) rotate(5deg);
  background: var(--btn);
  color: var(--ink);
  border-color: var(--btn);
  box-shadow:
    0 10px 20px rgba(134, 191, 62, 0.22);
}

.footer-widget-heading {
  margin-bottom: 25px;
}

.footer-widget-heading h3 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 750;
}

/* Animated underline */
.footer-widget-heading h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  border-radius: 20px;
  background: var(--primary-color);
  transition:
    width 0.4s ease;
}

.footer-widget:hover .footer-widget-heading h3::after {
  width: 75px;
}

.footer-widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}

.footer-widget ul li {
  margin-bottom: 12px;
  transform: translateX(0);
  transition:
    transform 0.3s ease;
}

.footer-widget ul li:hover {
  transform: translateX(6px);
}

.footer-widget ul li a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  text-decoration: none;
  transition:
    color 0.3s ease;
}

.footer-widget ul li a::before {
  content: "→";
  margin-right: 7px;
  color: var(--primary-color);
  opacity: 0;
  transform: translateX(-7px);
  display: inline-block;
  transition:
    all 0.3s ease;
}

.footer-widget ul li a:hover {
  color: #fff;
}

.footer-widget ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footmap {
  position: relative;
  overflow: hidden;
  height: 320px;
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: var(--panel-green-1);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.20);
}

.footmap iframe {
  width: 100% !important;

  height: 100% !important;

  display: block;

  border: 0 !important;

  filter:
    grayscale(25%) contrast(95%);

  transition:
    filter 0.5s ease,
    transform 0.5s ease;
}


.footmap:hover iframe {
  filter:
    grayscale(0%) contrast(100%);

  transform: scale(1.02);
}


.copyright-area {
  position: relative;

  z-index: 3;

  background:
    rgba(0, 0, 0, 0.18);

  border-top:
    1px solid rgba(255, 255, 255, 0.08);
}


.copyright-text {
  padding: 22px 0;
}


.copyright-text p {
  margin: 0;

  color: rgba(255, 255, 255, 0.45);

  font-size: 12px;

  line-height: 1.7;

  text-align: center;
}


.copyright-text a {
  color: rgba(255, 255, 255, 0.75);

  font-weight: 600;

  text-decoration: none;

  transition:
    color 0.3s ease;
}


.copyright-text a:hover {
  color: var(--btn);
}

.footer-section .single-cta,
.footer-section .footer-widget {
  animation:
    footerReveal 0.8s cubic-bezier(.2, .8, .2, 1) both;
}


.footer-section .single-cta:nth-child(1) {
  animation-delay: 0.1s;
}

.footer-section .single-cta:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-section .single-cta:nth-child(3) {
  animation-delay: 0.3s;
}


@keyframes footerReveal {

  from {
    opacity: 0;

    transform:
      translateY(35px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0);
  }

}

@media (max-width: 991px) {

  .footer-cta {
    padding-top: 50px !important;
  }

  .single-cta {
    padding: 18px;
  }

  .single-cta>i {
    width: 48px;
    height: 48px;

    font-size: 18px;
  }

  .cta-text h4 {
    font-size: 15px;
  }

  .cta-text span {
    font-size: 12px;
  }

  .footer-content {
    padding-top: 50px !important;
  }

  .footmap {
    height: 300px;
  }

}

@media (max-width: 767px) {

  .footer-section {
    text-align: left;
  }

  .footer-cta {
    padding-top: 40px !important;
    padding-bottom: 35px !important;
  }

  .single-cta {
    min-height: auto;

    padding: 18px;

    margin-bottom: 0;
  }

  .single-cta>i {
    width: 48px;
    height: 48px;

    font-size: 17px;
  }

  .footer-content {
    padding-top: 45px !important;
    padding-bottom: 35px !important;
  }

  .footer-widget {
    margin-bottom: 35px;
  }

  .footer-logo img {
    max-width: 165px;
  }

  .footer-widget ul {
    grid-template-columns: 1fr 1fr;
  }

  .footmap {
    height: 280px;
  }

  .copyright-text {
    padding: 18px 15px;
  }

  .copyright-text p {
    font-size: 11px;
  }

}


@media (max-width: 400px) {

  .single-cta {
    align-items: flex-start;
  }

  .single-cta>i {
    width: 44px;
    height: 44px;
  }

  .footer-widget ul {
    grid-template-columns: 1fr;
  }

  .footmap {
    height: 250px;
  }

}

@media (prefers-reduced-motion: reduce) {

  .footer-section *,
  .footer-section::before,
  .footer-section::after {
    animation: none !important;

    transition: none !important;
  }

}

/* footer */