/* Home Page Information Blocks Styles */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid #dee2e6;
}

.hero-content h1 {
  color: #23a1d1;
  font-weight: 700;
}

.hero-content .lead {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero-image i {
  color: #23a1d1;
  opacity: 0.8;
}

.min-vh-50 {
  min-height: 50vh;
}

/* Features Section */
.features-section {
  background-color: #f8f9fa;
}

.feature-card {
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  border-color: #23a1d1;
}

.feature-icon i {
  color: #23a1d1;
}

.feature-card h4 {
  color: #444;
  font-size: 1.1rem;
}

.feature-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Stats Section */
.stats-section {
  background-color: #fff;
}

.stat-card {
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: scale(1.05);
}

.stat-icon i {
  color: #23a1d1;
}

.stat-number {
  font-size: 2.5rem;
  color: #444;
  font-weight: 700;
}

.stat-label {
  color: #666;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Testimonial Section */
.testimonial-section {
  background: linear-gradient(135deg, #23a1d1 0%, #1f90bb 100%);
}

.testimonial-carousel .stars i {
  color: #ffc107;
}

.testimonial-carousel blockquote p {
  font-style: italic;
  font-weight: 300;
}

.testimonial-author {
  background-color: #000;
  color: rgba(255, 255, 255, 0.9) !important;
}

.testimonial-author strong {
  color: #fff !important;
  font-size: 1.1rem;
}

.testimonial-author cite {
  color: rgba(255, 255, 255, 0.8) !important;
  font-style: normal;
  font-size: 0.9rem;
}

/* Owl Carousel Custom Styles */

.testimonial-carousel.owl-carousel .owl-dots {
  margin-top: 30px;
  text-align: center;
}

.testimonial-carousel.owl-carousel .owl-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4) !important;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.testimonial-carousel.owl-carousel .owl-dots button.active,
.testimonial-carousel.owl-carousel .owl-dots button:hover {
  background: white !important;
}

.testimonial-item {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Newsletter Section */
.newsletter-section {
  background-color: #f8f9fa;
}

.newsletter-content h3 {
  color: #444;
}

.newsletter-content p {
  color: #666;
}

.newsletter-form .form-control {
  border-color: #dee2e6;
  font-size: 14px;
  height: 40px;
}

.newsletter-form .form-control:focus {
  border-color: #23a1d1;
  box-shadow: 0 0 0 0.2rem rgba(35, 161, 209, 0.25);
}

.newsletter-form .btn-primary {
  background-color: #23a1d1;
  border-color: #23a1d1;
  height: 40px;
}

.newsletter-form .btn-primary:hover {
  background-color: #1f90bb;
  border-color: #1f90bb;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content .lead {
    font-size: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .feature-card {
    margin-bottom: 1.5rem;
  }
}

/* Utility classes */
.fw-bold {
  font-weight: 700 !important;
}

.text-primary {
  color: #23a1d1 !important;
}

.btn-primary {
  background-color: #23a1d1;
  border-color: #23a1d1;
}

.btn-primary:hover {
  background-color: #1f90bb;
  border-color: #1f90bb;
}
