/* General resets & styling */
/* For Chrome, Edge, Safari */

/* Base */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background: #dde3e8;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/clean-number-2.jpg") center center / cover no-repeat;
  z-index: -1;
  animation: zoomIn 16s ease-in-out infinite;
  transform-origin: center;
  filter: brightness(0.5);
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
}

.hero h1 {
  font-size: 62px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 22px;
  margin-bottom: 30px;
  color: #eee;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.btn-hero {
  padding: 14px 28px;
  border: none;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 500;
}

.btn-hero.primary {
  background-color: #2c2279;
  color: #fff;
  box-shadow: 0 4px 12px rgba(73, 137, 210, 0.4);
}

.btn-hero.primary:hover {
  background-color: #0d4073;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px 0d4073;
}

.btn-hero.secondary {
  background-color: #2c2279;
  color: #fff;
}

.btn-hero.secondary:hover {
  background-color: #0d4073;
  transform: translateY(-2px);
}

/* Animation on load */
@keyframes fadeInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-fade-in {
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

/* Features Section */
.features-section {
  padding: 40px 0px;
  background-color: #ffffff;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: -35px;
}

.section-subtitle {
  color: #666;
  font-size: 2.1rem;
  margin-top: 10px;
}

/* .feature-box {
  background: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s forwards;
} */

.feature-box {
  background: linear-gradient(135deg, hwb(31 12% 3% / 0.929), #ef2929d4);
  color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 19px 17px 14px 0px rgba(0, 0, 0, 0.08);
}

.feature-box:hover {
  transform: translateY(-5px);
  background-color: #f4f5f7;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.icon-style {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.feature-box:hover .icon-style {
  transform: scale(1.2);
}

.feature-box h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.feature-box p {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
}

/* Animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp 1s ease forwards;
}

/* Delay for staggered animations */
.animate-fade-up:nth-child(1) {
  animation-delay: 0s;
}
.animate-fade-up:nth-child(2) {
  animation-delay: 0.2s;
}
.animate-fade-up:nth-child(3) {
  animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-box {
    padding: 30px 20px;
  }

  .icon-style {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Trust / Security Section */
.trust-section {
  padding: 40px 0px;
  background-color: #ffffff;
  color: #333;
}

.trust-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.trust-subtitle {
  font-size: 23px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.trust-box {
  border-radius: 12px;
  background: linear-gradient(135deg, #d2f731ae, #d85f2a);
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.trust-box:hover {
  transform: translateY(-5px);
  background-color: #f4f5f7;
  box-shadow: 19px 17px 14px 0px rgba(0, 0, 0, 0.08);
}

.trust-section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0px; /* optional spacing between columns */
}

.trust-box-content {
  flex-grow: 1;
}

.trust-section .col-md-4 {
  display: flex;
  flex-direction: column;
}

.trust-box i {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 15px;
  display: inline-block;
}

.trust-box h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #222;
}

.trust-box p {
  color: #ffffff;
  font-size: 20px;
  margin: 0;
}

/* Bounce-in animation */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.trust-box {
  opacity: 1;
  transform: translateY(0);
}

.animate-bounce-in {
  animation: bounceIn 1s ease;
}

/* .animate-bounce-in {
  animation: bounceIn 1s ease forwards;
  opacity: 0;
} */

/* Add delay for stagger effect */
.animate-bounce-in:nth-child(1) {
  animation-delay: 0s;
}
.animate-bounce-in:nth-child(2) {
  animation-delay: 0.2s;
}
.animate-bounce-in:nth-child(3) {
  animation-delay: 0.4s;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .trust-box {
    padding: 25px 15px;
  }

  .trust-box i {
    font-size: 2.2rem;
  }
}

/* FAQ Section */
.faq-section {
  background-color: #ffffff;
}
.faq {
  padding: 40px 0px;
  background-color: #dde3e8;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  animation: fadeInUp 0.8s ease-in-out both;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.faq-subtitle {
  font-size: 23px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: linear-gradient(135deg, #ff9800, #7f793f);
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px 25px;
  box-shadow: 19px 17px 14px 0px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.question {
  font-weight: 600;
  font-size: 20px;
  color: #222;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.answer {
  font-size: 20px;
  color: #1a1717;
  margin-top: 10px;
  line-height: 1.6;
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.toggle-icon {
  font-size: 25px;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.faq-item.active .answer {
  display: block;
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg); /* changes + to × */
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-title {
    font-size: 2rem;
  }

  .faq-subtitle {
    font-size: 1rem;
  }

  .question {
    font-size: 1rem;
  }

  .answer {
    font-size: 0.9rem;
  }
}

/* ------------About Us -------------- */
/* About Section */
.about-section {
  background-color: #ffffff;
}

.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
}

.about-text {
  font-size: 20px;
  color: #555;
  line-height: 1.7;
}

.about-section img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.about-section img:hover {
  transform: scale(1.03);
}

/* benifits-----------section------ */

.benefits-section {
  background-color: #ffffff;
}

.benefits-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
}

.benefits-subtitle {
  font-size: 23px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.benefit-box {
  padding: 30px 20px;
  background: linear-gradient(135deg, #078a69, #ec7148);
  border-radius: 10px;
  box-shadow: 19px 17px 14px 0px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.benefit-box:hover {
  background-color: #f4f5f7;
}

.benefit-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.benefit-box i {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.benefit-box h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.benefit-box p {
  color: #ffffff;
  font-size: 20px;
}
/* benifits-----------section End------ */

/* satisfaction-start */

.performance-section {
  background: #ffffff;
}

.performance-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #222;
}

.performance-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 30px;
}

.progress-bar-section {
  margin-bottom: 25px;
}

.progress-label {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.satisfaction-progress {
  background: #e0e0e0;
  height: 20px !important;
  border-radius: 18px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 0;
  background: var(--bar-color, #4a46b5); /* fallback color */
  color: white;
  font-weight: 800;
  font-size: 1rem;
  text-align: center;
  line-height: 18px;
  transition: width 1.6s ease-in-out;
  border-radius: 18px;
}

/* satisfaction-end */
