@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap");

.navbar/********** Template CSS **********/
:root {
  --primary: #13c5dd;
  --secondary: #354f8e;
  --light: #eff5f9;
  --dark: #1d2a4d;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
  color: black;
}

.btn {
  font-weight: 700;
  transition: 0.5s;
}

.btn:hover {
  -webkit-box-shadow: 0 8px 6px -6px #555555;
  -moz-box-shadow: 0 8px 6px -6px #555555;
  box-shadow: 0 8px 6px -6px #555555;
}

.btn-primary {
  color: #ffffff;
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 28px;
  height: 28px;
}

.btn-lg-square {
  width: 39px;
  height: 29px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 0;
  border-radius: 50% 50% 0 0;
  z-index: 99;
}
.styled-heading {
  position: relative;
  font-family: "Josefin Sans", sans-serif;
  font-size: 2.8rem;
  color: #14a262;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  letter-spacing: 2px;
  padding-bottom: 15px;
  margin-bottom: 40px;
}

.styled-heading::before,
.styled-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 4px;
  width: 60px;
  background-color: #14a262;
  transition: all 0.4s ease-in-out;
}

.styled-heading::before {
  left: 50%;
  transform: translateX(-100%);
  border-radius: 4px 0 0 4px;
}

.styled-heading::after {
  right: 50%;
  transform: translateX(100%);
  border-radius: 0 4px 4px 0;
}

.styled-heading:hover::before,
.styled-heading:hover::after {
  width: 80px;
  background-color: #14a262;
}

@media (max-width: 768px) {
  .styled-heading {
    font-size: 2rem;
    padding-bottom: 12px;
  }
  .styled-heading::before,
  .styled-heading::after {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .styled-heading {
    font-size: 1.5rem;
  }
  .styled-heading::before,
  .styled-heading::after {
    width: 30px;
  }
}

.top-header {
  background-color: #f4f1e8;
  color: #14a262;
  font-family: "Segoe UI", sans-serif;
  font-size: 15px;
}

.top-header a {
  color: #14a262;
  transition: color 0.3s ease;
  font-weight: bold;
}

.top-header a:hover {
  color: #14a262;
  text-decoration: none;
}

.top-header i {
  font-size: 14px;
  vertical-align: middle;
  color: #14a262;
}

.top-header .fab {
  font-size: 20px;
}
h2 img {
  height: 40px;
  max-width: 100%;
}

@media (max-width: 991.98px) {
  .top-header {
    display: none !important;
  }
}
.logo-img {
  height: 80px;
  width: 80px;
  margin-top: -22px;
}

.brand-text {
  font-size: 2.25rem;
  font-weight: bold;
  white-space: nowrap;
  margin-top: -22px;
}

@media (max-width: 768px) {
  .brand-text {
    font-size: 1rem;
  }
  .logo-img {
    height: 50px;
    width: 50px;
  }
}

@media (max-width: 576px) {
  .brand-text {
    font-size: 0.9rem;
  }
  .logo-img {
    height: 45px;
    width: 45px;
  }
}
@media (max-width: 768px) {
    .carousel-inner > .item > img {
        max-height: 300px;
        margin-top: 63px;
    }
.navbar {
    position: relative;
    min-height: 50px;
     border: 1px solid transparent;
}
.carousel-control span.glyphicon {
        font-size: 20px;
        padding: 6px;
        margin-top: 22px;
    }
}
.nav {
  background-color: #fff !important;
  padding: 10px 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.navbar-light .navbar-nav .nav-link {
  font-family: "Jost", sans-serif;
  position: relative;
  margin-left: 30px;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  outline: none;
  transition: 0.5s;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (min-width: 992px) {
  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    bottom: 0;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    margin-left: 0;
  }
}
/* crousel */
#myCarousel {
  max-width: 100%;
  margin: auto;
}

.carousel-inner > .item > img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 693px;
}

.carousel-control.left,
.carousel-control.right {
  background-image: none;
  width: 6%;
}

.carousel-control span.glyphicon {
  font-size: 30px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 50%;
}

.carousel-indicators li {
  background-color: #999;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: #2ecc71;
}

@media (max-width: 768px) {
  .carousel-control span.glyphicon {
    font-size: 20px;
    padding: 6px;
  }

  .carousel-inner > .item > img {
    max-height: 300px;
  }
}

/* pageheader */
.hero-banner {
  background: url("../img/page.avif") no-repeat center center/cover;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: white;
  text-align: center;
}
.hero-banner h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 4px green;
}

/* Breadcrumb */
.breadcrumb-section {
  background: #fff;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 8px;
  border-bottom: 3px solid #14a262;
}

.breadcrumb-section a {
  color: #14a262;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-section a:hover {
  text-decoration: underline;
}

.breadcrumb-section i {
  margin-right: 5px;
}

.breadcrumb-section span {
  color: #000;
  font-weight: bold;
}

@media (max-width: 768px) {
  .hero-banner h1 {
    font-size: 1.8rem;
  }

  .breadcrumb-section {
    font-size: 14px;
    flex-wrap: wrap;
  }
}
/* about */
.about-ambico {
  padding: 50px 20px;
  font-family: "Segoe UI", sans-serif;
  color: #333;
}

.about-ambico h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #14a262;
}

.about-ambico h2 span {
  color: #a76c2f;
}

.about-ambico .subheading {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
  color: #3e5b3a;
}

.about-ambico p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-ambico img {
  border-radius: 5px;
  width: 100%;
  height: auto;
}

.custom-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-checklist li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
  font-family: "Segoe UI", sans-serif;
  color: #090808;
}

.custom-checklist li i {
  position: absolute;
  left: 0;
  top: 3px;
  background-color: #28a745;
  color: #fff;
  border-radius: 50%;
  padding: 10px;
  font-size: 14px;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 14px;
  box-shadow: 0 0 0 4px #e6f5e8;
  transition: transform 0.3s ease;
}

.custom-checklist li:hover i {
  transform: scale(1.1);
  background-color: #218838;
}

.btn-learn {
  background-color: #14a262;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}
a {
  text-decoration: none;
}
.btn-learn:hover {
  background-color: #3d5c3a;
}

/* Responsive */
@media (max-width: 768px) {
  .about-ambico h2 {
    font-size: 24px;
  }

  .about-ambico {
    padding: 30px 15px;
  }

  .custom-checklist li {
    font-size: 14px;
  }

  .btn-learn {
    display: inline-block;
    margin-top: 10px;
  }
}
/* important */
.section-title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.section-content {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

.highlight {
  border-radius: 12px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  padding: 30px;
  margin-bottom: 30px;
}
.highlight {
  font-weight: 600;
  color: #000;
}

.section-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .section-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }
}
/* team */
.team-carousel .owl-nav {
  position: absolute;
  padding: 0 45px;
  width: 100%;
  height: 45px;
  top: calc(50% - 22.5px);
  left: 0;
  display: flex;
  justify-content: space-between;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
  position: relative;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 45px;
  font-size: 22px;
  transition: 0.5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
  background: var(--dark);
}
/* about us */
.ambico-about-section {
  padding: 60px 20px;
  color: #3d3d3d;
}

.about-box {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.about-box h2 {
  font-size: 28px;
  font-weight: 700;
  color: #4a7c59;
  margin-bottom: 10px;
}

.about-box h5 {
  font-size: 16px;
  color: #a76c2f;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.more-info-box {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 30px;
  border-radius: 8px;
}

.more-info-box h4 {
  font-size: 20px;
  font-weight: 600;
  color: #14a262;
  margin-bottom: 15px;
}

.more-info-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .about-box,
  .more-info-box {
    padding: 20px;
  }

  .about-box h2 {
    font-size: 24px;
  }

  .about-box h5 {
    font-size: 15px;
  }

  .more-info-box h4 {
    font-size: 18px;
  }
}
/* core value */
.section-title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #222;
}
.card-feature {
  display: flex;
  gap: 15px;
  background-color: #fff;
  padding: 20px;
  border-left: 6px solid #14a262;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: #e6f4ea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper i {
  font-size: 24px;
  color: #14a262;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.presence-box {
  background-color: #fff;
  padding: 25px;
  border-left: 6px solid #14a262;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.card-feature .icon-wrapper {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border: 2px solid #14a262;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-feature .icon-wrapper i {
  font-size: 24px;
  color: #14a262;
}

.card-feature .content h5 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.card-feature .content p {
  font-size: 15px;
  color: #0e0d0d;
  margin: 0;
}

.presence-box p {
  font-size: 16px;
  color: #080808;
  line-height: 1.7;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }

  .card-feature {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-feature .icon-wrapper {
    margin-bottom: 10px;
  }
}
/* faq */
.faq-title {
  font-size: 32px;
  font-weight: bold;
}

.faq-subtitle {
  color: #100f0f;
}

.accordion-button:not(.collapsed) {
  background-color: #e9ecef;
  color: #000;
}

.faq-section {
  padding: 40px 20px;
}

.faq-image {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.image-caption {
  font-size: 18px;
  color: #888;
  text-align: center;
  margin-top: 10px;
}

/* mission and vision */
.vision-mission-section {
  padding: 40px 20px;
}

.section-heading {
  font-size: 28px;
  font-weight: bold;
  color: #222;
}

.section-text {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 25px;
}

.image-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 20px;
  overflow: hidden;
}

.image-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 30px solid #425baf;
  border-radius: 30px;
  z-index: 0;
}

.vision-img {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .section-heading {
    font-size: 22px;
  }

  .image-frame {
    display: none;
  }
}
/* why choose us */
.why-ambico-section {
  padding: 40px;
  border-radius: 10px;
}

.why-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.why-grid .item {
  text-align: center;
  padding: 15px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.circle-icon {
  width: 70px;
  height: 70px;
  background-color: #e1f5ea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.circle-icon i {
  font-size: 26px;
  color: #14a262;
  /* green */
}

.why-grid .item h6 {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.why-grid .item p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.why-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 10px;
}

.final-note {
  text-align: center;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

@media (max-width: 768px) {
  .why-ambico-section {
    padding: 20px;
  }

  .why-title {
    font-size: 24px;
  }

  .why-grid .item {
    margin-bottom: 25px;
  }
}

/* products */

.ksm-section {
  max-width: 1268px;
  margin: 40px auto;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.ksm-section img {
  max-width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  margin-bottom: 25px;
}

.ksm-section h2,
.ksm-section h3,
.ksm-section h4,
.ksm-section h5,
.ksm-section h6 {
  color: #14a262;
  font-size: 2.6rem !important;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 3px solid #14a262;
  display: inline-block;
  text-align: left;
  width: 100%;
}

.ksm-section p {
  line-height: 1.7;
  color: #121010;
  text-align: justify;
  margin-bottom: 20px;
}

.ksm-section ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
  margin-bottom: 30px;
}

.ksm-section ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #444;
}

.ksm-section ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #14a262;
}

@media (max-width: 768px) {
  .ksm-section h2,
  .ksm-section h3,
  .ksm-section h4,
  .ksm-section h5,
  .ksm-section h6 {
    font-size: 1.3rem;
  }

  .ksm-section img {
    height: auto;
  }
}


/* market area */
.market-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.area-link {
  text-decoration: none;
  color: inherit;
}

.area-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  padding: 30px 20px;
  text-align: center;
  width: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s;
  border: 2px solid #14a262;
}

.area-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(20, 162, 98, 0.15);
  border-color: #14a262;
}

.area-card i {
  font-size: 36px;
  color: #14a262;
  margin-bottom: 15px;
}

.area-card h3 {
  font-size: 1.2em;
  color: #333;
  font-weight: 600;
}

@media (max-width: 768px) {
  .area-card {
    width: 45%;
  }
}

@media (max-width: 500px) {
  .area-card {
    width: 100%;
  }
}

/* market area content */
.market-area {
  background-color: #ffffff;
  margin: 25px auto;
  padding: 30px;
  max-width: 1100px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(20, 162, 98, 0.15);
  text-align: justify;
  border-left: 6px solid #14a262;
  position: relative;
  transition: transform 0.3s ease;
}

.market-area h2,
.market-area h3,
.market-area h4,
.market-area h5,
.market-area h6 {
  color: #14a262;
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 700;
}

.market-area p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.market-area p strong {
  color: #14a262;
  font-weight: 600;
}

@media (max-width: 768px) {
  .market-area {
    padding: 20px;
  }

  .market-area h2,
  .market-area h3,
  .market-area h4,
  .market-area h5,
  .market-area h6 {
    font-size: 22px;
  }

  .market-area p {
    font-size: 15.5px;
  }
}

/* privacy disclaimer terms */
    .ambico-disclaimer {
        background-color: #f9fefb;
        padding: 40px 20px;
        font-family: "Segoe UI", Arial, sans-serif;
        color: #222;
    }

    .ambico-disclaimer-container {
        max-width: 1100px;
        margin: auto;
    }

    .ambico-disclaimer-container h2 {
        font-size: 2.2rem;
        text-align: center;
        color: #14a262;
        border-bottom: 2px solid #14a262;
        display: inline-block;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }

    .ambico-disclaimer-block {
        background: #e9f8f0;
        border-left: 4px solid #14a262;
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 6px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .ambico-disclaimer-block:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

    .ambico-disclaimer-block h3 {
        font-size: 1.2rem;
        color: #0f8050;
        margin-bottom: 10px;
    }

    .ambico-disclaimer-block p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .ambico-disclaimer-container h2 {
            font-size: 1.8rem;
        }

        .ambico-disclaimer-block h3 {
            font-size: 1.05rem;
        }

        .ambico-disclaimer-block p {
            font-size: 0.92rem;
        }
    }

    @media (max-width: 480px) {
        .ambico-disclaimer {
            padding: 30px 15px;
        }

        .ambico-disclaimer-block {
            padding: 15px;
        }
    }