  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box;  font-family: 'Inter', sans-serif;}

    :root {
      --orange: #f26522;
      --orange-dark: #d95510;
      --green:  #edffef;
      --white:  #ffffff;
      --dark:   #787878;
    }

    html, body { height: 100%; font-family: 'Open Sans', sans-serif; }

    @font-face {
  font-family: 'SF Pro Display';
  src: url('../fonts/SF-Pro-Display-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('../fonts/SF-Pro-Display-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('../fonts/SF-Pro-Display-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

    /* ══════════════════════════════════════
       NAVBAR
    ══════════════════════════════════════ */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      height: 68px;
      background: rgba(255,255,255,0);
      box-shadow: none;
      transition: background 0.4s ease, box-shadow 0.4s ease;
    }

    nav.scrolled {
      /* background: rgba(255,255,255,0.40); */
       background: rgba(255,255,255,0.40);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 2px 16px rgba(0,0,0,0.1);
    }

    .nav-logo img {
      height: 70px;
      display: block;
    }

    /* Logo text fallback */
    .nav-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }
    .nav-logo-text .mit {
       font-family: 'SF Pro Display', sans-serif;
      font-weight: 800;
      font-size: 26px;
      color: var(--dark);
      letter-spacing: -1px;
    }
    .nav-logo-text .university {
      font-size: 8px;
      font-weight: 700;
      color: var(--orange);
      letter-spacing: 2.5px;
      text-transform: uppercase;
    }
    .nav-logo-text .shillong {
      font-size: 8px;
      font-weight: 600;
      color: var(--dark);
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      font-size: 14px;
      font-weight: 400;
      color: var(--dark);
      transition: color 0.2s;
    }


    .nav-links a:hover { color: var(--orange); }

    .nav-actions {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .btn-call {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--green);
      color: #000000;
      border: 1px solid #47ba54;
      border-radius: 50px;
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
       font-family: 'SF Pro Display', sans-serif;
      letter-spacing: 0.3px;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn-call:hover { transform: scale(1.04); box-shadow: 0 4px 16px rgba(37,162,68,0.4); }

    .btn-call img { width: 20px; height: 20px; }

    /* .btn-register {
      background: var(--orange);
      color: var(--white);
      border: none;
      border-radius: 50px;
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      font-family: 'Montserrat', sans-serif;
      letter-spacing: 0.5px;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    } */


    .btn-register {
  background: linear-gradient(6deg,rgba(255, 98, 0, 1) 31%, rgba(255, 232, 217, 1) 100%, rgba(255, 255, 255, 1) 98%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 14px;
   text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
 font-family: 'SF Pro Display', sans-serif;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
}
    .btn-register:hover {
      background: linear-gradient(6deg,rgba(255, 98, 0, 1) 31%, rgba(255, 232, 217, 1) 100%, rgba(255, 255, 255, 1) 98%);
      transform: scale(1.04);
      box-shadow: 0 4px 16px rgba(242,101,34,0.4);
    }

.hamburger {
  display: none;
}
    
    /* ══════════════════════════════════════
       HERO SECTION
    ══════════════════════════════════════ */
    body { background: #ffffff;  font-family: 'Inter', sans-serif;}

    .hero {
      position: relative;
      min-height: calc(100vh - 68px);
      margin-top: 68px;
      margin-left: 20px;
      margin-right: 20px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      overflow: hidden;
      /*background: #3a1a08;*/
    }

    /* Background image */
    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('../images/main_hero_bg.png') center/cover no-repeat;
      /*filter: brightness(0.55);*/
      
    }

    /* Brown warm overlay */
/*    .hero-overlay {*/
/*      position: absolute;*/
/*      inset: 0;*/
    
/*background: #853707;*/
/*background: linear-gradient(79deg, rgba(133, 55, 7, 1) 1%,rgba(255, 98, 0, 0.1) 55%)*/
/*    }*/

    .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      width: 100%;
      max-width: 1500px;
      margin: 0 auto;
      padding: 10px 15px 60px;
      gap: 40px;
    }

    /* ── Left text block ── */
    .hero-left {
      flex: 1;
      color: var(--white);
      max-width: 600px;
      padding-top:60px;
    }

    .hero-left h1 {
     font-family: 'SF Pro Display', sans-serif;
      font-size: clamp(28px, 4vw, 45px);
      font-weight: 510;
      line-height: 1.15;
      margin-bottom: 24px;
      text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    }

    .hero-badge {
      display: inline-block;
      background: rgba(0,0,0,0.75);
      border-radius: 14px;
      padding: 14px 24px;
      margin-bottom: 20px;
    }

    .hero-badge p {
       font-family: 'SF Pro Display', sans-serif;
      font-size: clamp(14px, 2vw, 30px);
      font-weight: 700;
      line-height: 1.4;
      color: var(--white);
      
    }

    .hero-admission {
    font-family: 'SF Pro Display', sans-serif;
      font-size: clamp(16px, 2.2vw, 24px);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 28px;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }

    .btn-apply {
     background: linear-gradient(6deg,rgba(255, 98, 0, 1) 31%, rgba(255, 232, 217, 1) 100%, rgba(255, 255, 255, 1) 98%);
  color: #fff;
      border: none;
      border-radius: 50px;
      padding: 13px 28px;
      font-size: 14px;
      font-weight: 600;
       text-transform: uppercase;
       font-family: 'SF Pro Display', sans-serif;
      letter-spacing: 0.8px;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }
    .btn-apply:hover { background: linear-gradient(6deg,rgba(255, 98, 0, 1) 31%, rgba(255, 232, 217, 1) 100%, rgba(255, 255, 255, 1) 98%);
  transform: scale(1.04); }

    .btn-brochure {
        background-color: transparent;
      color: var(--white);
      border: 1px solid var(--white);
      border-radius: 50px;
      padding: 12px 26px;
      font-size: 14px;
      font-weight: 600;       /* semi-bold */
  text-transform: uppercase;
       font-family: 'SF Pro Display', sans-serif;
      letter-spacing: 0.8px;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }
    .btn-brochure:hover { background: var(--white); color:#000; transform: scale(1.04); }



.hero-admission {
  display: inline-block;
  /* background: rgba(0,0,0,0.45); */
  background: #99684b;
  border-radius: 50px;
  padding: 6px 18px;
  font-family: 'SF Pro Display', sans-serif;
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 600;
  color: #d9d9d9;
  margin-bottom: 20px;
}

/* 
.hero-date-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  margin-bottom: 28px;
}

.date-pill {
  display: flex;
  flex-direction: row;      
  align-items: center;
  gap: 10px;
  background:#ffffff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  padding: 10px 16px;
    color:#000;
}

.date-pill-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
}

.date-pill-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  
}

.date-pill-label {
  font-family: 'SF Pro Display', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.65);
}

.date-pill-value {
  font-family: 'SF Pro Display', sans-serif;
  font-size: 15px;
  font-weight: 700;
 color:#000;
} */

.hero-date-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  margin-bottom: 28px;
}

.date-pill-img {
  height: 60px;        /* adjust up/down to match size in design */
  width: auto;
  object-fit: contain;
}

    /* Trust badges */
    .trust-strip {
      display: flex;
      gap: 0;
      margin-top:0;
      /* background: rgba(0,0,0,0.55); */
       background-color: transparent;
      border-radius: 14px;
      border:1px solid  rgba(255,255,255,0.15);
      overflow: hidden;
      width: fit-content;
      margin-bottom: 20px;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 20px;
      color: var(--white);
      font-size: 13px;
      font-weight: 600;
      border-right: 1px solid rgba(255,255,255,0.15);
    }
    .trust-item:last-child { border-right: none; }
    .trust-item img { width: 28px; height: 28px; opacity: 0.9; }

    .hero-tagline {
      color: rgba(255,255,255,0.8);
      font-size: 13px;
      line-height: 1.6;
      max-width: 400px;
    }

    /* ── Campus Tour rotating button ── */
    .campus-tour {
      position: absolute;
      right: 470px;
      top: 20%;
      transform: translateY(-60%);
      width: 110px;
      height: 110px;
      cursor: pointer;
      z-index: 10;
    }

    .campus-tour-ring {
      position: absolute;
      inset: 0;
      animation: spin 8s linear infinite;
    }

    .campus-tour-ring svg {
      width: 110px;
      height: 110px;
    }

    .campus-tour-img {
      position: absolute;
      inset: 14px;
      border-radius: 50%;
      overflow: hidden;
      background: #ccc;
    }

    .campus-tour-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Play icon overlay */
    .campus-tour-img::after {
      content: '▶';
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: white;
      background: rgba(0,0,0,0.3);
      border-radius: 50%;
      transition: background 0.2s;
    }

    .campus-tour:hover .campus-tour-img::after { background: rgba(242,101,34,0.6); }

    @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

    /* ── Right form box ── */
    .hero-form-box {
      flex: 0 0 400px;
     
     width: 400px;
     
      align-self: flex-start;
      margin-top: 10px;
    }
    

    
    .form_white_box{
       background: var(--white);
        border-radius: 16px;
      padding: 28px 24px 20px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    }
    
   
  
  

    .form-box-title {
     font-family: 'SF Pro Display', sans-serif;
      font-size: 20px;
      font-weight: 590;
      color: #000;
      text-align: center;
      margin-bottom: 4px;
    }

    .form-box-sub {
      font-size: 10px;
      color: #000;
      text-align: center;
      margin-bottom: 14px;
    }

    .form-alert {
      background: #fff8e1;
      border: 1px solid #ffe082;
      border-radius: 8px;
      padding: 8px 10px;
      font-size: 10px;
      color: #8a6500;
      font-weight: 400;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* Iframe form area */
    .form-iframe-area {
      width: 100%;
      min-height: 320px;
      border-radius: 10px;
      overflow: hidden;
      background: #f5f5f5;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px dashed #ddd;
      margin-bottom: 14px;
    }


    /* .form-iframe-area .npf_wgts{
      width: 100%;
      height:600px;
      border: none;
      display: block;
    } */

    .form-iframe-area .npf_wgts {
  width: 100%;
  height: 400;
  min-height: unset;
  border: none;
  display: block;
}


    .form-iframe-placeholder {
      text-align: center;
      color: #999;
      font-size: 13px;
      padding: 20px;
    }

    .form-iframe-placeholder {
      display: block;
      margin-top: 8px;
      font-size: 11px;
      color: var(--orange);
      background: #fff3ee;
      padding: 6px 10px;
      border-radius: 6px;
    }

    .form-footer {
      text-align: center;
      font-size: 11.5px;
      color: #888;
      margin-bottom: 10px;
    }

    .form-students {
      text-align: center;
      font-size: 12px;
      color: #555;
    }
    .form-students span { color: var(--orange); font-weight: 700; }

    /* Approved by badge */
    .approved-badge {
      margin-top: 16px;
      text-align: center;
    }
    .approved-by-label {
      font-size: 10px;
      color: #999;
      margin-bottom: 6px;
    }
    .approved-badge-inner {
      display: inline-flex;
      align-items: center;
      gap: 10px;
     background: #12722E;
background: linear-gradient(79deg,rgba(18, 114, 46, 1) 0%, rgba(24, 38, 31, 1) 90%);
      border-radius: 50px;
      padding: 8px 16px;
    }
    .approved-badge-inner .badge-icon img{
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }
    .approved-badge-inner span {
      color: white;
      font-size: 12px;
    font-family: 'IBM Plex Serif', serif;
  font-weight: 600;
    }

    
    /* Mobile form section — hidden on desktop */
.mobile-form-section {
  display: none;
}



    /* ══════════════════════════════════════
       YOUTUBE MODAL
    ══════════════════════════════════════ */
    .yt-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(0,0,0,0.85);
      align-items: center;
      justify-content: center;
    }
    .yt-modal.open { display: flex; }

    .yt-modal-inner {
      position: relative;
      width: 90%;
      max-width: 900px;
      aspect-ratio: 16/9;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    }

    .yt-modal-inner iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .yt-close {
      position: absolute;
      top: -40px;
      right: 0;
      background: none;
      border: none;
      color: white;
      font-size: 32px;
      cursor: pointer;
      line-height: 1;
      transition: color 0.2s;
    }
    .yt-close:hover { color: var(--orange); }

/* End hero section  */



/* =================start of school nursing  section ======================= */
 /* ─────────────────────────────────────
       MIT SHILLONG NURSING SECTION
    ───────────────────────────────────── */

    .mitShnSectionWrap {
      padding: 30px 60px 40px;
      text-align: center;
    }

    /* ── HEADING ── */

    .mitShnSectionTitle {
      font-size: 36px;
      font-weight: 700;
      color: #111;
      margin-bottom: 0;
      font-family: 'SF Pro Display', sans-serif;
    }

    .mitShnSectionTitle span {
      color: #ff5a00;
      font-family: 'SF Pro Display', sans-serif;
    }

    /* ── DIVIDER ── */

    .mitShnDividerLine {
      display: flex;
      justify-content: center;
      margin: 18px 0 36px;
    }

    .mitShnDividerLine::after {
      content: '';
      display: block;
      width: 2px;
      height: 80px;
      background: #111;
    }

    /* ── CARD ── */

    .mitShnInfoCard {
      display: flex;
      align-items: center;
      gap: 50px;
      border: 1.5px solid #000;
      border-radius: 40px;
      padding: 30px 40px 30px 30px;
      text-align: left;
       max-width: 1400px;
      margin: 25px auto;
    }

    /* ── IMAGE ── */

    .mitShnCardImageWrap {
      flex: 0 0 auto;
      width: 48%;
    }

    .mitShnCardImageWrap img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: 14px;
      display: block;
    }

    /* ── CONTENT ── */

    .mitShnCardContent {
      flex: 1;
    }

    .mitShnCardContent h3 {
      font-size: 22px;
      font-weight: 600;
      color: #111;
      margin-bottom: 20px;
      line-height: 1.3;
      font-family: 'SF Pro Display', sans-serif;
    }

    .mitShnCardContent p {
      font-size: 15px;
      color: #333;
      line-height: 1.7;
      margin-bottom: 16px;
      font-family: 'SF Pro Display', sans-serif;
    }

    .mitShnCardContent p:last-of-type {
      margin-bottom: 32px;
    }

    /* ── BUTTON ── */

    .mitShnExploreBtn {
      display: inline-block;
       background: linear-gradient(6deg,rgba(255, 98, 0, 1) 31%, rgba(255, 232, 217, 1) 100%, rgba(255, 255, 255, 1) 98%);
  color: #fff;
      font-size: 13.5px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      padding: 16px 44px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      font-family: 'SF Pro Display', sans-serif;
      transition: background 0.2s ease, transform 0.15s ease;
    }

    .mitShnExploreBtn:hover {
    background: linear-gradient(6deg,rgba(255, 98, 0, 1) 31%, rgba(255, 232, 217, 1) 100%, rgba(255, 255, 255, 1) 98%);
      transform: scale(1.04);
      box-shadow: 0 4px 16px rgba(242,101,34,0.4);
    }

/* =================end of  school nursing  section ======================= */


/* =================start of program section ======================= */
     .universities-section {
      background: white;
      padding: 40px 10px 40px;
      font-family: Arial, sans-serif;
      color: #222;
      user-select: none;
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
    }

    /* ── ANIMATED TITLE ── */
    .section-title {
      font-weight: 700;
      font-size: 32px;
      text-align: center;
      margin-bottom: 6px;
      height: 44px;
      position: relative;
      overflow: hidden;
    }

    .highlight { color: #f97314; }

    .uni-title-slider {
      position: relative;
      height: 100px;
      overflow: hidden;
      text-align: center;
      font-weight: 700;
      font-size: 70px;
      margin-bottom: 30px;
       font-family: 'SF Pro Display', sans-serif;
    }

    .uni-slide {
      position: absolute;
      left: 0;
      width: 100%;
      text-align: center;
      top: 100%;
      color: #222;
      font-weight: 700;
      transition: top 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .uni-slide .highlight { color: #f97314; }

    .uni-slide.active {
      top: 0;
      opacity: 1;
    }

    /* ── DIVIDER ── */
    .section-divider {
      margin: 0 auto 40px auto;
      width: 100%;
      /* max-width: 700px; */
      border: none;
      border-top: 0.6px solid #000000;
    }

    /* ── PROGRAMS OFFERED LABEL + ARROW ── */
    .programs-offered-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 48px;
    }

    .programs-offered-label {
      font-weight: 700;
       font-family: 'SF Pro Display', sans-serif;
      font-size: 31px;
      margin: 0;
      color: #000;
    }


    .arrow-container {
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center;  
  padding-top:20px ;   /* vertical center (optional) */
}

.program-arrow-img_faq{
  height:40px;
  
 margin-bottom:20px;
}
/* 
.program-arrow-img {
  width: 32px;
} */
    /* .program-arrow {
      width: 1px;
      height: 32px;
      background-color: #000;
      position: relative;
      margin-top: 6px;
      border-radius: 1px;
    }

    .program-arrow::after {
      content: "";
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-top: 8px solid #000;
    } */

    /* ── PROGRAM CARD ── */
    .program-card {
      border: 1px solid #000;
      border-radius: 40px;
      display: flex;              /* image | content */
      align-items: stretch;
      overflow: hidden;
      padding: 40px 48px;
      gap: 48px;
    }

    /* LEFT: image */
    .program-image {
      flex-shrink: 0;
      width:450px;
      border-top-left-radius: 24px;
      border-bottom-left-radius: 24px;
      overflow: hidden;
    }

    .program-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-top-left-radius: 24px;
      border-bottom-left-radius: 24px;
    }

    /* RIGHT: content = details + description side by side */
    /* .program-content {
      flex: 1;
      display: flex;
      gap: 0;
      align-items: flex-start;
      min-width: 0;
    } */

    /* Right side wrapper: title stacked above the two columns */
.program-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

/* Title now spans full width of the right side */
.program-title {
  font-weight: 700;
  font-size: 31px;
  color: #f97314;
  margin-bottom: 0; /* gap handles spacing now */
  
 font-family: 'SF Pro Display', sans-serif;
}

/* program-content stays the same — details + description side by side */
.program-content {
  flex: 1;
  display: flex;
  gap: 0;
  align-items: flex-start;
  min-width: 0;
}

    /* ── LEFT HALF of content: details ── */
    .program-details {
      flex: 0 0 350px;
      display: flex;
      flex-direction: column;
      padding-right: 40px;
      border-right: 1px solid #ccc;
    }

    /* .program-title {
      font-weight: 700;
      font-size: 20px;
      color: #f97314;
      margin-bottom: 24px;
    } */

    .detail-block {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding-bottom: 18px;
      
    }

    .detail-text {
      font-size: 18px;
      line-height: 1.4;
      color: #222;
      font-weight:510;
       font-family: 'SF Pro Display', sans-serif;
    }

    .detail-text strong { font-weight: 700; }

    .sub-text {
      display: block;
      font-size: 12.5px;
      color: #999;
      margin-top: 4px;
    }

    .program-details hr {
      border: none;
      border-top: 1px solid #e0e0e0;
      margin: 0 0 18px 38px;
    }

    /* Icons */
    .icon {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      display: inline-block;
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
      margin-top: 2px;
    }

    .clock-icon {
      background-image: url('../images/clock.png');
    }

    .file-icon {
      background-image: url('../images/eligibility.png');
    }

    .fulltime-icon {
      background-image: url('../images/type.png');
    }

    /* ── RIGHT HALF of content: description ── */
    .program-description {
      flex: 1;
      padding-left: 40px;
      font-size: 16.5px;
      color: #222;
      line-height: 1.65;
      min-width: 0;
    }

     .program-description p{
      margin-top: 10px;
     }

    .highlight-text {
      color: #f97314;
      font-weight: 600;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .program-card {
        flex-direction: column;
        padding: 32px 30px;
      }
      .program-image {
        width: 100%;
        border-radius: 20px;
        max-height: 280px;
      }
      .program-image img { border-radius: 20px; }
      .program-content { flex-direction: column; }
      .program-details {
        border-right: none;
        border-bottom: 1px solid #ccc;
        padding-right: 0;
        padding-bottom: 24px;
        flex-basis: auto;
      }
      .program-description { padding-left: 0; padding-top: 24px; }
    }



      



/*===================Start why Section ================ */


    .mit-nursing-why {
            padding: 20px 20px 100px;
            background: #fff;
            text-align: center;
        }

        .mit-nursing-why__wrapper {
            max-width: 1400px;
            margin: auto;
        }

        .mit-nursing-why__title {
            font-size: 31px;
            font-weight: 700;
            margin-bottom: 30px;
             font-family: 'SF Pro Display', sans-serif;
        }

        .mit-nursing-why__title span {
            color: #ff5a00;
        }

        /* Divider */
        .mit-nursing-why__divider {
            display: flex;
            justify-content: center;
            margin-bottom: 50px;
        }

        .mit-nursing-why__divider span {
            width: 2px;
            height: 60px;
            background: #222;
            position: relative;
        }

        .mit-nursing-why__divider span::after {
            content: "";
            width: 6px;
            height: 6px;
            background: #222;
            border-radius: 50%;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Cards Layout */
        .mit-nursing-why__cards {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: nowrap;
        }

        .mit-nursing-why__card {
            position: relative;
            width: 400px;
            height: 350px;
            border-radius: 20px;
            overflow: hidden;
        }

        .mit-nursing-why__card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Text */
        .mit-nursing-why__text {
            position: absolute;
            bottom: 25px;
            left: 15px;
            right: 15px;
            color: #fff;
            font-size: 23px;
            font-weight: 500;
            text-align: left;
            font-family: 'SF Pro Display', sans-serif;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .mit-nursing-why__cards {
                flex-wrap: wrap;
            }
        }

        /*===================end why Section ================ */

         /* ==============start of mit-career================== */
      .gradient-text {
  background: linear-gradient(90deg, #ff6a00, #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
    .mit-career-path {
  padding: 20px 20px;
  background: #fff;
  text-align: center;
}

.mit-career-path__wrapper {
  max-width: 1400px;
  margin: auto;
}

/* Title */
.mit-career-path__title {
  font-size: 100px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
 font-family: 'SF Pro Display', sans-serif;
}

.mit-career-path__title span {
  color: #ff5a00;
 font-family: 'SF Pro Display', sans-serif;
}

/* Arrow */
.mit-career-path__arrow {
  display: flex;
  justify-content: center;
  margin: 20px 0 40px;
}

.mit-career-path__arrow img {
  width: 18px;
}

/* Grid Layout */
.mit-career-path__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 50px;
  max-width: 1100px;
  margin: 0 auto; /* 👈 this centers the container */
  margin-top:20px;
}
/* Pills */
.mit-career-path__pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffe6d6;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 590;
  
 font-family: 'SF Pro Display', sans-serif;
  white-space: nowrap;
}

.mit-career-path__pill img {
  width: 22px;
  height: 22px;
}

/* Wide pill */
.mit-career-path__pill--wide {
  padding: 14px 28px;
}

/* Bottom arrow spacing */
.mit-career-path__arrow--bottom {
  margin-top: 50px;
}


/* ==============end of mit-career================== */

        /*=======================ip Section spacing ==============================*/
.ip-section-unique {
  background: #fff;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

/* Main rounded container */
.ip-box-unique {
  width: 100%;
  max-width: 1400px;
  background: #fff;
  border-radius: 40px;
  border: 1.5px solid #000;
  text-align: center;
  padding: 40px 30px 35px;
}

/* Heading */
.ip-box-unique h2 {
  font-size: 31px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
  font-family: 'SF Pro Display', sans-serif;
}

.ip-box-unique h2 span {
  color: #FF6200;
  font-family: 'SF Pro Display', sans-serif;
}

/* Description */
.ip-box-unique p {
  font-size: 13px;
  color: #333;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.5;
}

/* Logos */
/* LOGO ROW */
.ip-logos-unique {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px; /* controls spacing */
  margin-top: 100px;
  flex-wrap: wrap;
    /* justify-content: center;
  gap: 60px; */
}

/* EACH LOGO */
.ip-logos-unique img {
  height: 60px;       /* 🔥 key for consistency */
  width: auto;
  object-fit: contain;
  filter: grayscale(0%); /* keep original colors */
}
/* .ip-logos-unique img {
  height: 38px;
  max-width: 140px;
} */

.ip-logos-unique img {
  transition: 0.3s;
}

.ip-logos-unique img:hover {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .ip-logos-unique {
    gap: 20px;
    justify-content: center;
  }

  .ip-logos-unique img {
    height: 30px;
  }
}


/*======================= end ip Section spacing ==============================*/


    /* ── Section title ── */
    .title_sec {
      text-align: center;
      font-family: 'SF Pro Display', sans-serif;
      font-size: clamp(24px, 3.5vw, 30px);
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 40px;
    }

    .title_sec span { color: #e07020; }

    /* ── Brown card ── */
    .join-card {
      max-width: 1400px;
      margin: 30px auto;
      /* background: linear-gradient(135deg, #c05a1a 0%, #a84510 60%, #8b3510 100%); */
      background: url("../images/join_bg.png") center/cover no-repeat;
      border-radius: 40px;
      padding: 60px 80px 50px;
      position: relative;
    }

    /* ── Steps row ── */
    .steps {
      display: flex;
      align-items: flex-start;
      justify-content:center;
      position: relative;
      margin-bottom: 48px;
    }

    /* No pseudo-element line — connectors handled inline */
    .step {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    /* circle */
    .step-circle {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.7);
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
    font-family: 'SF Pro Display', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 24px;
      flex-shrink: 0;
    }

    /* connector between steps: dot — line — dot */
    .connector {
      /* display: flex;
      align-items: center;
      flex: 0 0 auto;
      margin-top: 0;
      padding-top: 14px; 
      gap: 0; */
       display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-top: 0;
  padding-top: 28px; /* half of circle height (56px / 2) = 28px */
  gap: 0;
    }

    .connector-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(255,255,255,0.7);
      flex-shrink: 0;
    }

    .connector-line {
      width: 120px;
      height: 1.5px;
      background: rgba(255,255,255,0.45);
    }

    .step-title {
      font-family: 'SF Pro Display', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
      line-height: 1.3;
      max-width:100%;
    }

    .step-desc {
     
        font-size: 14px;
      font-weight: 400;
      color: rgba(255,255,255,0.82);
      line-height: 1.55;
      max-width:100%;
       font-family: 'SF Pro Display', sans-serif;
    }

    /* ── Register button ── */
    .join-footer {
      display: flex;
      justify-content: flex-end;
    }

    .register_button {
      background:transparent;
      color: #fff;
      border:1px solid #fff;
      border-radius: 50px;
      padding: 14px 32px;
     font-family: 'SF Pro Display', sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .register_button:hover {
      transform: scale(1.04);
      box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }


/*=============start of ch card==============  */

    .ch_section {
  text-align: center;
  padding: 50px 20px;
 background: #FFFFFF;
background: linear-gradient(178deg,rgba(255, 255, 255, 1) 15%, rgba(255, 246, 241, 1) 66%);
}

.ch_title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
   font-family: 'SF Pro Display', sans-serif;
}

.ch_title span {
  color: #ff6a00;
}

.ch_wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top:30px;
}

/* CARD */
.ch_card {
  text-align: center;
  width: 180px;
}

/* IMAGE BOX */
.ch_img_box {
  width: 180px;
  height: 180px;
  overflow: hidden;
  border-radius: 35px;
}

/* IMAGE STYLE */
.ch_img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* initial state */
  filter: grayscale(100%);
  transform: scale(1);
  transition: all 0.4s ease;
}

/* HOVER EFFECT */
.ch_card:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

/* TEXT */
.ch_card p {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
   font-family: 'SF Pro Display', sans-serif;
}

/*============= end of ch card==============  */


/*================ start curved slider ==============*/

/* .slider_curved_1{
 padding-top:80px;
}
 .curved-header {
      text-align: center;
      margin-bottom: 36px;
      font-family: 'SF Pro Display', sans-serif;
    }

    .curved-header h2 {
      font-size: 31px;
      font-weight: 700;
      color: #1a1a1a;
      font-family: 'SF Pro Display', sans-serif;
    }

    .curved-header h2 span { color: #ff6a00; font-family: 'SF Pro Display', sans-serif;}

    .curved-header p {
      margin-top: 8px;
      font-size: 14.5px;
      color: #555;
      font-family: 'SF Pro Display', sans-serif;
    }

.curve-slider-section .curved_slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  --v-offset: 60px;
  --curve-height: 120px;
}

.curve-slider-section .curved_wrapper {
  display: grid;
  grid-template-rows: 300px;
  grid-auto-flow: column;
  gap: 10px;
  overflow: auto;
  scroll-snap-type: x mandatory;
}


.curved_wrapper img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  background: #eee;
}

.curved_slider:before, .curved_slider:after {
  content: "";
  display: block;
  background: white;
  width: calc(100vw + 2 * var(--v-offset));
  height: var(--curve-height);
  position: absolute;
  border-radius: 50%;
  left: calc(-1 * var(--v-offset));
  right: calc(-1 * var(--v-offset));
}
.curved_slider:before {
  top: calc(-0.6 * var(--curve-height));
}
.curved_slider:after {
  bottom: calc(-0.6 * var(--curve-height));
}

.curved_wrapper {
  display: grid;
  grid-template-rows: 300px;
  grid-auto-flow: column;
  grid-gap: 10px;
  overflow: auto;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.curved_wrapper::-webkit-scrollbar { display: none; }
.curved_wrapper img {
  scroll-snap-align: center;
} */


.slider_curved_1{
 padding-top:80px;
}
 .curved-header {
      text-align: center;
      margin-bottom: 36px;
      font-family: 'SF Pro Display', sans-serif;
    }

    .curved-header h2 {
      font-size: 31px;
      font-weight: 700;
      color: #1a1a1a;
      font-family: 'SF Pro Display', sans-serif;
    }

    .curved-header h2 span { color: #ff6a00; font-family: 'SF Pro Display', sans-serif;}

    .curved-header p {
      margin-top: 8px;
      font-size: 14.5px;
      color: #555;
      font-family: 'SF Pro Display', sans-serif;
    }

  .curve-slider-section .curved_slider {
      width: 100%;
      overflow: hidden;
      position: relative;
      --v-offset: 60px;
      --curve-height: 120px;
    }

    .curve-slider-section .curved_slider:before,
    .curve-slider-section .curved_slider:after {
      content: "";
      display: block;
      background: white;
      width: calc(100% + 2 * var(--v-offset));
      height: var(--curve-height);
      position: absolute;
      border-radius: 50%;
      left: calc(-1 * var(--v-offset));
      right: calc(-1 * var(--v-offset));
      z-index: 1;          /* sit on top of images */
      pointer-events: none;
    }

    .curve-slider-section .curved_slider:before {
      top: calc(-0.6 * var(--curve-height));
    }

    .curve-slider-section .curved_slider:after {
      bottom: calc(-0.6 * var(--curve-height));
    }

    .curve-slider-section .curved_wrapper {
      display: grid;
      grid-template-rows: 300px;
      grid-auto-flow: column;
      grid-gap: 10px;
      overflow: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      /* FIX: push images inward so white curve covers both edges */
      padding: 0 var(--v-offset);
    }

    .curve-slider-section .curved_wrapper::-webkit-scrollbar {
      display: none;
    }

    .curve-slider-section .curved_wrapper img {
      width: 300px;
      height: 300px;
      object-fit: cover;
      background: #eee;
      scroll-snap-align: center;
      border-radius: 12px;
    }

/*=================== end curved slider=================== */

/* Unique wrapper */
.adm-banner-wrapper {
    text-align: center;
    padding: 30px 20px;
}

/* Unique button */
.adm-banner-cta {
    display: inline-block;
    padding: 18px 38px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(6deg,rgba(255, 98, 0, 1) 31%, rgba(255, 232, 217, 1) 100%, rgba(255, 255, 255, 1) 98%);
    font-size: 18px;
    font-family: 'SF Pro Display', sans-serif;
    margin-bottom: 40px;
}

/* Unique heading */
.adm-banner-title {
    margin: 0;
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
}

/* Unique gradient text */
.adm-gradient-main {
    background: linear-gradient(90deg, #ff6a00, #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.adm-gradient-sub {
    background: linear-gradient(90deg, #ff6a00, #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .adm-banner-title {
        font-size: 48px;
    }
}
/* =================start of faq ==========================*/

    /* ── HEADING ── */
    .gnmfaq__heading {
      text-align: center;
      padding: 48px 16px 0;
     font-family: 'SF Pro Display', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: #1a1a1a;
      letter-spacing: -0.3px;
    }
    .gnmfaq__heading span { color: #ff6a00; font-family: 'SF Pro Display', sans-serif; }

    .gnmfaq__arrow {
      display: flex;
      justify-content: center;
      padding: 18px 0 0;
    }
    .gnmfaq__arrow svg { width: 18px; height: 40px; }

    /* ── BIG WRAPPER — FAQ + footer share one background ── */
    .gnmfaq__bg {
      position: relative;
      margin: 0 24px;
     border-radius: 18px 18px 0 0;
      overflow: hidden;
      background-image: url('../images/faq_bg.png');
      background-size: cover;
      background-position: center;
    }
    /* .gnmfaq__bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(185, 100, 28, 0.78);
      z-index: 0;
    } */

    /* ── FAQ + CARD ROW ── */
    .gnmfaq__row {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: flex-start;
      gap: 32px;
      padding: 36px 40px 40px;
    }

    /* ── FAQ ACCORDION ── */
    /*.gnmfaq__list {*/
    /*  flex: 1;*/
    /*  display: flex;*/
    /*  flex-direction: column;*/
    /*  gap: 14px;*/
    /*  min-width: 0;*/
    /*}*/
    
    .gnmfaq__list {
  flex: 0 0 55%;        /* reduce — was flex:1 (took all space) */
  max-width: 60%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

    .gnmfaq__item {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    }

    .gnmfaq__btn {
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
     font-family: 'SF Pro Display', sans-serif;
      font-size: 13.5px;
      font-weight: 500;
      color: #1a1a1a;
      text-align: left;
      gap: 12px;
    }
    .gnmfaq__btn:hover { background: rgba(0,0,0,0.02); }

    .gnmfaq__icon {
      font-size: 22px;
      font-weight: 400;
      color: #555;
      flex-shrink: 0;
      line-height: 1;
      width: 20px;
      text-align: center;
      display: inline-block;
    }

    .gnmfaq__answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }
    .gnmfaq__item.gnmfaq__item--open .gnmfaq__answer { max-height: 300px; }

    .gnmfaq__answer-inner {
      padding: 0 20px 18px;
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      color: #444;
      line-height: 1.7;
    }

    /* ── COUNSELING FORM CARD ── */
    .gnmfaq__card {
      background: #fff;
      border-radius: 14px;
      padding: 28px 24px 26px;
      width: 500px;
      flex-shrink: 0;
      box-shadow: 0 4px 20px rgba(0,0,0,0.12);
      align-self: flex-start;
    }

    .gnmfaq__card-title {
      text-align: center;
      font-family: 'Poppins', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: #111;
      margin-bottom: 4px;
    }
    .gnmfaq__card-subtitle {
      text-align: center;
      font-family: 'Poppins', sans-serif;
      font-size: 11.5px;
      color: #666;
      margin-bottom: 14px;
    }

    .gnmfaq__batch-banner {
      background: #fef3e2;
      border: 1px solid #f5c87a;
      border-radius: 6px;
      padding: 7px 10px;
      font-family: 'Poppins', sans-serif;
      font-size: 11px;
      color: #b05f00;
      font-weight: 500;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* ── IFRAME WRAPPER ── */
    .gnmfaq__iframe-wrap { width: 100%; }
    .gnmfaq__iframe-wrap iframe {
      width: 100%;
      border: none;
      border-radius: 6px;
      min-height: 380px;
      display: block;
    }

    .gnmfaq__iframe-placeholder {
      background: #f9f9f9;
      border: 2px dashed #ddd;
      border-radius: 8px;
      padding: 28px 16px;
      text-align: center;
      color: #aaa;
      font-family: 'Poppins', sans-serif;
      font-size: 12px;
      line-height: 1.6;
    }
    .gnmfaq__iframe-placeholder strong {
      display: block;
      color: #888;
      font-size: 13px;
      margin-bottom: 6px;
    }

    /* ── FOOTER (inside bg) ── */
    .gnmfaq__footer {
      position: relative;
      z-index: 1;
      padding: 140px 40px 28px;
     
    }

    /* .gnmfaq__footer-card {
      border: 1.5px solid #000;
      border-radius: 14px;
      padding: 22px 32px;
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
      background:transparent;
       font-family: 'SF Pro Display', sans-serif;
    } */
.gnmfaq__footer-card {
  border: 1.5px solid #000;
  border-radius: 30px;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: center;   /* ← change to center */
  gap: 48px;                 /* ← controls spacing between logo/address/email */
  flex-wrap: wrap;
  background: transparent;
  font-family: 'SF Pro Display', sans-serif;
  max-width: 1000px;
  margin: 0 auto;
}
    /* .gnmfaq__logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      font-family: 'SF Pro Display', sans-serif;
      font-weight: 900;
      font-size: 22px;
      letter-spacing: 2px;
      color: #fff;
      line-height: 1;
    }
    .gnmfaq__logo-sub {
      font-size: 7px;
      font-weight: 600;
      letter-spacing: 1.5px;
      color: rgba(255,255,255,0.75);
      margin-top: 2px;
       font-family: 'SF Pro Display', sans-serif;
    } */


.gnmfaq__logo {
  display: flex;
  align-items:left;
  justify-content:left;   /* ← center logo */
  flex-shrink: 0;
}

.gnmfaq__logo img {
  max-width: 80px;
  height: auto;
  object-fit: contain;
}
    .gnmfaq__vdivider {
      width: 1px;
      height: 60px;
      background: rgba(255,255,255,0.3);
      flex-shrink: 0;
    }

.gnmfaq__contacts {
  display: flex;
  align-items: center;
  justify-content: center;   /* ← center contacts */
  gap: 32px;
  flex-wrap: wrap;
  flex: unset;               /* ← remove flex:1 so it doesn't stretch */
}

.gnmfaq__contact-item {
  display: flex;
  align-items: flex-start;     /* ← icon aligns to top of text */
  gap: 10px;
  font-family: 'SF Pro Display', sans-serif;
  font-size: 12px;
  color: #000;
  line-height: 1.6;
  text-align: left;
}

.gnmfaq__contact-item img {
  flex-shrink: 0;
  margin-top: 3px;            /* ← nudges icon down to align with first line */
  width: 20px;
  height: auto;
}

.gnmfaq__contact-item div {
  text-align: left;
}

    /* ── COPYRIGHT ── */
    .gnmfaq__copyright {
      text-align: center;
       font-family: 'SF Pro Display', sans-serif;
       font-weight: 510;
      font-size: 11px;
      color: #000;
      padding: 14px 0 24px;
    }   