/*Common CSS for entire website*/
html {
  scroll-padding-top: 200px;
}
body {
  overflow-x: hidden;
}
h1.display-5,h1.display-6, h1, h2, h3, h4,h5, span{
  font-family: Georgia, serif;
}
p, a, li {
  font-family:'Poppins', sans-serif;
}
button.btn {
  font-family: 'Poppins', sans-serif;
}
.headings{
    text-align: center;
    font-size:xx-large;
}
a{
  color: inherit;
  text-decoration: none;
}
.top-spacer{
  padding: 3vh;
}
.spacer{
  padding: 5px;
}
.img-header {
  position: relative;
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; 
}
.header-elements {
  text-align: center;
  color: white;
}
.header-elements h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
}
.header-elements h3 {
  margin-top: 10px;
}
.text-reset{
  text-decoration: none;
}
.footer {
  background-color: #b7b7b7    ;
  position: relative;
  z-index: 0;
}
.footer-hr{
  position: relative;
  height: 3px;          
  background-color: #000000 ;  
  border: none;
  width: 50%;
}
.cta-section {
  position: relative;
  margin-bottom: -30px;
  z-index: 1; 
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.cta-section h4{
  line-height: 35px;
}
.input-group{
  display: flex;
  position: relative;
  align-items: center;
  justify-content:center;
}
.input-group button{
  width: 200px;
  height: 50px;
  background-color: #b7b7b7;
  color: #000000;
}
.input-group button:hover{
  background-color:#565757;
  color: white;
}
.chemical-container {
  position: relative;
  width: 100%;
  max-width: 90vw;
  height: 20vh;
  background-color: #098835;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media(max-width:505px){
  .chemical-container{
    height: 30vh;
  }
  .chemical-container h4{
    font-size: 1rem;
  }
  .input-group button{
    width: 150px;
    height: 40px;
    font-size: 0.8rem;
  }
  .cta-section h4{
    line-height: 20px;
  }
}
.bubbles {
  position: absolute;
  width: 200%;
  height: 100%;
  top: 0;
  left: 0;
  animation: horizontalScroll 60s linear infinite;
  pointer-events: none;
}
.bubble {
  position: absolute;
  bottom: 0;
  background-color: rgba(173, 216, 230, 0.7);
  border-radius: 50%;
  opacity: 0;
  animation: rise 6s infinite ease-in-out;
  transform: scale(1.5);
  bottom: -20px; 
}
.bubble:nth-child(1)  { width: 65px; height: 65px; left: 10%; animation-duration: 10s; animation-delay: 0s; }
.bubble:nth-child(2)  { width: 35px; height: 35px; left: 20%; animation-duration: 7.5s; animation-delay: 1s; }
.bubble:nth-child(3)  { width: 25px; height: 25px; left: 30%; animation-duration: 15s; animation-delay: 0.5s; }
.bubble:nth-child(4)  { width: 45px; height: 45px; left: 40%; animation-duration: 9s; animation-delay: 2.5s; }
.bubble:nth-child(5)  { width: 30px; height: 30px; left: 50%; animation-duration: 6.8s; animation-delay: 1.2s; }
.bubble:nth-child(6)  { width: 40px; height: 40px; left: 60%; animation-duration: 7.2s; animation-delay: 1.8s; }
.bubble:nth-child(7)  { width: 20px; height: 20px; left: 70%; animation-duration: 5.8s; animation-delay: 0.3s; }
.bubble:nth-child(8)  { width: 50px; height: 50px; left: 80%; animation-duration: 8.3s; animation-delay: 2.2s; }
.bubble:nth-child(9)  { width: 38px; height: 38px; left: 90%; animation-duration: 9.5s; animation-delay: 1.7s; }
.bubble:nth-child(10) { width: 28px; height: 28px; left: 12%; animation-duration: 11.3s; animation-delay: 0.8s; }
.bubble:nth-child(11) { width: 45px; height: 45px; left: 25%; animation-duration: 8.1s; animation-delay: 2.4s; }
.bubble:nth-child(12) { width: 20px; height: 20px; left: 37%; animation-duration: 9.5s; animation-delay: 0.7s; }
.bubble:nth-child(13) { width: 30px; height: 30px; left: 48%; animation-duration: 10.8s; animation-delay: 1.3s; }
.bubble:nth-child(14) { width: 35px; height: 35px; left: 57%; animation-duration: 9.4s; animation-delay: 2.9s; }
.bubble:nth-child(15) { width: 24px; height: 24px; left: 65%; animation-duration: 6.6s; animation-delay: 0.4s; }
.bubble:nth-child(16) { width: 40px; height: 40px; left: 75%; animation-duration: 8s; animation-delay: 1.6s; }
.bubble:nth-child(17) { width: 22px; height: 22px; left: 82%; animation-duration: 8.9s; animation-delay: 0.9s; }
.bubble:nth-child(18) { width: 32px; height: 32px; left: 17%; animation-duration: 9.1s; animation-delay: 1.1s; }
.bubble:nth-child(19) { width: 25px; height: 25px; left: 45%; animation-duration: 8.4s; animation-delay: 0.2s; }
.bubble:nth-child(20) { width: 50px; height: 50px; left: 32%; animation-duration: 9.2s; animation-delay: 2.6s; }
.bubble:nth-child(21) { width: 28px; height: 28px; left: 52%; animation-duration: 10s; animation-delay: 0.6s; }
@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-110%) scale(0.5);
    opacity: 0;
  }
}
@keyframes horizontalScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .chemical-container {
    height: 250px;
  }

  .bubble {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 576px) {
  .chemical-container {
    height: 200px;
  }

  .bubble {
    width: 15px;
    height: 15px;
  }
}
#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 5;
  border-radius: 50%;
  background-color: #098835;
  color: #ffffff;
}
/****************Home page*******************/
.offer-scroll-wrapper {
  overflow: hidden;
  position: relative;
}
.col-img img {
    max-width: 220px; 
    height: auto;
    margin: 0 auto;
    display: block;
  }
.offer-scroll-track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.offer-card {
  flex: 0 0 auto;
  width: 300px;
  margin: 0 1rem;
}

.col-content {
  background: white;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.navbar {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.navbar-brand{
  padding-left: 30px;
}
.navbar-nav .nav-link {
  font-size: 18px; 
  transition: color 0.3s ease, transform 0.3s ease; 
  margin-right: 20px;
}
@media (min-width: 992px) {
  .navbar-nav .nav-link:hover {
  color: #098835; 
  transform: scale(1.1); 
}
}
@media (max-width: 991.98px){
  .navbar-nav .nav-link:hover {
  color: #098835; 
}
}
.navbar-nav .nav-link.active {
  font-weight: bold;
  color: #098835; 
}
.dropdown-menu .dropdown-item:hover {
  color: white; 
  background-color: #098835; 
}
.dropdown-menu .dropdown-item.active {
  color: white; 
  background-color: #098835; 
}
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-menu {
  top: 0;
  right: 100%;  
  left: auto; 
  margin-right: 0.1rem;
  margin-left: 0;
  border-radius: 0.25rem;
  display: none;
  position: absolute;
}
@media (min-width: 992px) {
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
}
@media (max-width: 991.98px) {
  .dropdown-submenu > .dropdown-menu {
    position: static;
    margin-left: 1rem;
    display: none;
  }
  .dropdown-submenu.show > .dropdown-menu {
    display: block;
  }
}
.banner-image {
    height: 70vh;
  }
  
.banner-section .carousel-item {
    position: relative;
    width: 100%;
    height: 70vh;     
    opacity: 0;
    transform: translateX(40px);  
    transition: opacity 1s ease, transform 1s ease; 
  }
.banner-section .carousel-item.active {
    opacity: 1;
    transform: translateX(0); 
  }
.carousel-caption {
    width: 100%;
    max-width: 80%;
    text-align: center;
    padding: 0 15%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  .banner-section .carousel-item.active .carousel-caption h1 {
    animation: fadeInText 3s ease-in-out forwards;
  }
  .banner-section .carousel-item.active .carousel-caption p {
    font-size: 1rem;
    padding: 15px;
    margin: 0;
    opacity: 0;
    animation: fadeInText 3.5s ease-in-out forwards;
  }
  .banner-section .carousel-item.active .carousel-caption a {
    font-size: 1rem;
    padding: 10px 20px;
    opacity: 0;
    animation: fadeInButton 4s ease-in-out forwards;
  }
@media (min-width: 793px) {
    .carousel-caption h1 {
      font-size: 3rem;
    }
    .carousel-caption p {
      font-size: 1.1rem;
    }
    .carousel-caption a {
      font-size: 1.1rem;
      padding: 10px 20px;
    }
  }
@media (min-width: 992px) {
    .carousel-caption h1 {
      font-size: 3rem;
    }
    .carousel-caption p {
      font-size: 1.1rem;
    }
    .carousel-caption a {
      font-size: 1.1rem;
      padding: 12px 24px;
    }
  }
@media (min-width: 1040px) {
    .carousel-caption h1 {
      font-size: 3rem;
    }
    .carousel-caption p {
      font-size: 1.1rem;
    }
    .carousel-caption a {
      font-size: 1.1rem;
      padding: 12px 24px;
    }
  }
@media(max-width:580px){
  .banner-image{
    height: 80vh;
  }
  .banner-section .carousel-item{
    height: 80vh;
  }
  .banner-section .carousel-item::before{
    height: 80vh !important;
  }
  .carousel-caption{
    padding: 0px !important;
  }

}
  .banner-section .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70vh;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1;
  }
 @keyframes fadeInText {
    0% {
      opacity: 0;
      transform: translateX(30px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeInButton {
    0% {
      opacity: 0;
      transform: translateX(30px);
    }
    100% {    
      opacity: 1;
      transform: translateX(0);
    }
  }
.hex-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.hexagon {
  width: 28vw;
  height: 28vw;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.hex-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rotating-hexagon {
  width: 28vw; 
  height: 28vw;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  background-color: rgba(0, 125, 47, 0.2);
  position: absolute;
  animation: rotate 8s linear infinite;
  z-index: -1;
}
@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@media (max-width: 990px) {
  .hexagon, .rotating-hexagon {
    width: 50vw; 
    height: 50vw;
  }
}
.product-range-section-container {
  position: relative;
  background: url('../img/closeup-waitress-disinfecting-tables-outdoor-cafe.webp') no-repeat center center;
  background-size: cover;
}
.product-range-section-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #b8e3c9c8 ;
  z-index: 1;
}
.product-range-section .carousel {
    border-radius: 40px;
    overflow: hidden;
    z-index: 2;
  }

.product-range-section .carousel img {
    border-radius: 40px;
    overflow: hidden;
  }
.product-range-section .product-text{
    height: 400px;
    display: flex;
    align-items: center;
}
.product-range-section .product-text button{
  padding: 10px 50px;
}
.indicator{
  height: 150px;
  z-index: 2;
}
.product-categories-head{
  position: relative;
  z-index: 2;
}
.dot-button {
  background-color: #e0e0e0;
  color: #333;
  font-size: 1rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  margin: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, width 0.3s ease, height 0.3s ease;
}
.dot-button.active {
  width: 40px;
  height: 40px;
  background-color: #098835;
  color: #fff;
  border: none;
}
#dot-indicator {
  position: relative;
  display: flex;
  flex-wrap: wrap; 
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#dot-indicator::before {
  content: '';
    position: absolute;
    top: 50%;
    height: 3px;
    background-color: #929898;
    z-index: -1;
    transform: translateY(-50%);
    width: calc(100% - 820px);
    left: 410px; 
    right: 410px;
}
@media (max-width: 1290px){
  #dot-indicator::before{
    width: calc(100% - 600px);
    left: 300px;
    right: 80px;
  }
}
@media (max-width: 1203px){
  #dot-indicator::before{
    width: calc(100% - 400px); 
    left: 200px; 
    right: 200px;
  }
}
@media (max-width: 990px){
  #dot-indicator::before{
    width: calc(100% - 180px); 
    left: 90px; 
    right: 255px;
  }
}
@media (max-width: 770px) {
  .dot-button {
      width: 25px;
      height: 25px;
      font-size: 0.875rem;
      margin: 15px;
  }

  .dot-button.active {
      width: 35px;
      height: 35px;
  }

  #dot-indicator::before {
    width: calc(100% - 90px);
    left: 45px;
    right: 50px;
  }
}

@media (max-width: 480px) {
  .dot-button {
      width: 20px;
      height: 20px;
      font-size: 0.75rem;
      margin: 8px;
  }

  .dot-button.active {
      width: 30px;
      height: 30px;
  }
  #dot-indicator::before {
    
      width: calc(100% - 50px); 
      left: calc(15px + 15px);
      right: calc(15px + 15px);
  }

}
  .custom-multi-carousel {
    position: relative;
  }

  .carousel-inner-wrapper {
    display: flex;
    transition: transform 0.5s ease;
  }

  .carousel-item-custom {
    flex: 0 0 25%; 
    box-sizing: border-box;
    padding: 0 10px;
  }

  @media (max-width: 1300.98px) {
    .carousel-item-custom {
      flex: 0 0 33.33%;
    }
  }

  @media (max-width: 991.98px) {
    .carousel-item-custom {
      flex: 0 0 50%;
    }
  }

  @media (max-width: 767.98px) {
    .carousel-item-custom {
      flex: 0 0 100%;
    }
  }

  .carousel-item-custom img {
    width: 120%;
    height: 60%;
  }
@media (max-width: 768px) {
  .carousel-item-custom img {
    width: 75%;
    height: 65%;
    object-fit: cover;
  }
}
.circle-img {     
  position: relative;
  object-fit: cover;
  transform: scale(1.6);
  bottom: -100px;
  left: -50px;
}
.circle-img img{
  height: 250px;
  width: 250px;
  border-radius: 50%; 
}
  .carousel-prev-custom,
.carousel-next-custom {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 125, 47, 0.85);
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  z-index: 10;
}
.carousel-prev-custom:hover,
.carousel-next-custom:hover {
  background-color: rgba(0, 125, 47, 0.85);
  transform: scale(1.1);
}
.carousel-prev-custom:focus,
.carousel-next-custom:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}
.what-we-offer .col-content {
    background-color:rgba(0, 125, 47, 0.2);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    overflow: hidden;
    height: 800px;
    margin-bottom: 20px;
}
.what-we-offer .col-text{
  height: 400px;
}
.what-we-offer .col-content h4 {
    margin-bottom: 20px;
    min-height: 70px; 
    transition: color 0.3s ease;
    border-bottom: 2px solid #098835 ;
}
.what-we-offer .col-content p{
  padding-top: 5px;
  transition: color 0.3s ease;   
}
.what-we-offer .col-content:hover{
  background-color:#f5f5f5;
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.what-we-offer .col-content:hover h4{
    color: #004e1d; 
}
@media(max-width:1199px){
  .what-we-offer .col-text{
    height: 255px;
  }
  .what-we-offer .col-content {
    height: 650px;
  }
}
@media (max-width: 767px) {
  .what-we-offer .col-text{
    height: 220px;
  }
  .what-we-offer .col-content {
    height: 600px;
  }
}
@media screen and (max-width: 480px) {
  .what-we-offer .col-text{
    height: 280px;
  }
  .what-we-offer .col-content {
    height: 650px;
  }
}
.section-space-none {
  padding-top: 0;
  padding-bottom: 0;
}
.bring-content-lt ul,
.bring-content-rt ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bring-content-lt ul li{
  line-height: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end; 
}
.bring-content-rt ul li {
  line-height: 2;
  display: flex;
  align-items: center;
}
.bring-content-lt ul li img,
.bring-content-rt ul li img {
  margin-left: 0; 
  width: 120px;
  height: 120px;
}
.order-flex {
  display: flex;
  align-items: center; 
  justify-content: space-between;
}
.img-center {
  text-align: center;
}
.img-center img {
  max-width: 100%;
  height: auto;
  width: 300px; 
}
@media (max-width: 768px) {
  .bring-content-lt ul li img,
  .bring-content-rt ul li img {
      margin-left: 10px;
  }
  .title-sec h2 {
      font-size: 28px;
  }
  .title-sec p {
      font-size: 16px;
  }
  .img-center img {
      width: 200px; 
  }
}
@media (max-width: 992px){
  .why-choose-us-large{
    display: none;
  }
}
.why-choose-us {
  position: relative;
  background: url('../img/closeup-waitress-disinfecting-tables-outdoor-cafe.webp') no-repeat center center;
  background-size: cover;
}
.why-choose-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffffd6 ; 
  z-index: 1;
}
.why-choose-us .container {
  position: relative;
  z-index: 2;
}
.why-choose-us .col-sm-4{
  border: 1px solid rgba(113, 113, 113, 0.389);
}
.why-choose-us .col-content{
  padding: 30px;
  text-align: center;
}
.why-choose-us .col-content img{
  height: 150px;
  width: 150px;
}
.why-choose-us .col-content p{
  font-size: 1.2rem;
}
@media(min-width:993px){
  .why-choose-us{
    display: none;
  }
}
.home-blog {
  padding-top: 80px;
  padding-bottom: 80px;
}
.blog-text-bg a,h3{
  font-family: Georgia, serif;
}
@media (min-width: 992px) {
  .home-blog {
      padding-top: 100px;
      padding-bottom: 100px;
  }
}
.home-blog .section-title {
  padding-bottom: 15px;
}
.home-blog .media {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .home-blog .media {
      margin-top: 30px;
  }
}
.bg-sand {
  background-color: #f5f5f6;
}
.index-border-end {
  border-right: 1px solid #999 !important;
}
@media (max-width: 992px) {
  .index-border-end {
  border-right: none !important;
}
}
/****************About page*******************/
.history, .bg-light-success{
  background-color: rgba(0, 125, 47, 0.2);
}
.card-image-about {
  height: 300px;
  width: 500px;
}
.values-container .values{
  position: absolute; 
  top: 50%; 
  left: 0; 
  width: 100%;
  height: 25vh; 
  transform: translateY(-50%); 
  background-color: rgba(0, 125, 47, 0.2); 
  z-index: -1;
}
.core-values-carousel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
}
.core-values-carousel .carousel-container {
  position: relative;
  width: 450px;
  height: 450px;
}
.core-values-carousel .carousel-content {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #cdcdcd;
  border: 10px solid #098835;
}
.core-values-carousel .carousel-item {
  position: absolute;
  text-align: center;
  opacity: 0;
  padding: 20px;
  transform: scale(0.8);
  transition: transform 0.5s ease, opacity 0.5s ease; 
}
.core-values-carousel .carousel-item i{
  font-size: 3rem;
}
.core-values-carousel .carousel-item.active {
  opacity: 1;
  transform: scale(1);
}
.core-values-carousel .carousel-item.fade-out {
  opacity: 0;
  transform: scale(0.8);
  z-index: 1;
}
.core-values-carousel .carousel-item h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.core-values-carousel .carousel-item p {
  font-size: 1rem;
  color: #000000;
}
.core-values-carousel .carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #098835;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
}
.core-values-carousel .carousel-nav:hover {
  background-color: #098835;
}
.core-values-carousel .left-icon {
  left: -80%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  cursor: pointer;
  z-index: 10;
}
.core-values-carousel .right-icon {
  right: -80%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  cursor: pointer;
  z-index: 10;
}
.core-values-carousel .left-icon i, .core-values-carousel .right-icon i{
  font-size: 3rem;
}
.core-values-carousel .left-nav {
  left: -60px;
}

.core-values-carousel .right-nav {
  right: -60px;
}
@media (max-width: 1160px) {
  .core-values-carousel .right-icon, .core-values-carousel .left-icon{
      display: none; 
  }
}
@media (max-width: 1300px){
  .core-values-carousel .left-icon {
    left: -60%;
  }
  .core-values-carousel .right-icon {
    right: -60%;
  }
}
@media (max-width: 768px) {
  .carousel-container {
    width: 200px;
    height: 200px;
  }

  .carousel-item h2 {
    font-size: 1.2rem;
  }

  .carousel-item p {
    font-size: 0.9rem;
  }

  .carousel-nav {
    width: 35px;
    height: 35px;
  }
 
}
@media (max-width: 480px) {
  .core-values-carousel .carousel-container {
    width: 300px;
    height: 300px;
  }

  .core-values-carousel .carousel-nav {
    width: 30px;
    height: 30px;
  }

  .core-values-carousel .left-nav {
    left: -30px;
  }

  .core-values-carousel .right-nav {
    right: -29px;
  }
  .core-values-carousel .carousel-content{
    border: 5px solid #098835;
  }
}
.vision-mission-container .section-content {
  position: relative;
  padding: 40px;
  overflow: hidden; 
  transition: color 0.5s ease;
  border-radius: 8px;
  background-color: #098835;
  color: #ffffff;
}
.vision-mission-container .section-content::after {
  content: '';
  position: absolute;
  top: var(--hover-y, 50%); 
  left: var(--hover-x, 50%);
  width: 0;
  height: 0;
  background-color: #565757;   
  z-index: 1; 
  border-radius: 50%; 
  transform: translate(-50%, -50%);
  transition: width 2s ease-in-out, height 2s ease-in-out;
}
.vision-mission-container .section-content:hover::after {
  width:1200px; 
  height: 1200px;
}
.vision-mission-container .section-content h4,
.vision-mission-container .section-content p {
  position: relative;
  z-index: 2; 
  transition: color 1s ease;
}
.vision-mission-container .section-content:hover h4,
.vision-mission-container .section-content:hover p {
  color: #ffffff; 
}
.milestone-container  {
    background-image:url("../img/our-journey.webp") ;
    position: relative;
    height: 1250px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
.milestone-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
  }
  .milestone-container h1 {
    color: #f8f9fa !important;
  }

  .timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 0;
  }
  .timeline::before {
    content: '';
    position: absolute;
    width: 1px;
    background-color: #ffffff;
    top: 0;
    bottom: 0;
    left: 0%;
  }
  .milestone {
    position: relative;
    padding: 20px 0;
  }
  .milestone .dot {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    border-radius: 50%;
    top: 20px;
    left: -15px;
    
    animation: pulse 1.5s infinite;
  }
  .milestone .content {
    display: flex;
    align-items: center;
    position: relative;
    background-color: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 80px;
    margin-left: 10%;
    color: #333;
    transition: transform 0.3s ease;
    overflow: hidden;
  }

.milestone .content h5{
  margin: 0;
  color: #098835 ;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
}
.milestone .content span{
  font-family: 'Poppins', sans-serif;
  color: #000000;

}
  .content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease; 
    color: #fff; 
    border-radius: 8px; 
  }
  .overlay-text {
    font-size: 18px;
    padding: 10px;
    color: #ffffff !important;
    text-align: center;
  }
  .dot-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.3); 
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
    z-index: -1; 
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .dot-number {
    font-size: 16px;
    color: rgb(0, 0, 0);
    font-weight: bold;
  }
.milestone:hover .dot-overlay {
  transform: translate(-50%, -50%) scale(1);
}
.milestone:hover .content-overlay {
  opacity: 1;
  animation: slideIn 0.5s ease-out; 
  transition: opacity 0.3s ease; 
}
  @keyframes pulse {
    0% { transform: scale(0.9); }
    50% { transform: scale(1.1); }
    100% { transform: scale(0.9); }
  }
  @keyframes slideIn {
    from { opacity: 0; transform: translateX(-200px); }
    to { opacity: 1; transform: translateX(0); }
  }
  @media (max-width: 768px) {
    .timeline::before {
      left: 5%;
    }

    .milestone .dot {
      left: 3%;
    }

    .milestone .content {
      margin-left: 10%;
      width: 85%;
    }
  }
@media (max-width: 512px){
  .milestone .dot {
    left: 1%; 
  }
  .milestone .content h5{
    font-size: 15px;
  }
  .overlay-text {
    font-size: 15px;
    padding: 5px;
  }
  .milestone .content{
    height: 90px;
    width: 75%;
    margin-left: 15%;
  }
  
}
.facts-box {
  padding: 30px 20px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
}
.facts-box > div {
  height: 15vh;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.facts-box:hover {
  transform: translateY(-5px);
}
.facts-box h3 {
  font-size: 1.2rem;
  margin-top: 15px;
  color: #098835;
 
}
.industry {
  position: relative;
  padding: 0; 
  text-align: center;
  padding: 10px;
}
.industry{
  font-weight: bold;
}
.img-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.img-container img {
  width: 100%; 
  height: 200px; 
  display: block; 
  transition: transform 0.3s ease;
}
.industry .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.img-container:hover .overlay {
  opacity: 1;
}
.img-container:hover img {
  transform: scale(1.1); 
}
  .certifications-section {
    padding: 40px;
    background-color: #f9f9f9;
    text-align: center;
  }
  .certifications-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .certifications-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .certification-item {
    position: relative;
    background-color: #fff;
    padding: 20px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 250px;
    width: 300px;
  }
  .certification-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  .certification-logo {
    width: 200px;
    height: auto;
  }
  .certification-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    transition: transform 0.3s ease;
    transform: translateX(-100%); 
    display: flex;
    justify-content: flex-start;
    align-items: flex-start; 
    padding: 20px;
  }
  .certification-item:hover .certification-overlay {
    transform: translateX(0); 
  }
  .certification-number {
    padding: 20px;
    font-size: 80px;
    font-weight: bold;
    color: #fff;
  }
  @media (max-width: 768px) {
    .certifications-container {
      flex-direction: column;
      align-items: center;
    }
  
    .certification-item {
      width: 100%;
      margin-bottom: 20px;
    }
  }  
  /*******Product Page*******/
  .product-categories h5{
    color: #004e1d;
    font-weight: bold;
  }
  .product-categories{
    overflow-x: hidden;
  }
  [data-scroll] {
    opacity: 0;
    transform: translateX(50px); 
    transition: all 0.8s ease-out;
  }
  
  [data-scroll].animate {
    opacity: 1;
    transform: translateX(0);
  }
  
  [data-scroll="animate-left"] {
    transform: translateX(-50px); 
  }
  
  [data-scroll="animate-right"] {
    transform: translateX(50px); 
  }
  .slide-up {
    transform: translateY(100px); 
    opacity: 0; 
    transition: transform 1s ease, opacity 1s ease;
}
.slide-up.visible {
    transform: translateY(0); 
    opacity: 1; 
}
.industry-expertise{
  background-color: rgba(0, 125, 47, 0.2);
}
.industry-expertise h1{
  font-size: 3.5rem;
  font-family:Arial, Helvetica, sans-serif;
  font-weight:900;
  text-transform: uppercase;
  text-align: center;
  background: url('../img/strategic-partnership.webp') no-repeat center;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
@media (max-width:480px){
  .industry-expertise h1{
    font-size: 2.5rem;
  }
}
/******Services Page*********/
.intro-services{
  position: relative;
  top: -50px;
}
.intro-services .col-sm-9{
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 8px;
  background-color: #ffffff;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}  
.intro-services .col-sm-9:hover{
  background-color: #098835;
  color: #ffffff;
}
.services-container{
  background-color: rgba(0,125,47,0.2);
  overflow-x: hidden;
}
.services-container .carousel-nav {
  display: flex;
  padding: 0;
}
.services-container .carousel-nav button {
  background: none;
  border: none;
  font-size: 20px;
  font-family: Georgia, serif;
  cursor: pointer;
  padding: 10px 20px;
}
.services-container .carousel-nav button.active {
  border-bottom: 2px solid black;
}
.services-container .product-text{
  display: flex;
  align-items: center;
}
.services-cta-container{
  background-color: #c9c6c6;
  overflow-x: hidden;
}
.services-cta-container h1{
  color: #098835;
}
.services-cta-container button{
  font-size: x-large;
  padding: 10px;
}
@media(max-width: 775px){
  .services-container .product-text{
    height: 70vh;
  }
  .services-container .carousel-nav {
    display: none;
  }
}
@media(max-width:450px){
  .services-container .product-text{
    height: 80vh;
  }
}
@media(min-width: 775px){
  .services-container .carousel-control-prev {
    display: none;
  }
  .services-container .carousel-control-next {
    display: none;
  }
}
.tab-pane{
  height: 200px;
}
.nav-tabs .nav-link {
  color: black;
  background-color: transparent;
  border: 1px solid #dee2e6;
  border-bottom: none;
}

.nav-tabs .nav-link.active {
  color: white !important;
  background-color: #098835 !important; 
  border-color: #dee2e6 #dee2e6 white;
}
.nav-tabs .nav-link:hover {
  color: #098835;
}
.uniform-image {
    width: 100%;
    height: 400px; 
    object-fit: cover;
    object-position: center; 
}
.card-shape {
    perspective: 1000px;
    margin: 20px auto;
    width: 350px;
    height: 300px;
}
.card-flip {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}
.card-flip:hover {
    transform: rotateY(180deg);
}
.card-front, .card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 8px; 
}
.card-front img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.card-front-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center; 
  align-items: center; 
  border-radius: 8px;
}
.card-front-overlay-text{
  color: white;
  font-size: 1.7rem;
  text-align: center;
  padding: 10px;
}
.card-back {
    background-color: #098835;
    color: white;
    text-align: center;
    transform: rotateY(180deg);
}
.contact-container{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #cccccc;
}
.form-holder{
  width: 50vw;
  padding: 20px;
}

@media(max-width:1200px){
  .card-shape {
    width: 300px;
    height: 250px;
  }
  .card-overlay-text h4{
    font-size: 1.2rem;
  }
  .card-overlay-text p{
    font-size: 0.85rem;
  }
}
.small-symbol {
  font-size: 0.7em;
  vertical-align: middle;
}
/******Contact page*********/
.intro-contact{
  background-color: rgba(0, 125, 47, 0.2);
}
.intro-contact h5{
  font-family:'Poppins', sans-serif;
}
.contact-elements-holder {
  padding: 30px;
  border-radius: 10px;
}
.custom-hr {
  width: 50%;
  border: 2px solid #098835;
  background-color: #098835;
}
.form-control {
  border-radius: 0.25rem;
  border: 1px solid #6c757d;
  padding: 10px;
}
.btn-success {
  background-color: #098835;
  border: none;
  color: white;
  transition: background-color 0.3s;
}
.btn-success:hover {
  background-color: #025a22;
}
.contact-info .icon{
  font-size: 2rem;
  text-align: center;
  color: #565757;
}
.contact-info h4 {
  font-size: 1.2rem;
  color: #495057;
}
.contact-info p {
  margin-bottom: 0;
  font-size: 1.2rem;
  color: #6c757d;
}
.map-container {
  width: 100%;
  height: 500px; 
  margin-top: 20px;
}
.faq-header {
  text-align: center;
  margin-bottom: 40px;
}
.accordion-button {
  font-weight: bold;
}
.accordion-button:not(.collapsed) {
  background-color: #b8e3c9c8;
  color: #035221;
}
.accordion-button:focus {
  box-shadow: none; 
  outline: none;   
}
/***Infrastructure****/
.key-features{
  position: relative;
  background: url('../img/closeup-waitress-disinfecting-tables-outdoor-cafe.webp') no-repeat center center;
  background-size: cover;
}
.key-features::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5) ;
  z-index: 1;
}
.key-features h1{
  position: relative;
  z-index: 2;
  color: white;
}
.feature-col h4{
  font-weight: bold;
  font-family: Poppins;
  font-size: 1.2rem;
}
.feature-col{
  background-color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 2;
  border-radius: 8px;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.feature-col ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  text-align: left; 
  padding-left: 20px;
  margin: 0;
  list-style-position: outside;
}
@media (max-width: 768px) {
  .feature-col {
    height: auto;
    padding: 20px 15px;
  }
}
@media (max-width: 480px) {
  .feature-col {
    height: auto;
    padding: 20px 15px;
  }
}
.feature-col:hover{
  background-color: white;
}
.feature-col:hover h4{
  color: #098835;
}
.expertise-section {
  text-align: center;
  color: #098835;
  position: relative;
  z-index: 3;
  overflow-x: hidden !important;
}
.expertise-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
}
.expertise-section p {
  font-size: 1.1rem;
}
.infrastructure-capabilities{
 background-color:rgba(0, 125, 47, 0.2) ; 
}
.border-end {
  border-right: 1px solid #999 !important;
}
.border-top,
.border-bottom {
  border-color: #999 !important;
}
@media (max-width: 577.60px) {
  .border-end,
  .border-top,
  .border-bottom {
    border: none !important;
  }
}
.counter-box {
  padding: 40px 20px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
}
.counter-box:hover {
  transform: translateY(-5px);
}
.counter-box h3 {
  font-size: 1.4rem;
  margin-top: 15px;
  color: #098835;
  height: 50px;
}
.counter {
  font-size: 2.8rem;
  font-weight: bold;
  color: #098835;
}
.expertise-base{
  position: relative;
  height: 20vh;
  top: -100px;
  background-color: rgba(0, 125, 47, 0.7);
}
.keyfacts-base{
  position: relative;
  height: 17vh;
  top: -75px;
  background-color: rgba(0, 125, 47, 0.7);
}
.commitment{
  overflow-x: hidden;
}
@media(max-height:740px){
  .feature{
    height: 40vh;
  }
}
@media(max-width:350px){
  .feature{
    height: 50vh;
  }
}
/******Blog page******/
.blog-text h6{
  color: #565757;
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  padding: 5px;
}
.blog-text a{
  font-family: Georgia, serif;
}
.blog-text h3:hover{
  color: #098835;
}
.blog-box{
  border-bottom: 1px solid #c9c6c6;
  padding: 10px;
}
.main-content {
  margin-top: 30px;
}
.featured-blog img {
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
}
.featured-title {
  font-size: 2rem;
  font-weight: 700;
}
.featured-content {
  color: #495057;
  margin-top: 10px;
  line-height: 1.6;
}
.read-more {
  color: #098835;
  text-decoration: none;
}
.side-panel {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.side-panel h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #495057;
}
.other-blog-item {
  margin-bottom: 15px;
}
.other-blog-item h5 {
  font-size: 1rem;
  font-weight: 500;
  color: #098835;
}
.other-blog-item p {
  font-size: 0.9rem;
  color: #6c757d;
}
.other-blog-item:hover h5 {
  text-decoration: underline;
}
.categories-section {
  margin-top: 60px;
  padding: 40px;
  background-color: rgba(0, 125, 47, 0.2);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.category-card {
  text-align: center;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s;
}
.category-card:hover {
  transform: translateY(-5px);
}
.category-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #495057;
}
.category-card p {
  color: #6c757d;
  font-size: 0.9rem;
}
.category-card a {
  color: #098835;
  text-decoration: none;
}
.category-card a:hover {
  text-decoration: underline;
}
/******Individual blog page******/
.featured-title-individual{
  font-size: 3rem;
  font-weight: 700;
}
.individual-blog-content{
  font-size: 1rem;
  text-align: justify;
  line-height: 2rem;
}
.individual-blog-content span{
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}
/****Individual product page****/
 .product-carousel-container .carousel-text-nav{
  border-bottom: 2px solid #007d305e;
  padding: 5px;
 }
.product-carousel-container .carousel-text-nav .nav-item {  
  font-size: 1.5rem;
  padding: 10px;
  cursor: pointer;  
  transition: background-color 0.3s,color 0.3s;
}
.product-carousel-container .carousel-text-nav .nav-item i{  
  padding: 5px;
  font-size: 1rem;
}
.product-carousel-container .carousel-text-nav .nav-item:last-child {
  margin-right: 0;
}
.product-carousel-container .nav-item.active{
  background-color: #098835;
  color: #ffffff;
}

.product-carousel-container .section-content{
  line-height: 2;
}
@media (max-width: 768px) {
  .product-carousel-container .carousel-text-nav .nav-item {
    font-size: 1.25rem;
    margin-right: 15px;
  }
}
@media (max-width: 576px) {
  .product-carousel-container .carousel-text-nav .nav-item {
    font-size: 1rem;
    margin-right: 10px;
  }
  .product-carousel-container .section-content {
    width: 100vw;
    margin: 0 auto;
    text-align: center;
  }
}
.product-carousel-container .carousel-text-nav .nav-item:hover {
  background-color: #098835;
  color: white;
}
.project-thumb {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  perspective: 800px;
  perspective-origin: 0 0;
}

.project-thumb img{
  transition: .5s;
  height: 300px;
}
.project-thumb img:hover{
  transform: scale(1.1);
}
.portfolio-content {
  position: absolute;
  bottom: 0;
  background: rgba(0, 125, 47, 0.7);
  width: 314px;
  height: 178px;
}
.portfolio-content {
  position: absolute;
  bottom: 30px;
  background: rgba(0, 125, 47, 0.7);
  width: 314px;
  height: 178px;
  transform-origin: 0%;
  left: 0;
  border-radius: 5px;
  right: 0;
  margin: auto;
  padding: 26px 40px 0;
  opacity: 0;
  transform: rotateY(83deg)perspective(400px);
  transition: .5s;
}
.project-thumb:hover .portfolio-content{
  opacity: 1;
  transform: rotateY(0deg)perspective(400px);
}
.portfolio-content h3 {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 30.5px;
  text-transform: uppercase;
}
.portfolio-content p {
  margin-top: 0;
  color: #FFF;
  text-decoration: none;
}
.partner-with-us{
  background-color: #098835;
}
.fabric-section{
  background-color: #f1f1f1;
}
.fabric-section .column-container{
  display: flex;
  align-items: center;
}
.fabric-section .column1-content{
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
  padding: 25px;
  left: -150px;
  background-color: white;
  height: 250px;
}
.fabric-section .column2-content{
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
  padding: 25px;
  background-color: white;
  right: -150px;
  height: 250px;
}
@media (max-width:1200px) {
  .fabric-section .column1-content{
    height: 290px;
  }
  .fabric-section .column2-content{
    height: 290px;
  }
} 
@media (max-width: 992px) {
  .fabric-section .column1-content{
    left: 0;
  }
  .fabric-section .column2-content{
    right: 0;
  }
} 
@media (max-width: 768px) {
  .fabric-section .column1-content{
    left: 0;
    height: 45vh;
  }
  .fabric-section .column2-content{
    right: 0;
    height: 45vh;
  }
}  
@media (max-width:455px) {
  .fabric-section .column1-content{
    left: 0;
    height: 45vh;
  }
  .fabric-section .column2-content{
    right: 0;
    height: 45vh;
  }
}  
@media (max-width:400px) {
  .fabric-section .column1-content{
    left: 0;
    height: 50vh;
  }
  .fabric-section .column2-content{
    right: 0;
    height: 50vh;
  }
}  
.image-container{
  overflow: hidden;
}
.image-container img {
  height: 300px;
  width: 100%;
  transition: transform 0.3s ease; 
}

.image-container:hover img {
  transform: scale(1.1);
}
/******Sterile IPA*********/
.sterile-intro{
  overflow-x: hidden;
}
.features-section {
  padding: 50px 20px;
  text-align: center;
  background-color: rgba(0,125,47,0.2);
}
.features-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #007BFF;
}
.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.feature-card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 400px;
  padding: 55px 20px;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  background-color: #565757;
  color: #ffffff;
}
.feature-card h4 {
  margin-bottom: 15px;
}
.feature-card p {
  font-size: 1rem;
  line-height: 1.5;
}
.feature-circle {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: #098835;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
.feature-card:hover .feature-circle {
  background-color: #ffffff;
} 
.feature-circle i {
  color: #ffffff;
  font-size: 1.5rem;
}
.feature-card:hover .feature-circle i {
  color: #098835;
}
@media (max-width: 768px) {
  .feature-card {
      width: 80%;
  }
  .features-container {
      gap: 40px;
  }
}

.why-vapi-organic{
  overflow-x: hidden;
}
.why-vapi-organic .custom-hr{
  margin: 20px auto;
}
.why-vapi-organic span{
  color: #098835;
}
.sterile-feature{
  padding: 10px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
.sterile-feature:hover{
  background-color: #565757;
  color: white;
}
.feature-icon{
  background-color: #098835;
  border-radius: 50%;
  height: 55px;
  width: 55px;
}
.feature-icon i{
  padding: 5px;
}
.sterile-feature:hover .feature-icon{
  background-color: white;
}
.sterile-feature:hover .feature-icon i{
  color: #098835;
}
.applications{
  background-color: rgba(0,125,47,0.2);
}
.application-card {
  width: 300px;
  height: 200px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.application-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); 
  background-color: #f8f8f8;
}
/***compliance pages*****/
.compliance-content .last-updated{
  text-align: center;
  color: #666;
  font-style: italic;
  margin-bottom: 20px;
}
.faq-section {
  margin-bottom: 3rem;
}
.faq-section h2 {
  border-bottom: 3px solid #098835;
  padding-bottom: 10px; 
  margin-bottom: 2rem;
  font-weight: 600;
}
.page-header {
  background: linear-gradient(135deg, #098835 0%, #764ba2 100%);
  color: white;
  padding: 80px 0 60px;
  margin-top: 100px;
  text-align: center;
}
.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}
.faq-container {
  padding: 60px 0;
}
.section-icon {
  color: #098835;
  margin-right: 10px;
  font-size: 1.5rem;
}
.highlight-link {
  color: #098835;
  text-decoration: none;
  font-weight: 500;
}
.highlight-link:hover {
  color: #098835;
  text-decoration: underline;
}
.border-green{
  border: solid #83cd9d 1px;
}
.form-head{
  background-color: rgba(0, 125, 47, 0.2);
}
.card{
  min-height: 225px;
}
.capablities-card:hover{
  background-color: rgba(0, 125, 47);
  color: white;
}
.capablities-bg-success{
  background-color: rgba(0, 125, 47);
}
.capablities-card:hover .capablities-bg-success {
  background-color: white;
  color: rgba(0, 125, 47) !important;
}
.servicesCarousel .card{
  background-color: #b8e3c9c8;
}
.large-circle-icon{
  height: 50px;
  width: 50px;
  background-size: 60% 60%;
  padding: 10px;
  background-color: rgba(0, 125, 47);
}
.reference-link{
  color: blue;
  text-decoration: underline;
}
