/* =========================================
   LINGUALSYNC — PRODUCTION READY CSS
   Cleaned responsive structure
   - duplicate media queries removed
   - horizontal overflow fixed
   - mobile nav fixed
   - hero + cards optimized
========================================= */

:root {
  --primary-indigo: #2E2F8F;
  --secondary-green: #8DC63F;
  --accent-blue: #4A90E2;

  --light-bg: #F8F9FC;
  --card-bg: #FFFFFF;

  --heading-color: #1A1A1A;
  --body-text-color: #6B7280;

  --border-light: #E5E7EB;

  --shadow-light: rgba(0, 0, 0, 0.05);
  --shadow-medium: rgba(0, 0, 0, 0.1);
}
/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: var(--body-text-color);
  background: var(--almost-white-bg);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 100% - 40px);
  margin: 0 auto;
}

.section-padding {
  padding: 70px 0;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3 {
  color: var(--heading-color);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

p {
  font-size: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: 600;
}

.btn:hover {
  transform: translateY(-2px);
}

/*.primary-btn {*/
/*  color: white;*/
/*  background: linear-gradient(90deg, #8DC63F);*/
/*}*/

/*.secondary-btn {*/
/*  background: white;*/
  /* border: 1px solid var(--primary-purple); */
/*  color: var(--primary-purple);*/
/*}*/

.primary-btn {
  color: white;
  /*background: var(--secondary-green);*/
  background:#13143a;
}

.primary-btn:hover {
  background: #7abf26;
}

.secondary-btn {
  background: white;
  color: var(--primary-indigo);
  border: 1px solid var(--primary-indigo);
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  /*background:#f2f2f3;*/
  box-shadow: 0 5px 20px var(--shadow-light);
}

.navbar .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.navbar {
  background: white;
}



.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 700;
}

.logo img {
height: 55px;
}

.logo-branding {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text {
  font-size: 25px;
  font-weight: 700;
  color: var(--heading-color);
}

.logo-branding small {
  font-size: 14px;
  font-weight: 600;
  color: var(--body-text-color);
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .logo-text {
    font-size: 16px;
  }

  .logo-branding small {
    font-size: 9px;
  }
}

.navbar nav {
  /*background: #2c2f6d;*/
  border-radius: 999px;
  padding: 8px 14px;
  align-items: flex-end;
}
.navbar nav {
  background: #13143a;
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  border-radius: 999px;
  /*color: #efeff0;*/
  text-decoration: none;
}



.nav-links a {
    color: #ffffff;
    font-weight: 600;
    
}

/*.nav-links a:hover,*/
/*.nav-links a.active {*/
/*  background: var(--secondary-green);*/
/*  color: white;*/
/*}*/
.nav-links a:hover {
  background: var(--secondary-green);
  color: white;
}
/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--heading-color);
  border-radius: 10px;
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  margin: 20px;
}

.hero-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.hero-content {
  position: relative;
  z-index: 5;
}

.hero-description {
  padding: 10px;
}

/* ===== FINAL HERO SLIDER FIX ===== */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 25px;
}

.image-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out, transform 4s ease;
  transform: scale(1.05);
}

.image-slider .slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.about-section {
  position: relative;
  /*background: linear-gradient(180deg, #f8f9ff 0%, #eef1ff 100%);*/
  /*background: #4aa1245c;*/
  background: #4199245e;
  border-radius: 32px;
  margin: 40px 20px;
  overflow: hidden;
}

.about-header {
  text-align: center;
  max-width: 1020px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  /*background: rgb(44 47 109);*/
  /*color: #f3f3f7;*/
  font-weight: 600;
  margin-bottom: 20px;
}
.section-tag {
  background: var(--primary-indigo);
  color: white;
}

.about-header h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 18px;
}

.about-intro {
  font-size: 1.05rem;
  /*color: #5b629e;*/
  color: #2e2f8f;
  line-height: 1.9;
      text-align: justify;
}

.about-premium-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.about-story-card,
.about-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 15px 40px rgba(44, 47, 109, 0.08);
  transition: all 0.3s ease;
}

.about-story-card:hover,
.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(44, 47, 109, 0.12);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.stat-box {
  background: linear-gradient(135deg, #ffffff, #f5f6ff);
  border-radius: 22px;
  padding: 24px;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(122, 127, 230, 0.08);
}

.stat-box h4 {
  font-size: 2rem;
  color: #2c2f6d;
  margin-bottom: 6px;
}

.stat-box span {
  font-size: 14px;
  color: #5b629e;
}

.about-cards {
  display: grid;
  gap: 24px;
}

.about-card i {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #7a7fe6, #2c2f6d);
  color: white;
  font-size: 24px;
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .about-premium-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-section {
    margin: 20px 10px;
    border-radius: 24px;
  }
}

.about-points {
  margin-top: 18px;
  padding-left: 20px;
  display: grid;
  gap: 12px;
}

.about-points li {
  color: #5b629e;
  line-height: 1.7;
}


.about-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.about-card-header h3 {
  margin: 0;
}

.about-card i {
  margin-bottom: 0;
  flex-shrink: 0;
}

/* ===== COURSES EXPANDABLE ===== */
/* ===== PREMIUM COURSES ===== */
.course-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

/* .course-card {
  background: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  border: 1px solid transparent;
} */
.course-card {
  background: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  border: 1px solid transparent;

  display: flex;
  flex-direction: column;
  height: 100%;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(44, 47, 109, 0.18);
  border-color: #7a7fe6;
}

.course-card i {
  font-size: 32px;
  margin-bottom: 18px;
  color: #7a7fe6;
}

.course-card h3 {
  margin-bottom: 12px;
}

/* .course-card p {
  margin-bottom: 22px;
  min-height: 90px;
} */
.course-card p {
  margin-bottom: 22px;
  flex-grow: 1;
}

.course-card .btn {
  width: fit-content;
  min-width: 160px;
  margin-top: auto;
  align-self: center;
}

.extra-course {
  display: none;
}

.extra-course.show {
  display: block;
  animation: fadeUp 0.4s ease;
}

.view-more-wrapper {
  text-align: center;
  margin-top: 35px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .course-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .course-cards {
    grid-template-columns: 1fr;
  }
}



.testimonials-section {
  /*background: #9ee4e230 !important;*/
 /*background: linear-gradient(342deg, #9ee4e230, rgb(93 99 216)) !important;*/
 background: #344055;
  margin: 40px 20px;
  border-radius: 32px;
  overflow: hidden;
}

.testimonial-header h2,
.testimonial-header p,
.testimonial-header .section-tag {
  color: white;
}

.testimonial-slider {
  overflow: hidden;
  margin-top: 40px;
}


.testimonial-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testimonialScroll 30s linear infinite;
}

.testimonial-card {
  min-width: 340px;
  max-width: 340px;
  /*background: rgb(45 49 92 / 65%);*/
  background: #888098;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(10px);
  color: white;
}

.testimonial-card p,
.student-info h4,
.student-info span {
  color: white;
}

.stars {
  font-size: 22px;
  margin-bottom: 18px;
  letter-spacing: 4px;
  color: gold;

}

@keyframes testimonialScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.testimonial-header .section-tag {
  display: block;
  width: fit-content;
  margin: 0 auto 20px;
  text-align: center;
}

/* ===== Placement ===== */

.placement-section {
  background: linear-gradient(180deg, #f8f9ff 0%, #eef1ff 100%);
  margin: 40px 20px;
  border-radius: 32px;
}

.placement-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.placement-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.placement-content,
.placement-card,
.placement-goal {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 14px 35px rgba(44, 47, 109, 0.08);
}

.placement-card h3,
.placement-goal h3 {
  margin-bottom: 18px;
}

.placement-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.placement-card li {
  position: relative;
  padding-left: 24px;
}

.placement-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #7a7fe6;
  font-weight: bold;
}

.placement-goal {
  margin-top: 30px;
  text-align: center;
}

.premium-placement-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff, #f7f8ff);
  border: 1px solid rgba(122, 127, 230, 0.12);
}

.premium-placement-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(122, 127, 230, 0.08), transparent 50%);
  pointer-events: none;
}

.placement-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  /*background: linear-gradient(90deg, #2c2f6d);*/
  background :  #2c2f6d;
  color: white;
  font-weight: 600;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(44, 47, 109, 0.12);
}

.placement-badge i {
  font-size: 16px;
}

.premium-placement-card p {
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .placement-grid {
    grid-template-columns: 1fr;
  }

  .placement-section {
    margin: 20px 10px;
    border-radius: 24px;
  }
}

/* ===== FLOATING DECOR ===== */
.floating,
.jp-rain {
  pointer-events: none;
}

.jp-rain {
  position: fixed;
  /* changed from absolute */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* full screen */
  overflow: hidden;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}


.jp-rain span {
  position: absolute;
  top: -60px;
  color: rgba(31, 33, 53, 0.516);
  font-size: 22px;
  font-weight: 600;
  animation: fall linear infinite;
}


.site-footer {
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 60px 40px;
  background: #2c2f6d;
}

.footer-brand h3,
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 18px;
  /*color: #ffffff;*/
  color: #f1f453;
}

.footer-brand p,
.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #78f2ba;
  padding-left: 4px;
}


.footer-bottom {
  /*background: #2c2f6d;*/
  /*background: #04063a;*/
  background: #13143a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 20px;
  text-align: center;
}

.footer-bottom-top {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}

.bottom-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgb(122 191 38);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.bottom-link:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.footer-bottom-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-bottom-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgb(122 191 38);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-bottom-social a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-top: 10px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }

  .site-footer {
    margin: 20px 10px 10px;
    border-radius: 24px;
  }
}

/* ===== POPUP CLEAN UI ===== */
/* =========================================
   POPUP MODAL — FULL RESPONSIVE
========================================= */
.popup-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 999999;
  animation: fadeOverlay 0.3s ease;
}

.popup-overlay.show {
  display: flex;
}

.popup-box {
  position: relative;
  width: min(440px, 100%);
  max-height: 85vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 22px;
  padding: 10px 22px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
  animation: popupSlide 0.35s ease;
}

.popup-box h2 {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 24px;
  color: #2c2f6d;
  font-weight: 600;
}

.close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 30px;
  color: #2c2f6d;
  cursor: pointer;
  line-height: 1;
  transition: 0.3s ease;
}

.close-btn:hover {
  transform: scale(1.1);
  color: #7a7fe6;
}

/* ===== FORM ===== */
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.popup-form .form-group {
  display: flex;
  flex-direction: column;
}

.popup-form label {
  font-size: 15px;
  font-weight: 600;
  color: #2c2f6d;
  margin-bottom: 8px;
}

.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 2px 16px;
  border: 1px solid #d9dcf8;
  border-radius: 14px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: #2c2f6d;
  outline: none;
  transition: all 0.3s ease;
}

.popup-form input:focus,
.popup-form textarea:focus {
  border-color: #7a7fe6;
  box-shadow: 0 0 0 4px rgba(122, 127, 230, 0.12);
}

.popup-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== BUTTON ===== */
.popup-form .btn {
  width: 30%;
  margin-top: 8px;
  justify-content: center;
}

/* ===== MESSAGE BOX ===== */
.form-messages {
  display: none;
  margin-bottom: 20px;
  padding: 18px;
  border-radius: 16px;
  text-align: center;
  animation: fadePopup 0.3s ease;
}

.form-messages.success {
  display: block;
  background: #f0fff6;
  border: 1px solid #b7f5cc;
  color: #1f7a3d;
}

.form-messages.error {
  display: block;
  background: #fff5f5;
  border: 1px solid #ffcaca;
  color: #c0392b;
}

.form-messages .icon {
  display: block;
  font-size: 40px;
  margin-bottom: 10px;
}

.form-messages h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.form-messages p {
  font-size: 14px;
  margin: 0;
}

/* ===== ANIMATION ===== */
@keyframes popupSlide {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeOverlay {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadePopup {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */
@media (max-width: 768px) {
  .popup-overlay {
    padding: 16px;
    align-items: flex-start;
    overflow-y: auto;
  }

  .popup-box {
    width: 100%;
    margin-top: 40px;
    padding: 28px 20px;
    border-radius: 20px;
  }

  .popup-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .close-btn {
    top: 12px;
    right: 14px;
    font-size: 28px;
  }

  .popup-form input,
  .popup-form textarea {
    font-size: 14px;
    padding: 12px 14px;
  }

  .popup-form textarea {
    min-height: 100px;
  }
}

@media (max-width: 480px) {
  .popup-box {
    padding: 24px 18px;
  }

  .popup-box h2 {
    font-size: 1.7rem;
  }

  .form-messages h3 {
    font-size: 18px;
  }

  .form-messages p {
    font-size: 13px;
  }
}

/* ===== WHATSAPP ===== */
/* ===== WHATSAPP FLOAT BUTTON ===== */
.chat-wrapper {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: whatsappFloat 3s ease-in-out infinite;
}

.chat-bubble {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s ease;
}

.chat-bubble:hover {
  transform: scale(1.08);
}

.chat-label {
  background: white;
  color: #2c2f6d;
  padding: 10px 14px;
  border-radius: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

@keyframes whatsappFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* =========================================
   RESPONSIVE — SINGLE CLEAN STRUCTURE
========================================= */

/* Tablet */

@media (max-width: 992px) {
  .hero-section .container {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: center;
  }

  .course-cards {
    grid-template-columns: 1fr 1fr;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar nav {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #13143a;
    border-radius: 0;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s ease;
  }

  .navbar nav.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .hero-section .container {
    grid-template-columns: 1fr;
  }

  .hero-section .container,
  .course-cards {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-image-wrapper {
    aspect-ratio: 16 / 9;
  }

  .hero-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1238 / 616;
    border-radius: 25px;
    overflow: hidden;
  }

  .floating,
  .jp-rain,
  .chat-label {
    display: none;
  }

  .lantern1 {
    width: 55px;
    top: 90px;
    right: 15px;
    opacity: 0.85;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .section-padding {
    padding: 50px 0;
  }

  .btn {
    width: 100%;
  }
}

@keyframes fall {
  0% {
    transform: translateY(-80px);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    transform: translateY(110vh);
    opacity: 0;
  }
}

.footer-social h3 {
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  transform: translateY(-5px) scale(1.05);
}

/* Brand Colors on Hover */
.social-link:nth-child(1):hover {
  background: #E4405F;
}

/* Instagram */
.social-link:nth-child(2):hover {
  background: #25D366;
}

/* WhatsApp */
.social-link:nth-child(3):hover {
  background: #0077B5;
}

/* LinkedIn */
.social-link:nth-child(4):hover {
  background: #FF0000;
}

/* YouTube */

.about-section {
  background: linear-gradient(180deg, #f9faff 0%, #eef1ff 100%);
  background:#4199245e ;
}

.about-story-card,
.about-card,
.course-card,
.placement-content,
.placement-card,
.placement-goal {
  /*background: var(--card-bg);*/
  /*border: 1px solid var(--border-light);*/
  background: var(--card-bg);
    border: 5px solid #3d514175;
}

.about-card i {
  background: var(--primary-indigo);
}

.course-card i {
  color: var(--primary-indigo);
}

/*.testimonials-section {*/
/*  background: linear-gradient(135deg, var(--primary-indigo), #4A90E2);*/
/*}*/



.footer-grid {
  /*background: var(--primary-indigo);*/
  background: #11111b;
}

.bottom-link,
.footer-bottom-social a {
  background: var(--secondary-green);
}

.popup-form input:focus,
.popup-form textarea:focus {
  border-color: var(--primary-indigo);
}
