  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

html, body{
  max-width:100%;
  overflow-x:hidden;
  font-family: 'Poppins', sans-serif;
}


/* WhatsApp Icon */
#whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

#whatsapp-icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  padding: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}




/* ========================
   Top Bar
======================== */
/* ========================
   Top Bar FIX
======================== */
.top-bar{
    background:#1f4ea3;
    color:#fff;
    font-size:14px;
    padding:6px 0;
}

/* full width layout */
.top-bar .container{
    max-width:1400px;
    width:95%;
    margin:auto;
}

/* keep everything in one row */
.flex-between{
    display:flex;
    justify-content:space-between;
    align-items:center;
    white-space:nowrap; /* 🔥 prevents wrapping */
}

/* spacing */
.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:18px;
}


/* ========================
   Navbar
======================== */
.navbar{
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:40px 0;
}


/* Logo */
.logo img{
    height:48px;
    margin-left: 30px;
}


/* Menu */
.nav-menu{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
}

.nav-menu li a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:0.3s;
}

.nav-menu li a:hover{
    color:#1f4ea3;
}

/* ===== Dropdown Fix ===== */

.dropdown{
    position:relative;
}

/* keep navbar visible for dropdown */
/* Navbar height control */
.navbar{
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);

    min-height:90px;   /* 🔥 increase white bar height */
    display:flex;
    align-items:center;
}

/* spacing inside */
.nav-wrapper{
    padding:0;  /* remove old padding */
}

/* submenu */
.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    min-width:230px;
    background:#fff;
    border-radius:10px;

    box-shadow:0 10px 25px rgba(0,0,0,0.12);

    padding:10px 0;

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:all .25s ease;

    z-index:9999;
}

/* items */
.dropdown-menu li{
    list-style:none;
}

.dropdown-menu li a{
    display:block;
    padding:10px 18px;
    color:#333;
    text-decoration:none;
    font-size:14px;
}

.dropdown-menu li a:hover{
    background:#f5f7fb;
    color:#1f4ea3;
}


/* 🔥 SHOW ON HOVER */
.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* ========================
   Button
======================== */
.btn-start{
    background:#ff7a00;
    color:#fff !important;
    padding:10px 20px;
    border-radius:25px;
    font-weight:600;
}

.btn-start:hover{
    background:#e56700;
}


/* ========================
   Hamburger
======================== */
.hamburger{
    display:none;
    font-size:26px;
    cursor:pointer;
    margin-right: 30px;
}


/* ========================
   Mobile Drawer
======================== */
.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:100%;
    height:100vh;
    background:#fff;
    box-shadow:-4px 0 20px rgba(0,0,0,0.1);
    padding:30px;
    display:flex;
    flex-direction:column;
    gap:18px;
    transition:0.4s;
    z-index:999;
}

.mobile-menu a,
.mobile-dropdown button{
    text-decoration:none;
    color:#333;
    font-size:16px;
    background:none;
    border:none;
    text-align:left;
    cursor:pointer;
}

.mobile-menu.active{
    right:0;
}

.close-menu{
    font-size:24px;
    align-self:flex-end;
    cursor:pointer;
}


/* mobile submenu */
.mobile-submenu{
    display:none;
    padding-left:15px;
    display:flex;
    flex-direction:column;
    gap:10px;
}



/* ========================
   Responsive
======================== */
@media(max-width:992px){

    .nav-menu{
        display:none;
    }

    .hamburger{
        display:block;
    }

    /* hide blue bar on mobile */
    .top-bar{
        display:none;
    }
}


/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, #1e63d0, #1c4fbf);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* LOGO */
/* LOGO */


.hero-logo img {
    width: 180px;
    max-width: 80%;       /* responsive scaling */
    height: auto;
    margin: 0 auto 25px;  /* center horizontally */
    display: block;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .hero-logo img {
        width: 130px;
    }
}


/* TITLE */
.hero-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.hero-title span {
    color: #ff9f1c;
}

/* TEXT */
.hero-text {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.primary-btn {
    background: white;
    color: #1e63d0;
}

.primary-btn:hover {
    background: #f3f3f3;
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid white;
    color: #fff;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* STAT CARDS */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.14);
    padding: 20px 30px;
    border-radius: 15px;
    min-width: 180px;
    backdrop-filter: blur(4px);
}

.stat-card h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
}

.stat-card p {
    margin-top: 8px;
    font-size: 14px;
    opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-logo img {
        width: 140px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .stat-card {
        min-width: 140px;
        padding: 15px 20px;
    }

    .stat-card h2 {
        font-size: 26px;
    }
}

/*program section*/

.programs-section {
    padding: 80px 5%;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .tag {
    background: #eef3ff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
}

.section-header h2 span {
    color: #316BFF;
}

.section-header p {
    color: #555;
    max-width: 600px;
    margin: auto;
}

.programs-grid {
    display: grid;
     grid-template-columns: repeat(2, 1fr); /* EXACT 2 x 2 GRID */
    gap: 28px;
}

.program-card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border-top: 6px solid;
}

.program-card.blue { border-color: #316BFF; }
.program-card.orange { border-color: #ff7a00; }

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.card-header img {
    width: 50px;
}

.program-card p {
    color: #555;
    margin-bottom: 15px;
}

.animated-list li {
    opacity: 0;
    transform: translateY(15px);
    transition: 0.5s ease;
    list-style: none;
    margin: 6px 0;
    position: relative;
}

.animated-list li::before {
    content: "›";
    color: #316BFF;
    margin-right: 8px;
}

/* List Animation Class */
li.show {
    opacity: 1;
    transform: translateY(0);
}

/* ✔ Responsive */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }
}
/* =========================
PROGRAMS SECTION
========================= */

.programs-section {
    padding: 80px 5%;
    background: #fff;
}

/* ---------- Header ---------- */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .tag {
    background: #eef3ff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
}

.section-header h2 span {
    color: #316BFF;
}

.section-header p {
    color: #555;
    max-width: 600px;
    margin: auto;
}

/* ---------- Grid Layout ---------- */

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Desktop */
    gap: 28px;
}

/* ---------- Cards ---------- */

.program-card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border-top: 6px solid;
    transition: 0.3s ease;
}

/* Hover effect */
.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.program-card.blue { border-color: #316BFF; }
.program-card.orange { border-color: #ff7a00; }

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.card-header img {
    width: 50px;
}

.program-card p {
    color: #555;
    margin-bottom: 15px;
}

/* ---------- Animated List ---------- */

.animated-list li {
    opacity: 0;
    transform: translateY(15px);
    transition: 0.5s ease;
    list-style: none;
    margin: 6px 0;
    position: relative;
}

.animated-list li::before {
    content: "›";
    color: #316BFF;
    margin-right: 8px;
}

li.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
RESPONSIVE BREAKPOINTS
========================= */

/* ---------- Tablets ---------- */
@media (max-width: 1024px) {
    .programs-grid {
        gap: 20px;
    }

    .section-header h2 {
        font-size: 32px;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {

    .programs-section {
        padding: 60px 20px;
    }

    .programs-grid {
        grid-template-columns: 1fr; /* 1 column */
    }

    .section-header h2 {
        font-size: 26px;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-header img {
        width: 42px;
    }
}

/* ---------- Small Phones ---------- */
@media (max-width: 480px) {

    .programs-section {
        padding: 40px 15px;
    }

    .program-card {
        padding: 18px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .section-header p {
        font-size: 14px;
    }
}


/*mbbs section*/

.mbbs-section {
  padding: 80px 6%;
  background: #ffffff;
  overflow: hidden;
}

/* ===== MAIN CONTAINER ===== */
.mbbs-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto 80px;
}

/* ===== LEFT SIDE - IMAGE ===== */
.mbbs-left {
  position: relative;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mbbs-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.mbbs-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mbbs-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.mbbs-image-wrapper:hover .mbbs-img {
  transform: scale(1.05);
}

.mbbs-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

.mbbs-badge span {
  color: #2563eb;
  font-weight: 600;
  font-size: 15px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ===== RIGHT SIDE - CONTENT ===== */
.mbbs-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.mbbs-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.mbbs-tag {
  display: inline-block;
  background: #eff6ff;
  color: #2563eb;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.mbbs-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.mbbs-title span {
  color: #f97316;
  display: inline;
}

.mbbs-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* ===== BENEFITS ===== */
.mbbs-benefits {
  margin-bottom: 30px;
}

.benefit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 12px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-icon {
  width: 20px;
  height: 20px;
  stroke: #10b981;
  stroke-width: 3;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-item span {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

/* ===== CTA BUTTON ===== */
.mbbs-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2563eb;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.mbbs-cta:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.arrow-icon {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
  stroke-width: 2.5;
  fill: none;
}

/* ===== COUNTRY CARDS ===== */
.country-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.country-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(60px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.country-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.country-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: #2563eb;
}

.country-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.card-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
}

.info-icon {
  width: 16px;
  height: 16px;
  stroke: #9ca3af;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

.info-item .price {
  color: #f97316;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .country-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .mbbs-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mbbs-title {
    font-size: 36px;
  }

  .benefit-row {
    grid-template-columns: 1fr;
  }

  .country-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mbbs-section {
    padding: 0px 5%;
  }

  .mbbs-title {
    font-size: 28px;
  }

  .mbbs-desc {
    font-size: 15px;
  }

  .mbbs-badge {
    bottom: 20px;
    left: 20px;
    padding: 10px 20px;
  }

  .mbbs-badge span {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .country-cards {
    grid-template-columns: 1fr;
  }

  .mbbs-title {
    font-size: 24px;
  }

  .mbbs-cta {
    width: 100%;
    justify-content: center;
  }
}
/* =========================
   Internship & Observership
   ========================= */

.io-section{
 
  padding:80px 20px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

.io-container{
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT IMAGE CARD */

.io-image{
  width:100%;
  height: 550px;
  object-fit: cover;
  display:block;
  border-radius: 18px;
  margin-top: 70px;
}

/* badge bottom-left */
.io-image-badge{
  position:absolute;
  left:18px;
  bottom:18px;
  background: rgba(233, 242, 255, 0.95);
  border: 1px solid rgba(47, 95, 208, 0.20);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 10px 25px rgba(47, 95, 208, 0.12);
}

.io-badge-title{
  font-size: 12px;
  font-weight: 700;
  color:#2F5FD0;
  line-height: 1.1;
}

.io-badge-sub{
  margin-top:2px;
  font-size: 11px;
  color:#3b4a66;
}

/* RIGHT CONTENT */
.io-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius: 999px;
  background: #eef4ff;
  color:#2F5FD0;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(47, 95, 208, 0.15);
}

.io-title{
  margin: 14px 0 10px;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  color:#0f172a;
}

.io-title span{
  color:#FF7A00;
}

.io-subtitle{
  margin:0 0 18px;
  color:#5b6475;
  font-size: 14px;
  line-height: 1.6;
  max-width: 520px;
}

/* CARDS */
.io-cards{
  display:flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
}

.io-card{
  background:#ffffff;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 22px rgba(16, 24, 40, 0.06);
  padding: 14px 14px 12px;
}

.io-card-top{
  display:flex;
  justify-content: space-between;
  align-items:flex-start;
  gap: 12px;
}

.io-hospital{
  font-weight: 800;
  font-size: 14px;
  color:#0f172a;
}

.io-meta{
  margin-top: 4px;
  font-size: 12px;
  color:#5b6475;
}

.io-dot{ margin: 0 6px; opacity: 0.6; }

.io-rating{
  color:#FF7A00;
  font-weight: 700;
}

.io-duration{
  font-size: 11px;
  font-weight: 700;
  color:#2F5FD0;
  background:#eef4ff;
  border: 1px solid rgba(47, 95, 208, 0.18);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.io-tags{
  margin-top: 10px;
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}

.io-tag{
  font-size: 11px;
  font-weight: 700;
  color:#3b4a66;
  background:#f3f6fb;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 5px 10px;
  border-radius: 999px;
}

/* CTA BUTTON */
.io-cta{
  margin-top: 18px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 10px;
  width: 100%;
  padding: 13px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 800;
  font-size: 14px;
  color:#ffffff;
  background: linear-gradient(90deg, #2F5FD0 0%, #2b78ff 100%);
  box-shadow: 0 14px 30px rgba(47, 95, 208, 0.25);
  transition: transform .2s ease, box-shadow .2s ease;
}

.io-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(47, 95, 208, 0.32);
}

.io-arrow{
  font-size: 16px;
  line-height: 0;
}

/* =========================
   RESPONSIVE
   ========================= */

/* Tablet */
@media (max-width: 1024px){
  .io-container{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .io-image{
    height: 320px;
  }

  .io-subtitle{
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 640px){
  .io-section{
    padding: 0px 16px;
  }

  .io-title{
    font-size: 26px;
  }

  .io-image{
    height: 240px;
  }

  .io-card{
    padding: 12px;
  }

  .io-card-top{
    flex-direction: column;
    align-items: flex-start;
  }

  .io-duration{
    margin-top: 8px;
  }
}
/* =========================
   SCROLL ANIMATION
   ========================= */

/* hidden state */
.io-image-card,
.io-content {
  opacity: 0;
  transition: all 0.9s ease;
}

/* left side image */
.io-image-card {
  transform: translateX(-80px);
}

/* right side content */
.io-content {
  transform: translateX(80px);
}

/* when visible */
.io-show {
  opacity: 1 !important;
  transform: translateX(0) !important;
}


/* =======================
   FMGE SECTION
======================= */

.fmge-section{
  background: linear-gradient(180deg, #2f5fd0 0%, #3b6fe0 100%);
  padding: 80px 20px;
  color: #fff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.fmge-container{
  max-width: 1200px;
  margin: auto;
}

/* TOP GRID */
.fmge-top{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* VIDEO CARD */
.fmge-video-card{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.fmge-video-card img{
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.fmge-play-btn{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 52px;
  color: #fff;
  background: rgba(0,0,0,0.25);
  cursor: pointer;
}

/* RIGHT CONTENT */
.fmge-pill{
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.fmge-content h2{
  margin: 14px 0;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700 ;
}

.fmge-content h2 span{
  color: #ff7a00;
}

.fmge-content p{
  color: #e4eaff;
  max-width: 520px;
  margin-bottom: 24px;
  font-size: 15px;
}

/* FEATURE GRID */
.fmge-features{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}

.fmge-feature{
  background: rgba(255,255,255,0.12);
  padding: 16px;
  border-radius: 12px;
}

.fmge-feature h4{
  font-size: 14px;
  margin-bottom: 6px;
}

.fmge-feature p{
  font-size: 13px;
  color: #e4eaff;
}

/* BOTTOM COURSE CARD */
.fmge-bottom{
  margin-top: 60px;
}

.fmge-course-card{
  background: #fff;
  color: #0f172a;
  border-radius: 18px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.fmge-course-pill{
  font-size: 12px;
  font-weight: 600;
  color: #2f5fd0;
}

.fmge-course-left h3{
  margin: 10px 0;
  font-size: 22px;
}

.fmge-price{
  margin: 12px 0;
}

.price-main{
  font-size: 26px;
  font-weight: 800;
  color: #2f5fd0;
}

.price-old{
  margin-left: 10px;
  text-decoration: line-through;
  color: #94a3b8;
}

.fmge-include-title{
  font-weight: 600;
  margin-top: 16px;
}

.fmge-list{
  columns: 2;
  margin-top: 10px;
  padding-left: 16px;
}

.fmge-list li{
  margin-bottom: 8px;
  font-size: 14px;
}

/* RIGHT CHECKLIST */
.fmge-checklist{
  list-style: none;
  padding: 0;
}

.fmge-checklist li{
  margin-bottom: 12px;
  font-weight: 600;
}

.fmge-cta{
  margin-top: 16px;
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f5fd0, #4c7fff);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

/* RESPONSIVE */
@media(max-width: 900px){
  .fmge-top{
    grid-template-columns: 1fr;
  }

  .fmge-features{
    grid-template-columns: 1fr;
  }

  .fmge-course-card{
    grid-template-columns: 1fr;
  }
}
.fellowship-section{
  background:#fff;
  padding:50px 20px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.fellowship-container{
  max-width:1200px;
  margin:auto;
}

/* TOP */
.fellowship-top{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
  margin-bottom:50px;
}

.fellowship-image-wrap{
  position:relative;
}

.fellowship-image-wrap img{
  width:100%;
  height:280px;
  object-fit:cover;
  border-radius:16px;
  box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.fellowship-badge{
  position:absolute;
  bottom:16px;
  left:16px;
  background:#eef4ff;
  color:#2f5fd0;
  font-weight:700;
  padding:8px 14px;
  border-radius:999px;
  font-size:12px;
}

.fellowship-pill{
  display:inline-block;
  background:#eef4ff;
  color:#2f5fd0;
  padding:6px 14px;
  border-radius:999px;
  font-weight:700;
  font-size:12px;
}

.fellowship-content h2{
  margin:14px 0;
  font-size:32px;
  color:#0f172a;
  font-weight: 700;
}

.fellowship-content span{
  color:#ff7a00;
}

.fellowship-content p{
  color:#5b6475;
  max-width:520px;
}

/* GRID */
.fellowship-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.fellowship-card{
  background:#fff;
  border-radius:14px;
  padding:20px;
  box-shadow:0 15px 30px rgba(0,0,0,.08);
  border-top:6px solid;
  opacity:0;
  transform:translateY(40px);
  transition:.6s ease;
}

.fellowship-card h3{
  margin-bottom:10px;
  font-size:16px;
}

.tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:12px;
}

.tags span{
  background:#f3f6fb;
  padding:4px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:600;
}

.fellowship-card p{
  font-size:13px;
  margin:4px 0;
}

/* COLORS */
.red{border-color:#ef4444}
.blue{border-color:#2563eb}
.purple{border-color:#9333ea}
.orange{border-color:#f97316}
.green{border-color:#16a34a}
.pink{border-color:#db2777}

/* ACTIVE */
.fellowship-card.show{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:900px){
  .fellowship-top{
    grid-template-columns:1fr;
  }
  .fellowship-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .fellowship-grid{
    grid-template-columns:1fr;
  }
  .fellowship-content h2{
    font-size:26px;
  }
}
.partner-section{
  padding: 20px 20px;
  background: #ffffff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.partner-card{
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.partner-title{
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.partner-subtitle{
  font-size: 14px;
  color: #5b6475;
  margin-bottom: 20px;
}

/* Pills */
.partner-logos{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.partner-pill{
  background: #f1f5ff;
  color: #2f5fd0;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(47, 95, 208, 0.18);
}

/* Button */
.partner-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f5fd0, #4c7dff);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(47, 95, 208, 0.35);
  transition: transform .2s ease, box-shadow .2s ease;
}

.partner-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(47, 95, 208, 0.45);
}

/* Responsive */
@media (max-width: 640px){
  .partner-card{
    padding: 28px 16px;
  }

  .partner-title{
    font-size: 16px;
  }

  .partner-subtitle{
    font-size: 13px;
  }
}
/* =============================
   CAREER JOURNEY SECTION
============================= */

.career-section{
  background:#ffffff;
  padding:20px 20px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.career-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

/* COMMON CARD */
.career-card{
  border-radius:18px;
  padding:28px;
  box-shadow:0 20px 45px rgba(15,23,42,.12);
  opacity:0;
  transition:opacity .8s ease, transform .8s ease;
}

/* LEFT */
.career-left{
  background:#ffffff;
  transform:translateX(-80px);
}

/* RIGHT */
.career-right{
  background:linear-gradient(160deg,#0f172a,#020617);
  color:#ffffff;
  transform:translateX(80px);
}

/* ACTIVE */
.career-card.show{
  opacity:1;
  transform:translateX(0);
}

/* TEXT */
.career-pill{
  display:inline-block;
  background:#eef4ff;
  color:#2f5fd0;
  font-weight:700;
  font-size:12px;
  padding:6px 14px;
  border-radius:999px;
  margin-bottom:10px;
}

.career-card h3{
  margin-bottom:8px;
  font-size:20px;
}

.career-desc{
  font-size:14px;
  color:#5b6475;
  margin-bottom:18px;
}

.career-right .career-desc{
  color:#cbd5f5;
}

/* FORM */
.career-form input,
.career-form select,
.career-form textarea{
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid #e5e7eb;
  margin-bottom:12px;
  font-size:14px;
}

.career-form textarea{
  resize:none;
  height:90px;
}

.career-submit{
  width:100%;
  padding:12px;
  border:none;
  border-radius:999px;
  background:linear-gradient(90deg,#2f5fd0,#4c7dff);
  color:#ffffff;
  font-weight:700;
  cursor:pointer;
}

.career-note{
  font-size:11px;
  color:#94a3b8;
  margin-top:10px;
  text-align:center;
}

/* RIGHT SIDE CTA */
.career-icon{
  font-size:34px;
  background:rgba(255,255,255,.1);
  width:60px;
  height:60px;
  border-radius:50%;
  display:grid;
  place-items:center;
  margin-bottom:14px;
}

.career-cta{
  display:block;
  text-align:center;
  margin:18px 0;
  padding:12px;
  border-radius:999px;
  background:linear-gradient(90deg,#ff7a00,#ff9a3c);
  color:#fff;
  font-weight:700;
  text-decoration:none;
}

.career-contact{
  margin-top:14px;
  text-align:center;
  font-size:13px;
}

.career-contact span{
  display:block;
  font-weight:700;
  margin-bottom:6px;
}

/* =============================
RIGHT CTA CARD (NEW DESIGN)
============================= */

/* =============================
   RIGHT CTA CARD
============================= */

.career-right{
  background: linear-gradient(160deg,#0f172a,#020617);
  color:#ffffff;

  border-radius:28px;
  padding:60px 40px;

  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;

  box-shadow:0 30px 60px rgba(2,6,23,.45);

  transform:translateX(80px);
  opacity:0;
  transition:all .8s ease;
}

/* show animation */
.career-right.show{
  transform:translateX(0);
  opacity:1;
}


/* =============================
   ICON
============================= */

.career-icon{
  width:80px;
  height:80px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;
  font-size:28px;

  background:rgba(255,255,255,.08);
  box-shadow: inset 0 0 25px rgba(255,255,255,.05);

  margin-bottom:24px;
}


/* =============================
   TITLE + TEXT
============================= */

.career-right h3{
  font-size:30px;
  font-weight:800;
  margin-bottom:14px;
}

.career-right .career-desc{
  color:#cbd5f5;
  font-size:15px;
  line-height:1.7;
  max-width:520px;
  margin-bottom:30px;
}


/* =============================
   CTA BUTTON
============================= */

.career-cta{
  width:100%;
  max-width:520px;

  padding:16px 20px;

  border-radius:999px;

  background:linear-gradient(90deg,#ff7a00,#ff9a3c);
  color:#ffffff;

  font-weight:800;
  font-size:16px;
  text-decoration:none;

  box-shadow:0 14px 30px rgba(255,122,0,.35);

  transition:all .25s ease;
}

.career-cta:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 40px rgba(255,122,0,.45);
}


/* =============================
   WHITE DIVIDER BAR
============================= */

.career-divider{
  width:100%;
  max-width:520px;
  height:46px;

  background:#ffffff;

  border-radius:999px;

  margin:28px 0;
}


/* =============================
   CONTACT INFO
============================= */

.career-contact{
  text-align:center;
  margin-top:6px;
}

.career-contact span{
  font-weight:700;
  font-size:14px;
  margin-bottom:10px;
  display:block;
}

.career-contact p{
  font-size:14px;
  margin:4px 0;
  color:#e2e8f0;
}


/* =============================
   RESPONSIVE
============================= */

@media(max-width:900px){

  .career-right{
    padding:45px 22px;
    border-radius:22px;
  }

  .career-right h3{
    font-size:22px;
  }

  .career-cta{
    font-size:14px;
    padding:14px;
  }

  .career-divider{
    height:40px;
  }

  .career-icon{
    width:65px;
    height:65px;
    font-size:22px;
  }
}

/* RESPONSIVE */
@media(max-width:900px){
  .career-container{
    grid-template-columns:1fr;
  }

  .career-left,
  .career-right{
    transform:translateY(40px);
  }

  .career-card.show{
    transform:translateY(0);
  }
}


/* =============================
   Footer
============================= */
.bv-footer{
    background:#1f4ea3;
    color:#fff;
    padding-top:60px;
    font-size:14px;
}

/* container */
.footer-container{
    width:90%;
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap:50px;
}

/* logo */
.footer-logo{
    height:90px;
    margin-bottom:18px;
    margin-left: 20px;
}

/* about text */
.footer-about p{
    line-height:1.7;
    margin-bottom:20px;
    opacity:0.9;
}

/* headings */
.footer-col h3{
    margin-bottom:18px;
    font-size:16px;
    font-weight:600;
    position:relative;
}

/* list */
.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:10px;
}

/* links */
.footer-col a{
    color:#fff;
    text-decoration:none;
    opacity:0.9;
    transition:0.3s;
}

.footer-col a:hover{
    opacity:1;
    padding-left:6px;
}

/* social icons */
.social-icons{
    display:flex;
    gap:10px;
}

.social-icons a{
    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(255,255,255,0.15);

    display:flex;
    align-items:center;
    justify-content:center;

    transition:0.3s;
}

.social-icons a:hover{
    background:#ff7a00;
}

/* contact icons */
.contact-info i{
    margin-right:8px;
}

/* bottom bar */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.2);
    margin-top:50px;
    padding:20px 5%;

    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
}

.footer-links{
    display:flex;
    gap:20px;
}


/* =============================
   Mobile Responsive
============================= */
@media(max-width:992px){

    .footer-container{
        grid-template-columns: 1fr 1fr;
        gap:40px;
    }
}

@media(max-width:600px){

    .footer-container{
        grid-template-columns: 1fr;
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }
}