.hero-right {
  background: url('/imagesf/19.png') no-repeat center center/cover;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 24, 24, 0.7); /* dark overlay for readability */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 60px 5%;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  width: 100%;
  gap: 50px;
}

.hero-text {
  color: #fff;
  max-width: 600px;
  text-align: right;
}

.hero-text h3 {
  color: #fecf47;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e1f6f6;
}

.hero-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #fecf47;
  color: #000;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background-color: #fbd76a;
  transform: scale(1.05);
}

.hero-image img {
  width: 700px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-image img {
    width: 280px;
    margin-bottom: 30px;
  }
}

/* about*/

.about-section {
  background-color: #3E5879;
  padding: 80px 5% 100px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Left Part */
.about-left {
  flex: 1;
  min-width: 320px;
}

.about-img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.about-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #cbd6d6;
  margin-bottom: 20px;
}

.about-btn {
  background-color: #fecf47;
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.about-btn:hover {
  background-color: #fecf47;
  transform: scale(1.05);
}

.arrow {
  margin-left: 8px;
}

.about-impact {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -10px;
}

.impact-text {
  color: #eee;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Right Part */
.about-right {
  flex: 1;
  min-width: 320px;
}

.about-right h2 {
  font-size: 2.2rem;
  line-height: 1.4;
  margin-bottom: 40px;
}

.highlight {
  color: #ffffff;
  font-weight: 700;
}

.stats-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.stat-bubble {
  width: 180px;
  height: 180px;
  border: 1px solid #ffffff33;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.3s ease;
}

.stat-bubble h3 {
  font-size: 2.5rem;
  margin-bottom: 8px;
  color: #fff;
}

.stat-bubble p {
  font-size: 0.95rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-right h2 {
    text-align: center;
    font-size: 1.8rem;
  }

  .stats-container {
    justify-content: center;
  }

  .about-impact {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* servies */

.services-section {
  padding: 60px 20px;
  background-color: #3E5879;
  color: #ffffff;
  text-align: center;
}

.services-header .badge {
  display: inline-block;
  background-color: #fecf47;
  color: #1a1a1a;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
}

.services-header h2 {
  font-size: 36px;
  margin: 20px 0;
  line-height: 1.3;
}

.more-btn {
  display: inline-block;
  margin-top: 15px;
  background-color: #fecf47;
  color: #0a0a0a;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.more-btn:hover {
  background-color: #fbd667;
}

.services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.service-card {
  background-color: #20334b;
  padding: 30px;
  border-radius: 16px;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.icon-container {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: #fecf47;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-container img {
  width: 40px;
  height: 40px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 20px;
}

.learn-btn {
  display: inline-block;
  background-color: #1f1f1f;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.learn-btn:hover {
  background-color: #333;
}

@media screen and (max-width: 992px) {
  .services-cards {
    flex-direction: column;
    align-items: center;
  }
}

/* contact*/

.contact-section {
  padding: 60px 20px;
  background: #3E5879;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.contact-container {
  max-width: 600px;
  margin: auto;
  background: #20334b;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.contact-container h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.form-group {
  text-align: left;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fecf47;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  background: #f8f8f8;
  color: #333;
}

.submit-btn {
  background: #fecf47;
  color: #000;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #edc95a;
}

.form-alert {
  margin-top: 20px;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  display: none;
}

.form-alert.success {
  background: #2ecc71;
  color: white;
}

.form-alert.error {
  background: #e74c3c;
  color: white;
}

/* Testimonial*/

.testimonial-section {
  padding: 60px 20px;
  background-color: #f0f9f7;
  text-align: center;
}

.testimonial-heading .tag {
  background-color: #fecf47;
  padding: 5px 20px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
  color: #052d29;
}

.testimonial-heading h2 {
  font-size: 32px;
  margin-top: 20px;
  color: #052d29;
}

.testimonial-heading h2 span {
  color: #748DAE;
}

.testimonial-slider {
  position: relative;
  max-width: 700px;
  margin: 40px auto 0;
  height: 350px;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px 25px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card.active {
  opacity: 1;
  z-index: 2;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #fecf47;
}

.quote {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
  font-style: italic;
  line-height: 1.6;
}

.author {
  font-weight: 600;
  color: #748DAE;
}

/* blogs */
.blog-section {
  background-color: #f7fefc;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.blog-header .blog-tag {
  display: inline-block;
  background-color: #fecf47;
  color: #042f2e;
  font-weight: 600;
  padding: 5px 18px;
  border-radius: 20px;
  font-size: 14px;
}

.blog-header h2 {
  font-size: 32px;
  margin-top: 15px;
  color: #052d29;
}

.blog-header h2 span {
  color: #748DAE;
}

.blog-cards {
  margin-top: 40px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.blog-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  text-align: left;
}

.blog-category {
  font-size: 13px;
  font-weight: 600;
  color: #748DAE;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.blog-content h3 {
  font-size: 18px;
  color: #0d2f2c;
  margin-bottom: 12px;
}

.blog-meta {
  font-size: 14px;
  color: #555;
  display: flex;
  justify-content: space-between;
}

