/* =====================================================
   RESET & BASE
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
    'Helvetica Neue', Arial, sans-serif;
  color: #0a0a23;
  background: #fff;
}

html {
  scroll-behavior: smooth;
}

h2 {
  color: #1f2937;
}
/* =====================================================
   NAVBAR BASE
===================================================== */

.navbar-logo {
  height: 45px;
}

.navbar .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #0a0a23;
  padding: 25px 0;
  transition: color .2s ease;
}

.navbar .nav-link:hover {
  color: #4c158d;
}

/* rotate icon when dropdown open */
.nav-item.show > .nav-link i {
  transform: rotate(180deg);
  transition: transform .3s ease;
}

.dropdown-toggle::after {
  display: none;
}

/* =====================================================
   DROPDOWNS
===================================================== */

.dropdown-menu.mega-menu {
  left: -50%;
}

.dropdown-menu .dropdown-item {
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 8px;
}

.dropdown-menu .dropdown-item:hover {
  background: #f6f7fb;
}

.dropdown-item:active {
  color: #000;
}

/* =====================================================
   BUTTON
===================================================== */

.btn-signup {
  background: linear-gradient(135deg,#4A1888 0%,#E67600 100%);
  color: #fff;
  padding: 10px 26px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  line-height: 25px;
  text-decoration: none;
  transition: all .25s ease;
}

.btn-signup:hover {
  background: linear-gradient(135deg,#3E1474 0%,#D96400 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(74,24,136,.45);
  color: #fff;
}

/* =====================================================
   NAVBAR SEARCH
===================================================== */

.navbar-search {
  display: none;
  position: relative;
  background: #f7f7f7;
  border-radius: 999px;
  padding: 3px 14px;
}

.navbar-search input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  padding-left: 28px;
}

.navbar-search .search-icon {
  position: absolute;
  left: 10px;
  color: #666;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  z-index: 1055;
}


.rating {
  padding: 10px 40px 10px 20px;
  justify-content: end;
  display: flex;
  gap: 7px;
}

.rating strong {
  color: #4b5563;
  line-height: 27px;
}

.rating .text-muted {
  line-height: 27px;
}



/* =====================================
   NAVBAR SEARCH FINAL CONTROL
===================================== */

/* default hidden */
.navbar-search{
  display:none !important;
}

/* HOME PAGE → show only after scroll */
.home-page .navbar.scrolled .navbar-search{
  display:flex !important;
}

/* INNER PAGES → always visible */
.inner-page .navbar-search{
  display:flex !important;
}

/* MOBILE → always hidden */
@media(max-width:991px){
  .navbar-search{
    display:none !important;
  }
}

/* =====================================================
   MEGA MENU
===================================================== */

.mega-menu {
  width: 650px;
  border-radius: 16px;
  padding: 0;
}

.mega-heading {
  font-size: 13px;
  font-weight: 700;
  color: #2e3445;
  letter-spacing: .5px;
}

.mega-course-item {
  padding: 10px 0;
  text-decoration: none;
  color: #0a0a23;
}

.mega-course-item:hover strong {
  color: #4c158d;
}

.mega-course-item span {
  display: block;
  font-size: 13px;
  color: #6b6f80;
}

.mega-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f2edff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mega-link {
  font-size: 14px;
  font-weight: 600;
  color: #ff3b3b;
  text-decoration: none;
}

/* =====================================================
   MOBILE NAVBAR
===================================================== */

@media (max-width:991px){

  .navbar{
    padding:8px 0 !important;
  }

  .navbar-logo{
    height:42px;
  }

  /* toggler */
  .navbar-toggler{
    padding:6px 10px;
    border:2px solid #777;
    border-radius:10px;
  }

  .navbar-toggler:focus{
    box-shadow:none;
  }

  /* collapse area */
  .navbar-collapse{
    margin-top:10px;
    background:#fff;
    padding:10px 0 20px;
    border-top:1px solid #eee;
  }

  /* nav links */
  .navbar-nav{
    width:100%;
    gap:0 !important;
  }

  .navbar .nav-link{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
    padding:12px 0 !important;
    font-size:16px;
    font-weight:600;
    border-bottom:1px solid #eee;
  }

  .navbar .nav-link i{
    margin-left:auto;
    font-size:13px;
  }

  /* dropdown */
  .dropdown-menu{
    position:static !important;
    width:100%;
    border:none;
    box-shadow:none !important;
    padding:0 0 8px 12px;
    margin:0;
    background:transparent;
  }

  .dropdown-item{
    padding:8px 0;
    font-size:15px;
  }

  /* mega menu mobile */
  .mega-menu{
    width:100% !important;
    max-height:300px;
    overflow-y:auto;
    border-radius:0;
  }

  .mega-menu .container,
  .mega-menu .row{
    padding:0;
    margin:0;
  }

  .mega-menu .col-md-7,
  .mega-menu .col-md-5{
    width:100%;
    border:none !important;
    padding:8px 0 !important;
  }

  /* actions */
  .nav-actions-wrapper{
    width:100%;
    margin-top:14px;
  }

  .btn-signup{
    margin-top:4px;
  }

  /* hide search */
  .navbar-search{
    display:none !important;
  }
}
/* =====================================================
   MOBILE SEARCH SUGGESTION FIX
===================================================== */

@media (max-width:991px){

  /* search wrapper */
  .navbar-search{
    width:100%;
    margin:10px 0 15px;
    display:flex !important;
    position:relative;
    z-index:2000;
  }

  .navbar-search input{
    width:100%;
    font-size:16px;
    padding:10px 15px 10px 38px;
  }

  /* suggestions box */
  .navbar-search .search-suggestions{
    position:absolute;
    top:calc(100% + 6px);
    left:0;
    width:100%;
    background:#fff;
    border-radius:14px;
    box-shadow:0 8px 25px rgba(0,0,0,0.12);
    overflow:hidden;
    z-index:9999; /* VERY IMPORTANT */
  }

  /* each result */
  .navbar-search .search-item{
    padding:10px 14px;
    font-size:15px;
    border-bottom:1px solid #f1f1f1;
    line-height:1.4;
  }

  .navbar-search .search-item:last-child{
    border-bottom:none;
  }

  .navbar-search .search-item:hover,
  .navbar-search .search-item.active{
    background:#f7f4ff;
  }

  /* prevent menu overlap */
  .navbar-collapse{
    overflow:visible;
  }
}






/* =====================================================
   HERO SECTION
===================================================== */
.hero {
  /* padding: 200px 0; */
  display: flex;
  height: 90vh;
  justify-content: center;
  align-items: center;
  background: linear-gradient(0deg,
      rgba(238, 233, 255, 1) 0%,
      rgba(249, 250, 251, 1) 100%);
}

.hero-content {
  max-width: 550px;
}

.hero-content h1 {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.1;
}

.hero-content p {
  font-size: 18px;
  color: #6b6f80;
  margin: 18px 0 24px;
}

.hero-image img {
  width: 100%;
}

/* =====================================================
   HERO SEARCH + NAVBAR SEARCH + AUTOSUGGEST (FINAL)
===================================================== */

/* ---------- HERO SEARCH WRAPPER ---------- */
.hero-search-wrapper {
  position: relative;
  overflow: visible;
}

/* ---------- HERO SEARCH BAR ---------- */
.hero-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0px 20px;
  border-radius: 999px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #ff4d4d, #8a2be2) border-box;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 100%;
  /* 🔑 REQUIRED */
  max-width: 520px;
  /* optional – matches design */
}

/* Input fix (placeholder cut issue solved here) */
.hero-search input {
  flex: 1 1 auto;
  /* fill available space */
  width: 100%;
  min-width: 0;
  /* prevents flexbox shrinking bug */
  height: 48px;
  line-height: 48px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: #0a0a23;
  min-width: 300px;
}



.hero-search input::placeholder {
  color: #6b6f80;
}

/* Search icon */
.search-icon {
  width: 24px;
  height: 24px;
  color: #6b6f80;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- HERO SEARCH HIDE ON SCROLL ---------- */
.hide-hero-search {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  pointer-events: none;
}

/* ---------- NAVBAR SEARCH ---------- */
.navbar-search {
  position: relative;
  gap: 8px;
  padding: 3px 14px;
  border-radius: 999px;
  background: #f6f7fb;
  transition: opacity 0.3s ease, transform 0.3s ease;
  gap: 10px;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #ff4d4d, #8a2be2) border-box;
  border: 2px solid transparent;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: opacity 0.3s ease, transform 0.3s ease;

}

/* Navbar input */
.navbar-search input {
  height: 36px;
  line-height: 36px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  min-width: 260px;
  color: #0a0a23;
}

.navbar-search input::placeholder {
  color: #6b6f80;
}

/* Show navbar search after scroll */
.navbar.scrolled .navbar-search {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---------- AUTOSUGGEST DROPDOWN (GLOBAL) ---------- */
.search-suggestions {
  position: absolute;
  z-index: 1055;
  /* above navbar + cards */
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  padding: 8px;
  display: none;
  max-height: 320px;
  overflow-y: auto;
  min-width: 300px;
}

/* Suggestion item */
.search-item {
  padding: 12px 16px;
  font-size: 15px;
  cursor: pointer;
  border-radius: 10px;
  color: #0a0a23;
  transition: background 0.2s ease, transform 0.12s ease;
}

.search-item:hover,
.search-item.active {
  background: linear-gradient(135deg, #eef2ff, #fdf2ff);
  transform: translateY(-1px);
}

/* Scrollbar (optional but polished) */
.search-suggestions::-webkit-scrollbar {
  width: 6px;
}

.search-suggestions::-webkit-scrollbar-thumb {
  background: #d0d3e3;
  border-radius: 10px;
}

/* ---------- MOBILE BEHAVIOR ---------- */
@media (max-width: 991px) {
  .navbar-search {
    display: none;
  }
}

/* =====================================================
   EXTRA MILE
===================================================== */
.extra-mile {
  padding: 100px 0;
}

.extra-mile h2 {
  font-size: 36px;
  font-weight: 700;
}

.subtitle {
  font-size: 16px;
  color: #6b6f80;
  margin-bottom: 32px;
}

.extra-card {
  padding: 32px 28px;
  border-radius: 24px;
  height: 100%;
}

.extra-card h3 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.card-subtitle {
  font-size: 14px;
  color: #6b6f80;
  margin: 8px 0 22px;
  text-align: center;
}

.extra-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.extra-card li {
  display: flex;
  gap: 14px;
  font-size: 15px;
  margin-bottom: 14px;
}

.extra-card .icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.extra-card .icon i {
  color: #4c158d;
}

.extra-card.funds {
  background: #fff0f0;
}

.extra-card.stays {
  background: #f5f4ff;
}

.card-btn {
  background: #50168d;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.card-btn:hover {
  background: #50168d;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(46, 52, 69, 0.35);
}


/* =====================================================
   DESTINATIONS
===================================================== */
.destinations-section {
  padding: 100px 0;
}

.destinations-section h2 {
  font-size: 36px;
  font-weight: 700;
}

.destinations-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 24px;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.destination-card {
  justify-self: center;
}

.destination-card a span {
  font-size: 15px;
  padding: 10px 0;
  position: relative;
  display: block;
  font-weight: 600;
}

.destination-card img:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(123, 44, 255, 0.18);
}

.destination-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
  transition: transform .3s ease;
}

.destination-card {
  border-radius: 12px;
  /* overflow: hidden; */
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.destination-card a {
  padding: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

/* ===============================
   COURSE CARD – ENHANCED UI
================================ */
.courses-section {
  padding: 100px 0;
}

.courses-section h2 {
  font-size: 36px;
  font-weight: 700;
}

.course-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px 24px 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

/* Hover polish */
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(123, 44, 255, 0.18);
}

/* -------------------------------
   BADGE
-------------------------------- */
.course-card .badge {
  background: linear-gradient(135deg, #4c158d, #b07bff);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 5px 12px;
  border-radius: 999px;
}

/* -------------------------------
   TITLE
-------------------------------- */
.course-card .title {
  font-size: 17px;
  font-weight: 700;
  margin: 14px 0 8px;
  line-height: 1.35;
  color: #0a0a23;
}

/* -------------------------------
   DESCRIPTION
-------------------------------- */
.course-card .desc {
  font-size: 14px;
  color: #6b6f80;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* -------------------------------
   CAREER SECTION
-------------------------------- */
.course-card .career {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #eef0f6;
}

.course-card .career h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0a0a23;
}

.course-card .career p {
  font-size: 13px;
  color: #4f5370;
  line-height: 1.6;
}

/* -------------------------------
   CATEGORY ACCENT (RECOMMENDED)
-------------------------------- */

.course-card.science {
  border-top: 4px solid #22c55e;   /* fresh green */
}

.course-card.arts {
  border-top: 4px solid #ec4899;   /* modern pink */
}

.course-card.commerce {
  border-top: 4px solid #8b5cf6;   /* elegant purple */
}

.course-card.tech {
  border-top: 4px solid #2563eb;   /* professional blue */
}

.course-card.business {
  border-top: 4px solid #f59e0b;   /* premium amber */
}

.course-card.engineering {
  border-top: 4px solid #ef4444;   /* strong red */
}

.course-card.health {
  border-top: 4px solid #06b6d4;   /* medical cyan */
}

.course-card.hospitality {
  border-top: 4px solid #6b7280;   /* neutral gray */
}






/* ===============================
WHY CHOOSE PAGE
================================*/

.why-section{
    padding:70px 0 50px;
    background:#fff;
}

/* TITLE */
.why-title h2{
    font-size:38px;
    font-weight:700;
    margin-bottom:8px;
}

.why-subtitle{
    color:#666;
    font-size:16px;
    margin-bottom:40px;
}
.why-section p.text{
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

/* STATS */
.why-stats{
    margin-top:20px;
}

.stat-box{
    background:#fff;
    border:1px solid #eee;
    border-radius:14px;
    padding:25px 15px;
    box-shadow:0 6px 20px rgba(0,0,0,.04);
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.stat-number{
    font-size:34px;
    font-weight:700;
    color:#3d4dff;
    margin-bottom:6px;
}

.stat-label{
    font-size:14px;
    color:#555;
}

/* ======================
WHY CONTENT ACCORDION
======================*/

.why-content{
    padding:40px 0 70px;
}

.why-accordion{
    max-width:900px;
    margin:0 auto;
}

.why-item{
    border:1px solid #eee;
    border-radius:10px;
    margin-bottom:12px;
    overflow:hidden;
    background:#fff;
}

.why-head{
    padding:18px 20px;
    display:flex;
    align-items:center;
    cursor:pointer;
    font-weight:600;
    font-size:17px;
    background:#fafafa;
}

.why-head i{
    margin-right:12px;
    color:#3d4dff;
}

.why-body{
    padding:18px 20px;
    border-top:1px solid #eee;
    display:none;
}

.why-item.active .why-body{
    display:block;
}

.why-body p{
    color:#555;
    line-height:1.8;
    margin-bottom:10px;
    font-size:15px;
}
.why-choose {
  padding: 100px 0;
}

.why-choose h2 {
  font-size: 36px;
  font-weight: 700;
}

.stat-number {
  font-size: 52px;
  font-weight: 800;
  background: linear-gradient(90deg, #ff2f92, #6a00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: #6b6f80;
}

/* RESPONSIVE */

@media(max-width:768px){

    .why-title h2{
        font-size:30px;
    }

    .stat-number{
        font-size:28px;
    }

    .why-head{
        font-size:15px;
    }
}





/* -------------------------------
   VIDEO PLAY BUTTON
-------------------------------- */
.play-btn {
  margin: 16px 0 6px;
  border: none;
  background: #2e3445;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.play-btn:hover {
  background: linear-gradient(135deg, #ff4d9d, #4c158d);
  transform: translateY(-1px);
}



/* =====================================================
   FOOTER BASE
===================================================== */
.site-footer{
  padding:60px 0 0;
  font-size:14px;
  color:#2e3445;
  border-top:1px solid #eee;
  background:linear-gradient(0deg,#eee9ff 0%,#f9fafb 100%);
}

.footer-container{
  max-width:1320px;
  margin:auto;
}

.footer-logo{max-width:180px;}

.certifications img{
  height:65px;
  object-fit:contain;
}


/* =====================================================
   CONTACT INFO
===================================================== */
.contact-info-card{
  background:#fff;
  border-radius:14px;
  padding:30px 28px;
  box-shadow:0 8px 30px rgba(0,0,0,.08);
  max-width:500px;
}

.contact-logo{
  text-align:center;
  margin-bottom:25px;
}

.contact-logo img{
  max-width:220px;
  height:auto;
}

.contact-list{
  list-style:none;
  padding:0;
  margin:0;
}

.contact-list li{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:15px;
  line-height:1.6;
  font-size:14px;
  color:#2f2f2f;
}

.contact-list li:last-child{margin-bottom:0;}

.contact-list i{
  color:#4b2aa5;
  font-size:18px;
  margin-top:4px;
  min-width:20px;
}

.contact-list strong{
  color:#111;
  font-weight:600;
}


/* =====================================================
   FOOTER LINKS
===================================================== */
.site-footer h4,
.site-footer h5{
  font-size:14px;
  font-weight:600;
  margin-bottom:14px;
  color:#2e3445;
}

.site-footer a{
  display:block;
  font-size:14px;
  color:#5a6075;
  text-decoration:none;
  margin-bottom:8px;
  transition:.2s;
}

.site-footer a:hover{color:#4c158d;}


/* =====================================================
   TRENDING SECTION
===================================================== */
.footer-trending{
  border-top:1px solid #e4e6f0;
  border-bottom:1px solid #e4e6f0;
  padding:30px 0;
  margin-top:30px;
}


/* =====================================================
   FOOTER BOTTOM
===================================================== */
.footer-bottom{
  border-top:1px solid #e4e6f0;
  padding:1.5rem 0;
  font-size:13px;
}

.footer-bottom p{
  margin:0;
  color:#6c757d;
}

/* FIX: prevent copyright line breaking */
.footer-bottom .footer-copy{
  white-space: nowrap;
}

.footer-bottom a {
  display: inline;
  margin-bottom: 0;
}

/* =====================================================
   SOCIAL ICONS
===================================================== */
.socials{
  display:flex;
  gap:12px;
}

.socials a{
  width:50px;
  height:50px;
  border-radius:50%;
  background:#fff;
  border:1px solid #e4e6f0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:25px;
  transition:.25s ease;
  margin-bottom:0;
  text-decoration: none;
}

/* DEFAULT ICON COLOR */
.socials a i{
  transition:.25s ease;
}

/* FACEBOOK */
.socials a[aria-label="Facebook"]{
  color:#1877f2;
}
.socials a[aria-label="Facebook"]:hover{
  background:#1877f2;
  border-color:#1877f2;
  color:#fff;
}

/* INSTAGRAM */
.socials a[aria-label="Instagram"]{
  color:#e4405f;
}
.socials a[aria-label="Instagram"]:hover{
  background:#e4405f;
  border-color:#e4405f;
  color:#fff;
}

/* YOUTUBE */
.socials a[aria-label="YouTube"]{
  color:#ff0000;
}
.socials a[aria-label="YouTube"]:hover{
  background:#ff0000;
  border-color:#ff0000;
  color:#fff;
}

/* WHATSAPP */
.socials a[aria-label="WhatsApp"]{
  color:#25d366;
}
.socials a[aria-label="WhatsApp"]:hover{
  background:#25d366;
  border-color:#25d366;
  color:#fff;
}

/* =====================================================
   FOOTER DROPDOWN SYSTEM
===================================================== */
.footer-toggle{
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

.footer-toggle i{
  font-size:12px;
  transition:transform .3s ease;
}


/* DESKTOP → hide icon */
@media(min-width:769px){
  .footer-toggle i{display:none!important;}
}


/* =====================================================
   MOBILE FOOTER (ACCORDION)
===================================================== */
@media(max-width:768px){

  /* remove bootstrap spacing */
  .footer-links .row{
    --bs-gutter-x:0;
    --bs-gutter-y:0;
    margin:0;
  }

  .footer-links .col-6,
  .footer-links .col-md-4{
    width:100%;
    padding:0;
    margin:0;
  }

  .footer-links .footer-col{
    border-bottom:1px solid #e7e7e7;
    margin:0;
    padding:0;
  }

  .footer-links .footer-col:last-child{
    border-bottom:none;
  }

  /* heading */
  h4.footer-toggle{
    margin:0;
    padding:15px 0;
    font-size:16px;
  }

  /* dropdown content */
  .footer-links-wrap{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
  }

  .footer-col.active .footer-links-wrap{
    max-height:500px;
    padding-bottom:12px;
    padding-left:10px;
  }

  .footer-links-wrap a{
    margin:0;
    padding:7px 0;
    font-size:14px;
  }

  /* icon rotate */
  .footer-col.active .footer-toggle i{
    transform:rotate(180deg);
  }

  /* spacing fix */
  .footer-trending{
    margin-top:0;
    padding-top:0;
  }
}




/* =====================================================
   PLAY BUTTON (VIDEO)
===================================================== */
.play-btn {
  margin: 18px 0;
  background: #2e3445;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  cursor: pointer;
  transition: background .2s ease;
}

.play-btn:hover {
  background: #4c158d;
}

/* =====================================================
   USER INFO
===================================================== */
.user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.avatar {
  width: 40px;
  height: 40px;
  background: #ede7ff;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 600;
  color: #4c158d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user span {
  font-size: 13px;
  color: #6b6f80;
}

/* =====================================================
   VIDEO MODAL
===================================================== */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.video-content {
  background: #000;
  padding: 10px;
  border-radius: 14px;
  position: relative;
}

.video-content iframe {
  width: min(560px, 90vw);
  height: min(315px, 50vh);
}

.close-video {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #fff;
  border-radius: 50%;
  border: none;
  width: 30px;
  height: 30px;
  font-size: 14px;
  cursor: pointer;
}

/* ===============================
   TESTIMONIAL SLIDER – OPTIMISED
================================ */

/* Section */
.testimonials {
  padding: 100px 0;
  background: #ffffff;
  text-align: center;
  overflow-x: hidden;
}

.testimonials h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0a0a23;
}

.testimonials .subtitle {
  font-size: 16px;
  color: #6b6f80;
  margin-bottom: 40px;
}

/* ===============================
   SLIDER WRAPPER
================================ */
.testimonial-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: visible;
  /* allow shadows */
}

/* Slider track */
.testimonial-slider {
  display: flex;
  gap: 24px;
  padding: 40px 10px;
  overflow: visible;
  transition: transform 0.45s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

/* ===============================
   TESTIMONIAL CARD
================================ */
.testimonial-card {
  flex: 0 0 360px;
  height: 360px;
  padding: 24px;
  background: #ffffff;
  border-radius: 18px;
  position: relative;

  display: flex;
  flex-direction: column;
  text-align: left;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(123, 44, 255, 0.18);
}

/* Quote icon */
.testimonial-card .quote {
  position: absolute;
  top: 20px;
  left: 22px;
  font-size: 36px;
  font-weight: 700;
  color: #d63384;
}

/* Text */
.testimonial-card .text {
  margin-top: 34px;
  font-size: 14px;
  line-height: 1.7;
  color: #4a4f63;
}

/* User block (fixed to bottom) */
.testimonial-card .user {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
}

/* Avatar */
.testimonial-card .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin: 0;
}

.testimonial-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play button */
.testimonial-card .play-btn {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11px;
  cursor: pointer;
}


@media (max-width: 768px) {
  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 25px;
  }

  .hero-content p {
    font-size: 15px;
    margin: 12px 0 12px;
  }

  .rating {
    text-align: center;
  }

  .rating .platform img {
    width: 70px;
  }

  .rating {
    padding: 20px 0 10px;
  }

  .hero-image img {
    padding: 25px;
  }

  .testimonials h2,
  .why-choose h2,
  .courses-section h2,
  .destinations-section h2,
  .extra-mile h2,
  {
  font-size: 25px
}

.testimonials .subtitle,
.why-choose .why-subtitle,
.courses-section .subtitle,
.destinations-section .subtitle,
.extra-mile .subtitle {
  font-size: 14px;
}

.testimonial-controls {
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.testimonial-slider {
  padding: 10px 0px;
}

.courses-header {
  flex-direction: column;
  align-items: flex-start;
}

.search-box input {
  width: 100%;
}

.card-title {
  font-size: 18px;
}

.site-footer {
  text-align: left;
}

.footer-bottom {
  text-align: center;
}

.socials {
  justify-content: center;
  margin-top: 12px;
}
}

/* ===============================
   CONTROLS
================================ */
.testimonial-controls {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ---------- DOTS ---------- */
.testimonial-dots {
  display: flex;
  gap: 10px;
}

.testimonial-dots span {
  width: 8px;
  height: 8px;
  background: #d6d8e5;
  border-radius: 50%;
  cursor: pointer;
  transition: all .25s ease;
}

.testimonial-dots span.active {
  width: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff4d9d, #4c158d);
}

/* ---------- ARROWS ---------- */
.testimonial-arrows {
  display: flex;
  gap: 10px;
}

.testimonial-arrows button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #e3e5ef;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
}

.testimonial-arrows button i {
  font-size: 14px;
  color: #8b90a0;
}

.testimonial-arrows button:hover {
  background: #f6f7fb;
  border-color: #cfd3e6;
}

.testimonial-arrows button[disabled] {
  opacity: 0.45;
  pointer-events: none;
}



.course-actions {
  margin-top: 20px;
  text-align: center;
}

.btn-enquiry {
  display: inline-block;
  width: 49%;
  text-align: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  background: linear-gradient(135deg, #ff4d4d, #8a2be2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(138, 43, 226, 0.30);
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn-enquiry:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(138, 43, 226, 0.45);
  color: #fff;
}

.btn-course {
  display: inline-block;
  width: 49%;
  text-align: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  background: linear-gradient(135deg, #d76d0d, #561f7d);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(86, 31, 125, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-course:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 12px 28px rgba(86, 31, 125, 0.45);
}

 
  

.show-all,
.show-all-btn {
  padding: 10px 24px;
  border-radius: 999px;
  background: #f6f7fb;
  color: #2e3445;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.show-all:hover,
.show-all-btn:hover {
  background: #50168d;
  color: #ffffff;
  transition: all 0.25s ease;
}



@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1250px;
  }

  .container-full {
    max-width: 1350px;
  }
}


.container-full {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}


/* ===============================
   COURSES STYLE ONE
================================ */
.courses-style-one {
  background: #fff;
  padding: 80px 0;
}

.courses-intro {
  /* max-width: 900px; */
  margin: 0 auto 20px;
}

.sec-heading {
  font-size: 36px;
  font-weight: 800;
  color: #0a0a23;
}

.intro-text {
  font-size: 16px;
  color: #5a6075;
  margin-bottom: 12px;
}

.intro-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.intro-highlights span {
  background: #f0ecff;
  color: #4e2bd8;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

/* ===============================
   HEADER + SEARCH
================================ */
.courses-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.courses-header h1 {
  font-size: 28px;
  font-weight: 800;
}

.sub-text {
  font-size: 14px;
  color: #6b6f80;
}

.search-box input {
  width: 280px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #e4e6f0;
  font-size: 14px;
  outline: none;
}

/* ===============================
   FILTER TABS
================================ */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-tabs .btn-tabs {
  border: none;
  background: #f6f7fb;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s ease;
  border: 2px solid #eee;
  text-decoration: none;
  color: #0a0a23;
}

.filter-tabs .btn-tabs.active,
.filter-tabs .btn-tabs:hover {
  background: linear-gradient(135deg, #4c158d, #ff4d9d);
  color: #fff;
}

/* ===============================
   COURSES GRID
================================ */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}

/* ===============================
   COURSE CARD
================================ */
.course-card {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}


.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.card-top .icon {
  font-size: 22px;
  color: #4c158d;
}

.badge {
  background: #f3edff;
  color: #4e1291;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.desc {
  font-size: 14px;
  color: #6b6f80;
  line-height: 1.6;
}

.career {
  border-top: 1px solid #eef0f6;
  margin-top: 16px;
  padding-top: 14px;
}

.career h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.career p {
  font-size: 13px;
  color: #5a6075;
}










/* ===============================
   BREADCRUMB
================================ */
.breadcrumb-section {
  background: #f8f9fb;
  border-bottom: 1px solid #eef0f6;
  padding: 12px 0;
}

.breadcrumb-nav {
  font-size: 14px;
  color: #6b6f80;
}

.breadcrumb-link {
  color: #6b6f80;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-link:hover {
  color: #4c158d;
}

.breadcrumb-sep {
  margin: 0 10px;
  font-size: 11px;
  color: #b0b4c3;
}

.breadcrumb-current {
  color: #0a0a23;
  font-weight: 600;
}

/* Mobile handling */
@media (max-width: 576px) {
  .breadcrumb-current {
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}










/* ======================================
   TEST PREPARATION SECTION
====================================== */

.test-prep-list {
  margin-top: 20px;
}

.test-prep-list h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0a0a23;
}

/* ==============================
   STANDARD INFO CARD
============================== */

.info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px 24px 24px;
  position: relative;
  height: 100%;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  transition: transform .3s ease, box-shadow .3s ease;
  border-top: 4px solid #7b2cff;
}



/* CTA Card Highlight */
.cta-card {
  border: 2px dashed #7b2cff;
  background: linear-gradient(180deg, #faf7ff 0%, #ffffff 100%);
}

.cta-card .card-title {
  color: #4A1888;
}

.cta-card .card-badge {
  background: linear-gradient(135deg, #4A1888 0%, #E67600 100%);
  color: #fff;
}


/* Badge */
.card-badge {
  display: inline-block;
  background: linear-gradient(135deg, #4A1888, #7b2cff);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* Badge */
.card-badge.free,
.btn-primary.free {
  background: linear-gradient(135deg, #05a02b, #1ddd4d);
}

/* Title */
.card-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0a0a23;
}

/* Description */
.card-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: #6b6f80;
}

/* Divider */
.card-divider {
  border: none;
  height: 1px;
  background: #eef0f6;
  margin: 18px 0;
}

/* Footer */
.card-footer h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0a0a23;
}

.card-footer p {
  font-size: 13.5px;
  color: #6b6f80;
}

/* Actions */
.card-actions {
  margin-top: 18px;
}

/* Primary button */
.btn-primary {
  background: linear-gradient(135deg, #4A1888 0%, #E67600 100%);
  color: #fff;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all .25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(74, 24, 136, 0.35);
  color: #fff;
}

/* Outline button */
.btn-outline {
  background: #f6f7fb;
  color: #2e3445;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all .25s ease;
}

.btn-outline:hover {
  background: #7b2cff;
  color: #fff;
}








.events-section {
  padding: 80px 0;
  /* background: #fff; */
  background: linear-gradient(#fff 0%, #fefefe 50%, #fafafc 100%);
}

.events-grid {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 60px;
  align-items: center;
}

/* Image card */
.events-image {
  border-radius: 16px;
  overflow: hidden;
}

.events-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content */
.events-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0a0a23;
}

.events-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #5f637a;
  max-width: 575px;
  margin-bottom: 20px;
}

/* Button */
.btn-view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: #f1f3f9;
  color: #0a0a23;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-view:hover {
  background: #0a0a23;
  color: #fff;
}

@media (max-width: 991px) {
  .events-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .events-content {
    text-align: left;
  }
}

















/* ==================================================
   COUNTRY PAGE
================================================== */

.country-page {
  padding: 50px 0;
}

/* ===== MAIN ===== */
.country-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===== HEADER ===== */
.country-header {
  background: #fff;
  padding: 20px;
  position: sticky;
  top: 70px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 99;
}

.country-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.country-title .fi {
  width: 60px;
  height: 50px;
  display: inline-block;
}

.country-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.country-title a {
  color: #6a2de2;
  font-size: 14px;
  text-decoration: underline;
}

/* ===== STATS ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.stat-box {
  text-align: center;
  padding: 18px;
  border-right: 1px solid #eee;
}

.stat-box:last-child {
  border-right: 0;
}

.stat-box h3 {
  color: #6a2de2;
  font-size: 30px;
  font-weight: 600;
  margin: 0;
}

.stat-box p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* ===== CARD SECTIONS ===== */
.card-section {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
}

.card-section h2 {
  font-size: 20px;
  margin-bottom: 12px;
}

.card-section h2 i {
  color: #6a2de2;
  font-size: 20px;
  margin-right: 6px;
  position: relative;
  top: -2px;
}

.card-section p {
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

/* ===== SECTION HEADER ===== */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-head a {
  color: #6a2de2;
  font-size: 14px;
  text-decoration: none;
}

/* ===== GRIDS ===== */
.uni-grid,
.student-grid,
.requirements-grid,
.fun-grid {
  display: grid;
  gap: 12px;
}

.uni-grid {
  grid-template-columns: repeat(3, 1fr);
}

.student-grid {
  grid-template-columns: repeat(3, 1fr);
}

.requirements-grid {
  grid-template-columns: repeat(3, 1fr);
}

.fun-grid {
  grid-template-columns: repeat(2, 1fr);
}

/* ===== COMMON BOX STYLE ===== */
.uni-card,
.info-box,
.requirements-grid div,
.fun-grid div {
  border: 1px solid #eee;
  background: #fafafa;
  border-radius: 10px;
  font-size: 14px;
  padding: 14px;
}

.uni-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.uni-card span {
  font-size: 13px;
  color: #777;
}

/* ===== STUDENT LIFE ===== */
.student-life h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  margin-bottom: 10px;
}

.student-life h4 i {
  color: #6a2de2;
}

.student-life ul {
  margin: 0;
  padding-left: 18px;
}

.student-life li {
  margin-bottom: 6px;
  font-size: 14px;
  color: #555;
}

/* ===== TAGS ===== */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list span,
.chips span {
  border: 1px solid #ddd;
  background: #fafafa;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 13px;
}

/* ===== CITIES ===== */
.cities-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city {
  border: 1px solid #ddd;
  background: #fafafa;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 13px;
}

/* ===== FAQ ===== */
.faq-section details {
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fafafa;
  margin-top: 12px;
  overflow: hidden;
  transition: .3s;
}

.faq-section details[open] {
  background: #fff;
  border-color: #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.faq-section summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 18px;
  font-weight: 600;
  position: relative;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #6a2de2;
}

.faq-section details[open] summary::after {
  content: "−";
}

.faq-section p {
  margin: 0;
  padding: 0 18px 16px;
}

.faq-section p i {
  color: #6a2de2;
  margin-right: 8px;
}

/* ===== SIDEBAR ===== */
.country-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.country-sidebar {
  padding-top: 12px !important;
}

.side-card {
  background: #fff;
  border-radius: 12px;
  padding: 10px;
}

.side-card h3 i,
.side-card h4 i,
.side-card h5 i {
  color: #6a2de2;
  margin-right: 5px;
}

.side-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ===== WEATHER ===== */
.temp-text {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 16px;
}

.mini-card {
  border: 1px solid #eee;
  background: #fafafa;
  border-radius: 12px;
  padding: 12px;
}

.mini-card h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
}

.temp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.temp-grid strong {
  display: block;
}

.temp-grid span {
  font-size: 13px;
  color: #555;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.uni-card.extra {
  display: none;
}

.uni-card.show {
  display: block;
}

.season {
  padding: 6px 4px;
  border-radius: 8px;
}

.season:hover {
  background: #f2f2f2;
}

.season span {
  font-size: 12px;
}

.season.spring span {
  color: #22c55e;
}

.season.summer span {
  color: #f59e0b;
}

.season.autumn span {
  color: #f97316;
}

.season.winter span {
  color: #3b82f6;
}

.season span svg {
  width: 24px;
  height: 24px;
}

/* ===== INSIGHTS ===== */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.insight-grid div {
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 12px 14px;
}

.insight-grid strong {
  display: block;
  font-size: 13px;
  color: #666;
  margin-bottom: 4px;
}

.insight-grid span {
  font-weight: 700;
  font-size: 15px;
}

/* ===== BUTTON ===== */
.explore-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #4c158d, #b07bff);
  color: #fff;
  padding: 14px;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width:991px) {

  .country-sidebar {
    position: static;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .student-grid,
  .uni-grid,
  .requirements-grid,
  .fun-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .season-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:576px) {

  .country-page {
    padding: 25px 0;
  }

  .country-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .country-title h1 {
    font-size: 22px;
  }

  .stats-row,
  .uni-grid,
  .requirements-grid,
  .fun-grid,
  .student-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .side-title {
    font-size: 22px;
  }
}

.extra-req {
  display: none;
}

.extra-req.show {
  display: block;
}

.card-section h2 i {
  color: #6a2de2;
  margin-right: 8px;
}

.requirements-grid div i {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
  color: #6a2de2;
}

.company-sidhuraa {
  position: relative;
  font-size: 40px;
  line-height: 30px;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
  color: #4D148C;
  margin: 0px;
  transition: all 500ms ease;
}

.company-sidhuraa::after {
  content: "";
  display: inline-block;
  background-image: url("../images/sidhura-arrow.webp");
  background-size: contain;
  background-repeat: no-repeat;
  width: 21px;
  height: 25px;
  margin-right: 0;
  position: relative;
  top: -10px;
  right: 15px;
}



/* ===========================
   TEAM SECTION MODERN STYLE
=========================== */

.team-section-new {
  padding: 70px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Soft decorative circle */
.team-section-new:before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: #f3f6ff;
  border-radius: 50%;
  top: -120px;
  right: -120px;
  z-index: 0;
}

.team-section-new .container {
  position: relative;
  z-index: 2;
}

/* ===== TITLE ===== */

.team-title {
  max-width: 700px;
  margin: 0 auto 55px;
}

.team-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.team-title p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

/* ===== PREMIUM LEADERSHIP ===== */

.leadership-pro {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 60px;
}

.leader-pro-card {
  display: flex;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
  transition: .3s;
}

.leader-pro-card:hover {
  transform: translateY(-4px);
}

.leader-pro-card.reverse {
  flex-direction: row-reverse;
}

.leader-pro-img {
  flex: 0 0 38%;
}

.leader-pro-img img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}

.leader-pro-content {
  padding: 30px;
  flex: 1;
}

.leader-role {
  display: inline-block;
  background: #f3f6ff;
  color: #3d4dff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.leader-pro-content h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

.leader-pro-content p {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 12px;
}

/* BADGES */

.leader-badges {
  margin-top: 18px;
  display: flex;
  flex-direction: initial;
  gap: 12px;
}

.badge-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 12px;
}

.badge-item i {
  font-size: 20px;
  color: #3d4dff;
  margin-top: 3px;
}

.badge-item strong {
  display: block;
  font-size: 14px;
}

.badge-item span {
  font-size: 13px;
  color: #666;
}

/* RESPONSIVE */

@media(max-width:992px) {

  .leader-pro-card,
  .leader-pro-card.reverse {
    flex-direction: column;
  }

  .leader-pro-img img {
    min-height: 240px;
  }

  .leader-pro-content h3 {
    font-size: 24px;
  }
}

/* ===== TEAM GRID ===== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.team-item {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 22px;
  transition: .3s;
}

.team-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
  transform: translateY(-3px);
}

/* ICON CIRCLE */

.team-icon {
  width: 46px;
  height: 46px;
  background: #f3f6ff;
  color: #3d4dff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}

.team-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* CUSTOM BULLETS */

.team-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-item li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #555;
  font-size: 14px;
}

.team-item li:before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #3d4dff;
  font-size: 12px;
}

/* ===== RESPONSIVE ===== */

@media(max-width:992px) {

  .leader-card {
    flex-direction: column;
  }

  .leader-img img {
    width: 100%;
    height: 240px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:576px) {

  .team-title h2 {
    font-size: 28px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}




/* ======================================
   COURSE DETAIL EDVOY STYLE
====================================== */

.course-detail-edvoy {
  padding: 70px 0;
  background: #fff;
}

.course-detail-edvoy h1 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0a0a23;
}

.course-university {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.uni-badge {
  background: #f3edff;
  padding: 6px 10px;
  border-radius: 8px;
}

.course-section {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 25px;
  margin-bottom: 20px;
}

.course-section h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.course-section h3 i {
  color: #6a2de2;
  margin-right: 8px;
}

.course-section p {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

/* Highlights */
.highlight-list {
  padding-left: 20px;
}

.highlight-list li {
  margin-bottom: 5px;
  font-size: 15px;
  color: #555;
}

/* Tabs */
.requirement-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.tab-btn {
  border: none;
  background: #f6f7fb;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.tab-btn.active {
  background: linear-gradient(135deg, #4c158d, #ff4d9d);
  color: #fff;
}

/* Requirement Cards */
.requirement-card {
  border: 1px solid #eee;
  background: #fafafa;
  border-radius: 12px;
  padding: 18px;
}

.requirement-card h5 {
  font-size: 18px;
  margin-bottom: 12px;
}

.requirement-list {
  padding-left: 20px;
}

.requirement-list li {
  margin-bottom: 5px;
  font-size: 15px;
  color: #555;
}

.requirement-card p.note {
  list-style: none;
  font-size: 12px;
  line-height: 1.5;
  color: #6b7280;
  margin: 0;
}

/* HELP BANNER */
.help-banner {
  background: linear-gradient(135deg, #f3edff, #fff);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.help-banner .help-btn {
  width: 200px;
  text-align: center;
}

.help-left {
  display: flex;
  gap: 15px;
  align-items: center;
}

.help-icon {
  font-size: 28px;
}

.help-text h5 {
  margin: 0;
  font-size: 18px;
}

.help-text p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #666;
}

.help-btn {
  background: linear-gradient(135deg, #4A1888, #E67600);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

/* SIDEBAR */
.sidebar-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 10px 20px;
  margin-bottom: 20px;
  height: auto;
}

.sidebar-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  font-weight: 700;
}

.sidebar-card p {
  color: #555;
  line-height: 1.4;
  font-size: 14px;
}

.course-section table th{
    background:#f5f7ff;
    font-weight:600;
}

.sidebar-card ul.enquiry-points li {
  margin-bottom: 2px;
  color: #555;
  font-size: 14px;
}

.sidebar-card h5 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 700;
}

.course-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Hide all tabs content by default */
.requirement-group {
  display: none;
}

/* Show only active tab */
.requirement-group.active {
  display: block;
}

/* ===========================================
   SIDEBAR COURSE INFO (EDVOY STYLE FIXED)
=========================================== */

.sidebar-card.info-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
  padding: 0;
}

/* ---------- PRICE ---------- */

.sidebar-card.info-card .price {
  font-size: 28px;
  font-weight: 800;
  color: #6a2de2;
  line-height: 1.1;
  padding: 16px 16px 5px;
  display: flex;
}

.sidebar-card.info-card .price small {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  margin-top: 10px;
  padding-left: 10px;
}
.highlight{
    color:#1f4e96;
    font-weight:700;
}

.sidebar-card.info-card small {
  display: block;
  font-size: 18px;
  color: #6b7280;
  padding: 0 16px;
  margin-top: -2px;
}

/* disclaimer */
.sidebar-card.info-card>.note:first-of-type {
  font-size: 14px;
  color: #555;
  padding: 10px 16px 14px;
  line-height: 1.5;
}

/* divider */
.sidebar-card.info-card hr {
  margin: 0;
  border: 0;
  border-top: 1px solid #ececec;
}

/* ---------- INFO ROWS ---------- */

.sidebar-card.info-card .info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 16px;
}

.sidebar-card.info-card .info-row span {
  font-size: 14px;
  font-weight: 700;
  color: #374151;
}

.sidebar-card.info-card .info-row strong {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

/* ---------- FOOT NOTE ---------- */

.sidebar-card.info-card .note-wrapper {
  border-top: 1px dashed #d9d9d9;
  background: #fafafa;
  padding: 10px 14px;
  display: flex;
  gap: 8px;
}

.sidebar-card.info-card .note-icon {
  width: 15px;
  height: 15px;
  color: #9ca3af;
  flex-shrink: 0;
  margin-top: 2px;
}

.sidebar-card.info-card .note-wrapper .note {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

/* ---------- TOP DISCLAIMER NOTE ---------- */

.sidebar-card.info-card>.note {
  font-size: 14px;
  line-height: 1.5;
  color: #6b7280;
  padding: 8px 16px 10px;
  margin: 0;
  border-bottom: 1px dashed #d9d9d9;
}

/* ---------- BOTTOM NOTE ---------- */

.sidebar-card.info-card .note-wrapper {
  border-top: 1px dashed #d9d9d9;
  background: #fafafa;
  padding: 10px 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.sidebar-card.info-card .note-wrapper .note {
  font-size: 12px;
  line-height: 1.5;
  color: #6b7280;
  margin: 0;
}

/* icon */
.sidebar-card.info-card .note-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #9ca3af;
}




.enquiry-points {
  padding-left: 18px;
  margin: 10px 0 15px;
}

.enquiry-points li {
  margin-bottom: 6px;
  font-size: 14px;
}

.btn-dark {
  display: block;
  text-align: center;
  background: #0a0a23;
  color: #fff;
  padding: 10px;
  border-radius: 999px;
  text-decoration: none;
}


/* RESPONSIVE */
@media(max-width:992px) {
  .help-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}




/* BUTTON BASE */
#scrollTopBtn {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #6a32c9;
  color: #fff;
  font-size: 18px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);

  opacity: 0;
  visibility: hidden;
  transition: all .4s ease;
  z-index: 999;
}

/* SHOW */
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* HOVER */
#scrollTopBtn:hover {
  transform: translateX(-50%) translateY(-5px);
}

/* CLICK SCROLLING ANIMATION */
#scrollTopBtn.scrolling {
  animation: spinArrow 0.8s linear infinite;
}

@keyframes spinArrow {
  from {
    transform: translateX(-50%) rotate(0deg);
  }

  to {
    transform: translateX(-50%) rotate(360deg);
  }
}
@media (max-width: 768px) {
  #scrollTopBtn {
    left: 9%;
    bottom: 10px;
  }
}





.tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tips-list li {
  position: relative;
  padding: 0 0 10px 28px;
  margin-bottom: 18px;
  border-bottom: 1px solid #eee;
}

.tips-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.tips-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0px;
  color: #6a32c9;
  font-weight: 700;
  font-size: 16px;
}

.tips-list h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 500;
  color: #111;
}

.tips-list p {
  margin: 0;
  color: #555;
  line-height: 1.7;
}


.study-tips-page {
  padding: 60px 0;
}

.tips-header {
  margin-bottom: 40px;
}

.tips-header h1 {
  font-size: 48px;
  color: #2d168f;
  margin: 10px 0;
}

.tips-header p {
  max-width: 850px;
  line-height: 1.7;
  color: #555;
}

.tips-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tips-card h2 {
  font-size: 24px;
  color: #2d168f;
  margin-bottom: 12px;
}

.tips-sidebar .side-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tips-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #2d168f;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}

.side-card ul li{
  font-size: 15px;
  color: #555;
}

.side-card p {
  font-size: 15px;
  margin-bottom: 5px;
}

.tips-grid .tip-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: #fff;
  white-space: nowrap;
  line-height: 1.2;
}



.doc-table {
  table-layout: fixed;
  width: 100%;
}

.doc-table th,
.doc-table td {
  vertical-align: middle;
  text-align: center;
}

.doc-table th:nth-child(1),
.doc-table td:nth-child(1) {
  width: 5%;
}

.doc-table th:nth-child(2),
.doc-table td:nth-child(2) {
  width: 40%;
  text-align: left;
}

.doc-table th:nth-child(3),
.doc-table td:nth-child(3) {
  width: 10%;
}

.doc-table th:nth-child(4),
.doc-table td:nth-child(4),
.doc-table th:nth-child(5),
.doc-table td:nth-child(5) {
  width: 12.5%;
}
@media (max-width: 768px) {

  .doc-table .btn {
    padding: 3px 8px;
    font-size: 12px;
    white-space: nowrap;
  }

  .doc-table td,
  .doc-table th {
    vertical-align: middle;
    font-size: 13px;
  }

}



.blog-card{
  padding:20px 0;
  border-bottom:1px solid #eee;
}

.blog-card:last-child{
  border-bottom:none;
}

.blog-card h3{
  font-size:24px;
  margin-bottom:8px;
}

.blog-card h3 a{
  color:#111;
  text-decoration:none;
}

.blog-card h3 a:hover{
  color:#6a32c9;
}

.blog-meta{
  font-size:14px;
  color:#777;
  margin-bottom:10px;
}

.read-more{
  color:#6a32c9;
  font-weight:600;
  text-decoration:none;
}

.course-title-wrap h1{
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}
.course-title-wrap{
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}








/* ===============================
   ROADMAP PAGE
================================ */

.roadmap-page {
    padding: 60px 0;
    background: #f8f8fb;
}

/* ---------- CARD ---------- */
.roadmap-page .card-section {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

/* ---------- HERO ---------- */
.roadmap-page .sar-title {
    font-size: 34px;
    font-weight: 700;
    color: #2d168f;
    margin-bottom: 10px;
}

.roadmap-page .card-section p {
    color: #555;
    line-height: 1.8;
}

/* ---------- BUTTON ---------- */
.roadmap-page .explore-btn {
    display: inline-block;
    background: linear-gradient(90deg,#5d2ac8,#9b6cf2);
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.roadmap-page .explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(93,42,200,.25);
    color: #fff;
}

/* ---------- HEADINGS ---------- */
.roadmap-page h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2d168f;
    margin-bottom: 15px;
}

.roadmap-page h3 {
    font-size: 22px;
    font-weight: 600;
    color: #111;
}

.roadmap-page h4 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

/* ---------- LIST ---------- */
.roadmap-page ul {
    padding-left: 18px;
}

.roadmap-page ul li {
    margin-bottom: 8px;
    line-height: 1.7;
}

/* ---------- STEP LABEL ---------- */
.small-text-x {
    font-size: 14px;
    font-weight: 600;
    color: #6a32c9;
    margin-bottom: 6px;
}

/* ---------- STEP IMAGE ---------- */
.roadmap-page img {
    border-radius: 10px;
}

/* ---------- SIDEBAR ---------- */
.roadmap-page .country-sidebar .side-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.roadmap-page .side-card h3 {
    font-size: 22px;
    color: #2d168f;
    margin-bottom: 12px;
}

.roadmap-page .side-card ul {
    padding-left: 18px;
    margin-bottom: 15px;
}

.roadmap-page .side-card ul li {
    margin-bottom: 6px;
}

/* ---------- VIDEO ---------- */
.wistia_responsive_padding {
    border-radius: 12px;
    overflow: hidden;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:991px){

    .roadmap-page .sar-title{
        font-size:28px;
    }

    .roadmap-page h2{
        font-size:24px;
    }

    .roadmap-page h4{
        font-size:20px;
    }

}






/* ===================================
   THEME MATCHED POPUP (ROADMAP)
=================================== */

#enquiryModal .modal-dialog {
    max-width: 720px;
}
#enquiryModal .form-group{
    margin-bottom: 18px;
}
  .modal-dialog {
    margin: 200px auto !important;
  }
/* MAIN BOX */
#enquiryModal .modal-content {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    background: #fff;
}

/* HEADER (SOFT THEME LOOK) */
#enquiryModal .modal-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 18px 25px;
}

#enquiryModal .modal-title {
    font-size: 26px;
    font-weight: 700;
    color: #2d168f;
    line-height: 1.3;
}

/* CLOSE BUTTON */
#enquiryModal .btn-close {
    filter: none;
    opacity: .7;
}
#enquiryModal .btn-close:hover {
    opacity: 1;
}

/* BODY */
#enquiryModal .modal-body {
    background: #fafafa;
    padding: 25px;
}

/* INTRO TEXT */
#enquiryModal .modal-body p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

/* INPUTS */
#enquiryModal input,
#enquiryModal select {
    width: 100%;
    height: 48px;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    background: #fff;
    padding: 0 14px;
    font-size: 14px;
    transition: 0.3s;
}

/* FOCUS */
#enquiryModal input:focus,
#enquiryModal select:focus {
    border-color: #6f42c1;
    box-shadow: 0 0 0 3px rgba(111,66,193,0.15);
    outline: none;
}

/* CAPTCHA */
#enquiryModal .captcha-image {
    height: 48px;
    border-radius: 10px;
    border: 1px solid #e4e4e4;
}

/* BUTTON AREA */
#enquiryModal .message-btn {
    display: flex;
    justify-content: center;
    gap: 12px;
}

/* BUTTON STYLE (MATCH EXPLORE BTN) */
#enquiryModal .message-btn input[type="submit"],
#enquiryModal .message-btn input[type="reset"] {
    min-width: 130px;
    height: 45px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

/* PRIMARY */
#enquiryModal .message-btn input[type="submit"] {
    background: #5b2abf;
    color: #fff;
}

#enquiryModal .message-btn input[type="submit"]:hover {
    background: #47209a;
    transform: translateY(-2px);
}

/* RESET */
#enquiryModal .message-btn input[type="reset"] {
    background: #efefef;
    color: #333;
}

#enquiryModal .message-btn input[type="reset"]:hover {
    background: #ddd;
}

/* MOBILE */
@media (max-width: 768px) {

    #enquiryModal .modal-title {
        font-size: 20px;
    }

    #enquiryModal .modal-body {
        padding: 18px;
    }

    #enquiryModal .message-btn {
        flex-direction: column;
    }
}







/* ===============================
   EXTRA ORDINARY ENQUIRY HERO
=================================*/


.enquiry-hero{
    background: linear-gradient(135deg,#ffffff,#f7f4ff);
    border-radius:16px;
    padding:40px;
    box-shadow:0 12px 35px rgba(0,0,0,0.08);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    margin-bottom:35px;
    position:relative;
    overflow:hidden;
}

.enquiry-hero::before{
    content:'';
    position:absolute;
    right:-100px;
    top:-100px;
    width:280px;
    height:280px;
    background:rgba(79,44,165,0.08);
    border-radius:50%;
}

.hero-left{
    flex:1;
    position:relative;
    z-index:2;
}

.enquiry-badge{
    display:inline-flex;
    align-items:center;
    background:#efe9ff;
    color:#4f2ca5;
    font-weight:600;
    font-size:14px;
    padding:7px 15px;
    border-radius:30px;
    margin-bottom:10px;
}

.enquiry-main-title{
    font-size:25px;
    font-weight:800;
    color:#111;
    margin-bottom:10px;
    line-height:1.2;
}

.enquiry-text{
    font-size:15px;
    color:#555;
    max-width:720px;
    line-height:1.5;
}

.hero-highlights{
    margin-top:10px;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.hero-highlights span{
    background:#fff;
    border:1px solid #ececec;
    padding:8px 14px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    color:#333;
}

.selected-course{
    margin-top:10px;
    display:inline-block;
    background:#4f2ca5;
    color:#fff;
    padding:8px 18px;
    border-radius:10px;
    font-size:18px;
    font-weight:600;
}

.selected-course span{
    opacity:.85;
    font-weight:500;
    margin-right:8px;
}


/* RIGHT ICON AREA */

.hero-right{
    width:160px;
    height:160px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-circle{
    position:absolute;
    width:160px;
    height:160px;
    background:linear-gradient(135deg,#5b2cb0,#7c4dff);
    border-radius:50%;
    opacity:.15;
}

.hero-icon{
    font-size:70px;
    color:#4f2ca5;
    position:relative;
}
/* ===============================
   TABLET RESPONSIVE
================================ */
@media (max-width: 992px){

    .enquiry-hero{
        flex-direction: column;
        text-align: center;
        padding:30px 25px;
        gap:20px;
    }

    .hero-left{
        width:100%;
    }

    .enquiry-text{
        max-width:100%;
        margin:0 auto;
    }

    .hero-highlights{
        justify-content:center;
    }

    .selected-course{
        display:inline-block;
        margin-top:15px;
    }

    .hero-right{
        width:130px;
        height:130px;
    }

    .hero-circle{
        width:130px;
        height:130px;
    }

    .hero-icon{
        font-size:58px;
    }

    .enquiry-main-title{
        font-size:22px;
    }
}


/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 576px){

    .enquiry-hero{
        padding:22px 16px;
        border-radius:12px;
    }

    .enquiry-badge{
        font-size:12px;
        padding:6px 12px;
    }

    .enquiry-main-title{
        font-size:20px;
        line-height:1.35;
    }

    .enquiry-text{
        font-size:14px;
        line-height:1.6;
    }

    .hero-highlights{
        gap:8px;
    }

    .hero-highlights span{
        font-size:12px;
        padding:6px 10px;
    }

    .selected-course{
        font-size:15px;
        padding:7px 12px;
        width:100%;
        text-align:center;
    }

    .hero-right{
        width:110px;
        height:110px;
    }

    .hero-circle{
        width:110px;
        height:110px;
    }

    .hero-icon{
        font-size:46px;
    }
}

/* ===============================
   FORM CARD PREMIUM LOOK
=================================*/

.form-container{
    background:#fff;
    padding:35px;
    border-radius:16px;
    box-shadow:0 12px 35px rgba(0,0,0,0.06);
}

.input-field{
    border:1px solid #ddd;
    border-radius:10px;
    padding:12px 14px;
    transition:.3s;
}

.input-field:focus{
    border-color:#4f2ca5;
    box-shadow:0 0 0 4px rgba(79,44,165,0.12);
    outline:none;
}

.submit-button{
    background:#4f2ca5;
    color:#fff;
    border:none;
    padding:12px 22px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.submit-button:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(79,44,165,0.3);
}

.submit-button[type="reset"]{
    background:#f3f3f3;
    color:#333;
}



/* ===============================
   SESSION HEADER
================================ */

.session-header{
    background:#fff;
    padding:35px 40px;
    border-radius:16px;
    margin-bottom:35px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    border-left:5px solid #5a2fc2;
}

.session-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#f3efff;
    color:#5a2fc2;
    font-weight:600;
    font-size:14px;
    padding:6px 14px;
    border-radius:30px;
    margin-bottom:12px;
}

.session-title{
    font-size:42px;
    font-weight:700;
    color:#0b2341;
    margin-bottom:10px;
    line-height:1.2;
}

.session-text{
    font-size:17px;
    color:#555;
    max-width:900px;
    line-height:1.7;
    margin-bottom:20px;
}

.session-highlights{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.session-highlights span{
    background:#f7f7fc;
    border:1px solid #eee;
    padding:8px 14px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    color:#2d168f;
}

.session-highlights i{
    margin-right:6px;
}

/* MOBILE */
@media(max-width:768px){
    .session-header{
        padding:25px;
    }

    .session-title{
        font-size:30px;
    }
}












/* ===============================
   MODAL STYLE
================================ */
.modal-auto{
  width:auto;
  max-width:fit-content;
  margin:auto;
}

.modal-custom{
  background:transparent;
  border:none;
  box-shadow:none;
}

.modal-book-img{
  display:block;
  max-height:85vh;
  max-width:90vw;
  width:auto;
  height:auto;
  border-radius:12px;
  margin:auto;
  transition:.4s;
}
.custom-close{
  position:absolute;
  top:-40px;
  right:0;
  border-radius:50%;
  opacity:1;
  z-index:10;
}
#bookImageModal .modal-dialog {
  margin: auto !important;
}
  
.book-card{
  background:#fff;
  border-radius:16px;
  padding:18px 14px 20px;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  transition:.35s;
}

.book-image-wrap{
  position:relative;
  overflow:hidden;
  border-radius:12px;
  cursor:pointer;
}

.book-image{
  transition:transform .4s ease;
}

.book-image-wrap:hover .book-image{
  transform:scale(1.08);
}

.book-image-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35);
  opacity:0;
  transition:.3s;
}

.book-image-wrap:hover::after{
  opacity:1;
}

.zoom-icon{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  background:rgba(0,0,0,.65);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  opacity:0;
  transition:.3s;
  z-index:2;
}

.book-image-wrap:hover .zoom-icon{
  opacity:1;
}

.book-title{
  font-size:16px;
  font-weight:700;
  color:#111;
}

.book-author{
  font-size:13px;
  color:#777;
}

.book-btn{
  display:inline-block;
  background:linear-gradient(135deg,#4A1888 0%,#E67600 100%);
  color:#fff;
  padding:8px 22px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  text-decoration:none;
  transition:.3s;
}

.book-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(74,24,136,.35);
  color:#fff;
}

.modal-custom{
  background:#fff;
  border:none;
  border-radius:10px;
  position:relative;
  padding:20px;
}

.custom-close{
  position:absolute;
  right:5px;
  top:5px;
}

.modal-book-img{
  max-height:500px;
  border-radius:5px;
  transition:.4s;
}

.modal-book-img:hover{
  transform:scale(0.98);
}
.modal {
  margin: 1.75rem;
  box-shadow: var(--bs-box-shadow);
}
.modal-book-title{
  font-weight:700;
  margin-bottom:5px;
}

.modal-book-author{
  color:#777;
  margin-bottom:15px;
}










.bank-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    align-items: center;
}

.bank-logo {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #eee;
}

.bank-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

.bank-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

















/* ===============================
   EMI Calculator
================================ */
.emi-advanced {
    padding: 0;
}

.emi-advanced h2 {
    font-size: 20px;
    margin-bottom: 12px;
}

.emi-controls {
    background: linear-gradient(135deg,#6366f130,#34d39926);
    padding: 18px;
    height: 100%;
}

.emi-field {
    margin-bottom: 18px;
}

.emi-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.emi-field label {
    font-weight: 700;
    font-size: 20px;
}

.emi-field input[type=number] {
    width: 170px;
    padding: 6px 10px;
    border: 1px solid #ddd;
    font-size: 18px;
}

.emi-field input[type=range] {
    width: 100%;
    margin-top: 6px;
    accent-color: #ff6806;
}

.emi-value {
    margin-top: 4px;
    font-weight: 700;
    color: #ff6806;
    font-size: 25px;
}

.emi-mini {
    margin-top: 8px;
}

.emi-mini p {
    margin-top: 8px;
}
.emi-mini p.note{
  font-size: 12px;
  line-height: 1.5;
  color: #6b7280;
  margin: 0;
}
.emi-mini .note-wrapper {
  background: #fafafa;
  padding: 10px 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.emi-result-box {
  
    background: linear-gradient(135deg,#6366f130,#34d39926);
    padding: 14px;
    height: 100%;
}

.emi-result-box h3 {
    font-size: 30px;
    margin-bottom: 8px;
    font-weight: 700;
}

.emi-main {
    background: linear-gradient(135deg,#6366f1,#34d399);
    color: #fff;
    padding: 12px;
    font-size: 35px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
}

.pie-wrap {
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.emi-chart-wrap {
    margin-top: 10px;
    background: #f4f4f4;
    padding: 12px;
    height: 280px;  
}

.emi-chart-wrap canvas {
    max-height: 250px;
}

@media(min-width:1200px) {
    .emi-advanced {
        overflow: hidden;
    }
}

@media(max-width:991px) {

    .emi-result-box h3 {
        font-size: 34px;
    }

    .emi-main {
        font-size: 30px;
    }

    .emi-mini {
        flex-direction: column;
        gap: 5px;
    }

    .pie-wrap {
        height: 200px;
    }

    .emi-chart-wrap {
        height: auto;
    }
}

#emi-calculator-for-overseas-education-loan {
    scroll-margin-top: 100px;
    border-radius: 0 !important;
}