/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0
Description: Child theme for Hello Elementor
Author: Your Name
*/

@import url("../hello-elementor/style.css");


:root {
  --header-dark: #07140b;
  --brand-green: #658C11;
  --mint-bg: #e8f8ef;
  --orange: #ff6224;
  --soft: #f6f9f8;
  --card-shadow: 0 8px 28px rgba(10, 35, 20, 0.06);
}
* {
  box-sizing: border-box;
}
h1{
    font-size: calc(3rem + 0.5vw);
    font-weight: 600;
}
h2{
    font-size: calc(2.7rem + 0.5vw);
    font-weight: 600;
}
h3{
    font-size: calc(2.4rem + 0.5vw);
    font-weight: 600;
}
h4{
    font-size: calc(2.1rem + 0.5vw);
    font-weight: 600;
}
h5{
    font-size: calc(1.8rem + 0.5vw);
    font-weight: 600;
}
body {
  font-family: "Manrope", system-ui, Segoe UI, Roboto, Arial;
  background: var(--soft);
  margin: 0;
  color: #10221a;
  width:100%;
  max-width: 100%;
  overflow-x: hidden;
}
.navbar-expand-lg .navbar-nav .nav-link{
  padding: 0.3rem 1rem;
  transition: all 0.3s ease-in-out;
}
.navbar-expand-lg .navbar-nav .nav-link:hover{
    color: var(--orange);
}

@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link{
  padding: 10px 16px;
  transition: all 0.3s ease-in-out;
}
}

.prim-btn
{
  background: var(--orange);
  border-radius: 26px;
  padding: 8px 16px;
  color: #fff;
  font-weight: 700;
}
.prim-btn:hover{
    color:#fff;
    background: #e6551f;
}
.brd-btn
{
  background: transparent;
  border-radius: 26px;
  border:1px solid var(--orange);
  padding: 8px 16px;
  color: #fff;
  font-weight: 700;
}
.brd-btn:hover{
    background: var(--orange);
    color:#fff;
    border-color: var(--orange);
}
/* Header */
.site-header {
  position: relative;
  z-index: 1000;
}
/* .navbar-custom {
 position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 0;
 background: #071307;
background: linear-gradient(180deg, rgba(7, 19, 7, 1) 0%, rgba(7, 19, 7, 0.83) 46%, rgba(7, 19, 7, 0) 100%);
  transition: background 250ms ease, padding 200ms ease;
} */

.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* padding: 20px 0; */
    /* background: #071307; */
    background: linear-gradient(180deg, rgba(7, 19, 7, 1) 0%, rgba(7, 19, 7, 0.83) 46%, rgba(7, 19, 7, 0) 100%);
    transition: background 250ms ease, padding 200ms ease;
    background: rgb(0 0 0 / 36%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.12); */
}

/* .navbar-custom.nav-scrolled {
  background: #071307;
background: linear-gradient(180deg, rgba(7, 19, 7, 1) 0%, rgba(7, 19, 7, 1) 46%, rgba(7, 19, 7, 1) 100%);
  box-shadow: 0 6px 18px rgba(4, 10, 6, 0.25);
} */

.navbar-custom.nav-scrolled {
  background: linear-gradient(180deg, rgba(7, 19, 7, 1) 0%, rgba(7, 19, 7, 0.83) 46%, rgba(7, 19, 7, 0) 100%);
  transition: background 250ms ease, padding 200ms ease;
  background: rgb(0 0 0 / 65%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.navbar-brand img {
  /*height: 80px;*/
  /*filter: brightness(2.0);*/
  width:100px;
}
.nav-link {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}
.btn-quote a {
  background: var(--orange)!important;
  border-radius: 26px!important;
  padding: 8px 16px!important;
  color: #fff!important;
  font-weight: 600!important;
  text-decoration: none!important;
}
.dropdown-menu {
  border-radius: 10px;
  border: 0;
  box-shadow: 0 8px 26px rgba(10, 30, 16, 0.12);
}
.dropdown-item {
  font-weight: 600;
  color: #28412f;
}

/* HERO SLIDER */
.hero-slider .owl-nav {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
}
.hero-slider .owl-nav button {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  border: 0;
  padding: 8px 10px;
  margin-left: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.hero-slider .owl-nav button:hover {
  transform: translateY(-2px);
}

.hero-slide {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 12, 8, 0.6) 0%,
    rgba(7, 12, 8, 0.06) 60%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 5;
  padding-top: 190px;
  padding-bottom: 60px;
}
.hero-title {
  font-weight: 800;
  font-size: 46px;
  line-height: 1.02;
  color: #fff;
  margin: 0;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.95);
  max-width: 640px;
}
.hero-cta {
  background: var(--mint-bg);
  color: var(--brand-green);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-block;
  margin-top: 16px;
  text-decoration: none;
}

/* angled white shape under hero (kept same) */
/* .hero-shape {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -200px;
  height: 220px;
  background: #fff;
  transform: skewY(-2deg);
  transform-origin: left;
  z-index: 40;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
} */

/* features */
.features-wrap {
  z-index: 50;
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
}
.feature-card {
  background: #fff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all 0.3s ease-in-out;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(10, 35, 20, 0.12);
}
.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card h6{
    font-weight: 700;
    margin-bottom: 6px;
}

/* About panel */
.about-panel {
  background: linear-gradient(180deg, var(--mint-bg), #f7fff9);
  padding: 28px;
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  display: flex;
  gap: 20px;
}
.about-text{
    flex: 1.5;
}
.about-img {
  flex: 1;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.about-img img{
   width:100%;
   height:100%;
   object-fit:cover;
   object-position:center;
}

.badge-years {
    max-width: 150px!important;
  position: relative;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(12, 40, 20, 0.06);
  font-weight: 800;
  display: inline-block;
  margin-top: 12px;
  position: absolute;
  bottom: 16px;
  left: 16px;
}
.badge-years span{
   font-weight:700;
  font-size:2.5rem;
  color: var(--brand-green);
}

/* Products carousel */
.products-section {
  padding: 64px 0;
  position:relative;
}
.products-section-bg{
    position:absolute;
    top:0;
    left:0;
    right:0;
    background: #063309;
    width: 100%;
    height: 300px;
    z-index:-1;
}
.products-slider{
    margin-top: 40px;
}
.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 0px 0px 00px;
  text-align: center;
  box-shadow: var(--card-shadow);
  min-height: 240px;
  display: flex;
  flex-direction:column;
  justify-content: space-between;
}
.product-card img {
  max-width: 100%;
  height: auto;
}
.products-section h4{
    color: #ffff;
}
.prod-badge {
  display: inline-block;
  margin-top: 12px;
  background: var(--orange);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  font-weight: 700;
  padding: 15px 10px;
  color: #fff;
}
.owl-slider-wr{
    position: relative;
}
.prod-left{
  width: 50px;
  height: 50px;
  background-color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  z-index: 99;
  padding: 1rem;
  cursor: pointer;
}
.prod-right{
  width: 50px;
  height: 50px;
  background-color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  z-index: 99;
  padding: 1rem;
  cursor: pointer;
}
.hero-left{
  width: 50px;
  height: 50px;
  background-color: transparent;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 65%;
  right: 60px;
  transform: translateY(-50%);
  z-index: 99;
  padding: 1rem;
  cursor: pointer;
}
.hero-right{
  width: 50px;
  height: 50px;
  background-color: transparent;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 75%;
  right: 60px;
  transform: translateY(-50%);
  z-index: 99;
  padding: 1rem;
  cursor: pointer;
}
.hero-left img, .hero-right img{
  width: 28px;
  object-fit: contain;
}
.since-logo img {
    width: 10%;
    height: auto;
    filter: drop-shadow(2px 4px 6px black);
}

.since-logo {
    position: absolute;
    z-index: 9;
    display: flex;
    width: 100%;
    top: 15%;
    height: auto;
    justify-content: flex-end;
    align-items: flex-end;
    filter: brightness(1.3);
}
.prod-right img, .prod-left img{
  width: 24px;
  object-fit: contain;
}
.card-ico{
  max-width: 80px;
  margin-bottom: 15px;
}
/* Why choose */
.why-grid .card {
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  padding: 34px;
  min-height: 300px;
  transition: all 0.3s ease-in-out;
}
.why-grid .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(10, 35, 20, 0.12);
}
.card-body h6{
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

/* Brands slider */
.brands-section {
  background: var(--brand-green);
  color: #fff;
  padding: 36px 0;
}
.brands-slider .item {
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
  border-radius: 10px;
  min-width: 120px;
  text-align: center;
}
.brands-slider .item img {
  max-height: 65px;
  height: auto;
  object-fit: cover;
}

/* Footer */
footer {
  padding: 36px 36px 0px 36px;
  background: #fff;
  border-top: 6px solid #f1f7f4;
}
footer h6{
    font-weight: 700;
    margin-bottom: 12px;
}
footer ul li{
    margin-bottom: 8px;
}
.footer-logo{
    height: 90px;
    margin-bottom: 12px;
}
footer ul li a{
  color:rgba(33, 37, 41, 0.75);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
footer ul li a:hover{
    color: var(--orange);
}
.sing-row{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.sing-row img{
  margin-right: 5px;
}
.sing-row a{
  text-decoration: none;
  color: rgba(33, 37, 41, 0.75);
}
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 9999;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}
.ctc-analytics::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: whatsapp-pulse 2.5s infinite;
  z-index: -1;
}
.whatsapp-float::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: whatsapp-pulse 2.5s infinite;
  z-index: -1;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}
.cpright{
  border-top: 1px solid #e4e4e4;
  padding: 10px 0px;
}



/* Pulse animation */
@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 34px;
  }
  .hero-slide {
    min-height: 420px;
  }
}
@media (max-width: 700px) {
  .hero-title {
    font-size: 26px;
  }
  .features-wrap {
    transform: none;
  }
  .about-panel {
    flex-direction: column;
  }
  .about-img {
    width: 100%;
  }
  .hero-slider .owl-nav {
    right: 14px;
  }
  .navbar-brand img{
    /*height: 60px;*/
    width:90px!important;
  }
  .hero-left, .hero-right{
    display: none;
  }
  h1{
    font-size: calc(2.1rem + 0.5vw);
    font-weight: 600;
}
    h2{
        font-size: calc(1.7rem + 0.5vw);
        font-weight: 600;
    }
    h3{
        font-size: calc(1.5rem + 0.5vw);
        font-weight: 600;
    }
    h4{
        font-size: calc(1.3rem + 0.5vw);
        font-weight: 600;
    }
    h5{
        font-size: calc(1rem + 0.5vw);
        font-weight: 600;
    }
    .about-img{
      margin-top: 15px;
    }
    .brd-btn{
      padding: 6px 12px;
      font-weight: 600;
      line-height: 1rem;
    }
    .prod-left, .prod-right{
      display: none;
    }
    footer{
      padding: 24px 18px 0px 18px;
    }
}


/* -------------- */


.inner-banner {
    height: 460px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.inner-banner .inner-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.8)
    ); */

    background: linear-gradient(to bottom, rgb(0 0 0 / 25%), rgba(0, 0, 0, 0.8));

    display: flex;
    align-items: center;
}


.inner-banner .inner-content {
    margin: 0 auto;
    padding: 0 24px;
    color: #fff;
    text-align: center;
    margin-top: 70px;
}

.inner-banner .inner-content h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 18px;
}

.inner-banner .inner-content p {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 22px;
}

.inner-banner nav.cus-breadcrumb {
    background: white;
    width: fit-content;
    margin: 0 auto;
    padding: 8px 18px;
    border-radius: 5px;
}

.inner-banner nav.cus-breadcrumb a {
  color: #0fbb2d;
  text-decoration: none;
  font-weight: 600;
}
.inner-banner nav.cus-breadcrumb  {
  color: #0fbb2d;
  text-decoration: none;
  font-weight: 600;
}

.inner-banner nav.cus-breadcrumb span.divider {
  color: #0fbb2d;
  font-size: 20px;
  font-weight: 600;
}


@media (max-width: 768px) {
    .inner-banner {
        height: 380px;
    }

    .inner-banner .inner-content h1 {
        font-size: 32px;
    }

    .inner-banner .inner-content p {
        font-size: 15px;
    }
}

.footer-socialmedia {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.footer-socialmedia a.social-icon {
    font-size: 15px;
    color: #ffffff;
    line-height: 0;
    background: green;
    /* padding: 6px; */
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 5px;
}

section.why-choose-sec h4 {
    font-size: 35px;
    font-weight: 700;
    color: #658c11;
}

@media (max-width: 768px) {

  section.why-choose-sec h4 {
      font-size: 25px;  
  }
  
}

.cust-products-section {
  background: #f8f9fa;
  margin: 100px auto;
}

.cust-product-aside {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.cust-aside-title {
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 22px;
}

.cust-aside-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cust-aside-menu li {
  margin-bottom: 10px;
}

.cust-aside-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 5px;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cust-aside-menu li.active a,
.cust-aside-menu a:hover {
  background: #0f7d50;
  color: #fff;
}

.cust-product-card {
  background: #e8f8ef;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  /* box-shadow: 0 12px 30px rgba(0,0,0,0.06); */
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(15, 23, 42, 0.04);
  transition: all 0.35s ease;
}

.cust-product-card:hover {
  transform: translateY(-6px);
}

.cust-product-img {
  height: 220px;
  overflow: hidden;
}

.cust-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cust-product-info {
  padding: 18px 15px;
}

.cust-product-info h6 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.cust-product-info p {
  font-size: 14px;
  color: #000000;
  margin-bottom: 14px;
}

.cust-btn-view {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 5px;
  background: #0f7d50;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.cust-btn-view:hover {
  background: #0c5f3d;
  color:white;
}

@media (max-width: 991px) {
  .cust-products-section {
    background: #f8f9fa;
    margin: 50px auto;
}
}

section.akp-main-pro {
    margin: 100px auto;
}

@media (max-width: 991px) {
  section.akp-main-pro {
    margin: 50px auto;
}
}

.akp-sp-wrapper{
  background:#fff;
  border-radius:10px;
  padding:30px;
  box-shadow:0 15px 35px rgba(0,0,0,.08);
}

@media (max-width: 991px) {
  .akp-sp-wrapper{
  padding:30px 20px;
}
}


.akp-sp-img img{
  width:100%;
  border-radius:14px;
  object-fit:cover;
}


.akp-img-zoom {
  overflow: hidden;
  border-radius: 14px;
  cursor: zoom-in;
}

.akp-img-zoom img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.akp-img-zoom:hover img {
  transform: scale(1.10);
}



.akp-sp-name{
  font-size:28px;
  font-weight:800;
  color: green;
}
.akp-sp-desc{
  /* color:#666; */
  margin-top:10px;
}
.akp-sp-list{
  padding-left:18px;
  margin-top:15px;
}
.akp-sp-list li{
  margin-bottom:6px;
}


.akp-sp-actions{
  margin-top:25px;
}
.akp-sp-btn{
  display:inline-block;
  padding:10px 25px;
  background:#0a7c3a;
  color:#fff;
  font-weight:600;
  border-radius:5px;
  text-decoration:none;
  transition:.3s;
}
.akp-sp-btn:hover{
  background:#08662f;
}


.akp-sp-spec{
  margin-top:40px;
}

.akp-sp-spec h4 {
  font-size: 25px;
}

.akp-sp-spec table{
  width:100%;
}
.akp-sp-spec th{
  width:35%;
  background:#f1f1f1;
}

@media (max-width: 991px) {
  .akp-sp-spec th{
  width:auto;
}
}

.navbar-toggler:focus {
    /* border: none; */
    box-shadow: none;
}

.navbar-toggler{
  border: none;
}

@media (max-width: 991px) {
.navbar-collapse {
    margin: 15px 0;
}
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.product-card img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* Hover effect only on image */
.product-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.9);
}

.product-card img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card img:hover::after {
  opacity: 1;
}


/* -------- */

.contact-section {
  background: #f7fff9;
}

.contact-info-box {
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.contact-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.contact-info-box h4,
.contact-form-box h4 {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 30px;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.contact-info-item i {
  font-size: 20px;
  color: #0c5b3c;
  margin-top: 4px;
}

.contact-info-item a {
  color: #333;
  text-decoration: none;
}

.contact-social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0c5b3c;
  color: #fff;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: 0.3s;
}

.contact-social a:hover {
  background: #083f29;
}

.contact-form-box .form-control {
  border-radius: 8px!important;
  padding: 12px 14px!important;
}

.btn-submit {
  background: #0c5b3c!important;
  color: #fff!important;
  border: none!important;
  padding: 12px 30px!important;
  border-radius: 50px!important;
  font-weight: 600!important;
  transition: 0.3s!important;
}

.btn-submit:hover {
  background: #083f29;
}

/* .map-section iframe {
  filter: grayscale(0.2);
} */

/* section.map-section {
    background: #f7fff9;
}

section.map-section .map-box {
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: 20px;
}

section.map-section .map-box h6 {
    font-size: 25px;
    font-weight: 600;
    color: #0c5b3c;
    margin-bottom: 15px;
} */


.map-section {
    padding: 60px 0;
    background: #f6f9f8;
}

.map-section .map-box {
    padding: 25px 20px 10px 20px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-section .map-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}


.map-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.map-title i {
    font-size: 22px;
    color: #0c5b3c;
    background: rgba(12, 91, 60, 0.1);
    padding: 12px;
    border-radius: 12px;
}

.map-section .map-box h6 {
    font-size: 22px;
    font-weight: 600;
    color: #0c5b3c;
    margin: 0;
}


.map-section iframe {
    border-radius: 14px;
    width: 100%;
    filter: grayscale(10%);
}



.team-section {
  background: #f7fff9;
}

.team-section h4 {
  font-weight: 700;
  color: #658c11;
  margin-bottom: 10px;
  font-size: 35px;
}

.team-section p {
  color: black;
  max-width: 600px;
  margin: auto;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .team-card img {
   object-position: top;
  }
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.team-info {
  padding: 20px;
  background: linear-gradient(120deg, #1b4332, #2d6a4f, #40916c);
}

.team-info h6 {
  margin-bottom: 4px;
  font-weight: 800;
  color: white;
  font-size: 18px;
}

.team-info span {
  font-size: 14px;
  color: white;
  font-weight: 600;
}

.form-control:focus {
    border-color: rgb(12 91 60 / 38%);
    outline: 0;
    box-shadow: 0 0 0 2px rgb(12 91 60 / 38%);
}

.org-chart {
        background: white;
    }
    .org-chart h6 {
        text-align: center;
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 20px;
        color: #658c11;
    }



    @media (max-width: 768px) {
    .org-chart h6 {
        font-size: 25px;
    }
}


 .service-inn-box {
      background: linear-gradient(180deg, var(--mint-bg), #f7fff9);
      padding: 28px;
      border-radius: 14px;
      box-shadow: var(--card-shadow);
    }

    .service-inn-box h4 {
        font-size: 35px;
        color: #658c11;
    }

  .service-cont-form {
    position: relative;
    background: linear-gradient(to right, rgb(0 0 0 / 57%), rgb(0 0 0 / 27%)), url(./img/bg-generator.jpg) top / cover no-repeat;
    padding: 60px 0;
    }

    .service-cont-form .contact-form-box {
        background: #ffffffb5;
        padding: 60px 40px;
    }

   .service-cont-form .contact-form-box h4 {
        margin-bottom: 30px;
        font-weight: 700;
        color: #0c5b3c;
    }
.contact-departments.premium-box {
      background: #f3f6f5;
    }

.dept-card {
  position: relative;
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dept-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}


.dept-bg {
  position: absolute;
  bottom: 0px;
  right: 0px;
  font-size: 65px;
  font-weight: 900;
  letter-spacing: 5px;
  color: rgba(15,125,80,0.1);
  pointer-events: none;
}


.dept-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.dept-header h5 {
  font-size: 20px;
  font-weight: 800;
  margin: 0;
  color: #111;
}


.dept-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0f7d50, #0c5b3c);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dept-icon i {
  color: #fff;
  font-size: 20px;
}


.dept-info p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.dept-info i {
  color: #0f7d50;
  font-size: 17px;
}

.dept-info a {
  color: #0f7d50;
  text-decoration: none;
}

.dept-info a:hover {
  text-decoration: underline;
}


@media (max-width: 991px) {
  .dept-bg {
    font-size: 65px;
  }
}
/*new breadcrum style*/

.breadcrumb-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  z-index: 10;
  pointer-events: auto;
}


.p-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  /* background: rgba(255, 255, 255, 0.85); */
  background-color: white;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  font-size: 14px;
  font-weight: 600;
}

.p-breadcrumb a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0f7d50;
  text-decoration: none;
  transition: all 0.3s ease;
}

.p-breadcrumb a:hover {
  color: #0c5b3c;
  transform: translateY(-1px);
}


.p-breadcrumb a i {
  font-size: 13px;
}


.p-breadcrumb .divider {
  width: 6px;
  height: 6px;
  background: #0f7d50;
  border-radius: 50%;
  opacity: 0.4;
}


.p-breadcrumb .current {
  color: #111;
  font-weight: 700;
  white-space: nowrap;
}


@media (max-width: 768px) {
  .breadcrumb-wrap {
    margin-top: -18px;
  }

  .p-breadcrumb {
    padding: 10px 18px;
    font-size: 13px;
  }
}