

.hero-content {
  
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);

}
.containerc{
  background-color: #f71000;

}

.card {
  border-radius: 20px;
  height: 250px;
  width: 300px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin: 30px;
}

/*.crdbtn {
  margin-top: 15px;
  background-color: #fbc531;
  color: #0d0d43;
  border: none;
  border-radius: 15px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  width: 50px;
}*/

.crdbtn:hover {
  background-color: #ff4a04;
  color: white;
}


.stats-banner {
  display: flex;
  justify-content: space-around;
  background-color: #9b3006;
  padding: 30px 15px;
  
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  color: white;
  margin-bottom: 40px ;
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
  gap: 20px;
}

.stat-box {
  flex: 1 1 200px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0 10px;
}

.stat-box:last-child {
  border-right: none;
}

.icon {
  font-size: 2.5rem;
  color: #fbc531;
  margin-bottom: 10px;
}

.label {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: #f1f1f1;
}

.value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .cardcontainer {
    flex-direction: column;
    align-items: center;
  }

  .stats-banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .stat-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 0;
  }

  .stat-box:last-child {
    border-bottom: none;
  }
}
/* === Section Headings === */
.services-section h2,
.choose-section h2,
.testimonials-section h2,
.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #0d0d43;
}
  

/* === Card Style Common === */
.service-card,
.choose-card
 {
  height: 250px;
  padding: 25px;
  border: none;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background-color:  #ff4a04; /* Light yellow shade */
  transition: transform 0.3s ease;
}
.testimonial-card{
   height: 200px;
  padding: 25px;
  border: none;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background-color:  #ff4a04; /* Light yellow shade */
  transition: transform 0.3s ease;
}

/* === Hover Effect === */
.service-card:hover,
.choose-card:hover,
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* === Icons Styling === */
.service-card i,
.choose-card i {
  font-size: 2rem;
  color: #ffffff; 
  margin-bottom: 15px;
  display: block;
}

/* === Card Titles === */
.service-card h5,
.choose-card h5 {
  font-weight: 600;
  color: #ffffff; /* Yellow */
  
  
}

/* === Paragraphs inside Cards === */
.service-card p,
.choose-card p,
.testimonial-card p {
  color: #ffffff;
}

/* === Testimonial Names === */
.testimonial-card h6 {
  font-weight: 600;
  color: #000000; /* Yellow */
  
  margin-top: 10px;
}
.testimonial-card{
  background-color: #ff4a04;
}

/* === CTA Section === */
.cta-section p {
  font-size: 1rem;
  margin-bottom: 20px;
  color:  #0d0d43;
}

.cta-section .btn {
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 30px;
  background-color: #ff4a04;
  color: #000000;
  font-weight: 600;
  border: none;
}

.cta-section .btn:hover {
  background-color: #000000;
  color: #ff4a04;
}

/* === Responsive Tweaks === */
@media (max-width: 768px) {
  .service-card,
  .choose-card,
  .testimonial-card {
    margin-bottom: 20px;
  }
}
.crdbtn{
  width: 70px;
  background-color: #ff4a04;
  color: #0d0d43;
  margin-left: 95px;
  margin-top: 20px;
  border-radius: 10px;
}

