/* === Global Styles === */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #F5F5F5;
    color: #1E5631;
}

/* === Header Styles (Team Lead) === */
/* Header Styles */
.header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.05);
  border-bottom: 2px solid #d1fae5;
  position: sticky;
  top: 0;
  z-index: 50;
}
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #059669 0%, #14b8a6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #334155;
}
.logo-subtitle {
  font-size: 0.75rem;
  color: #14b8a6;
}
.nav {
  display: flex;
  gap: 2rem;
}
.nav a {
  color: #334155;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.nav a:hover {
  color: #059669;
}
.cta {
  display: block;
}
.btn {
  background: linear-gradient(90deg, #059669 0%, #14b8a6 100%);
  color: #fff;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1.25rem;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
  cursor: pointer;
  transition: background 0.2s;
}
.btn:hover {
  background: linear-gradient(90deg, #047857 0%, #0e9488 100%);
}
.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  margin-left: 1rem;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #f0fdfa 100%);
  border-top: 1px solid #d1fae5;
  border-radius: 0 0 12px 12px;
  padding: 1rem;
  margin-top: 0.5rem;
}
.mobile-nav a {
  color: #334155;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.mobile-nav a:hover {
  color: #059669;
}
.mobile-btn {
  width: 100%;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .nav,
  .cta {
    display: none;
  }
  .menu-btn {
    display: inline;
  }
  .mobile-nav {
    display: none;
  }
  .mobile-nav.open {
    display: flex;
  }
}

/* === Hero Section Styles (UI Designer) === */

/* hero section */
    body, html {
      margin: 0;
      padding: 0;
      min-height: 100vh;
      font-family: 'Segoe UI', Arial, sans-serif;
      background: #0f3d2e;
    }
    .hero-section {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 0;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 1;
      overflow: cover;
      /* Remove background image if using video */
    }

    .hero-bg-video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      transform: translate(-50%, -50%);
      object-fit: cover;
      z-index: 1;
      pointer-events: none;
    }
    .hero-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(6,78,59,0.85) 0%, rgba(6,95,70,0.75) 50%, rgba(13,148,136,0.7) 100%);
      z-index: 2;
    }
    .hero-pattern {
      position: absolute;
      inset: 0;
      opacity: 0.10;
      z-index: 3;
      background-image: url("/Assets/light_falling_onto_quran_images_with_text.jpeg");
    }
    .hero-content {
      position: relative;
      z-index: 4;
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      padding: 40px 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
    @media (max-width: 900px) {
      .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
      }
    }
    .badge {
      display: inline-flex;
      align-items: center;
      background: #bbf7d0;
      color: #065f46;
      border-radius: 999px;
      padding: 8px 20px;
      font-size: 15px;
      font-weight: 500;
      margin-bottom: 24px;
      gap: 8px;
    }
    .badge-icon {
      width: 18px;
      height: 18px;
      margin-right: 6px;
      display: inline-block;
      vertical-align: middle;
    }
    .hero-title {
      font-size: 2.7rem;
      line-height: 1.1;
      color: #fff;
      font-weight: 700;
      margin-bottom: 18px;
    }
    @media (min-width: 600px) {
      .hero-title {
        font-size: 3.2rem;
      }
    }
    .hero-title .highlight {
      background: linear-gradient(90deg, #6ee7b7 0%, #5eead4 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-left: 8px;
    }
    .hero-desc {
      color: #d1fae5;
      font-size: 1.15rem;
      margin-bottom: 32px;
      max-width: 500px;
    }
    .hero-cta {
      display: flex;
      gap: 18px;
      margin-bottom: 32px;
      flex-wrap: wrap;
      justify-content: flex-start;
    }
    @media (max-width: 900px) {
      .hero-cta {
        justify-content: center;
      }
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 8px;
      padding: 14px 32px;
      border: none;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
      box-shadow: 0 4px 24px 0 rgba(16,185,129,0.10);
    }
    .btn-primary {
      background: linear-gradient(90deg, #10b981 0%, #14b8a6 100%);
      color: #fff;
      border: 1.5px solid #6ee7b7;
    }
    .btn-primary:hover {
      background: linear-gradient(90deg, #059669 0%, #0e7490 100%);
    }
    .btn-outline {
      background: transparent;
      color: #d1fae5;
      border: 2px solid #6ee7b7;
      backdrop-filter: blur(2px);
    }
    .btn-outline:hover {
      background: rgba(16,185,129,0.10);
      color: #fff;
    }
    .stats {
      display: flex;
      gap: 18px;
      max-width: 380px;
      margin: 0 auto 0 0;
      justify-content: flex-start;
    }
    @media (max-width: 900px) {
      .stats {
        justify-content: center;
        margin: 0 auto;
      }
    }
    .stat-card {
      background: rgba(255,255,255,0.10);
      backdrop-filter: blur(4px);
      border-radius: 12px;
      padding: 18px 0;
      flex: 1;
      border: 1px solid rgba(255,255,255,0.20);
      text-align: center;
    }
    .num-value {
      color: #fff;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 2px;
    }
    .num-label {
      color: #d1fae5;
      font-size: 0.98rem;
    }
    /* Right Side */
    .hero-image-area {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .main-image-card {
      background: rgba(255,255,255,0.10);
      backdrop-filter: blur(4px);
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.20);
      box-shadow: 0 8px 32px 0 rgba(16,185,129,0.10);
      padding: 3px;
      position: relative;
      z-index: 2;
    }
    .main-image-card img {
      border-radius: 10px;
      width: 600px; /* increased from 340px */
      max-width: 100%;
      display: block;
    }
    .floating-card {
      position: absolute;
      min-width: 180px;
      background: #fff;
      backdrop-filter: blur(4px);
      border-radius: 16px;
      box-shadow: 0 8px 32px 0 rgba(16,185,129,0.10);
      border: 1.5px solid #bbf7d0;
      padding: 16px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 3;
    }
    .floating-card.top {
      top: -32px;
      left: -32px;
      border-color: #bbf7d0;
    }
    .floating-card.bottom {
      bottom: -32px;
      right: -32px;
      border-color: #67e8f9;
    }
    .floating-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
    }
    .floating-icon.quran {
      background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
    }
    .floating-icon.live {
      background: linear-gradient(135deg, #14b8a6 0%, #22d3ee 100%);
    }
    .floating-info {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .floating-title {
      color: #1e293b;
      font-size: 1rem;
      font-weight: 600;
    }
    .floating-desc {
      color: #64748b;
      font-size: 0.85rem;
    }
    .image-bg-deco {
      position: absolute;
      inset: -18px;
      background: linear-gradient(135deg, rgba(52,211,153,0.20) 0%, rgba(45,212,191,0.20) 100%);
      border-radius: 32px;
      filter: blur(18px);
      z-index: 1;
    }
    @media (max-width: 900px) {
      .hero-image-area {
        margin: 0 auto;
      }
      .main-image-card img {
        width: 100%;
        max-width: 400px; /* increased from 320px */
      }
      .floating-card {
        display: none;
      }
    }

  /* About section */
  /* about page styles */
body { 
    margin: 0; font-family: 'Inter', Arial, sans-serif; background: #f8fafc; color: #1e293b; 
}
.about-section { 
    background: #fff; padding: 60px 0 40px 0; 
}
.container { 
    max-width: 1200px; margin: 0 auto; padding: 0 24px; text-align: center;
}
.badge { 
    display: inline-flex; align-items: center; padding: 0.5rem 1rem; background: #d1fae5; color: #065f46; border-radius: 9999px; font-size: 0.95rem; margin-bottom: 1.5rem; 
}
.badge svg { 
    width: 1rem; height: 1rem; margin-right: 0.5rem;
}
.main-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
  line-height: 1.15;
}
.main-title .highlight {
  background: linear-gradient(90deg, #059669 0%, #14b8a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.main-desc {
  color: #64748b;
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 40px auto;
  text-align: center;
  line-height: 1.7;
}
.vision-block {
  max-width: 700px;
  margin: 0 auto 48px auto;
  text-align: center;
}
.vision-block h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #1e293b;
}
.vision-block p {
  color: #64748b;
  margin-bottom: 10px;
  line-height: 1.7;
}
.stats-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 32px;
  margin-bottom: 0;
}
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #059669 0%, #14b8a6 100%);
  margin-bottom: 8px;
}
.stat-icon.secondary {
  background: linear-gradient(135deg, #14b8a6 0%, #22d3ee 100%);
}
.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
}
.stat-label {
  font-size: 0.95rem;
  color: #64748b;
}
.heritage-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 10px;
  text-align: center;
}
.heritage-desc {
  color: #64748b;
  text-align: center;
  margin-bottom: 36px;
  font-size: 1rem;
}
.heritage-gallery {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.heritage-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(16,185,129,0.06);
  overflow: hidden;
  position: relative;
  width: 320px;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.heritage-card:hover {
  box-shadow: 0 8px 24px rgba(16,185,129,0.10);
  transform: translateY(-4px) scale(1.03);
}
.heritage-img-wrap {
  position: relative;
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
}
.heritage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.heritage-card:hover img {
  transform: scale(1.07);
}
.heritage-img-wrap .heritage-overlay,
.heritage-img-wrap .heritage-interactive,
.heritage-img-wrap .heritage-content-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.heritage-img-wrap .heritage-content-overlay {
  transform: translateY(100%);
  transition: opacity 0.3s, transform 0.3s;
}
.heritage-card:hover .heritage-overlay,
.heritage-card:hover .heritage-interactive {
  opacity: 1;
  pointer-events: auto;
}
.heritage-card:hover .heritage-content-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.stats-grid {
  background: linear-gradient(135deg, #a9fac2, #f0fdfa);
  padding: 40px 24px;
  border-radius: 16px;
  border: 1px solid #c6f9de;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 36px auto 48px auto;
}
.stats-box {
  background: #f0fdfa;
  border-radius: 18px;
  padding: 28px 0 22px 0;
  text-align: center;
  border: 1px solid #d1fae5;
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}
.stats-box:hover {
  box-shadow: 0 8px 32px rgba(16,185,129,0.10);
  transform: scale(1.04);
}
.stats-box .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #059669 0%, #14b8a6 100%);
  color: #fff;
  font-size: 1.3rem;
}
.stats-box:nth-child(2) .icon {
  background: linear-gradient(90deg, #14b8a6 0%, #22d3ee 100%);
}
.stats-box:nth-child(3) .icon {
  background: linear-gradient(90deg, #334155 0%, #1e293b 100%);
}
.stats-box:nth-child(4) .icon {
  background: linear-gradient(90deg, #059669 0%, #22c55e 100%);
}
.stats-box .value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}
.stats-box .label {
  font-size: 1rem;
  color: #64748b;
}
.core-values {
        
  background: linear-gradient(135deg, #a9fac2, #f0fdfa);
  padding: 40px 24px;
  border-radius: 16px;
  border: 1px solid #c6f9de;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 0;
  margin-bottom: 0;
}
.core-value-card {
  background: #f0fdfa;
  border-radius: 18px;
  border: 1px solid #d1fae5;
  padding: 36px 24px 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.core-value-card .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669 0%, #14b8a6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.core-value-card:nth-child(2) .icon {
  background: linear-gradient(135deg, #14b8a6 0%, #22d3ee 100%);
}
.core-value-card:nth-child(3) .icon {
  background: linear-gradient(135deg, #059669 0%, #22c55e 100%);
}
.core-value-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 10px;
}
.core-value-card p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}
@media (max-width: 1100px) {
  .heritage-gallery { flex-direction: column; align-items: center; }
  .heritage-card { width: 100%; max-width: 400px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .core-values { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .container { padding: 0 8px; }
  .main-title { font-size: 2rem; }
  .vision-block h3 { font-size: 1.15rem; }
  .heritage-gallery { gap: 18px; }
  .stats-row { flex-direction: column; gap: 18px; }
  .stats-grid { grid-template-columns: 1fr; gap: 18px; }
  .core-values { grid-template-columns: 1fr; gap: 18px; }
}

/* About Section End */

/* === Features Section Styles (Features Developer) === */
 

 /* Header Styles */
 

/* Feature Section Header Styles */
 
 /* Header Styles */
 /* Feature Section Header Styles */
.feature-header {
    text-align: center;
    margin-bottom: 40px;
}

.feature-header .badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: #d1fae5;
    color: #065f46;
    border-radius: 9999px;
    margin-bottom: 16px;
    font-size: 14px;
}

.feature-header h1 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 16px;
}

.feature-header h1 span {
    background: linear-gradient(to right, #059669, #0d9488);
    -webkit-background-clip: text;
    color: transparent;
}

.feature-header p {
    font-size: 18px;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
}


 /* Feattures Grid */
 .features-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 20px;
     margin-bottom: 60px;
 }

 @media (min-width: 768px) {
     .features-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (min-width: 1024px) {
     .features-grid {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 .feature-card {
     background: #ffffff;
     padding: 24px;
     border-radius: 16px;
     border: 1px solid #e5e7eb;
     text-align: left;
     transition: transform 0.3s, box-shadow 0.3s;


 }



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

 .feature-icon {
     width: 64px;
     height: 64px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 16px;
     transition: transform 0.3s;

 }

 .feature-img1 {
     background-size: contain;
     position: relative;
     color: white;
     z-index: 1;
 }

 .feature-img1::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url("Assets/Quran1.jpg") no-repeat center/cover;
     opacity: 0.3;
     z-index: -1;
 }

 .feature-img2 {
     background-size: contain;
     position: relative;
     color: white;
     z-index: 1;
 }

 .feature-img2::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url("Assets/arabic\ img.jpg") no-repeat center/cover;
     opacity: 0.3;
     z-index: -1;
 }

 .feature-img3 {
     background-size: contain;
     position: relative;
     color: white;
     z-index: 1;
 }

 .feature-img3::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url("Assets/islamic\ history.jpg") no-repeat center/cover;
     opacity: 0.3;
     z-index: -1;
 }

 .feature-img4 {
     position: relative;
     color: white;
     z-index: 1;
 }

 .feature-img4::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url("Assets/live\ classes.jpg") no-repeat center/cover;
     opacity: 0.3;
     z-index: -1;
 }

 .feature-img5 {
     position: relative;
     color: white;
     z-index: 1;
 }

 .feature-img5::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url("Assets/bukhari.jpg") no-repeat center/cover;
     opacity: 0.3;
     z-index: -1;
 }

 .feature-img6 {
     position: relative;
     color: white;
     z-index: 1;
 }

 .feature-img6::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url("Assets/certificate.jpg") no-repeat center/cover;
     opacity: 0.3;
     z-index: -1;
 }

 .feature-card:hover .feature-icon {
     transform: scale(1.1);
 }

 .feature-card h3 {
     font-size: 20px;
     color: black;
     margin-bottom: 12px;
 }

 .feature-card p {
     font-size: 16px;
     color: black;
 }

 /* Learning Paths */
 .learning-paths {
     margin-bottom: 60px;
     background: linear-gradient(135deg, #a9fac2, #f0fdfa);
     padding: 40px 20px;
     border-radius: 16px;
     border: 1px solid #c6f9de;
 }

 .learning-paths h2 {
     font-size: 28px;
     color: #1e293b;
     text-align: center;
     margin-bottom: 16px;
 }

 .learning-paths p {
     font-size: 16px;
     color: #475569;
     text-align: center;
     max-width: 500px;
     margin: 0 auto 32px;
 }

 .paths-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 20px;
 }

 @media (min-width: 768px) {
     .paths-grid {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 .path-card {
     padding: 24px;
     border-radius: 16px;
     border: 2px solid;
     text-align: center;
     transition: box-shadow 0.3s;
 }

 .path-card:hover {
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 }

 .path-card h4 {
     font-size: 20px;
     color: #1e293b;
     margin-bottom: 12px;
 }

 .path-card .info {
     display: flex;
     justify-content: center;
     gap: 16px;
     margin-bottom: 12px;
     font-size: 14px;
     color: #475569;
 }

 .path-card p {
     font-size: 14px;
     color: #475569;
 }

 /* Why Choose Us */
 .why-choose {
     background: linear-gradient(135deg, #064e3b 0%, #134e4a 60%, #0f172a 100%);
     padding: 32px;
     border-radius: 16px;
     border: 1px solid #e5e7eb;
 }

 .why-choose h2 {
     font-size: 28px;
     color: #64e6a9;
     text-align: center;
     margin-bottom: 32px;
 }

 .why-choose-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 20px;
 }

 @media (min-width: 768px) {
     .why-choose-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (min-width: 1024px) {
     .why-choose-grid {
         grid-template-columns: repeat(4, 1fr);
     }
 }

 .why-choose-item {
     text-align: center;
 }

 .why-choose-item .icon {
     width: 64px;
     height: 64px;
     border-radius: 9999px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 16px;
 }

 .why-choose-item h4 {
     font-size: 18px;
     color: #ffffff;
     margin-bottom: 8px;
 }

 .why-choose-item p {
     font-size: 14px;
     color: #69e7bd;
 }

/* === Quote Section Styles (Features Developer) === */

/* === Contact Section Styles (Footer Developer) === */
  .contact-section {
      padding: 60px 0;
      background: #fff;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
    }
    .text-center {
      text-align: center;
    }
    .badge {
      display: inline-flex;
      align-items: center;
      padding: 8px 16px;
      background: #d1fae5;
      color: #065f46;
      border-radius: 9999px;
      margin-bottom: 16px;
      font-size: 14px;
      font-weight: 500;
    }
    .section-title {
      font-size: 2.5rem;
      margin-bottom: 24px;
      color: #1e293b;
    }
    .section-title .highlight {
      background: linear-gradient(to right, #059669, #14b8a6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-fill-color: transparent;
    }
    .section-desc {
      font-size: 1.25rem;
      color: #64748b;
      max-width: 700px;
      margin: 0 auto 40px auto;
      line-height: 1.7;
    }
    .grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
    }
    @media (min-width: 1024px) {
      .grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    .form-card {
      background: whitesmoke;
      padding : 40px 32px;
      border-radius: 24px;
      border: 1px solid #c6f9de;
      box-sizing: border-box;
      font-family: poppins, 'Segoe UI', Arial, sans-serif;
    }
    .form-card h3 {
      font-size: 2rem;
      color: #384963;
      margin-bottom: 8px;
    }
    .form-card p {
      color: #64748b;
      margin-bottom: 32px;
    }
    form .form-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }
    @media (min-width: 768px) {
      form .form-row.two {
        grid-template-columns: 1fr 1fr;
      }
    }
    label {
      color: #1e293b;
      font-weight: 500;
      display: block;
      margin-bottom: 6px;
    }
    input, select, textarea {
      width: 100%;
      padding: 10px 12px;
      border: 2px solid #4aab7e;
      border-radius: 8px;
      font-size: 1rem;
      margin-top: 4px;
      box-sizing: border-box;
      transition: border-color 0.3s;
    }
    input:focus, select:focus, textarea:focus {
      border-color: #059669;
      outline: none;
    }
    textarea {
      resize: vertical;
    }
    .submit-btn {
      width: 100%;
      background: linear-gradient(to right, #059669, #14b8a6);
      color: #fff;
      padding: 14px 0;
      border: none;
      border-radius: 8px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      margin-top: 8px;
      box-shadow: 0 4px 16px 0 rgba(16, 185, 129, 0.10);
      transition: background 0.2s;
    }
    .submit-btn:hover {
      background: linear-gradient(to right, #047857, #0d9488);
    }
    .info-section {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    .info-card {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 24px;
      background: linear-gradient(135deg, #f0fdf4, #f0fdfa);
      border-radius: 16px;
      border: 1px solid #d1fae5;
    }
    .info-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      background: linear-gradient(135deg, #059669, #14b8a6);
      color: #fff;
      font-size: 22px;
      flex-shrink: 0;
    }
    .info-card h4 {
      margin: 0 0 4px 0;
      font-size: 1.1rem;
      color: #1e293b;
    }
    .info-card p {
      margin: 0;
      color: #64748b;
      font-size: 1rem;
    }
    .info-card .text-sm {
      color: #94a3b8;
      font-size: 0.95rem;
    }
    .stats-card {
      background: linear-gradient(135deg, #059669, #14b8a6);
      color: #fff;
      padding: 32px;
      border-radius: 24px;
      margin-top: 24px;
    }
    .stats-title {
      font-size: 1.2rem;
      margin-bottom: 24px;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .stat {
      text-align: center;
    }
    .stat .stat-value {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 4px;
    }
    .stat .stat-label {
      color: #d1fae5;
      font-size: 1rem;
    }

/* === Footer Styles (Footer Developer) === */
.footer-section {
  background: linear-gradient(135deg, #064e3b 0%, #134e4a 60%, #0f172a 100%);
  color: #fff;
  font-family: "Poppins",'Segoe UI', Arial, sans-serif;
}

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

.footer-main {
  padding: 48px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-logo-row {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #10b981, #14b8a6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 20px;
}
.footer-logo-title {
  font-size: 1.25rem;
  font-weight: bold;
}
.footer-logo-desc {
  color: #6ee7b7;
  font-size: 0.95rem;
}
.footer-desc {
  color: #6ee7b7;
  margin-bottom: 24px;
  max-width: 400px;
  line-height: 1.7;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social-link {
  width: 40px;
  height: 40px;
  background: #047857;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: background 0.2s;
  text-decoration: none;
}
.footer-social-link:hover {
  background: #14b8a6;
}

.footer-title {
  color: #5eead4;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 24px;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link {
  color: #6ee7b7;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #5eead4;
}

.footer-stats {
  padding-top: 32px;
  border-top: 1px solid #047857;
  margin-top: 32px;
}
.footer-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-stats-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.footer-stat-card {
  background: rgba(6, 95, 70, 0.7);
  padding: 16px;
  border-radius: 16px;
}
.footer-stat-icon {
  font-size: 22px;
  color: #5eead4;
  margin-bottom: 8px;
}
.footer-stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}
.footer-stat-label {
  color: #6ee7b7;
  font-size: 1rem;
}

.footer-newsletter {
  padding-top: 32px;
  border-top: 1px solid #047857;
  margin-top: 32px;
  text-align: center;
}
.newsletter-title {
  color: #5eead4;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.newsletter-desc {
  color: #6ee7b7;
  margin-bottom: 24px;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .newsletter-form {
    flex-direction: row;
  }
}
.newsletter-input {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #047857;
  background: #065f46;
  color: #fff;
  font-size: 1rem;
  outline: none;
}
.newsletter-input::placeholder {
  color: #6ee7b7;
}
.newsletter-input:focus {
  border: 1.5px solid #14b8a6;
}
.newsletter-btn {
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(to right, #059669, #14b8a6);
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
}
.newsletter-btn:hover {
  background: linear-gradient(to right, #047857, #0d9488);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #047857;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: 32px;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-link {
  color: #6ee7b7;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s;
}
.footer-bottom-link:hover {
  color: #5eead4;
}

