/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #222222;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

/* LOGO */
.logo {
  line-height: 1.3;
}

.logo-main {
  font-size: 26px;
  font-weight: 600;
}

.logo-du {
  color: #F2B705; /* Yellow */
  font-weight: 700;
  margin-right: 4px;
}

.logo-overseas {
  color: #1F4FD8; /* Blue */
}

.logo-line {
  width: 120px;
  height: 2px;
  background: #CFCFD6; /* Silver */
  margin: 6px 0 2px 0;
}

.logo-tagline {
  font-size: 13px;
  color: #666666;
}

/* NAVIGATION */
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  text-decoration: none;
  font-size: 15px;
  color: #222222;
}

.main-nav a:hover {
  color: #1F4FD8;
}

/* CTA BUTTON */
.nav-cta {
  background: #1F4FD8;
  color: #ffffff !important;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
}
/* =====================
   HERO SECTION
===================== */

.hero {
  padding: 70px 0;
  background: #ffffff;
}

.hero-container {
  max-width: 800px;
}

.hero h1 {
  font-size: 36px;
  font-weight: 600;
  color: #222222;
  line-height: 1.3;
  margin-bottom: 18px;
}

.hero p {
  font-size: 16px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* HERO BUTTONS */
.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-btn {
  text-decoration: none;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 4px;
}

/* Primary button */
.hero-btn.primary {
  background: #1F4FD8;
  color: #ffffff;
}

/* Secondary button */
.hero-btn.secondary {
  border: 1px solid #1F4FD8;
  color: #1F4FD8;
}
/* =====================
   WHY DU OVERSEAS
===================== */

.why-du {
  padding: 60px 0;
  background: #fafafa;
}

.why-du h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #222222;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.why-box {
  background: #ffffff;
  border: 1px solid #eeeeee;
  padding: 24px;
}

.why-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1F4FD8;
  margin-bottom: 10px;
}

.why-box p {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
}
/* =====================
   STUDY DESTINATIONS
===================== */

.destinations {
  padding: 60px 0;
  background: #ffffff;
}

.destinations h2 {
  font-size: 30px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 10px;
}

.section-intro {
  font-size: 15px;
  color: #555555;
  max-width: 700px;
  margin-bottom: 30px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.destination-box {
  border: 1px solid #eeeeee;
  padding: 18px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #1F4FD8;
  background: #fafafa;
}

/* =====================
   CALL TO ACTION
===================== */

.cta {
  padding: 60px 0;
  background: #1F4FD8;
  text-align: center;
}

.cta h2 {
  font-size: 30px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.cta p {
  font-size: 16px;
  color: #e6ecff;
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  background: #F2B705;
  color: #222222;
  text-decoration: none;
  padding: 10px 22px;
  font-size: 15px;
  border-radius: 4px;
}
/* =====================
   FOOTER
===================== */

.site-footer {
  background: #f7f7f7;
  padding: 40px 0;
  text-align: center;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-links a {
  text-decoration: none;
  font-size: 14px;
  color: #555555;
}

.footer-copy {
  font-size: 13px;
  color: #777777;
}
/* =====================
   CONTACT PAGE
===================== */

.contact-info h2,
.contact-form h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #222222;
}

.contact-info p {
  font-size: 15px;
  color: #555555;
  margin-bottom: 10px;
}

/* Form */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #cccccc;
  border-radius: 4px;
}

.contact-form button {
  background: #1F4FD8;
  color: #ffffff;
  border: none;
  padding: 10px;
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #163fb2;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}
/* =====================
   CONTACT PAGE – FIXED
===================== */

.contact-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 40px 0;
  align-items: flex-start;   /* ← ADD THIS LINE */
}

/* Left info */
.contact-info h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

.contact-info p {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
}

/* Right form card */
.contact-form {
  background: #ffffff;
  border: 1px solid #eeeeee;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.contact-form h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

/* Form layout */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #cccccc;
  border-radius: 4px;
}

.contact-form textarea {
  resize: vertical;
}

/* Button */
.contact-form button {
  background: #1F4FD8;
  color: #ffffff;
  border: none;
  padding: 12px;
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.contact-form button:hover {
  background: #163fb2;
}

/* Mobile fix */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}
/* =====================
   COUNTRIES PAGE
===================== */

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.country-box {
  border: 1px solid #eeeeee;
  padding: 24px;
  background: #ffffff;
}

.country-box h3 {
  font-size: 20px;
  color: #1F4FD8;
  margin-bottom: 10px;
}

.country-box p {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
}
/* =====================
   COUNTRIES GRID (FINAL)
===================== */

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.country-card {
  border: 1px solid #eeeeee;
  padding: 24px;
  text-align: center;
  background: #ffffff;
}

.country-card img {
  width: 60px;
  height: auto;
  margin-bottom: 12px;
}

.country-card h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 12px;
}

.country-card a {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  color: #ffffff;
  background: #1F4FD8;
  padding: 8px 16px;
  border-radius: 4px;
}
/* =====================
   COUNTRY DETAIL PAGES
===================== */

.country-content {
  max-width: 900px;
  margin: 0 auto;
}

.country-content h2 {
  font-size: 26px;
  margin: 30px 0 10px;
  color: #222222;
}

.country-content p {
  font-size: 15px;
  color: #555555;
  line-height: 1.7;
}

.country-content ul {
  margin-left: 20px;
  margin-bottom: 10px;
}

.country-content li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #555555;
}
/* Info box */

.info-box {
  background: #fafafa;
  border-left: 4px solid #1F4FD8;
  padding: 16px 20px;
  margin: 20px 0;
}

.info-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  color: #222222;
}
/* =====================
   GLOBAL SECTION SPACING
===================== */

section {
  padding: 60px 0;
}

.hero {
  padding: 80px 0;
}

@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }

  .hero {
    padding: 60px 0;
  }
}
/* =====================
   TYPOGRAPHY CONSISTENCY
===================== */

h1 {
  font-size: 36px;
  line-height: 1.3;
}

h2 {
  font-size: 30px;
  margin-bottom: 14px;
}

h3 {
  font-size: 20px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 26px;
  }
}
/* =====================
   LIST STYLING
===================== */

ul {
  padding-left: 18px;
}

ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}
/* =====================
   BUTTON CONSISTENCY
===================== */

a.cta-btn,
.country-card a,
.nav-cta {
  transition: background 0.2s ease;
}

a.cta-btn:hover,
.country-card a:hover,
.nav-cta:hover {
  background: #163fb2;
}
/* =====================
   CONTAINER REFINEMENT
===================== */

.container {
  padding-left: 10px;
  padding-right: 10px;
}
/* =====================
   WHATSAPP FLOATING BUTTON
===================== */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 999;
}

.whatsapp-float:hover {
  background: #1ebe5d;
}
/* =====================
   STICKY HEADER
===================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
}
body {
  padding-top: 0;
}
/* =====================
   MOBILE RESPONSIVE HEADER
===================== */

.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    width: 100%;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #eeeeee;
  }

  .main-nav a {
    padding: 14px 20px;
    border-bottom: 1px solid #eeeeee;
  }

  .main-nav.active {
    display: flex;
  }
}
/* =====================
   HERO WITH ANIMATION (FIXED)
===================== */

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-text {
  max-width: 620px;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    justify-content: center;
    margin-top: 30px;
  }

  .hero-visual lottie-player {
    width: 280px !important;
    height: 280px !important;
  }
}
/* =====================
   HERO BACKGROUND SHAPES
===================== */

.hero {
  position: relative;
  overflow: hidden;
}

/* Soft blue circle (right side) */
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(31,79,216,0.08), transparent 70%);
  top: -120px;
  right: -180px;
  z-index: 0;
}

/* Soft yellow accent (left bottom) */
.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,193,7,0.10), transparent 70%);
  bottom: -160px;
  left: -160px;
  z-index: 0;
}

/* Ensure content stays above shapes */
.hero .container {
  position: relative;
  z-index: 1;
}
@keyframes floatSlow {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.hero::after,
.hero::before {
  animation: floatSlow 12s ease-in-out infinite;
}
/* =====================
   POPULAR DESTINATIONS
===================== */

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.destination-card {
  border: 1px solid #eeeeee;
  background: #ffffff;
  padding: 18px 10px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.destination-card img {
  width: 42px;
  height: auto;
  margin-bottom: 10px;
}

.destination-card span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #1F4FD8;
}

.destination-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
/* =====================
   FAQ SECTION
===================== */

.faq-item {
  border-bottom: 1px solid #eeeeee;
  padding: 18px 0;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #222;
}

.faq-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
/* =====================
   FAQ ACCORDION
===================== */

.faq-accordion {
  max-width: 900px;
  margin: 30px auto 0;
}

.faq-item {
  border-bottom: 1px solid #eaeaea;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 22px;
  transition: transform 0.2s ease;
}

.faq-item.active .faq-question::after {
  content: "–";
}

.faq-answer {
  display: none;
  padding-bottom: 16px;
}

.faq-answer p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
.faq-accordion {
  margin-top: 20px;
}

.faq-question {
  font-size: 16px;
}
/* =====================
   HERO BUTTONS – MOBILE FIX
===================== */

.hero-buttons {
  display: flex;
  gap: 14px;
}

/* Mobile fix */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }
}
/* =====================
   FORCE LOGO CONSISTENCY
===================== */

.site-header .logo {
  font-size: 0; /* reset inheritance */
}

.site-header .logo-du {
  font-size: 26px;
  font-weight: 700;
  color: #f5b400;
}

.site-header .logo-overseas {
  font-size: 26px;
  font-weight: 700;
  color: #1F4FD8;
  margin-left: 4px;
}

.site-header .tagline {
  font-size: 13px;
  font-weight: 400;
  color: #666;
  margin-top: 2px;
}
/* =====================
   GLOBAL LOGO LOCK (FINAL)
===================== */

.site-header .logo {
  display: inline-block;
  line-height: 1.1;
}

.site-header .logo-du {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #f5b400 !important;
}

.site-header .logo-overseas {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #1F4FD8 !important;
  margin-left: 4px;
}

.site-header .tagline {
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #666 !important;
  margin-top: 2px;
}
/* HOME PAGE COUNTRIES SLIDER */
.countries-slider {
  padding: 70px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.slider-wrapper {
  position: relative;
}

.slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.country-slide {
  min-width: 260px;
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.country-slide img {
  width: 60px;
  margin-bottom: 14px;
}

.country-slide h3 {
  color: #111;
  margin-bottom: 6px;
}

.country-slide span {
  color: #1f4ed8;
  font-weight: 500;
}

.slider-btn {
  position: absolute;
  top: 45%;
  background: #1f4ed8;
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

.slider-btn.prev { left: -20px; }
.slider-btn.next { right: -20px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.slider-dots span {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
}

.slider-dots span.active {
  background: #1f4ed8;
}

@media (max-width: 768px) {
  .slider-btn {
    display: none;
  }
}
/* ================= MBBS SLIDER ================= */

.mbbs-slider-section {
  position: relative;
  margin: 40px 0;
  overflow: hidden;
}

.mbbs-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

.mbbs-slider-track::-webkit-scrollbar {
  display: none;
}

.mbbs-slide {
  min-width: 260px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.mbbs-slide:hover {
  transform: translateY(-6px);
}

.mbbs-slide img {
  width: 60px;
  height: auto;
  margin-bottom: 12px;
}

.mbbs-slide h3 {
  color: #0d47a1;
  margin-bottom: 6px;
}

.mbbs-slide span {
  color: #1e88e5;
  font-weight: 500;
}

/* Arrows */
.mbbs-nav {
  position: absolute;
  top: 45%;
  background: #0d47a1;
  color: #fff;
  border: none;
  font-size: 26px;
  padding: 8px 14px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.mbbs-nav.prev { left: 0; }
.mbbs-nav.next { right: 0; }

/* Dots */
.mbbs-dots {
  text-align: center;
  margin-top: 12px;
}

.mbbs-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 4px;
}

.mbbs-dots span.active {
  background: #0d47a1;
}
.faq-section h2 {
  margin-bottom: 25px;
}

.faq-item {
  margin-bottom: 18px;
}

.faq-item h3 {
  font-size: 18px;
  color: #0d47a1;
  margin-bottom: 6px;
}

.faq-item p {
  color: #444;
}
/* ===== FAQ PREMIUM FIX ===== */

.faq-section {
  padding: 60px 0;
}

.faq-title {
  text-align: center;
  margin-bottom: 30px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}

.faq-question {
  padding: 18px 22px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 22px;
  color: #1f4ed8;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: #444;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.country-card img,
.country-slide img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
/* ===== MBBS COUNTRIES SLIDER ===== */

.mbbs-slider {
  margin-top: 30px;
  overflow: hidden;
}

.mbbs-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.mbbs-track::-webkit-scrollbar {
  display: none;
}

.mbbs-card {
  min-width: 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.mbbs-card:hover {
  transform: translateY(-6px);
}

.mbbs-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.mbbs-card h3 {
  margin: 0;
  font-size: 18px;
  color: #111;
}

.mbbs-card span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: #1f4ed8;
  font-weight: 500;
}

/* dots */
.mbbs-dots {
  text-align: center;
  margin-top: 15px;
}

.mbbs-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 4px;
}

.mbbs-dots span.active {
  background: #1f4ed8;
}
/* =====================
   PROCESS – ICON CARD PREMIUM
===================== */

.process {
  padding: 90px 0;
  background: #f8f9fc;
  text-align: center;
}

.process h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 50px;
  color: #222;
}

.process-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.process-card {
  width: 220px;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.process-card:hover {
  transform: translateY(-8px);
}

/* Blue top strip */
.process-top {
  background: #1F4FD8;
  height: 100px;
  position: relative;
}

/* Circle icon */
.process-icon {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 50%;
  border: 4px solid #1F4FD8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #1F4FD8;
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.process-bottom {
  padding: 55px 20px 30px;
}

.process-bottom h3 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}
/* =====================
   COURSES SLIDER
===================== */

.courses-slider-section {
  padding: 70px 0;
  background: #f8f9fc;
}

.courses-slider-wrapper {
  position: relative;
}

.courses-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

.courses-slider-track::-webkit-scrollbar {
  display: none;
}

.course-slide {
  min-width: 220px;
  background: #fff;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.course-slide:hover {
  transform: translateY(-6px);
}

.course-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.course-slide h3 {
  font-size: 16px;
  color: #222;
}

.courses-btn {
  position: absolute;
  top: 45%;
  background: #1F4FD8;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}

.courses-btn.prev { left: -20px; }
.courses-btn.next { right: -20px; }

@media (max-width: 768px) {
  .courses-btn {
    display: none;
  }
}
