/* =========================
   GLOBAL STYLES
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   HEADER
========================= */
.site-header {
  background: #ffffff;
  padding: 15px 60px;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 50px;
}

.header-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.header-nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.header-nav a:hover {
  color: #f02d00;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #000;
  margin: 4px 0;
  border-radius: 2px;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  background: #ffffff;
  padding: 0px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  padding-top: 20px;   /* 👈 spacing moved here */
  padding-bottom: 20px;
}


.hero-content {
  flex: 1;
}

.headline {
  font-size: 3rem;
  font-weight: 800;
  color: #f02d00;
  line-height: 1.3;
  margin-bottom: 20px;
}

.headline span {
  color: #000;
}

.subtext {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 30px;
  text-align: justify;
}

.cta-button {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: #f02d00;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* =========================
   IMPACT SECTION – DESKTOP
========================= */
.impact-section {
  background: linear-gradient(90deg, #000000 0%, #f02d00 100%);
  padding: 80px 20px;
  color: #fff;
}

.impact-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.impact-section h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 50px;
}

.impact-stats {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.impact-item {
  background: #ffffff;
  color: #000;
  border-radius: 30px;
  padding: 36px 28px;
  flex: 1;
  min-width: 220px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.impact-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #f02d00;
  margin-bottom: 10px;
}

.impact-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: #222;
}


/* =========================
   IMPACT SECTION – MOBILE
========================= */
@media (max-width: 768px) {

  .impact-section {
    padding: 60px 15px;
  }

  .impact-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .impact-stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .impact-item {
    width: 90%;
    max-width: 360px;
    padding: 18px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  }

  .impact-number {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }

  .impact-label {
    font-size: 0.95rem;
  }
}

/* =========================
   COLLABORATIONS – DESKTOP
========================= */
.collab-gallery {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff5f2, #fdf9f7);
  text-align: center;
}

.collab-container {
  max-width: 1200px;
  margin: 0 auto;
}

.collab-gallery h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.gallery-subtext {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.collab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

.collab-item {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.collab-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.collab-image {
  height: 280px;
  border: 4px solid #f02d00;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.collab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collab-item h3 {
  margin: 20px 16px 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #f02d00;
}

.collab-item p {
  font-size: 0.98rem;
  color: #555;
  margin: 0 18px 24px;
  line-height: 1.5;
}


/* =========================
   COLLABORATIONS – MOBILE
========================= */
@media (max-width: 1024px) {
  .collab-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collab-image {
    height: 240px;
  }
}

@media (max-width: 640px) {
  .collab-gallery {
    padding: 60px 15px;
  }

  .collab-gallery h2 {
    font-size: 2rem;
  }

  .gallery-subtext {
    font-size: 1rem;
    margin-bottom: 35px;
  }

  .collab-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .collab-image {
    height: 220px;
  }

  .collab-item h3 {
    font-size: 1.1rem;
  }

  .collab-item p {
    font-size: 0.95rem;
  }
}

/* =========================
   ACTIVITIES SECTION
========================= */

.activities {
  padding: 60px 20px;
  background-color: #f7f6f2;
}

.activities h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.activities h2 span {
  color: #f02d00;
}

/* Timeline container */
.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding-top: 20px;
}

/* Horizontal line */
.timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #000;
}

/* Activity item */
.activity {
  width: 22%;
  position: relative;
  text-align: left;
  z-index: 1;
}

/* Dot */
.activity .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #000;
  position: relative;
  top: 16px;
  margin: 0 auto;
  transform: translateY(-50%);
}

/* Text spacing */
.activity h3,
.activity p {
  margin-top: 16px;
}

.activity h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #f02d00;
  margin-bottom: 10px;
  line-height: 1.3;
}

.activity p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* =========================
   ACTIVITIES – MOBILE
========================= */
@media (max-width: 900px) {

  .timeline {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0;
  }

  /* Vertical line */
  .timeline::before {
    width: 3px;
    height: 100%;
    top: 10px;
    left: 24px;
    right: auto;
  }

  .activity {
    width: 100%;
    padding-left: 60px;
    margin-bottom: 40px;
  }

  .activity .dot {
    position: absolute;
    left: 15px;
    top: 10px;
    transform: none; /* important */
  }
}

/* =========================
   KEY FEATURES
========================= */
.key-features {
  background: #000;
  color: #fff;
  padding: 70px 20px;
}

.key-features h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 50px;
}

.key-features h2 span {
  color: #f02d00;
}

.features-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: #f02d00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 20px;
}

.feature-icon i {
  font-size: 32px;
  color: #fff;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 1rem;
  color: #ddd;
}

/* =========================
   COURSE CATEGORY SECTION
========================= */
.course-category-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fffdfa, #f4f4fa);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.course-category-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   SECTION INTRO
========================= */
.section-intro {
  text-align: center;
  margin-bottom: 40px;
}

.section-intro .main-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
}

.section-intro .subtitle {
  font-size: 1.05rem;
  color: #555;
  margin-top: 8px;
}

/* =========================
   CATEGORY BANNER
========================= */
.category-banner {
  margin-bottom: 30px;
}

.category-banner img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* =========================
   CATEGORY TITLE
========================= */
.category-title {
  display: inline-block;
  background-color: #f02d00;
  color: #fff;
  padding: 10px 24px;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 30px;
}

/* =========================
   COURSE GRID
========================= */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* =========================
   COURSE CARD
========================= */
.course-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.course-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #f02d00;
  margin-bottom: 16px;
}

/* =========================
   TOPICS LIST
========================= */
.course-card .topics {
  padding-left: 18px;
  list-style: disc;
  margin-bottom: 16px;
}

.course-card .topics li {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* =========================
   BUTTONS
========================= */
.course-card .buttons {
  margin-top: 10px;
}

.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: #000;
  color: #fff;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #c62800;
}


/* =========================
   COURSE CATEGORY – MOBILE
========================= */
@media (max-width: 768px) {

  .course-category-section {
    padding: 40px 15px;
  }

  .section-intro .main-title {
    font-size: 1.9rem;
  }

  .section-intro .subtitle {
    font-size: 1rem;
  }

  .category-title {
    font-size: 1.1rem;
    padding: 8px 18px;
  }

  .course-card {
    padding: 20px;
  }

  .course-card h2 {
    font-size: 1.15rem;
  }

  .course-card .topics li {
    font-size: 0.9rem;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-logo img {
  height: 80px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 10px;
}

.footer-text {
  flex: 1;
  text-align: center;
}

.footer-contact-block {
  text-align: right;
}

.footer-contact-block a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.footer-social a {
  color: #fff;
}

.footer-divider {
  border-top: 2px dotted #666;
  margin: 30px auto 15px;
  width: 90%;
}

.footer-copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #bbb;
}

/* =========================
   MOBILE STYLES
========================= */
@media (max-width: 768px) {

  .site-header {
    padding: 15px 20px;
  }

  .hamburger {
    display: flex;
  }

  .header-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
  }

  .header-nav.active {
    display: block;
  }

  .header-nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  
  .subtext {
    text-align: justify;        /* ✅ FIX */
    font-size: 1.10rem;        /* ✅ Better for mobile */
    line-height: 1.6;          /* ✅ Improves readability */
    max-width: 90%;
    margin: 0 auto 25px;
  }

  .headline {
    font-size: 2.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    flex-direction: column;
  }

  .timeline::before {
    width: 3px;
    height: 100%;
    left: 20px;
    top: 0;
  }

  .activity {
    width: 100%;
    padding-left: 60px;
    margin-bottom: 40px;
  }

  .activity .dot {
    position: absolute;
    left: 10px;
    top: 0;
  }
.footer-container {
    flex-direction: column;
    align-items: center;   /* ✅ THIS is missing */
    text-align: center;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-logo img {
    margin: 0 auto;
  }

  .footer-contact-block {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}






/* =========================
   WHATSAPP FLOATING BUTTON
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 999;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #1ebe5d;
}
