

body.home-page {
  padding-top: 0;
  background: #f9fafb;
  min-height: 100vh;
}

.home-stats {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 56px 20px;
}

.home-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 0;
  flex-wrap: wrap;
}

.home-stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 20px 28px;
  position: relative;
}

.home-stat-item + .home-stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: #e5e7eb;
}

.home-stat-num {
  display: block;
  font-size: 2.7rem;
  font-weight: 700;
  color: #00aaff;
  line-height: 1;
  margin-bottom: 10px;
}

.home-stat-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

#about-section {
  background: #f9fafb;
}

#about-section .overlay {
  background: transparent !important;
  padding: 70px 20px 60px;
  max-width: 900px;
  margin: 0 auto;
}

#about-section .section {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  padding: 36px 40px;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.34,1.2,0.64,1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

#about-section .section:hover {
  transform: translateY(-6px);
  border-color: #00aaff;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

#about-section .section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f3f4f6;
}

#about-section .section-heading-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0, 170, 255, 0.08);
  border: 1px solid rgba(0, 170, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}

#about-section .section-heading-icon i {
  font-size: 1.3rem;
  color: #00aaff;
}

#about-section .section:hover .section-heading-icon {
  background: rgba(0, 170, 255, 0.15);
  transform: scale(1.08) rotate(-3deg);
}

#about-section .section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
  display: block;
}

#about-section .section p,
#about-section .section ul,
#about-section .section li {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.8;
}

#about-section .section ul li::before {
  color: #00aaff;
}

.home-enroll-cta {
  padding: 80px 20px;
  background:
    linear-gradient(135deg, rgba(17,24,39,0.9) 0%, rgba(17,24,39,0.75) 100%),
    url('images/joinusbcg.jpg') no-repeat center center / cover;
  text-align: center;
}

.home-enroll-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.home-enroll-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.home-enroll-cta p {
  font-size: 0.97rem;
  color: #9ca3af;
  margin-bottom: 32px;
  line-height: 1.8;
}

.home-enroll-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.home-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #041b46;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}

.home-btn-primary:hover {
  background: #06307a;
  transform: scale(1.07);
  box-shadow: 0 6px 20px rgba(4,27,70,0.45);
}

.home-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
}

.home-btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: #00aaff;
  color: #00aaff;
  transform: scale(1.05);
}

.home-courses-section {
  padding: 80px 20px;
  background: #ffffff;
}

.home-courses-header {
  text-align: center;
  margin-bottom: 48px;
}

.home-courses-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.home-courses-header h2 span { color: #00aaff; }

.home-courses-header p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.7;
}

.home-courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.home-course-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease,
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

.home-course-card:hover {
  transform: translateY(-6px);
  border-color: #00aaff !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.home-course-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.home-course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.home-course-card:hover .home-course-img img {
  transform: scale(1.07);
}

.home-course-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.home-course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.home-course-info {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.home-course-info span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.home-course-badge {
  flex-shrink: 0;
  background: #eff6ff;
  color: #041b46;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #bfdbfe;
  white-space: nowrap;
}

.home-courses-cta {
  text-align: center;
}

.home-courses-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00aaff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,170,255,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}

.home-courses-link:hover {
  color: #0088cc;
  border-color: #0088cc;
  gap: 12px;
}

.updates-section {
  background: #f9fafb;
}

.updates-heading {
  color: #111827 !important;
  text-shadow: none !important;
}

.updates-heading span {
  color: #00aaff;
}

.tab-btn {
  background: #f3f4f6 !important;
  color: #374151 !important;
  border-color: #e5e7eb !important;
}

.tab-btn:hover,
.tab-btn.active {
  background: #041b46 !important;
  border-color: #041b46 !important;
  color: #ffffff !important;
}

.update-card {
  background: #ffffff !important;
  border-color: #e5e7eb !important;
}

.update-card:hover {
  border-color: #00aaff !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.update-headline {
  color: #111827 !important;
}

.update-desc {
  color: #6b7280 !important;
}

@media (hover: none) {
  .update-card.in-view {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #00aaff !important;
  }

  .update-card.in-view .update-img-wrap img {
    transform: scale(1.06);
  }

  #about-section .section.in-view {
    transform: translateY(-4px);
    border-color: #00aaff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  }

  #about-section .section.in-view .section-heading-icon {
    background: rgba(0, 170, 255, 0.15);
  }

  .home-course-card.in-view {
    transform: translateY(-4px);
    border-color: #00aaff;
    box-shadow: 0 10px 26px rgba(0,0,0,0.1);
  }

  .home-course-card.in-view .home-course-img img {
    transform: scale(1.05);
  }
}

.home-section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
}

.home-section-title span { color: #00aaff; }

@media (max-width: 768px) {
  .home-stats {
    padding: 40px 16px;
  }

  .home-stats-inner { gap: 0; }

  .home-stat-item {
    min-width: 140px;
    padding: 16px 18px;
  }

  .home-stat-num { font-size: 2.1rem; }
  .home-stat-label { font-size: 0.78rem; }

  #about-section .overlay { padding: 40px 16px; }
  #about-section .section { padding: 24px 20px; }

  #about-section .section-heading-icon {
    width: 36px;
    height: 36px;
  }

  #about-section .section-heading-icon i { font-size: 1.1rem; }

  .home-courses-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .home-enroll-btns {
    flex-direction: column;
    align-items: center;
  }

  .home-courses-section { padding: 50px 16px; }
}

@media (max-width: 768px) { 
  .home-stat-item + .home-stat-item::before { 
    display: none; } 
    
  .home-stats-inner { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 14px; 
    justify-content: center; } 

   
  .home-stat-highlight { 
    flex: 0 0 100%; 
    max-width: 420px; 
    background: #ffffff; 
    border: 1px solid #e5e7eb; 
    border-radius: 16px; 
    padding: 22px 20px; 
    box-shadow: 0 4px 16px rgba(0,0,0,0.06); } 
     
    .home-stat-item:not(.home-stat-highlight) { flex: 0 0 calc(50% - 7px); 
      max-width: 200px; 
      background: #ffffff; 
      border: 1px solid #e5e7eb; 
      border-radius: 14px; 
      padding: 18px 14px; } 
      .home-stat-num { font-size: 2rem; } 
      .home-stat-label { font-size: 0.78rem; } 
      .home-stat-highlight .home-stat-num { font-size: 2.5rem; } 
      .home-stat-highlight .home-stat-label { font-size: 0.9rem; } 
    }

#about-section .core-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 4px;
}

#about-section .core-value-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: background 0.3s, border-color 0.3s,
              transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

#about-section .core-value-card:hover {
  background: #eff6ff;
  border-color: #00aaff;
  transform: translateY(-4px);
}

#about-section .core-value-card i {
  font-size: 1.8rem;
  color: #00aaff;
  margin-bottom: 10px;
  display: block;
  transition: transform 0.3s;
}

#about-section .core-value-card:hover i {
  transform: scale(1.15);
}

#about-section .core-value-card span {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
}

@media (max-width: 600px) {
  #about-section .core-values-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

#contact-section {
  background: #f9fafb;
  padding: 0;
}

#contact-section .contact-container {
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 20px 80px;
  gap: 32px;
}

#contact-section .contact-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

#contact-section .contact-map iframe {
  width: 100%;
  height: 380px;
  border-radius: 16px;
  margin-bottom: 0;
}

#contact-section .contact-info {
  background: #ffffff;
  border: 1px solid #00aaff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  padding: 36px 36px;
  margin: 0;
  width: 100%;
  max-width: 100%;
  transition: transform 0.4s cubic-bezier(0.34,1.2,0.64,1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}

#contact-section .contact-info:hover {
  transform: translateY(-4px);
  border-color: #00aaff;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

#contact-section .contact-info h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827 !important;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f3f4f6;
}

#contact-section .contact-info h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827 !important;
}

#contact-section .contact-info h2:first-of-type {
  margin-top: 0;
}

#contact-section .contact-info h2 i {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(0, 170, 255, 0.08);
  border: 1px solid rgba(0, 170, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #00aaff;
  transition: background 0.3s, transform 0.3s;
}

#contact-section .contact-info h2:hover i {
  background: rgba(0, 170, 255, 0.15);
  transform: scale(1.08) rotate(-3deg);
}

#contact-section .contact-info p,
#contact-section .contact-info a {
  font-size: 0.92rem;
  color: #6b7280 !important;
  line-height: 1.7;
  padding-left: 46px;
}

#contact-section .contact-info a {
  color: #00aaff !important;
  transition: color 0.2s;
}

#contact-section .contact-info a:hover {
  color: #0088cc !important;
  text-decoration: underline;
}

@media (max-width: 768px) {
  #contact-section .contact-container {
    padding: 50px 16px 60px;
    gap: 20px;
  }

  #contact-section .contact-map iframe {
    height: 280px;
  }

  #contact-section .contact-info {
    padding: 24px 20px;
  }

  #contact-section .contact-info p,
  #contact-section .contact-info a {
    padding-left: 0;
    display: block;
    margin-top: 4px;
  }
}

.home-stat-label

.home-stat-highlight .home-stat-num {
  font-size: 3rem;
}

.home-stat-highlight .home-stat-label {
  font-size: 0.92rem;
  line-height: 1.4;
}