@charset "UTF-8";
/* =========================================================
VARIABLES
========================================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 64px;
  color: #1E293B;
  font-family: "Inter", sans-serif;
  background: #FFFFFF;
  overflow-x: hidden;
}
@media (min-width: 992px) {
  body {
    padding-top: 80px;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  border: none;
  font-family: inherit;
  background: none;
  cursor: pointer;
}

.container {
  margin: auto;
  width: 100%;
  max-width: 1300px;
  padding-inline: 16px;
}
@media (min-width: 576px) {
  .container {
    padding-inline: 24px;
  }
}
@media (min-width: 768px) {
  .container {
    padding-inline: 32px;
  }
}

.navbar {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid #CFEFFF;
  box-shadow: 0 2px 10px rgba(26, 156, 208, 0.08);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.13);
  border-bottom-color: #E2E8F4;
}

.nav-inner {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 992px) {
  .nav-inner {
    height: 80px;
  }
}

.nav-logo {
  position: relative;
  z-index: 1002;
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.nav-logo img {
  width: auto;
  height: 72px;
  display: block;
  object-fit: contain;
}
@media (min-width: 576px) {
  .nav-logo img {
    height: 72px;
  }
}
@media (min-width: 992px) {
  .nav-logo img {
    height: 72px;
  }
}

/* =========================================================
DESKTOP NAV LINKS
========================================================= */
.nav-links {
  display: none;
}
@media (min-width: 992px) {
  .nav-links {
    margin: 0;
    display: flex;
    align-items: center;
    padding: 0;
    gap: 32px;
    list-style: none;
  }
}
.nav-links li {
  list-style: none;
}
.nav-links a {
  position: relative;
  color: #1E293B;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.nav-links a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  border-radius: 20px;
  width: 0;
  height: 2px;
  content: "";
  background: #1A9CD0;
  transition: all 0.3s ease;
}
.nav-links a:hover {
  color: #1A9CD0;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a.active {
  color: #1A9CD0;
}
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  position: relative;
  z-index: 1002;
  border: 1.5px solid #CFEFFF;
  border-radius: 8px;
  width: 42px;
  height: 42px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 5px;
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(26, 156, 208, 0.08);
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  border-radius: 3px;
  width: 20px;
  height: 2px;
  display: block;
  background-color: #0F172A;
  pointer-events: none;
  transform-origin: center center;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
.hamburger:hover {
  border-color: #1A9CD0;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.hamburger:hover span {
  background-color: #1A9CD0;
}
.hamburger.open {
  border-color: #1A9CD0;
}
.hamburger.open span:nth-child(1) {
  background-color: #1A9CD0;
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  background-color: #1A9CD0;
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100dvh;
  padding-top: 85px;
  padding-bottom: 40px;
  background: #FFFFFF;
  border-left: 0;
  box-shadow: none;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu ul {
  margin: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  list-style: none;
}
.mobile-menu li {
  width: 100%;
  display: block;
  list-style: none;
  border-bottom: 1px solid #f1f5f9;
}
.mobile-menu li::marker {
  display: none;
  content: "";
}
.mobile-menu a {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 15px 24px;
  color: #1E293B;
  font-weight: 600;
  font-size: 1.2rem;
  border-bottom: none;
  transition: all 0.3s ease;
}
.mobile-menu a:hover, .mobile-menu a.active {
  padding-left: 32px;
  color: #1A9CD0;
  background: #DDF4FF;
}
.mobile-menu .mobile-cta {
  margin: 24px 24px 0;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  background: #1A9CD0;
  transition: all 0.3s ease;
  border-bottom: none;
}
.mobile-menu .mobile-cta:hover {
  padding-left: 24px;
  background: #0087C8;
}

.menu-overlay {
  position: fixed;
  z-index: 998;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Desktop Navbar Auth */
.nav-inner > .nav-auth {
  display: none;
}
@media (min-width: 992px) {
  .nav-inner > .nav-auth {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}

/* =========================================================
MOBILE MENU AUTH
========================================================= */
.mobile-menu .nav-auth {
  margin-top: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
}
@media (min-width: 992px) {
  .mobile-menu .nav-auth {
    display: none;
  }
}
.mobile-menu .btn-login,
.mobile-menu .btn-register {
  border-radius: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 1rem;
  min-height: 52px;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-login,
.btn-register {
  border-radius: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  gap: 8px;
  transition: all 0.3s ease;
}
.btn-login i,
.btn-register i {
  font-size: 0.9rem;
}

.btn-login {
  border: 1.5px solid #1A9CD0;
  color: #1A9CD0;
  background: transparent;
}
.btn-login:hover {
  color: #FFFFFF;
  background: #1A9CD0;
  transform: translateY(-2px);
}

.btn-register {
  color: #FFFFFF;
  background: #1A9CD0;
}
.btn-register:hover {
  background: #0087C8;
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .mobile-menu .nav-auth {
    padding: 20px;
    gap: 14px;
  }
  .mobile-menu .btn-login {
    margin-top: 16px;
    border: 1px solid #1A9CD0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1A9CD0;
    font-size: 0.95rem;
    min-height: 50px;
  }
  .mobile-menu .btn-register {
    margin-top: 16px;
    color: white;
    font-size: 0.95rem;
    min-height: 50px;
  }
}
.btn-scholarship {
  border-radius: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 22px;
  color: #fff;
  font-weight: 600;
  gap: 8px;
  text-decoration: none;
  background: linear-gradient(135deg, #1A9CD0, #36B3E5);
  box-shadow: 0 8px 20px rgba(26, 156, 208, 0.25);
  transition: all 0.3s ease;
}
.btn-scholarship i {
  font-size: 15px;
}
.btn-scholarship:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #168bb9, #1A9CD0);
  box-shadow: 0 12px 28px rgba(26, 156, 208, 0.4);
}

/* Mobile View */
@media (max-width: 768px) {
  .mobile-menu .nav-auth {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 12px;
  }
  .mobile-menu .btn-scholarship,
  .mobile-menu .btn-register {
    border-radius: 12px;
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    color: #fff;
    font-size: 15px;
  }
  /* Hide desktop auth buttons */
  .navbar .nav-inner .nav-auth {
    display: none;
  }
}
/*
HERO / BANNER SLIDER
*/
.slider-section {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #0F172A;
  /* no margin-top / padding-top here — body handles it */
}
@media (min-width: 576px) {
  .slider-section {
    height: 340px;
  }
}
@media (min-width: 768px) {
  .slider-section {
    height: 460px;
  }
}
@media (min-width: 992px) {
  .slider-section {
    height: 580px;
  }
}
@media (min-width: 1200px) {
  .slider-section {
    height: 640px;
  }
}

.slider-track {
  height: 100%;
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slide {
  position: relative;
  height: 100%;
  min-width: 100%;
  overflow: hidden;
}
.slide img {
  width: 100%;
  height: 100%;
  display: block;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center;
}
.slide::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.slide-content {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 28px;
  left: 16px;
  color: #FFFFFF;
}
@media (min-width: 576px) {
  .slide-content {
    right: 24px;
    bottom: 32px;
    left: 24px;
  }
}
@media (min-width: 768px) {
  .slide-content {
    right: 60px;
    bottom: 48px;
    left: 60px;
    max-width: 680px;
  }
}
@media (min-width: 992px) {
  .slide-content {
    bottom: 64px;
    left: 80px;
  }
}
.slide-content .slide-badge {
  margin-bottom: 10px;
  border-radius: 20px;
  display: inline-block;
  padding: 4px 12px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.7rem;
  background: #1A9CD0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.slide-content h2 {
  margin-bottom: 10px;
  font-weight: 800;
  font-size: clamp(1rem, 4vw, 2.4rem);
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.slide-content p {
  margin-bottom: 20px;
  display: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.8rem, 2vw, 1rem);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .slide-content p {
    display: block;
  }
}
.slide-content .slide-btn {
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.85rem;
  gap: 8px;
  background: #1A9CD0;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .slide-content .slide-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}
.slide-content .slide-btn:hover {
  background: #0087C8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.slider-btn {
  position: absolute;
  z-index: 3;
  top: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .slider-btn {
    width: 50px;
    height: 50px;
  }
}
.slider-btn:hover {
  border-color: #1A9CD0;
  background: #1A9CD0;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}
.slider-btn::before {
  width: 9px;
  height: 9px;
  display: block;
  content: "";
  border-top: 2.5px solid #FFFFFF;
  border-right: 2.5px solid #FFFFFF;
}
@media (min-width: 768px) {
  .slider-btn::before {
    width: 11px;
    height: 11px;
  }
}
.slider-btn.prev {
  left: 10px;
}
@media (min-width: 768px) {
  .slider-btn.prev {
    left: 18px;
  }
}
.slider-btn.prev::before {
  transform: rotate(-135deg) translate(-1px, 1px);
}
.slider-btn.next {
  right: 10px;
}
@media (min-width: 768px) {
  .slider-btn.next {
    right: 18px;
  }
}
.slider-btn.next::before {
  transform: rotate(45deg) translate(-1px, 1px);
}

.slider-dots {
  position: absolute;
  z-index: 3;
  bottom: 12px;
  left: 50%;
  display: flex;
  transform: translateX(-50%);
  gap: 7px;
}
@media (min-width: 768px) {
  .slider-dots {
    bottom: 18px;
    gap: 9px;
  }
}
.slider-dots button {
  border: none;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .slider-dots button {
    width: 10px;
    height: 10px;
  }
}
.slider-dots button:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: scale(1.2);
}
.slider-dots button.active {
  border-radius: 4px;
  width: 22px;
  background: #1A9CD0;
}

/* =========================================================
SCROLLBAR
========================================================= */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #F5FCFF;
}

::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: #1A9CD0;
}

/* =========================================================
FOOTER
FIX 5 — footer must have position:relative (default) and
NO negative margin/top that could pull it up into navbar.
overflow:hidden on .footer can clip box-shadow;
use
overflow:clip instead so content stays within bounds.
========================================================= */
.footer {
  position: relative;
  z-index: 1;
  padding: 64px 0 0;
  color: #FFFFFF;
  /* ← ensures stacking is correct   */
  /* ← below navbar (z-index:1000)   */
  background: #1A1A2E;
  overflow: clip;
  /* clip instead of hidden — safer  */
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 48px;
}

.footer-col {
  flex: 1 1 200px;
}
.footer-col h4 {
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.29rem;
  letter-spacing: 0.01em;
}
.footer-col ul {
  margin: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 14px;
  list-style: none;
}
.footer-col li {
  color: rgba(255, 255, 255, 0.72);
  list-style: none;
}
.footer-col li::marker {
  display: none;
  content: "";
}
.footer-col a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.09rem;
  gap: 10px;
  transition: all 0.3s ease;
}
.footer-col a:hover {
  color: #1A9CD0;
  transform: translateX(4px);
}
.footer-col i {
  color: #FFFFFF;
  font-size: 0.85rem;
}

.footer-logo {
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.8rem;
  gap: 6px;
}
.footer-logo .logo-ny {
  color: #1A9CD0;
}
.footer-logo .logo-24 {
  color: #FFFFFF;
  font-size: 1.5rem;
}

.footer-brand p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 1rem;
  max-width: 300px;
  line-height: 1.9;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.social-icons a {
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background: #1A9CD0;
  transform: translateY(-3px);
}
.social-icons a i {
  color: #FFFFFF;
  font-size: 1.5rem;
}

.footer-col ul li a i {
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-size: 1.01rem;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.footer-col ul li a:hover i {
  background: #1A9CD0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.8;
}
.footer-contact-list i {
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-size: 1rem;
  min-width: 34px;
  background: rgba(255, 255, 255, 0.08);
}
.footer-contact-list span, .footer-contact-list a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.footer-bottom {
  margin-top: 56px;
  padding: 22px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.8;
}
.footer-bottom strong {
  color: #FFFFFF;
}
.footer-bottom .tripledots {
  color: white;
  transition: all 0.3s ease;
}
.footer-bottom .tripledots:hover {
  color: #FFFFFF;
}

/* =========================================================
FLOATING WHATSAPP
========================================================= */
.floating-whatsapp {
  position: fixed;
  z-index: 1001;
  right: 18px;
  bottom: 180px;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: wpPulse 2.2s infinite;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
}
.floating-whatsapp i {
  color: #FFFFFF;
  font-size: 3.2rem;
}

@keyframes wpPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
/* =========================================================
MOBILE  ≤ 767px
========================================================= */
@media (max-width: 767px) {
  .slide-content {
    right: 14px;
    bottom: 24px;
    left: 14px;
  }
  .slider-btn {
    display: none;
  }
  .footer {
    padding: 44px 0 0;
  }
  .footer-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }
  .footer-col {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
  .footer-col ul,
  .footer-contact-list {
    align-items: flex-start;
    gap: 12px;
  }
  .footer-col ul li,
  .footer-contact-list li {
    width: 100%;
  }
  .footer-col ul li a,
  .footer-contact-list li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
  }
  .footer-brand p {
    max-width: 100%;
  }
  .social-icons {
    justify-content: flex-start;
  }
  .footer-bottom {
    margin-top: 28px;
    padding: 16px 0;
  }
  .floating-whatsapp {
    right: 12px;
    bottom: 150px;
    width: 75px;
    height: 75px;
  }
  .floating-whatsapp i {
    font-size: 3.4rem;
  }
}
/* =========================================================
EXTRA SMALL  ≤ 400px
========================================================= */
@media (max-width: 400px) {
  body {
    padding-top: 58px;
  }
  .navbar .nav-inner {
    height: 70px;
  }
  .nav-logo img {
    height: 67px;
  }
  .hamburger {
    width: 38px;
    height: 38px;
    gap: 4px;
  }
  .hamburger span {
    width: 17px;
  }
  .hamburger.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-menu {
    width: 100vw;
    padding-top: 85px;
    padding-bottom: 28px;
  }
  .mobile-menu a {
    font-size: 1.2rem;
  }
  .slider-section {
    height: 210px;
  }
}
/* =========================================================
COURSES SECTION
========================================================= */
.courses-section {
  padding: 80px 0;
  background: #F5FCFF;
}
@media (min-width: 768px) {
  .courses-section {
    padding: 100px 0;
  }
}

/* =========================================================
SECTION HEADING
========================================================= */
.section-heading {
  margin: 0 auto 60px;
  max-width: 760px;
  text-align: center;
}
.section-heading .section-subtitle {
  margin-bottom: 18px;
  border-radius: 30px;
  display: inline-block;
  padding: 8px 18px;
  color: #1A9CD0;
  font-weight: 700;
  font-size: 0.82rem;
  background: #DDF4FF;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-heading h2 {
  margin-bottom: 20px;
  color: #1A1A2E;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
}
.section-heading p {
  color: #4A4A68;
  font-size: 1.2rem;
  line-height: 1.9;
}

/* =========================================================
COURSES GRID
========================================================= */
.courses-grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 768px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .courses-grid {
    gap: 32px;
  }
}

/* =========================================================
COURSE CARD
========================================================= */
.course-card {
  position: relative;
  border: 1px solid #CFEFFF;
  border-radius: 28px;
  padding: 30px;
  background: #FFFFFF;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(26, 156, 208, 0.08);
  transition: all 0.3s ease;
}
.course-card:hover {
  border-color: rgba(37, 99, 235, 0.18);
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(26, 156, 208, 0.1);
}
.course-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, #1A9CD0, #60a5fa);
}
.course-card h3 {
  margin-bottom: 14px;
  color: #1A1A2E;
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1.3;
}

/* =========================================================
COURSE TOP
========================================================= */
.course-top {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

/* =========================================================
COURSE ICON
========================================================= */
.course-icon {
  border-radius: 20px;
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #DDF4FF;
}
.course-icon i {
  color: #1A9CD0;
  font-size: 1.8rem;
}

/* =========================================================
COURSE BADGE
========================================================= */
.course-badge {
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  color: #1A9CD0;
  font-weight: 700;
  font-size: 0.78rem;
  background: #DDF4FF;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =========================================================
COURSE DESCRIPTION
========================================================= */
.course-desc {
  margin-bottom: 28px;
  color: #4A4A68;
  font-size: 1rem;
  line-height: 1.8;
}

/* =========================================================
COURSE INFO
========================================================= */
.course-info {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* =========================================================
COURSE INFO ITEM
========================================================= */
.course-info-item {
  border-radius: 18px;
  padding: 18px 20px;
  background: #EAF8FF;
}
.course-info-item span {
  margin-bottom: 8px;
  display: block;
  color: #8A8AA0;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.course-info-item h4 {
  color: #1A1A2E;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6;
}

/* =========================================================
COURSE FEATURES
========================================================= */
.course-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.course-features li {
  display: flex;
  align-items: center;
  color: #4A4A68;
  font-weight: 500;
  font-size: 0.98rem;
  gap: 12px;
  line-height: 1.7;
}
.course-features li i {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-size: 0.72rem;
  background: #1A9CD0;
}

/* =========================================================
BOTTOM BUTTON
========================================================= */
.courses-btn-wrapper {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

/* =========================================================
MAIN BUTTON
========================================================= */
.courses-main-btn {
  border-radius: 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 36px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  background: #1A9CD0;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.22);
  transition: all 0.3s ease;
}
.courses-main-btn:hover {
  background: #0087C8;
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.3);
}

.course-action {
  margin-top: 25px;
}

.enroll-btn {
  border-radius: 14px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  gap: 10px;
  text-decoration: none;
  background: linear-gradient(90deg, #0087C8 0%, #1A9CD0 50%, #29A2C9 100%);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
  transition: all 0.3s ease;
}
.enroll-btn i {
  transition: 0.3s ease;
}
.enroll-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, #1fa8ec 0%, #1A9CD0 50%, #29A2C9 100%);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.35);
}
.enroll-btn:hover i {
  transform: translateX(5px);
}

/* =========================================================
RESPONSIVE
========================================================= */
@media (max-width: 991px) {
  .section-heading {
    margin-bottom: 50px;
  }
  .section-heading h2 {
    font-size: 2.5rem;
  }
  .course-card {
    padding: 26px;
  }
}
@media (max-width: 767px) {
  .courses-section {
    padding: 70px 0;
  }
  .section-heading {
    margin-bottom: 42px;
  }
  .section-heading h2 {
    font-size: 2rem;
  }
  .section-heading p {
    font-size: 1.07rem;
    line-height: 1.8;
  }
  .courses-grid {
    gap: 22px;
  }
  .course-card {
    padding: 24px;
  }
  .course-card h3 {
    font-size: 1.5rem;
  }
  .course-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .course-icon {
    width: 65px;
    height: 65px;
  }
  .course-icon i {
    font-size: 1.6rem;
  }
  .course-info-item {
    padding: 16px 18px;
  }
  .courses-main-btn {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .section-heading .section-subtitle {
    font-size: 0.75rem;
  }
  .section-heading h2 {
    font-size: 1.7rem;
    line-height: 1.3;
  }
  .course-card {
    border-radius: 24px;
    padding: 20px;
  }
  .course-card h3 {
    font-size: 1.35rem;
  }
  .course-badge {
    font-size: 0.72rem;
  }
  .course-desc,
  .course-features li {
    font-size: 0.94rem;
  }
}
/* =========================================================
WHY SECTION
========================================================= */
.why-section {
  padding: 80px 0;
  background: white;
}
@media (min-width: 768px) {
  .why-section {
    padding: 100px 0;
  }
}

/* =========================================================
WHY CONTENT
========================================================= */
.why-content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 22px;
}
@media (min-width: 768px) {
  .why-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
WHY ITEM
========================================================= */
.why-item {
  border: 1px solid #CFEFFF;
  border-radius: 24px;
  display: flex;
  align-items: flex-start;
  padding: 28px;
  gap: 18px;
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
}
.why-item:hover {
  border-color: rgba(37, 99, 235, 0.18);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.08);
}

/* =========================================================
WHY ICON
========================================================= */
.why-icon {
  border-radius: 20px;
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 65px;
  background: rgba(37, 99, 235, 0.1);
}
.why-icon i {
  color: #1A9CD0;
  font-size: 1.5rem;
}

/* =========================================================
WHY TEXT
========================================================= */
.why-text h3 {
  margin-bottom: 10px;
  color: #1A1A2E;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.4;
}
.why-text p {
  color: #4A4A68;
  font-size: 1.09rem;
  line-height: 1.9;
}

/* =========================================================
SECTION HEADING
========================================================= */
.section-heading {
  margin-bottom: 60px;
  text-align: center;
}
.section-heading h2 {
  margin: 16px auto 18px;
  color: #1A1A2E;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  max-width: 820px;
  line-height: 1.3;
}
.section-heading p {
  margin: auto;
  color: #4A4A68;
  font-size: 1.09rem;
  max-width: 760px;
  line-height: 1.9;
}

/* =========================================================
SECTION SUBTITLE
========================================================= */
.section-subtitle {
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  color: #1A9CD0;
  font-weight: 700;
  font-size: 0.88rem;
  background: rgba(37, 99, 235, 0.1);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =========================================================
RESPONSIVE
========================================================= */
@media (max-width: 767px) {
  .why-section {
    padding: 70px 0;
  }
  .section-heading {
    margin-bottom: 40px;
  }
  .section-heading h2 {
    font-size: 2rem;
  }
  .section-heading p {
    font-size: 0.95rem;
  }
  .why-content {
    gap: 18px;
  }
  .why-item {
    border-radius: 20px;
    padding: 22px;
    gap: 15px;
  }
  .why-icon {
    border-radius: 16px;
    width: 55px;
    height: 55px;
    min-width: 55px;
  }
  .why-icon i {
    font-size: 1.25rem;
  }
  .why-text h3 {
    font-size: 1.1rem;
  }
  .why-text p {
    font-size: 1.08rem;
    line-height: 1.8;
  }
}
/* =========================================================
EXTRA SMALL DEVICES
========================================================= */
@media (max-width: 480px) {
  .why-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .why-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }
  .section-heading h2 {
    font-size: 1.7rem;
  }
}
/* =========================================================
DEMO CLASS SECTION
========================================================= */
.demo-class-section {
  padding: 70px 0;
  background: #F5FCFF;
}

/* =========================================================
DEMO BOX
========================================================= */
.demo-class-box {
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 45px 30px;
  text-align: center;
  gap: 18px;
  background: linear-gradient(135deg, #1A9CD0, #0087C8);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.18);
}

/* =========================================================
BADGE
========================================================= */
.demo-badge {
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.15);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =========================================================
HEADING
========================================================= */
.demo-class-box h2 {
  color: #FFFFFF;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.3;
}

/* =========================================================
PARAGRAPH
========================================================= */
.demo-class-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 650px;
  line-height: 1.9;
}

/* =========================================================
RESPONSIVE
========================================================= */
@media (max-width: 767px) {
  .demo-class-section {
    padding: 60px 0;
  }
  .demo-class-box {
    border-radius: 22px;
    padding: 35px 22px;
  }
  .demo-class-box h2 {
    font-size: 1.8rem;
  }
  .demo-class-box p {
    font-size: 0.95rem;
    line-height: 1.8;
  }
}
/* =========================================================
EXTRA SMALL
========================================================= */
@media (max-width: 480px) {
  .demo-class-box {
    padding: 30px 18px;
  }
  .demo-badge {
    padding: 8px 16px;
    font-size: 0.78rem;
  }
  .demo-class-box h2 {
    font-size: 1.5rem;
  }
  .demo-class-box p {
    font-size: 1.02rem;
  }
}
.notes-section {
  position: relative;
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
}
.notes-section .container {
  margin: auto;
  width: 90%;
  max-width: 1200px;
}
.notes-section {
  /* =========================
  SECTION HEADING
  ========================= */
}
.notes-section .section-heading {
  margin-bottom: 60px;
  text-align: center;
}
.notes-section .section-heading span {
  margin-bottom: 18px;
  border-radius: 30px;
  display: inline-block;
  padding: 8px 18px;
  color: rgb(41, 162, 201);
  font-weight: 600;
  font-size: 14px;
  background: rgba(37, 99, 235, 0.08);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.notes-section .section-heading h2 {
  margin-bottom: 18px;
  color: #0f172a;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
}
.notes-section .section-heading p {
  margin: auto;
  color: #64748b;
  font-size: 16px;
  max-width: 700px;
  line-height: 1.8;
}
.notes-section .notes-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.notes-section {
  /* =========================
  NOTE ITEM
  ========================= */
}
.notes-section .note-item {
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px;
  gap: 30px;
  background: #ffffff;
  transition: 0.4s ease;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
}
.notes-section .note-item:hover {
  border-color: rgba(37, 99, 235, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.08);
}
.notes-section {
  /* =========================
  LEFT SIDE
  ========================= */
}
.notes-section .note-left {
  display: flex;
  align-items: center;
  gap: 22px;
}
.notes-section .note-left i {
  border-radius: 20px;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 28px;
  min-width: 70px;
  background: linear-gradient(90deg, #0087C8 0%, #1A9CD0 50%, #29A2C9 100%);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.22);
}
.notes-section .note-left .note-content h3 {
  margin-bottom: 8px;
  color: #0f172a;
  font-weight: 700;
  font-size: 22px;
}
.notes-section .note-left .note-content p {
  color: #64748b;
  font-size: 18px;
  line-height: 1.7;
}
.notes-section {
  /* =========================
  DOWNLOAD BUTTON
  ========================= */
}
.notes-section .download-btn {
  border: none;
  border-radius: 14px;
  padding: 14px 28px;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  background: linear-gradient(90deg, #0087C8 0%, #1A9CD0 50%, #29A2C9 100%);
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}
.notes-section .download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.3);
}
.notes-section {
  /* =========================
  RESPONSIVE
  ========================= */
}
@media (max-width: 768px) {
  .notes-section {
    padding: 80px 0;
  }
  .notes-section .section-heading h2 {
    font-size: 34px;
  }
  .notes-section .note-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .notes-section .note-left {
    align-items: flex-start;
  }
  .notes-section .note-left i {
    width: 65px;
    height: 65px;
    min-width: 65px;
  }
  .notes-section .download-btn {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .notes-section .section-heading h2 {
    font-size: 28px;
  }
  .notes-section .section-heading p {
    font-size: 15px;
  }
  .notes-section .note-item {
    padding: 22px;
  }
  .notes-section .note-left {
    gap: 16px;
  }
  .notes-section .note-left .note-content h3 {
    font-size: 18px;
  }
  .notes-section .note-left .note-content p {
    font-size: 18px;
  }
}

/*# sourceMappingURL=courses.css.map */
