:root{
  --primary:#0a2540;
  --secondary:#f5f8fb;
  --text:#333;
  --accent:#25D366;
  --hover:#133a66;
}
.about-feature {
  text-align: center;
  padding: 20px;
}

.about-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  object-fit: contain;
}

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Segoe UI", sans-serif;
}

body{
  color:var(--text);
  background:#fff;
  line-height:1.6;
}

/* ================= NAVBAR ================= */
.navbar{
  background:#fff;
  border-bottom:1px solid #eee;
  position:sticky;
  top:0;
  z-index:80;
  padding:15px 0;
  transition:0.3s ease;
  display:flex;
  justify-content:center;
}

.navbar.shrink{
  padding:5px 0;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.nav-flex{
  width:90%;
  display:flex;
  justify-content:center;
  align-items:center;
  position: relative;
}

.logo{
  font-size:28px;
  font-weight:700;
  color:var(--primary);
  text-decoration:none;
  transition:0.3s ease;
}

.logo:hover{
  transform:scale(1.05);
  letter-spacing:0.5px;
}

nav a{
  margin-left:20px;
  text-decoration:none;
  color:#555;
  font-weight:500;
  transition:0.3s ease;
}

nav a:hover{
  color:var(--primary);
}

.nav-btn{
  padding:8px 18px;
  background:var(--primary);
  color:#fff;
  border-radius:22px;
  transition:0.3s ease;
}

.nav-btn:hover{
  background:var(--hover);
}

/* ================= HERO ================= */
.hero{
  background:linear-gradient(135deg,#0a2540,#133a66);
  color:#fff;
  padding:120px 20px;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.hero-content{
  max-width:720px;
  margin:auto;
}

.hero h2{
  font-size:44px;
  letter-spacing:0.4px;
  margin-bottom:20px;
}

.primary-btn{
  display:inline-block;
  margin-top:30px;
  padding:14px 36px;
  background:#fff;
  color:var(--primary);
  border-radius:32px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s ease;
}

.primary-btn:hover{
  background:var(--hover);
  color:#fff;
  transform:translateY(-2px);
}

/* ================= WHY SKILLGLIDER ================= */
#why-skillglider{
  padding:80px 20px;
  background:linear-gradient(180deg,#ffffff,#f7f9fc);
  text-align:center;
  margin-bottom:100px;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  margin-top:50px;
}

.why-card{
  background:#fff;
  padding:32px 28px;
  border-radius:20px;
  box-shadow:0 12px 28px rgba(0,0,0,0.08);
  transition:0.4s ease;
  cursor:pointer;
}

.why-card:hover{
  transform:translateY(-12px);
  box-shadow:0 28px 48px rgba(0,0,0,0.15);
}

.why-card span{
  font-size:38px;
  margin-bottom:15px;
  display:block;
}

.why-card h4{
  color:#0a2540;
  margin-bottom:10px;
}

.why-card p{
  font-size:15px;
  color:#555;
  line-height:1.7;
}

/* ================= COURSES ================= */
#courses{
  padding:120px 20px 100px;
  background:#f6f8fb;
  position:relative;
}

.section-title{
  text-align:center;
  font-size:34px;
  margin-bottom:60px;
  color:#0a2540;
}

.courses-wrapper{
  position:relative;
  width:90%;
  margin:auto;
  overflow:visible;
}

.courses-scroll{
  display:flex;
  gap:28px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:25px 0;
}

.courses-scroll::-webkit-scrollbar{ display:none; }

/* CARD */
.card{
  min-width:300px;
  background:#fff;
  border-radius:20px;
  padding:32px 28px;
  box-shadow:0 12px 28px rgba(0,0,0,0.08);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  height:360px;
  position:relative;
  transition:0.4s ease;
}

.card:hover{
  transform:translateY(-10px);
  box-shadow:0 28px 48px rgba(0,0,0,0.12);
}

/* FREE BADGE */
.free-badge{
  position:absolute;
  top:16px;
  left: 220px;
  background:var(--accent);
  color:#fff;
  font-size:12px;
  font-weight:700;
  padding:6px 16px;
  border-radius:22px;
  box-shadow:0 6px 14px rgba(0,0,0,0.15);
  transition:0.3s ease;
}

.card-content{
  padding-top:28px;
  flex-grow:1;
}

.card-content h3{
  color:#0a2540;
  margin-bottom:10px;
  font-size:18px;
}

.card-content p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}

.enroll-btn{
  margin-top:auto;
  padding:12px 26px;
  background:var(--primary);
  color:#fff;
  border-radius:26px;
  font-weight:600;
  text-decoration:none;
  align-self:flex-start;
  transition:0.3s ease;
}

.enroll-btn:hover{
  background:var(--hover);
  transform:translateY(-2px);
}

/* SCROLL BUTTONS */
.scroll-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:var(--primary);
  color:#fff;
  border:none;
  width:45px;
  height:45px;
  border-radius:50%;
  cursor:pointer;
  z-index:20;
  font-size:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.3s ease;
}

.scroll-btn.left{ left:-15px; }
.scroll-btn.right{ right:-15px; }

.scroll-btn:hover{
  background:var(--hover);
  transform:translateY(-50%) scale(1.1);
}

/* ================= FOUNDER SECTION ================= */
#founder{
  padding:80px 20px;
}

.founder-wrapper{
  max-width:1100px;
  margin:auto;
}

.founder-card{
  display:flex;
  align-items:center;
  gap:50px;
  background:linear-gradient(135deg,#ffffff,#f6f8fb);
  padding:50px;
  border-radius:24px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* Image */
.founder-image img{
  width:260px;
  height:260px;
  object-fit:cover;
  border-radius:20px;
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

/* Content */
.founder-content{
  max-width:600px;
}

.founder-tag{
  display:inline-block;
  background:var(--primary);
  color:#fff;
  padding:6px 14px;
  border-radius:50px;
  font-size:13px;
  margin-bottom:15px;
}

.founder-content h2{
  font-size:30px;
  color:#0a2540;
  margin-bottom:6px;
}

.founder-subtitle{
  font-size:16px;
  font-weight:500;
  color:var(--primary);
  margin-bottom:18px;
}

.founder-desc{
  font-size:16px;
  color:#555;
  line-height:1.8;
}

/* ================= MOBILE ================= */
@media (max-width:768px){

  .founder-card{
    flex-direction:column;
    text-align:center;
    padding:35px 25px;
  }

  .founder-image img{
    width:200px;
    height:200px;
  }

  .founder-content h2{
    font-size:26px;
  }

  .founder-desc{
    font-size:15px;
  }
}


/* ================= UPCOMING SESSION ================= */
#upcoming-session{
  padding:100px 20px;
  background:#fff;
}

.session-container{
  width:85%;
  margin:auto;
  display:flex;
  gap:50px;
  align-items:center;
  background:#f6f8fb;
  padding:55px;
  border-radius:26px;
  box-shadow:0 25px 50px rgba(0,0,0,0.1);
}

.session-image img{
  width:260px;
  height:260px;
  border-radius:50%;
  object-fit:cover;
  box-shadow:0 15px 35px rgba(0,0,0,0.2);
}

.session-content h2{
  font-size:28px;
  color:#0a2540;
  margin-bottom:16px;
}

.session-desc{
  color:#555;
  margin-bottom:20px;
}

.session-info{
  display:flex;
  gap:30px;
  margin-bottom:25px;
}

.session-btn{
  display:inline-block;
  padding:13px 34px;
  background:var(--primary);
  color:#fff;
  border-radius:32px;
  font-weight:600;
  text-decoration:none;
}

.session-btn:hover{
  background:var(--hover);
  transform:translateY(-2px);
}

/* ================= ABOUT ================= */
#about{
  padding:100px 20px;
  background:#fff;
}

/* Container */
.about-container{
  width:75%;
  max-width:1100px;
  margin:auto;
  text-align:center;
}

/* Heading */
.about-container h2{
  font-size:34px;
  color:var(--primary);
  margin-bottom:22px;
  font-weight:600;
}

/* Paragraph */
.about-container p{
  font-size:17px;
  color:#555;
  line-height:1.8;
  margin-bottom:20px;
}

/* Features row */
.about-features{
  display:flex;
  justify-content:center;
  gap:30px;
  margin-top:40px;
  flex-wrap:wrap;
}

/* Feature card */
.about-feature{
  background:#f6f8fb;
  padding:32px 28px;
  border-radius:18px;
  width:280px;
  box-shadow:0 12px 28px rgba(0,0,0,0.08);
  transition:transform 0.35s ease, box-shadow 0.35s ease;
  flex-shrink:0;
}

.about-feature:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 48px rgba(0,0,0,0.12);
}

/* Icon */
.about-feature span{
  font-size:36px;
  display:block;
  margin-bottom:15px;
}

/* Title */
.about-feature h4{
  font-size:16px;
  color:#0a2540;
  margin-bottom:10px;
}

/* Text */
.about-feature p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}

/* ================= MOBILE FIX ================= */
@media (max-width:768px){

  .about-container{
    width:100%;
  }

  .about-container h2{
    font-size:28px;
  }

  .about-container p{
    font-size:16px;
  }

  .about-features{
    flex-wrap:nowrap;
    overflow-x:auto;
    justify-content:flex-start;
    gap:20px;
    padding-bottom:10px;
    -webkit-overflow-scrolling:touch;
  }

  .about-features::-webkit-scrollbar{
    display:none;
  }

  .about-feature{
    min-width:260px;
  }
}



/* ================= FOOTER ================= */
.footer{
  background: var(--primary);
  color: #fff;
  padding: 60px 20px 25px;
}

/* Footer layout */
.footer-container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 90%;
  margin: auto;
}

/* Brand text */
.footer-brand p{
  color: #cbd6e2;
  font-size: 19px;
  line-height: 1.6;
}

/* Social buttons container */
.social-buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;              /* gap between buttons */
  padding: 12px 20px;    /* gap on left & right */
}

/* Individual social button */
.social-btn{
  padding: 9px 18px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Hover effect */
.social-btn:hover{
  opacity: 0.85;
  transform: translateY(-2px);
}

/* Button colors */
.whatsapp{ background: #25D366; }
.instagram{ background: #E1306C; }
.linkedin{ background: #0077B5; }
.call{ background: #444; }

/* Contact form */
.footer-form form{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-form input,
.footer-form textarea{
  padding: 10px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
}

.footer-form textarea{
  resize: none;
}

/* Submit button */
.footer-form button{
  padding: 12px;
  background: #fff;
  color: var(--primary);
  border-radius: 22px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  border: none;
}

.footer-form button:hover{
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* Footer bottom */
.footer-bottom{
  margin-top: 35px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 16px;
  font-size: 17px;
  color: #cbd6e2;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px){
  .footer-container{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-buttons{
    justify-content: center;
  }
}


/* ================= TOAST ================= */
.toast{
  position:fixed;
  bottom:30px;
  right:30px;
  background:var(--accent);
  color:#fff;
  padding:14px 26px;
  border-radius:30px;
  opacity:0;
  transform:translateY(20px);
  transition:0.4s ease;
  z-index:9999;
}

.toast.show{
  opacity:1;
  transform:translateY(0);
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .why-grid{ grid-template-columns:1fr 1fr; }
  .founder-container{ flex-direction:column; text-align:center; }
  .courses-scroll{ padding:25px 5px; }
  .footer-container{ grid-template-columns:1fr; text-align:center; }
  .about-container{ width:90%; }
  .about-features{ flex-direction:column; align-items:center; }
  .about-feature{ width:100%; max-width:360px; }
}

@media(max-width:500px){
  .why-grid{ grid-template-columns:1fr; }
}

/* ================= MEETING SECTION ================= */
#meeting-platforms {
  padding: 90px 20px;
}

#meeting-platforms h2 {
  text-align: center;
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 15px;
}

#meeting-platforms p.center-text {
  max-width: 650px;
  margin: 0 auto 50px auto;
  color: #555;
  line-height: 1.6;
}

.meeting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 90%;
  margin: auto;
}

.meeting-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

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

.meeting-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.meeting-card h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 20px;
}

.meeting-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .meeting-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .meeting-grid {
    grid-template-columns: 1fr;
  }
}

#about,
#why-skillglider,
#founder{
  padding:70px 20px;
}

/* ================= MOBILE FIXES ================= */
@media (max-width: 768px){

  /* ---------- NAVBAR ---------- */
  .nav-flex{
    flex-direction: column;
    gap: 12px;
  }

  nav a{
    margin-left: 0;
    margin: 6px 10px;
  }

  .logo{
    font-size: 24px;
  }

  /* ---------- HERO ---------- */
  .hero{
    padding: 90px 16px;
  }

  .hero h2{
    font-size: 32px;
    line-height: 1.3;
  }

  .primary-btn{
    padding: 12px 28px;
    font-size: 15px;
  }

  /* ---------- WHY SECTION ---------- */
  #why-skillglider{
    padding: 70px 16px;
  }

  .why-grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* ---------- COURSES ---------- */
  #courses{
    padding: 90px 10px;
  }

  .card{
    min-width: 260px;
    height: auto;
  }

  .free-badge{
    left: auto;
    right: 16px;
  }

  .scroll-btn{
    display: none; /* swipe feels better on mobile */
  }

  /* ---------- FOUNDER ---------- */
  .founder-container{
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .founder-container img{
    width: 220px;
  }

  /* ---------- UPCOMING SESSION ---------- */
  .session-container{
    flex-direction: column;
    padding: 35px 20px;
    text-align: center;
  }

  .session-info{
    flex-direction: column;
    gap: 12px;
  }

  /* ---------- ABOUT ---------- */
  #about{
    padding: 70px 16px;
  }

  .about-container{
    width: 100%;
  }

  .about-features{
    flex-direction: column;
    gap: 24px;
  }

  .about-feature{
    width: 100%;
  }

  /* ---------- MEETING PLATFORMS ---------- */
  #meeting-platforms{
    padding: 70px 16px;
  }

  .meeting-grid{
    grid-template-columns: 1fr;
  }

  /* ---------- FOOTER ---------- */
  .footer-container{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .social-buttons{
    justify-content: center;
  }

  .footer-form form{
    max-width: 320px;
    margin: auto;
  }
}

/* ================= MOBILE SCROLL FIX ================= */

/* Prevent body from blocking horizontal scroll */
html, body{
  width:100%;
  overflow-x:hidden;
}

/* Allow features to scroll naturally on mobile */
@media (max-width:768px){

  .about-features{
    flex-wrap:nowrap;            /* keep cards in one row */
    overflow-x:auto;             /* enable horizontal scroll */
    -webkit-overflow-scrolling:touch;
    justify-content:flex-start;
    padding-bottom:10px;
    gap:20px;
  }

  .about-features::-webkit-scrollbar{
    display:none;                /* hide scrollbar */
  }

  .about-feature{
    min-width:280px;             /* required for scroll */
    flex-shrink:0;
  }
}

/* ================= WHY SKILLGLIDER ================= */
#why-skillglider{
  padding: 80px 20px;
  background:#fff;
}

/* Container */
#why-skillglider .why-container{
  width:75%;
  max-width:1100px;
  margin:auto;
  text-align:center;
}

/* Heading */
#why-skillglider h2{
  font-size:34px;
  color:var(--primary);
  margin-bottom:22px;
  font-weight:600;
}

/* Paragraph */
#why-skillglider .center-text{
  font-size:17px;
  color:#555;
  line-height:1.8;
  margin-bottom:20px;
}

/* Features row */
.why-grid{
  display:flex;
  justify-content:center;
  gap:30px;
  margin-top:40px;
  flex-wrap:wrap;
}

/* Feature card */
.why-grid .about-feature{
  background:#f6f8fb;
  padding:32px 28px;
  border-radius:18px;
  width:280px;
  box-shadow:0 12px 28px rgba(0,0,0,0.08);
  transition:transform 0.35s ease, box-shadow 0.35s ease;
  flex-shrink:0;
}

.why-grid .about-feature:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 48px rgba(0,0,0,0.12);
}

/* Icon */
.why-grid .about-icon{
  width:60px;
  margin-bottom:15px;
}

/* Title */
.why-grid .about-feature h4{
  font-size:16px;
  color:#0a2540;
  margin-bottom:10px;
}

/* Text */
.why-grid .about-feature p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}

/* ================= MOBILE FIX ================= */
@media (max-width:768px){

  #why-skillglider .why-container{
    width:100%;
  }

  #why-skillglider h2{
    font-size:28px;
  }

  #why-skillglider .center-text{
    font-size:16px;
  }

  .why-grid{
    flex-wrap:nowrap;
    overflow-x:auto;
    justify-content:flex-start;
    gap:20px;
    padding-bottom:10px;
    -webkit-overflow-scrolling:touch;
  }

  .why-grid::-webkit-scrollbar{
    display:none;
  }

  .why-grid .about-feature{
    min-width:260px;
  }
}

/* ================= MOBILE FIX ================= */
@media (max-width:768px){

  #why-skillglider .why-container{
    width:100%;
  }

  #why-skillglider h2{
    font-size:28px;
  }

  #why-skillglider .center-text{
    font-size:16px;
  }

  .why-grid{
    flex-wrap:nowrap;
    overflow-x:auto;
    justify-content:flex-start;
    gap:20px;
    padding-bottom:10px;
    -webkit-overflow-scrolling:touch;
  }

  .why-grid::-webkit-scrollbar{
    display:none;
  }

  .why-grid .about-feature{
    min-width:260px;
  }
}
/* ================= NO SCROLL MOBILE FIX ================= */
@media (max-width: 768px){

  /* Prevent any horizontal scroll */
  html, body{
    overflow-x: hidden;
  }

  /* ---------- GLOBAL ---------- */
  section{
    padding: 60px 16px !important;
  }

  /* ---------- NAVBAR ---------- */
  .nav-flex{
    flex-direction: column;
    gap: 10px;
  }

  nav{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  nav a{
    margin: 0;
  }

  /* ---------- HERO ---------- */
  .hero{
    padding: 80px 16px;
  }

  .hero h2{
    font-size: 30px;
  }

  /* ---------- WHY + ABOUT (STACK, NO SCROLL) ---------- */
  .why-grid,
  .about-features{
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    overflow: hidden !important;
    align-items: center;
    gap: 20px;
  }

  .why-grid .about-feature,
  .about-feature{
    width: 100%;
    max-width: 360px;
    min-width: unset;
  }

  /* ---------- COURSES ---------- */
  .courses-scroll{
    overflow-x: hidden;
  }

  .card{
    min-width: 100%;
    height: auto;
  }

  .scroll-btn{
    display: none;
  }

  /* ---------- FOUNDER ---------- */
  .founder-card{
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 25px;
  }

  .founder-image img{
    width: 200px;
    height: 200px;
  }

  /* ---------- UPCOMING SESSION ---------- */
  .session-container{
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 25px;
  }

  .session-info{
    flex-direction: column;
    gap: 12px;
  }

  /* ---------- MEETING PLATFORMS ---------- */
  .meeting-grid{
    grid-template-columns: 1fr;
  }

  /* ---------- FOOTER ---------- */
  .footer-container{
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .social-buttons{
    justify-content: center;
  }

  .footer-form form{
    max-width: 320px;
    margin: auto;
  }
}

:root{
  --primary:#0a2540;
  --secondary:#f5f8fb;
  --text:#333;
  --accent:#25D366;
  --hover:#133a66;
}
.about-feature {
  text-align: center;
  padding: 20px;
}

.about-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  object-fit: contain;
}

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Segoe UI", sans-serif;
}

body{
  color:var(--text);
  background:#fff;
  line-height:1.6;
}

/* ================= NAVBAR ================= */
.navbar{
  background:#fff;
  border-bottom:1px solid #eee;
  position:sticky;
  top:0;
  z-index:80;
  padding:15px 0;
  transition:0.3s ease;
  display:flex;
  justify-content:center;
}

.navbar.shrink{
  padding:5px 0;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.nav-flex{
  width:90%;
  display:flex;
  justify-content:center;
  align-items:center;
  position: relative;
}

.logo{
  font-size:28px;
  font-weight:700;
  color:var(--primary);
  text-decoration:none;
  transition:0.3s ease;
}

.logo:hover{
  transform:scale(1.05);
  letter-spacing:0.5px;
}

nav a{
  margin-left:20px;
  text-decoration:none;
  color:#555;
  font-weight:500;
  transition:0.3s ease;
}

nav a:hover{
  color:var(--primary);
}

.nav-btn{
  padding:8px 18px;
  background:var(--primary);
  color:#fff;
  border-radius:22px;
  transition:0.3s ease;
}

.nav-btn:hover{
  background:var(--hover);
}

/* ================= HERO ================= */
.hero{
  background:linear-gradient(135deg,#0a2540,#133a66);
  color:#fff;
  padding:120px 20px;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.hero-content{
  max-width:720px;
  margin:auto;
}

.hero h2{
  font-size:44px;
  letter-spacing:0.4px;
  margin-bottom:20px;
}

.primary-btn{
  display:inline-block;
  margin-top:30px;
  padding:14px 36px;
  background:#fff;
  color:var(--primary);
  border-radius:32px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s ease;
}

.primary-btn:hover{
  background:var(--hover);
  color:#fff;
  transform:translateY(-2px);
}

/* ================= WHY SKILLGLIDER ================= */
#why-skillglider{
  padding:80px 20px;
  background:linear-gradient(180deg,#ffffff,#f7f9fc);
  text-align:center;
  margin-bottom:100px;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  margin-top:50px;
}

.why-card{
  background:#fff;
  padding:32px 28px;
  border-radius:20px;
  box-shadow:0 12px 28px rgba(0,0,0,0.08);
  transition:0.4s ease;
  cursor:pointer;
}

.why-card:hover{
  transform:translateY(-12px);
  box-shadow:0 28px 48px rgba(0,0,0,0.15);
}

.why-card span{
  font-size:38px;
  margin-bottom:15px;
  display:block;
}

.why-card h4{
  color:#0a2540;
  margin-bottom:10px;
}

.why-card p{
  font-size:15px;
  color:#555;
  line-height:1.7;
}

/* ================= COURSES ================= */
#courses{
  padding:120px 20px 100px;
  background:#f6f8fb;
  position:relative;
}

.section-title{
  text-align:center;
  font-size:34px;
  margin-bottom:60px;
  color:#0a2540;
}

.courses-wrapper{
  position:relative;
  width:90%;
  margin:auto;
  overflow:visible;
}

.courses-scroll{
  display:flex;
  gap:28px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:25px 0;
}

.courses-scroll::-webkit-scrollbar{ display:none; }

/* CARD */
.card{
  min-width:300px;
  background:#fff;
  border-radius:20px;
  padding:32px 28px;
  box-shadow:0 12px 28px rgba(0,0,0,0.08);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  height:360px;
  position:relative;
  transition:0.4s ease;
}

.card:hover{
  transform:translateY(-10px);
  box-shadow:0 28px 48px rgba(0,0,0,0.12);
}

/* FREE BADGE */
.free-badge{
  position:absolute;
  top:16px;
  left: 220px;
  background:var(--accent);
  color:#fff;
  font-size:12px;
  font-weight:700;
  padding:6px 16px;
  border-radius:22px;
  box-shadow:0 6px 14px rgba(0,0,0,0.15);
  transition:0.3s ease;
}

.card-content{
  padding-top:28px;
  flex-grow:1;
}

.card-content h3{
  color:#0a2540;
  margin-bottom:10px;
  font-size:18px;
}

.card-content p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}

.enroll-btn{
  margin-top:auto;
  padding:12px 26px;
  background:var(--primary);
  color:#fff;
  border-radius:26px;
  font-weight:600;
  text-decoration:none;
  align-self:flex-start;
  transition:0.3s ease;
}

.enroll-btn:hover{
  background:var(--hover);
  transform:translateY(-2px);
}

/* SCROLL BUTTONS */
.scroll-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:var(--primary);
  color:#fff;
  border:none;
  width:45px;
  height:45px;
  border-radius:50%;
  cursor:pointer;
  z-index:20;
  font-size:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.3s ease;
}

.scroll-btn.left{ left:-15px; }
.scroll-btn.right{ right:-15px; }

.scroll-btn:hover{
  background:var(--hover);
  transform:translateY(-50%) scale(1.1);
}

/* ================= FOUNDER SECTION ================= */
#founder{
  padding:80px 20px;
}

.founder-wrapper{
  max-width:1100px;
  margin:auto;
}

.founder-card{
  display:flex;
  align-items:center;
  gap:50px;
  background:linear-gradient(135deg,#ffffff,#f6f8fb);
  padding:50px;
  border-radius:24px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* Image */
.founder-image img{
  width:260px;
  height:260px;
  object-fit:cover;
  border-radius:20px;
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

/* Content */
.founder-content{
  max-width:600px;
}

.founder-tag{
  display:inline-block;
  background:var(--primary);
  color:#fff;
  padding:6px 14px;
  border-radius:50px;
  font-size:13px;
  margin-bottom:15px;
}

.founder-content h2{
  font-size:30px;
  color:#0a2540;
  margin-bottom:6px;
}

.founder-subtitle{
  font-size:16px;
  font-weight:500;
  color:var(--primary);
  margin-bottom:18px;
}

.founder-desc{
  font-size:16px;
  color:#555;
  line-height:1.8;
}

/* ================= MOBILE ================= */
@media (max-width:768px){

  .founder-card{
    flex-direction:column;
    text-align:center;
    padding:35px 25px;
  }

  .founder-image img{
    width:200px;
    height:200px;
  }

  .founder-content h2{
    font-size:26px;
  }

  .founder-desc{
    font-size:15px;
  }
}


/* ================= UPCOMING SESSION ================= */
#upcoming-session{
  padding:100px 20px;
  background:#fff;
}

.session-container{
  width:85%;
  margin:auto;
  display:flex;
  gap:50px;
  align-items:center;
  background:#f6f8fb;
  padding:55px;
  border-radius:26px;
  box-shadow:0 25px 50px rgba(0,0,0,0.1);
}

.session-image img{
  width:260px;
  height:260px;
  border-radius:50%;
  object-fit:cover;
  box-shadow:0 15px 35px rgba(0,0,0,0.2);
}

.session-content h2{
  font-size:28px;
  color:#0a2540;
  margin-bottom:16px;
}

.session-desc{
  color:#555;
  margin-bottom:20px;
}

.session-info{
  display:flex;
  gap:30px;
  margin-bottom:25px;
}

.session-btn{
  display:inline-block;
  padding:13px 34px;
  background:var(--primary);
  color:#fff;
  border-radius:32px;
  font-weight:600;
  text-decoration:none;
}

.session-btn:hover{
  background:var(--hover);
  transform:translateY(-2px);
}

/* ================= ABOUT ================= */
#about{
  padding:100px 20px;
  background:#fff;
}

/* Container */
.about-container{
  width:75%;
  max-width:1100px;
  margin:auto;
  text-align:center;
}

/* Heading */
.about-container h2{
  font-size:34px;
  color:var(--primary);
  margin-bottom:22px;
  font-weight:600;
}

/* Paragraph */
.about-container p{
  font-size:17px;
  color:#555;
  line-height:1.8;
  margin-bottom:20px;
}

/* Features row */
.about-features{
  display:flex;
  justify-content:center;
  gap:30px;
  margin-top:40px;
  flex-wrap:wrap;
}

/* Feature card */
.about-feature{
  background:#f6f8fb;
  padding:32px 28px;
  border-radius:18px;
  width:280px;
  box-shadow:0 12px 28px rgba(0,0,0,0.08);
  transition:transform 0.35s ease, box-shadow 0.35s ease;
  flex-shrink:0;
}

.about-feature:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 48px rgba(0,0,0,0.12);
}

/* Icon */
.about-feature span{
  font-size:36px;
  display:block;
  margin-bottom:15px;
}

/* Title */
.about-feature h4{
  font-size:16px;
  color:#0a2540;
  margin-bottom:10px;
}

/* Text */
.about-feature p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}

/* ================= MOBILE FIX ================= */
@media (max-width:768px){

  .about-container{
    width:100%;
  }

  .about-container h2{
    font-size:28px;
  }

  .about-container p{
    font-size:16px;
  }

  .about-features{
    flex-wrap:nowrap;
    overflow-x:auto;
    justify-content:flex-start;
    gap:20px;
    padding-bottom:10px;
    -webkit-overflow-scrolling:touch;
  }

  .about-features::-webkit-scrollbar{
    display:none;
  }

  .about-feature{
    min-width:260px;
  }
}



/* ================= FOOTER ================= */
.footer{
  background: var(--primary);
  color: #fff;
  padding: 60px 20px 25px;
}

/* Footer layout */
.footer-container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 90%;
  margin: auto;
}

/* Brand text */
.footer-brand p{
  color: #cbd6e2;
  font-size: 19px;
  line-height: 1.6;
}

/* Social buttons container */
.social-buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;              /* gap between buttons */
  padding: 12px 20px;    /* gap on left & right */
}

/* Individual social button */
.social-btn{
  padding: 9px 18px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Hover effect */
.social-btn:hover{
  opacity: 0.85;
  transform: translateY(-2px);
}

/* Button colors */
.whatsapp{ background: #25D366; }
.instagram{ background: #E1306C; }
.linkedin{ background: #0077B5; }
.call{ background: #444; }

/* Contact form */
.footer-form form{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-form input,
.footer-form textarea{
  padding: 10px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
}

.footer-form textarea{
  resize: none;
}

/* Submit button */
.footer-form button{
  padding: 12px;
  background: #fff;
  color: var(--primary);
  border-radius: 22px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  border: none;
}

.footer-form button:hover{
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* Footer bottom */
.footer-bottom{
  margin-top: 35px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 16px;
  font-size: 17px;
  color: #cbd6e2;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px){
  .footer-container{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-buttons{
    justify-content: center;
  }
}


/* ================= TOAST ================= */
.toast{
  position:fixed;
  bottom:30px;
  right:30px;
  background:var(--accent);
  color:#fff;
  padding:14px 26px;
  border-radius:30px;
  opacity:0;
  transform:translateY(20px);
  transition:0.4s ease;
  z-index:9999;
}

.toast.show{
  opacity:1;
  transform:translateY(0);
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .why-grid{ grid-template-columns:1fr 1fr; }
  .founder-container{ flex-direction:column; text-align:center; }
  .courses-scroll{ padding:25px 5px; }
  .footer-container{ grid-template-columns:1fr; text-align:center; }
  .about-container{ width:90%; }
  .about-features{ flex-direction:column; align-items:center; }
  .about-feature{ width:100%; max-width:360px; }
}

@media(max-width:500px){
  .why-grid{ grid-template-columns:1fr; }
}

/* ================= MEETING SECTION ================= */
#meeting-platforms {
  padding: 90px 20px;
}

#meeting-platforms h2 {
  text-align: center;
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 15px;
}

#meeting-platforms p.center-text {
  max-width: 650px;
  margin: 0 auto 50px auto;
  color: #555;
  line-height: 1.6;
}

.meeting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 90%;
  margin: auto;
}

.meeting-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

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

.meeting-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.meeting-card h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 20px;
}

.meeting-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .meeting-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .meeting-grid {
    grid-template-columns: 1fr;
  }
}

#about,
#why-skillglider,
#founder{
  padding:70px 20px;
}

/* ================= MOBILE FIXES ================= */
@media (max-width: 768px){

  /* ---------- NAVBAR ---------- */
  .nav-flex{
    flex-direction: column;
    gap: 12px;
  }

  nav a{
    margin-left: 0;
    margin: 6px 10px;
  }

  .logo{
    font-size: 24px;
  }

  /* ---------- HERO ---------- */
  .hero{
    padding: 90px 16px;
  }

  .hero h2{
    font-size: 32px;
    line-height: 1.3;
  }

  .primary-btn{
    padding: 12px 28px;
    font-size: 15px;
  }

  /* ---------- WHY SECTION ---------- */
  #why-skillglider{
    padding: 70px 16px;
  }

  .why-grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* ---------- COURSES ---------- */
  #courses{
    padding: 90px 10px;
  }

  .card{
    min-width: 260px;
    height: auto;
  }

  .free-badge{
    left: auto;
    right: 16px;
  }

  .scroll-btn{
    display: none; /* swipe feels better on mobile */
  }

  /* ---------- FOUNDER ---------- */
  .founder-container{
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .founder-container img{
    width: 220px;
  }

  /* ---------- UPCOMING SESSION ---------- */
  .session-container{
    flex-direction: column;
    padding: 35px 20px;
    text-align: center;
  }

  .session-info{
    flex-direction: column;
    gap: 12px;
  }

  /* ---------- ABOUT ---------- */
  #about{
    padding: 70px 16px;
  }

  .about-container{
    width: 100%;
  }

  .about-features{
    flex-direction: column;
    gap: 24px;
  }

  .about-feature{
    width: 100%;
  }

  /* ---------- MEETING PLATFORMS ---------- */
  #meeting-platforms{
    padding: 70px 16px;
  }

  .meeting-grid{
    grid-template-columns: 1fr;
  }

  /* ---------- FOOTER ---------- */
  .footer-container{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .social-buttons{
    justify-content: center;
  }

  .footer-form form{
    max-width: 320px;
    margin: auto;
  }
}

/* ================= MOBILE SCROLL FIX ================= */

/* Prevent body from blocking horizontal scroll */
html, body{
  width:100%;
  overflow-x:hidden;
}

/* Allow features to scroll naturally on mobile */
@media (max-width:768px){

  .about-features{
    flex-wrap:nowrap;            /* keep cards in one row */
    overflow-x:auto;             /* enable horizontal scroll */
    -webkit-overflow-scrolling:touch;
    justify-content:flex-start;
    padding-bottom:10px;
    gap:20px;
  }

  .about-features::-webkit-scrollbar{
    display:none;                /* hide scrollbar */
  }

  .about-feature{
    min-width:280px;             /* required for scroll */
    flex-shrink:0;
  }
}

/* ================= WHY SKILLGLIDER ================= */
#why-skillglider{
  padding: 80px 20px;
  background:#fff;
}

/* Container */
#why-skillglider .why-container{
  width:75%;
  max-width:1100px;
  margin:auto;
  text-align:center;
}

/* Heading */
#why-skillglider h2{
  font-size:34px;
  color:var(--primary);
  margin-bottom:22px;
  font-weight:600;
}

/* Paragraph */
#why-skillglider .center-text{
  font-size:17px;
  color:#555;
  line-height:1.8;
  margin-bottom:20px;
}

/* Features row */
.why-grid{
  display:flex;
  justify-content:center;
  gap:30px;
  margin-top:40px;
  flex-wrap:wrap;
}

/* Feature card */
.why-grid .about-feature{
  background:#f6f8fb;
  padding:32px 28px;
  border-radius:18px;
  width:280px;
  box-shadow:0 12px 28px rgba(0,0,0,0.08);
  transition:transform 0.35s ease, box-shadow 0.35s ease;
  flex-shrink:0;
}

.why-grid .about-feature:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 48px rgba(0,0,0,0.12);
}

/* Icon */
.why-grid .about-icon{
  width:60px;
  margin-bottom:15px;
}

/* Title */
.why-grid .about-feature h4{
  font-size:16px;
  color:#0a2540;
  margin-bottom:10px;
}

/* Text */
.why-grid .about-feature p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}

/* ================= MOBILE FIX ================= */
@media (max-width:768px){

  #why-skillglider .why-container{
    width:100%;
  }

  #why-skillglider h2{
    font-size:28px;
  }

  #why-skillglider .center-text{
    font-size:16px;
  }

  .why-grid{
    flex-wrap:nowrap;
    overflow-x:auto;
    justify-content:flex-start;
    gap:20px;
    padding-bottom:10px;
    -webkit-overflow-scrolling:touch;
  }

  .why-grid::-webkit-scrollbar{
    display:none;
  }

  .why-grid .about-feature{
    min-width:260px;
  }
}

/* ================= MOBILE FIX ================= */
@media (max-width:768px){

  #why-skillglider .why-container{
    width:100%;
  }

  #why-skillglider h2{
    font-size:28px;
  }

  #why-skillglider .center-text{
    font-size:16px;
  }

  .why-grid{
    flex-wrap:nowrap;
    overflow-x:auto;
    justify-content:flex-start;
    gap:20px;
    padding-bottom:10px;
    -webkit-overflow-scrolling:touch;
  }

  .why-grid::-webkit-scrollbar{
    display:none;
  }

  .why-grid .about-feature{
    min-width:260px;
  }
}
/* ================= NO SCROLL MOBILE FIX ================= */
@media (max-width: 768px){

  /* Prevent any horizontal scroll */
  html, body{
    overflow-x: hidden;
  }

  /* ---------- GLOBAL ---------- */
  section{
    padding: 60px 16px !important;
  }

  /* ---------- NAVBAR ---------- */
  .nav-flex{
    flex-direction: column;
    gap: 10px;
  }

  nav{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  nav a{
    margin: 0;
  }

  /* ---------- HERO ---------- */
  .hero{
    padding: 80px 16px;
  }

  .hero h2{
    font-size: 30px;
  }

  /* ---------- WHY + ABOUT (STACK, NO SCROLL) ---------- */
  .why-grid,
  .about-features{
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    overflow: hidden !important;
    align-items: center;
    gap: 20px;
  }

  .why-grid .about-feature,
  .about-feature{
    width: 100%;
    max-width: 360px;
    min-width: unset;
  }

  /* ---------- COURSES ---------- */
  .courses-scroll{
    overflow-x: hidden;
  }

  .card{
    min-width: 100%;
    height: auto;
  }

  .scroll-btn{
    display: none;
  }

  /* ---------- FOUNDER ---------- */
  .founder-card{
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 25px;
  }

  .founder-image img{
    width: 200px;
    height: 200px;
  }

  /* ---------- UPCOMING SESSION ---------- */
  .session-container{
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 25px;
  }

  .session-info{
    flex-direction: column;
    gap: 12px;
  }

  /* ---------- MEETING PLATFORMS ---------- */
  .meeting-grid{
    grid-template-columns: 1fr;
  }

  /* ---------- FOOTER ---------- */
  .footer-container{
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .social-buttons{
    justify-content: center;
  }

  .footer-form form{
    max-width: 320px;
    margin: auto;
  }
}

/* Container style like session-container */
.session-style {
  width: 85%;
  margin: auto;
  display: flex;
  flex-direction: column; /* stack content vertically */
  gap: 25px;
  align-items: center;
  background: #a1d4b4; 
  padding: 55px;
  border-radius: 26px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
  text-align: center;
}

/* Heading */
.session-style h2 {
  font-size: 28px;
  color: #0a2540;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Paragraph */
.session-style p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  max-width: 600px;
}

/* Button */
.whatsapp-btn {
  padding: 14px 30px;
  background: #25D366;  /* WhatsApp green */
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.whatsapp-btn:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .session-style {
    padding: 35px 20px;
    gap: 20px;
  }

  .session-style h2 {
    font-size: 24px;
  }

  .session-style p {
    font-size: 14px;
  }

  .whatsapp-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}
