
.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.2), rgba(0,0,0,0.8));
}

.carousel-overlay h1 {
    font-size: 50px;
    font-weight: 700;
}

.carousel-overlay p {
    font-size: 20px;
    margin-bottom: 20px;
}

.view-btn {
    background: rgb(128, 128, 128);
    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 Choose Us Section - Premium Design */
.why-choose-section {
  background: linear-gradient(135deg, #f8fafd 0%, #f1f5f9 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* Animated Background Elements */
.why-choose-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220,53,69,0.03) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
  z-index: 0;
}

.why-choose-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,193,7,0.03) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
  border-radius: 50%;
  animation: floatReverse 18s infinite ease-in-out;
  z-index: 0;
}

@keyframes float {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(-30px,30px) rotate(5deg); }
  66% { transform: translate(20px,-20px) rotate(-3deg); }
}

@keyframes floatReverse {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(30px,-30px) rotate(-5deg); }
  66% { transform: translate(-20px,20px) rotate(3deg); }
}

.container {
  position: relative;
  z-index: 2;
}

/* Section Header */
.section-header {
  margin-bottom: 60px;
  animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 15px;
}

.text-gradient {
  background: linear-gradient(135deg, rgb(128, 0, 0) 0%, rgb(0, 0, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.text-gradient::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #dc3545, #f4a261);
  animation: expandLine 1s ease forwards 0.5s;
}

@keyframes expandLine {
  to { width: 100%; }
}

.section-subtitle {
  font-size: 18px;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.7s;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Feature Cards */
.feature-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
  animation: cardFadeIn 0.8s ease backwards;
}

.feature-card:nth-child(1) { animation-delay: 0.2s; }
.feature-card:nth-child(2) { animation-delay: 0.3s; }
.feature-card:nth-child(3) { animation-delay: 0.4s; }
.feature-card:nth-child(4) { animation-delay: 0.5s; }

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card Icon */
.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  color: rgb(128, 0, 0);
  transition: all 0.5s ease;
  box-shadow: 0 10px 25px rgb(255, 255, 255);
}

.feature-card:hover .card-icon {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgb(255, 255, 255);
}

/* Card Title */
.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.feature-card:hover .card-title {
  color: #dc3545;
}

/* Card Text */
.card-text {
  font-size: 15px;
  color: rgb(0, 0, 0);
  line-height: 1.6;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.feature-card:hover .card-text {
  color: rgb(0, 0, 0);
}

/* Shine Effect */
.card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  transition: transform 0.8s ease;
  opacity: 0;
}

.feature-card:hover .card-shine {
  opacity: 1;
  transform: rotate(30deg) translate(20%, 20%);
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.02);

  border-color: rgb(128, 0, 0);
}

@media (max-width: 992px) {
  .section-title {
    font-size: 40px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .card-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }
  
  .card-title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 34px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .card-icon {
    width: 65px;
    height: 65px;
    font-size: 30px;
  }
  
  .card-title {
    font-size: 17px;
  }
  
  .card-text {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
  }
  
  .feature-card {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}

.certificates-section {
  background: linear-gradient(135deg, #f8fafd 0%, #edf2f7 100%);
  position: relative;
  font-family: 'Inter', sans-serif;
  padding: 80px 0;
}

.certificates-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(220,53,69,0.03) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
  z-index: 0;
}

.certificates-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,193,7,0.03) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
  border-radius: 50%;
  animation: floatReverse 18s infinite ease-in-out;
  z-index: 0;
}

@keyframes float {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(-30px,30px) rotate(5deg); }
  66% { transform: translate(20px,-20px) rotate(-3deg); }
}

@keyframes floatReverse {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(30px,-30px) rotate(-5deg); }
  66% { transform: translate(-20px,20px) rotate(3deg); }
}

.container {
  position: relative;
  z-index: 2;
}

/* Section Header */
.section-header {
  margin-bottom: 50px;
  animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 15px;
}

.text-gradient {
  background: linear-gradient(135deg, rgb(64, 0, 0) 0%, rgb(0, 0, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}

.text-gradient::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #dc3545, #f4a261);
  animation: expandLine 1s ease forwards 0.5s;
}

@keyframes expandLine {
  to { width: 100%; }
}

.section-subtitle {
  font-size: 18px;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.7s;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Certificate Slider */
.cert-slider {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.cert-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollLeft 30s linear infinite;
}

/* Pause animation on hover */
.cert-slider:hover .cert-track {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Certificate Images */
.cert-img {
  width: 240px;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: white;
  padding: 8px;
}

.cert-img:hover {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 25px 50px rgba(220, 53, 69, 0.2);
  border-color: #dc3545;
}

/* Modal Styles */
.cert-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: fadeInModal 0.3s ease;
}

@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cert-modal img {
  max-width: 95%;
  max-height: 95%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 3px solid white;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 50px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  line-height: 1;
}

.close-modal:hover {
  color: #dc3545;
  background: white;
  transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 992px) {
  .section-title {
    font-size: 40px;
  }
  
  .cert-img {
    width: 200px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .certificates-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 34px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .cert-img {
    width: 180px;
    height: 135px;
    padding: 5px;
  }
  
  .cert-track {
    gap: 20px;
  }
  
  .close-modal {
    font-size: 40px;
    top: 15px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
  }
  
  .cert-img {
    width: 150px;
    height: 110px;
  }
}
.text-center.mb-4.fw-bold {
    font-size: 44px;
    color: #4a0000;
    font-weight: 900;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 16px;


    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s ease forwards;
}


.text-center.mb-4.fw-bold::after {
    content: "";
    display: block;
    width: 0; 
    height: 4px;
    margin: 16px auto 0;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 5px;

    animation: expandLine 1s ease forwards;
    animation-delay: 1s; 
}


.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;

    
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.2s;
}

/* Keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLine {
    to {
        width: 100px;
    }
}

@keyframes fadeIn {
    to {
        opacity: 0.9;
    }
}
.product-about-section {
  background: linear-gradient(135deg, #f8fafd 0%, #edf2f7 100%);
  padding: 80px 0;
  font-family: 'Inter', sans-serif;
}

.product-image-wrapper {
  position: relative;
  display: inline-block;
  animation: floatImage 4s infinite ease-in-out;
}

@keyframes floatImage {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.product-image {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  border: 5px solid white;
}

.floating-badge {
  position: absolute;
  top: 20px;
  right: -10px;
  background: linear-gradient(135deg, #dc3545, #f4a261);
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 40px;
  box-shadow: 0 10px 25px rgba(220,53,69,0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.product-info {
  padding-left: 20px;
}

.info-title {
  font-size: 38px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 10px;
}

.text-gradient {
  background: linear-gradient(135deg, #dc3545 0%, #f4a261 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-subtitle {
  font-size: 16px;
  color: #475569;
  margin-bottom: 35px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.feature-box {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 15px 20px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.5);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateX(10px);
  background: white;
  box-shadow: 0 15px 30px rgba(220,53,69,0.1);
}

.feature-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #dc3545, #f4a261);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  flex-shrink: 0;
}

.feature-text strong {
  font-size: 16px;
  color: #1e293b;
  display: block;
  margin-bottom: 5px;
}

.feature-text p {
  font-size: 14px;
  color: #475569;
  margin: 0;
}

.formula-badge {
  margin: 30px 0 25px;
}

.formula-badge .badge {
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
  font-size: 18px;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.website-link {
  margin-top: 20px;
}

.btn-visit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1e293b;
  color: white;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(30,41,59,0.2);
}

.btn-visit:hover {
  background: #dc3545;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(220,53,69,0.3);
}

.btn-visit i {
  transition: transform 0.3s ease;
}

.btn-visit:hover i {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .info-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .product-info {
    padding-left: 0;
    margin-top: 30px;
  }

  .info-title {
    font-size: 36px;
  }

  .feature-box {
    padding: 12px 15px;
  }
}

@media (max-width: 576px) {
  .info-title {
    font-size: 30px;
  }

  .info-subtitle {
    font-size: 16px;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .formula-badge .badge {
    font-size: 16px;
    padding: 10px 25px;
  }

  .btn-visit {
    padding: 12px 25px;
    font-size: 16px;
  }
}