
.hero-slide {
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;

    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.5));
}

.carousel-overlay h1 {
    font-size: 50px;
    font-weight: 700;
}

.carousel-overlay p {
    font-size: 20px;
    margin-bottom: 20px;
}

.view-btn {
    background: grey;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
}

.view-btn:hover {
    background: #555;
    color: white;
}
.custom-arrow {
    width: 50px;
    height: 50px;
    background: rgba(128,128,128,0.6);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}
/* Mobile Responsive */

@media (max-width:768px){

.hero-slide img{
    height:250px;
}

.carousel-overlay h1{
    font-size:28px;
}

.carousel-overlay p{
    font-size:14px;
}

.view-btn{
    padding:6px 18px;
    font-size:14px;
}

.custom-arrow{
    width:35px;
    height:35px;
}

}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: transform 0.2s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    text-decoration: none;
    color: white;
}

.whatsapp-btn i {
    font-size: 22px;
}

.product-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  height: 100%;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.pagination {
  gap: 6px;
}

.pagination .page-item {
  display: inline-block;
}

.pagination .page-link {
  min-width: 40px;
  height: 40px;
  line-height: 26px;
  text-align: center;
  font-weight: 600;
  border-radius: 8px !important;
  border: 1px solid #ddd;
  color: #000 !important;
  background: #fff;
}

.pagination .page-item.active .page-link {
  background-color: #000;
  border-color: #000;
  color: #fff !important;
}

.pagination .page-item.disabled .page-link {
  color: #aaa !important;
  background: #f1f1f1;
}
.pagination .page-link {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #000 !important;
  background: #fff !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.pagination .page-item.active .page-link {
  color: #fff !important;
  background: #000 !important;
}

.pagination .page-item span.page-link {
  font-size: 16px !important;
  color: #000 !important;
}
.why-section {
    background: #f8f9fa;
    padding: 60px 15px;
}

.text-center.mb-5.fw-bold {
    font-size: 44px;
    color: rgb(0, 64, 0);
    font-weight: 900;
    position: relative;
    margin-bottom: 8px;
}

.text-center.mb-5.fw-bold::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    margin: 16px auto 0;
    background: linear-gradient(90deg, #FFD700, #FF8C00);
    border-radius: 5px;
}

.text-center.mb-5 + p {
    font-size: 20px;
    color: #333333;
    font-weight: 500;
    opacity: 0.9;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 40px;
}

.why-card {
    border-radius: 15px;
    background: white;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: 1px solid #ddd;
    padding: 25px;
}

.why-card:hover {
    transform: translateY(-8px);
}

.why-icon {
    font-size: 40px;
    color: rgb(0, 0, 0);
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .why-section h2 {
        font-size: 32px;
    }

    .why-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .why-section h2 {
        font-size: 28px;
    }

    .why-icon {
        font-size: 35px;
    }
}

@media (max-width: 576px) {
    .why-section h2 {
        font-size: 24px;
    }

    .why-card {
        padding: 20px !important;
    }
}

@media (max-width: 992px) {

    .why-section h2 {
        font-size: 32px;
    }

    .why-card {
        margin-bottom: 20px;
    }

}

@media (max-width: 768px) {

    .why-section h2 {
        font-size: 28px;
    }

    .why-icon {
        font-size: 35px;
    }

}

@media (max-width: 576px) {

    .why-section h2 {
        font-size: 24px;
    }

    .why-card {
        padding: 20px !important;
    }

}
.associated-heading {
    font-size: 48px;
    font-weight: 700;
}
.cert-slider {
    overflow: hidden;
    width: 100%;
}

.cert-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scrollLeft 20s linear infinite;
}

.cert-img {
    width: 220px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
	box-shadow: 0 4px 15px rgba(0,0,0,0.15);
	border: 1px solid rgb(192, 192, 192);

	    transition: 0.3s ease;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.cert-img {
  height: 120px;
  margin: 0 15px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cert-img:hover {
  transform: scale(1.05);
}

.cert-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.cert-modal img {
  max-width: 95%;
  max-height: 95%;
  border-radius: 15px;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

@media (min-width: 768px) {
  .cert-img {
    height: 140px;
    margin: 0 20px;
  }
}

@media (min-width: 1024px) {
  .cert-img {
    height: 150px;
    margin: 0 25px;
  }

  .close-modal {
    font-size: 50px;
    top: 20px;
    right: 30px;
  }
}
.text-center.mb-4.fw-bold {
    font-size: 44px;
    color: rgb(0, 64, 0);
    font-weight: 900;
    position: relative;
    margin-bottom: 16px;
}

.text-center.mb-4.fw-bold::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    margin: 16px auto 0;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 5px;
}

.text-center.mb-4 + p {
    font-size: 17px;
    color: rgb(64, 64, 0);
    font-weight: 500;
    opacity: 0.9;
    text-align: center;
    margin-top: 12px;
}