/* ===== Topbar Styling (White + Aqua) ===== */
.topbar {
  background: #ffffff;
  color: #007bff;
  font-size: 20px;
  border-bottom: 1px solid #e0f4ff;
}

.topbar i,
.topbar .social-link {
  color: #007bff;
}

.topbar .social-link {
  margin-left: 15px;
  transition: color 0.3s ease;
  font-size: 20px;
}

.topbar .social-link:hover {
  color: #00bcd4;
}

/* Responsive */
@media (max-width: 767px) {
  .topbar {
    display: none;
  }
}

/* ===== Navbar Styling (White + Aqua) ===== */
.custom-navbar {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.custom-navbar .navbar-brand {
  color: #007bff !important;
  font-weight: 700;
}

.custom-navbar .nav-link {
  color: #007bff !important;
  font-weight: 500;
  margin-right: 15px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  font-size: 20px;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: #00bcd4 !important;
  text-shadow: 0 0 5px rgba(0, 188, 212, 0.6);
}

.custom-navbar .btn-warning {
  background-color: #00bcd4 !important;
  color: #fff !important;
  border: none;
  transition: 0.3s ease;
}

.custom-navbar .btn-warning:hover {
  background-color: #0097a7 !important;
}

.navbar-toggler {
  border: none !important;
}

.navbar-toggler-icon {
  background-image: url("./img/detergent_powder_new.jpg");
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  background: url('../assets/img/baner_back.webp') no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.7), rgba(0, 188, 212, 0.6));
}

.hero-content {
  position: relative;
  max-width: 800px;
  z-index: 2;
}

.hero h1 {
  font-size: 4em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0, 188, 212, 0.5);
}

.hero p {
  font-size: 1.5em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e0f7ff;
}

.hero .btn {
  padding: 15px 40px;
  font-size: 1.2em;
  color: #fff;
  background: linear-gradient(135deg, #007bff, #00bcd4);
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.3);
}

.hero .btn:hover {
  background: linear-gradient(135deg, #0056b3, #0097a7);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 188, 212, 0.5);
}

/* ===== About Section ===== */
.about-section {
  background: linear-gradient(135deg, #f0f9ff, #e0f7ff);
  color: #333;
  overflow: hidden;
  padding: 80px 0;
}

/* Section Title - Universal Style */
.section-title {
  color: #007bff;
  font-weight: 700;
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 40px;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00bcd4);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.text-start .section-title::after {
  left: 0;
  transform: translateX(0);
}

/* About Text */
.about-text {
  line-height: 1.8;
  color: #444;
  font-size: 1.1rem;
}

.about-list li {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: #007bff;
  font-weight: 500;
}

.about-list li i {
  color: #00bcd4;
  margin-right: 10px;
}

/* Main Image */
.image-wrapper {
  position: relative;
}

.about-main-img {
  width: 100%;
  border-radius: 15px;
  border: 4px solid rgba(0, 188, 212, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.about-main-img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 188, 212, 0.4);
}

/* Small Floating Image */
.about-small-img {
  width: 45%;
  border-radius: 12px;
  position: absolute;
  bottom: -20px;
  right: 20px;
  border: 4px solid rgba(0, 188, 212, 0.4);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
  animation: float 4s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@media (max-width: 767px) {
  .about-section {
    text-align: center;
  }
  
  .about-small-img {
    display: none;
  }
}

/* ===== Mission Vision Section ===== */
.mission-vision-section {
  background: linear-gradient(135deg, #ffffff, #f0f9ff);
  padding: 80px 0;
}

.mv-card {
  background: #ffffff;
  border-left: 6px solid #00bcd4;
  border-radius: 12px;
  padding: 35px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 123, 255, 0.1);
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 188, 212, 0.25);
  border-left-color: #007bff;
}

.mv-icon i {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #007bff, #00bcd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mv-text {
  color: #444;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ===== Why Choose Us Section ===== */
.why-choose-section {
  background:
    linear-gradient(135deg, rgba(0, 123, 255, 0.85), rgba(0, 188, 212, 0.85)),
    url("./img/baner_back.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 80px 0;
}

.why-choose-section .section-title {
  color: #ffffff;
}

.why-choose-section .section-title::after {
  background: linear-gradient(90deg, #ffffff, #e0f7ff);
}

/* Choose Card Style */
.choose-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 188, 212, 0.3);
  border-radius: 18px;
  padding: 35px 25px;
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00bcd4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.choose-card:hover::before {
  transform: scaleX(1);
}

.choose-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 188, 212, 0.35);
  border-color: rgba(0, 123, 255, 0.5);
}

/* Icon Style */
.choose-icon i {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #007bff, #00bcd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 12px rgba(0, 188, 212, 0.4));
}

/* Text */
.choose-text {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
}

/* ===== Services Slider Section ===== */
.services-slider-section {
  background: 
    linear-gradient(135deg, rgba(240, 249, 255, 0.95), rgba(224, 247, 255, 0.9)),
    url("assets/img/detergent_bg.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.services-slider-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 188, 212, 0.15), transparent);
  border-radius: 50%;
  animation: floatBubble 6s ease-in-out infinite;
}

.services-slider-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.12), transparent);
  border-radius: 50%;
  animation: floatBubble 8s ease-in-out infinite reverse;
}

@keyframes floatBubble {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

/* Badge Style */
.bg-gradient-info {
  background: linear-gradient(135deg, #007bff, #00bcd4) !important;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
  border: none;
}

/* Service Card Styling */
.service-slide-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  border: 2px solid rgba(0, 188, 212, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 45px 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 123, 255, 0.1);
}

.service-slide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00bcd4, #007bff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-slide-card:hover::before {
  transform: scaleX(1);
}

.service-slide-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 188, 212, 0.3);
  border-color: rgba(0, 123, 255, 0.4);
}

/* Icon Wrapper */
.icon-wrapper {
  display: inline-block;
  margin-bottom: 25px;
}

.icon-circle {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, #e0f2ff, #b3e0ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  transition: all 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.service-slide-card:hover .icon-circle {
  transform: rotate(360deg) scale(1.15);
  box-shadow: 0 15px 45px rgba(0, 188, 212, 0.4);
}

.icon-circle-secondary {
  background: linear-gradient(135deg, #e1f5fe, #b3e5fc);
}

.icon-circle-accent {
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
}

.icon-circle-success {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

/* Service Icons */
.service-slide-icon {
  font-size: 3.2rem;
  color: #007bff;
  filter: drop-shadow(0 4px 15px rgba(0, 188, 212, 0.5));
  transition: all 0.4s ease;
}

.service-slide-icon-secondary {
  color: #00bcd4;
}

.service-slide-icon-accent {
  color: #9c27b0;
}

.service-slide-icon-success {
  color: #4caf50;
}

.service-slide-card:hover .service-slide-icon {
  transform: scale(1.2);
}

/* Text Gradient */
.text-gradient {
  background: linear-gradient(135deg, #007bff, #00bcd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Service Description */
.service-slide-card p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Feature Badges */
.service-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: auto;
  padding-top: 20px;
}

.feature-badge {
  background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
  color: #00838f;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 188, 212, 0.3);
  box-shadow: 0 2px 8px rgba(0, 188, 212, 0.15);
}

.feature-badge:hover {
  background: linear-gradient(135deg, #007bff, #00bcd4);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
}

.feature-badge i {
  color: #00bcd4;
  font-size: 1rem;
  margin-right: 4px;
}

.feature-badge:hover i {
  color: white;
}

/* Swiper Navigation Buttons */
.swiper-button-prev,
.swiper-button-next {
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(0, 123, 255, 0.25);
  transition: all 0.3s ease;
  border: 2px solid rgba(0, 188, 212, 0.3);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: '';
}

.swiper-button-prev i,
.swiper-button-next i {
  font-size: 1.6rem;
  color: #007bff;
  font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: linear-gradient(135deg, #007bff, #00bcd4);
  transform: scale(1.15);
  box-shadow: 0 12px 40px rgba(0, 188, 212, 0.5);
  border-color: transparent;
}

.swiper-button-prev:hover i,
.swiper-button-next:hover i {
  color: white;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #b0bec5;
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  width: 40px;
  border-radius: 6px;
  background: linear-gradient(90deg, #007bff, #00bcd4);
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.5);
}

/* ===== Products Section ===== */
.products-section {
  background: linear-gradient(135deg, #e0f9ff, #f0fbff);
  padding: 80px 0;
}

/* Product Cards */
.product-card {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(0, 188, 212, 0.2);
  border-radius: 18px;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 123, 255, 0.15);
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(0, 188, 212, 0.3);
  border-color: rgba(0, 123, 255, 0.4);
}

.product-card img {
  border-radius: 18px 18px 0 0;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}

.product-card h5 {
  color: #007bff;
  font-weight: 700;
}

.product-card p {
  color: #555;
}

/* ===== Gallery Section ===== */
.gallery-section {
  background:
    linear-gradient(135deg, rgba(0, 123, 255, 0.85), rgba(0, 188, 212, 0.85)),
    url('./img/detergent_powder_new.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0;
}

.gallery-section h2 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}

.gallery-section h2::after {
  background: linear-gradient(90deg, #ffffff, #e0f7ff);
}

/* Gallery Cards */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.gallery-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 188, 212, 0.5);
  border-color: rgba(255, 255, 255, 0.6);
}

.gallery-card:hover img {
  transform: scale(1.15);
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.7), rgba(0, 188, 212, 0.7));
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-card:hover .overlay {
  opacity: 1;
}

/* View Button */
.view-btn {
  font-size: 2.5rem;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  padding: 15px 20px;
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.view-btn:hover {
  transform: scale(1.25) rotate(360deg);
  background: rgba(255, 255, 255, 0.3);
  color: #00bcd4;
}

/* ===== Contact Section ===== */
.contact-section {
  background: linear-gradient(135deg, #e0f9ff, #f0fbff);
  color: #333;
  padding: 80px 0;
}

.contact-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 123, 255, 0.15);
  border: 2px solid rgba(0, 188, 212, 0.2);
}

/* Labels */
.contact-form .form-label {
  font-weight: 600;
  color: #007bff;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(0, 188, 212, 0.3);
  color: #333;
  transition: all 0.3s ease;
  border-radius: 10px;
  padding: 12px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, 1);
  border-color: #007bff;
  box-shadow: 0 0 15px rgba(0, 188, 212, 0.4);
  outline: none;
}

/* WhatsApp Button */
.whatsapp-btn {
  background: linear-gradient(135deg, #007bff, #00bcd4) !important;
  color: white !important;
  transition: all 0.3s ease;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(0, 188, 212, 0.3);
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #0056b3, #0097a7) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 188, 212, 0.5);
}

/* ===== FAQ Section ===== */
.faq-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff, #f0f9ff);
}

.accordion-button {
  background: rgba(0, 123, 255, 0.1);
  color: #007bff;
  font-weight: 600;
  border-radius: 10px;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 188, 212, 0.25);
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #007bff, #00bcd4);
  color: #ffffff;
}

.accordion-body {
  background: rgba(224, 247, 255, 0.5);
  color: #333;
  border-radius: 0 0 10px 10px;
}

.accordion-item {
  border: 2px solid rgba(0, 188, 212, 0.2);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: #007bff;
}

/* ===== Footer Section ===== */
.footer-section {
  background: linear-gradient(135deg, #007bff, #00bcd4);
  color: #fff;
  padding: 60px 0 30px;
}

.footer-section h5 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 25px;
}

.footer-link {
  color: #e0f7fa;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-link:hover {
  color: #ffffff;
  transform: translateX(5px);
  text-decoration: underline;
}

.footer-social {
  color: #e0f7fa;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-social:hover {
  color: #ffffff;
  transform: translateY(-3px) scale(1.1);
}

.footer-hr {
  border-color: rgba(255, 255, 255, 0.3);
  margin: 40px 0 20px;
}

.footer-section p {
  color: #e0f7fa;
  font-size: 1rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.5em;
  }

  .hero p {
    font-size: 1.2em;
  }

  .service-slide-card {
    padding: 35px 25px;
  }

  .icon-circle {
    width: 90px;
    height: 90px;
  }

  .service-slide-icon {
    font-size: 2.5rem;
  }

  .text-gradient {
    font-size: 1.3rem;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 45px;
    height: 45px;
  }

  .swiper-button-prev i,
  .swiper-button-next i {
    font-size: 1.3rem;
  }

  .feature-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

@media (max-width: 576px) {
  .services-slider-section,
  .about-section,
  .products-section,
  .gallery-section,
  .contact-section,
  .mission-vision-section,
  .why-choose-section {
    padding: 60px 0;
  }

  .service-slide-card {
    padding: 30px 20px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero h1 {
    font-size: 2em;
  }

  .contact-form {
    padding: 25px;
  }
}