/* ===== About Hero Section ===== */
.about-hero {
  padding: 80px 0;
  background-color: #111827;
  border-top: 1px solid #fff;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  max-width: 1280px;
  margin: 0 auto;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #e2ebf3;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #e2ebf3;
  margin-bottom: 25px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #0052cc;
  color: #e2ebf3;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background-color: #003d99;
  color: #fff;
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}



/* The start of the Mission & vision section down here */

.mission-vision-section {
  padding: 80px 0;
  background: #f9f9f9;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-header p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  width: 80%;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  stroke: #2c2c2c;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.card p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

.card ul {
  padding-left: 20px;
  list-style-type: disc;
  color: #333;
}

.card ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* The end of the Mission & Vision section up here */



/* The start of the why choose us section down here */

.why-choose-us {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 0;
  padding-top: 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #111;
}

.why-choose-us .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-inline: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

.feature-card {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.1);
}

.icon-wrapper {
  background-color: #eef1f6;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.icon-wrapper i {
  width: 28px;
  height: 28px;
  stroke: #0077ff;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #222;
}

.feature-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* The end of the why choose us section up here */



/* The start of the core valuse section down here */

.core-values-section {
  padding: 80px 0;
  background-color: #f8f9fb;
}

.core-values-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.core-values-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
}

.core-values-intro {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #666;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.core-value-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.core-value-card:hover {
  transform: translateY(-6px);
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #0066ff;
}

.value-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.value-desc {
  font-size: 0.95rem;
  color: #555;
}

/* The end of the core values section up here */




/* The start of the trust footer section down here */

.trust-footer-section {
  background-color: #111827;
  color: #e2ebf3;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 2px solid #fff;
}

.trust-footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.trust-footer-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.trust-footer-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.trust-footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.trust-footer-logos img {
  height: 50px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.trust-footer-logos img:hover {
  opacity: 1;
}

.trust-footer-cta .trust-footer-btn {
  display: inline-block;
  background-color: #10b981;
  color: #e2ebf3;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.trust-footer-cta .trust-footer-btn:hover {
  background-color: #059669;
  color: #fff;
}

/* The end of the trust footer section up here */

/* ===== Responsive Breakpoints ===== */

/* Extra Large Desktops */
@media (min-width: 1280px) {
  .hero-text h1 {
    font-size: 3rem; /* No change but kept for clarity */
  }


  /* The start of the Mission & vision section down here */
/* The end of the Mission & Vision section up here */



/* The start of the why choose us section down here */

.features-grid {
  gap: 24px;
}
.feature-title {
  font-size: 1.15rem;
}
.feature-text {
  font-size: 0.9rem;
}

/* The end of the why choose us section up here */



/* The start of the core valuse section down here */

.core-values-grid {
  gap: 32px;
}

/* The end of the core values section up here */



/* The start of the trust footer section down here */
/* The end of the trust footer section up here */
}




/* Desktop & Large Tablets */
@media (min-width: 1024px) and (max-width: 1279px) {
  .hero-text h1 {
    font-size: 2.7rem;
  }
  .hero-text p {
    font-size: 1.1rem;
  }



  /* The start of the Mission & vision section down here */

  .mission-vision-grid {
    width: 85%;
    gap: 32px;
  }
  .card {
    padding: 35px 25px;
  }

  /* The end of the Mission & Vision section up here */



  /* The start of the why choose us section down here */

  .why-choose-us {
    padding: 50px 16px;
  }
  .features-grid {
    gap: 20px;
  }
  .feature-text {
    font-size: 0.85rem;
  }

  /* The end of the why choose us section up here */



  /* The start of the core valuse section down here */

  .core-values-grid {
    gap: 24px;
  }
  .core-value-card {
    padding: 20px;
  }

  /* The end of the core values section up here */



  /* The start of the trust footer section down here */

  .trust-footer-title {
    font-size: 2.2rem;
  }
  .trust-footer-subtitle {
    font-size: 1.1rem;
  }

  /* The end of the trust footer section up here */
}



/* Tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-content {
    gap: 30px;
    padding-top: 50px;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .hero-image {
    text-align: center;
  }


  /* The start of the Mission & vision section down here */

  .mission-vision-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 85%;
  }
  .card {
    padding: 30px 20px;
  }
  .section-header h2 {
    font-size: 2rem;
  }

  /* The end of the Mission & Vision section up here */



  /* The start of the why choose us section down here */

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .feature-card {
    padding: 24px 16px;
  }
  .feature-title {
    font-size: 1.1rem;
  }

  /* The end of the why choose us section up here */



  /* The start of the core valuse section down here */

  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .core-values-title {
    font-size: 2.2rem;
  }
  .core-values-intro {
    font-size: 0.95rem;
  }
  .core-values-section {
    padding: 60px 0;
  }
  .core-value-card {
    padding: 18px;
  }

  /* The end of the core values section up here */



  /* The start of the trust footer section down here */

  .trust-footer-title {
    font-size: 2rem;
  }
  .trust-footer-subtitle {
    font-size: 1.5rem;
  }
  .trust-footer-logos img {
    height: 40px;
  }

  /* The end of the trust footer section up here */
}




/* Large Phones (phablets) */
@media (min-width: 576px) and (max-width: 767px) {
  .hero-content {
    flex-direction: column;
    gap: 3rem;
    padding-top: 50px;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text p {
    font-size: 1rem;
  }


  /* The start of the Mission & vision section down here */

  .mission-vision-section {
    padding: 0;
    margin-top: -30px;
  }
  .mission-vision-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 85%;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
  .card {
    padding: 24px;
  }

  /* The end of the Mission & Vision section up here */



  /* The start of the why choose us section down here */

  .features-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
  .feature-card {
    max-width: 550px;
    margin-inline: auto;
  }

  /* The end of the why choose us section up here */



  /* The start of the core valuse section down here */

  .core-values-section {
    margin-top: -40px;
  }
  .core-values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .core-values-title {
    font-size: 2rem;
  }

  /* The end of the core values section up here */



  /* The start of the trust footer section down here */

  .trust-footer-title {
    font-size: 2rem;
  }
  .trust-footer-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
  }
  .trust-footer-logos {
    gap: 30px;
  }
  .trust-footer-cta .trust-footer-btn {
    padding: 12px 28px;
  }

  /* The end of the trust footer section up here */
}




/* Standard Mobile Phones */
@media (max-width: 575px) {
  .hero-content {
    flex-direction: column;
    gap: 3rem;
    padding-top: 0;
    text-align: center;
    width: 90%;
  }
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .hero-text p {
    font-size: 0.95rem;
  }
  .hero-btn {
    padding: 10px 22px;
  }

  .hero-image {
    text-align: center;
  }


  /* The start of the Mission & vision section down here */

  .mission-vision-section {
    padding: 50px 0;
    margin-top: -20px;
  }
  .section-header h2 {
    font-size: 1.6rem;
  }
  .section-header p {
    font-size: 0.9rem;
  }
  .card {
    padding: 20px;
  }
  .card h3 {
    font-size: 1.25rem;
  }
  .card p,
  .card ul li {
    font-size: 0.9rem;
  }


  .mission-vision-grid {
    grid-template-columns: repeat(1, 1fr);
    width: 85%;
  }

  /* The end of the Mission & Vision section up here */



  /* The start of the why choose us section down here */

  .section-title {
    font-size: 2rem;
  }

  .why-choose-us {
    padding-top: 0;
    margin-top: 0;
  }

  .features-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }

  .feature-title {
    font-size: 1rem;
  }
  .feature-text {
    font-size: 0.85rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
  .feature-card {
    padding: 20px 14px;
  }
  .icon-wrapper {
    width: 50px;
    height: 50px;
  }
  .icon-wrapper i {
    width: 24px;
    height: 24px;
  }

  /* The end of the why choose us section up here */



  /* The start of the core valuse section down here */

  .core-values-section {
    padding: 50px 0;
    margin-top: -80px;
  }

  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .core-values-container {
    width: 90%;
  }
  .core-values-title {
    font-size: 1.8rem;
  }
  .core-values-intro {
    font-size: 0.88rem;
  }
  .value-title {
    font-size: 1.1rem;
  }
  .value-desc {
    font-size: 0.9rem;
  }
  .icon {
    font-size: 2rem;
  }

  /* The end of the core values section up here */




  /* The start of the trust footer section down here */

  .trust-footer-title {
    font-size: 1.6rem;
  }
  .trust-footer-subtitle {
    font-size: 0.9rem;
  }
  .trust-footer-logos img {
    height: 36px;
  }

  /* The end of the trust footer section up here */
}




/* Small Phones */
@media (max-width: 375px) {
  .hero-text h1 {
    font-size: 1.5rem;
  }
  .hero-text p {
    font-size: 0.85rem;
  }



  /* The start of the Mission & vision section down here */

  .mission-vision-grid {
    width: 95%;
  }
  .card {
    padding: 14px;
  }
  .card h3 {
    font-size: 1.1rem;
  }
  .card p {
    font-size: 0.88rem;
  }
  .card ul li {
    font-size: 0.85rem;
  }

  /* The end of the Mission & Vision section up here */




  /* The start of the why choose us section down here */

  .section-title {
    font-size: 1.6rem;
  }
  .feature-text {
    font-size: 0.8rem;
  }
  .feature-title {
    font-size: 0.95rem;
  }
  .why-choose-us {
    padding: 40px 10px;
  }
  .section-subtitle {
    font-size: 0.9rem;
  }

  /* The end of the why choose us section up here */



  /* The start of the core valuse section down here */

  .core-values-section {
    margin-top: -40px;
    padding: 40px 0;
  }

  .core-values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .core-values-title {
    font-size: 1.7rem;
  }
  .core-values-intro {
    font-size: 0.85rem;
  }
  .value-title {
    font-size: 1rem;
  }
  .value-desc {
    font-size: 0.85rem;
  }
  .core-value-card {
    padding: 16px;
  }

  /* The end of the core values section up here */




  /* The start of the trust footer section down here */

  .trust-footer-title {
    font-size: 1rem;
  }
  .trust-footer-subtitle {
    font-size: 0.7rem;
  }
  .trust-footer-btn {
    padding: 9px 22px;
  }
  .trust-footer-logos {
    gap: 20px;
  }
  .trust-footer-logos img {
    height: 28px;
  }

  /* The end of the trust footer section up here */
}