﻿/* Features Section */
.features-section {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.feature-item {
  width: 300px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.feature-item h3 {
  margin-bottom: 10px;
  color: #333;
}

.feature-item p {
  color: #666;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  padding: 60px 20px;
  background-color: #f0f4f8;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial {
  background-color: #fff;
  border-radius: 8px;
  padding: 25px;
  max-width: 400px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
  line-height: 1;
}

.testimonial-author {
  font-weight: bold;
  color: #007bff;
}

/* Submit Testimonial Section */
.submit-testimonial-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 40px 30px;
}

.form-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}

.form-wrapper p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
}

.iframe-container {
  border: 2px solid #007bff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.15);
}

/* Mission and Vision Container */
.container h2 {
  color: #333;
  margin-bottom: 5px;
}


/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .features-container,
  .testimonials-container {
    flex-direction: column;
    align-items: center;
  }

  .iframe-container iframe {
    height: 600px;
  }

  .form-wrapper {
    padding: 30px 20px;
  }

  .form-wrapper h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .iframe-container iframe {
    height: 500px;
  }

  .form-wrapper {
    padding: 25px 15px;
  }

  .form-wrapper h2 {
    font-size: 1.3rem;
  }
}
