*, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --bRAND-Color: #9E1C35;
      --gold: #D49E38;
      --white: #ffffff;
      --text-light: rgba(255, 255, 255, 0.88);
      --text-content: #000000
    }

    body {
        font-family: "Montserrat", sans-serif;
        font-weight: 500;
        font-size: 20px;
        line-height: 150%;
        color: #000000;
    }


      /* 4. Text & Rendering Defaults */
      html {
        -webkit-text-size-adjust: 100%;
        scroll-behavior: smooth;
      }

      /* ── CONTAINER ── */
    .container {
        max-width: 1720px;
        margin: 0 auto;
        width: calc(100% - 40px);
    }

    .section-heading{
        font-weight: 600;
        font-size: 40px;
        line-height: 150%;
        letter-spacing: 0%;
        color: #000000;
        margin-bottom: 20px;
    }
    .section-heading span{
        color: var(--bRAND-Color);
    }
    .text-center{
        text-align: center;
    }
    .btn-primary, .btn-secondary{
        font-weight: 700;
        font-size: 24px;
        line-height: 150%;
        letter-spacing: 0%;
        text-align: center;
        text-transform: uppercase;
        color: #FFFFFF;
        background-color: #9E1C35;
        padding: 10px 24px;
        text-decoration: none;
        border-radius: 10px;
        display: inline-block;
        align-self:center;
    }
    .btn-secondary{
        background-color: #D49E38;
    }
    /* header Section */

    header{
        background-color: #FFFFFF;
    }
    header .container{
        display: flex;
        align-items: center;
    }
    .header-logo{
        margin-right: auto;
        display: inline-block;
    }
    header .header-logo img{
        height: 100px;
    }
    /* ── SECTION ── */
    .banner-section {
      position: relative;
      width: 100%;
      min-height: 520px;
      background-image: url('../images/banner_bg.webp');
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
      overflow: hidden;
      color: var(--bRAND-Color, #9E1C35);
;
    }

    /* Gradient overlay — left is darker for readability, right stays open for the form */
    .banner-section::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      background: url(../images/gradientBanner.webp) no-repeat right top;
      background-size: cover;
      max-width: 777px;
      width: 40%;
      height: 100%;
      z-index: 1;
    }
    .banner-section::after {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      background: url(../images/gradientBanner_right.webp) no-repeat left top;
      background-size: cover;
      max-width: 654px;
      width: 30%;
      height: 100%;
      z-index: 1;
    }
  

    /* ── LEFT SIDE CONTENT ── */
    .leftSideContent {
        max-width: 494px;
        padding: 87px 0 86px;
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 3;
        animation: fadeSlideIn 0.8s ease both;
    }

    @keyframes fadeSlideIn {
        from { opacity: 0; transform: translateY(28px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    /* Eyebrow / subheading above main headline */
    .leftSideContent .eyebrow {
        font-size: 28px;
        line-height: 150%;
        font-weight: 600;
        line-height: 1.5;
        animation: fadeSlideIn 0.8s 0.1s ease both;
        margin-bottom: 50px;
    }

    /* Main heading — "Admissions Open" */
    .leftSideContent .mainHeading {
        font-size: clamp(38px, 4.5vw, 52px);
        line-height: 150%;
        font-weight: 900;
        animation: fadeSlideIn 0.8s 0.2s ease both;
    }

    .leftSideContent .mainHeading span {
    }

    /* "for UG & PG at" */
    .leftSideContent .subHeadingProgram {
        font-size: clamp(15px, 1.6vw, 24px);
        font-weight: 400;
        animation: fadeSlideIn 0.8s 0.3s ease both;
    }

    .leftSideContent .subHeadingProgram em {
        font-style: italic;
        font-weight: 700;
    }

    /* University name */
    .leftSideContent .universityName {
        font-size: clamp(16px, 1.8vw, 20px);
        font-weight: 700;
        line-height: 1.4;
        animation: fadeSlideIn 0.8s 0.35s ease both;
        margin-bottom: 60px;
    }

    /* Divider */
    .leftSideContent .divider {
        width: 64px;
        height: 3px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light));
        border-radius: 2px;
        animation: fadeSlideIn 0.8s 0.4s ease both;
    }

    /* Package highlight */
    .leftSideContent .packageBlock {
      display: flex;
      flex-direction: column;
      gap: 4px;
      animation: fadeSlideIn 0.8s 0.45s ease both;
    }

    .leftSideContent .packageAmount {
      font-size: clamp(30px, 3.5vw, 52px);
      font-weight: 700;
      line-height: 1;
      letter-spacing: -0.01em;
    }

    .leftSideContent .packageAmount sup {
      font-size: 0.55em;
      vertical-align: super;
    }

    .leftSideContent .packageNote {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.04em;
    }


    .thankyouPage{
       display: flex;
       justify-content: center;
       align-items: center;
       min-height: 100vh;
    }
    /* ════════════════════════════════════════
       STATS SECTION
    ════════════════════════════════════════ */
    .stats-section {
      background: var(--bRAND-Color, #9E1C35);
      position: relative;
      overflow: hidden;
    }
 
 
    /* ── STATS WRAPPER ── */
    .stats-wrapper {
      display: flex;
      padding: 14px 0;
    }
 
    .stat-card {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 21px 21px;
      border-radius: 10px;
      margin: 0 6px;
      background: #FFFFFF33;
      border: 1px solid #FFFFFF;
      transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
      cursor: default;
    }
 
    .stat-card:hover {
      transform: translateY(-4px);
      background: #a32b41;
      box-shadow: 0 12px 32px rgba(0,0,0,0.35);
    }
 
    .stat-number {
      font-size: clamp(28px, 3vw, 40px);
      font-weight: 700;
      color: var(--white);
      line-height: 1;
      font-style: italic;
      font-family: "Poppins", sans-serif;
      text-shadow: 0px 4px 4px rgba(145, 6, 35, 0.6);
    }
 
    .stat-number .sign{
      font-size: clamp(28px, 3vw, 40px);
      font-weight: 700;
      color: var(--white);
      line-height: 1;
      font-style: italic;
    }
 
    .stat-number .unit {
        vertical-align: baseline;
        font-weight: 700;
        font-style: Italic;
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 0%;

    }
 
    .stat-label {
        margin-top: 8px;
        font-size: clamp(14px, 1.5vw, 20px);
        font-weight: 600;
        line-height: 120%;
        letter-spacing: 0%;
        text-align: center;
        color: #FFFFFF;
        text-shadow: 0px 4px 4px rgba(145, 6, 35, 0.6);
    }
 
    .stat-card::after {
      content: '';
      display: block;
      width: 32px;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      border-radius: 2px;
      margin-top: 10px;
    }
 
    /* Swiper pagination — hidden on desktop, shown by JS on mobile */
    .swiper-pagination-bullet {
      background: rgba(255,255,255,0.40);
      opacity: 1;
    }
    .swiper-pagination-bullet-active {
      background: var(--gold-light);
      transform: scale(1.3);
    }
 
    /* When swiper is active, wrapper needs bottom room for pagination */
    .stats-wrapper.swiper-mode {
      padding-bottom: 40px;
      overflow: visible;
    }


  /* Form CSS */
  .formWidget h2{
    color: #FFFFFF;
    text-align: center;
    padding: 10px;
    font-weight: 500;
    font-size: 20px;
  }
  .formWidget{
      background: linear-gradient(180.1deg, #690E1F 57.94%, #CF1B3D 99.91%);
      border: 1px solid #504a4a;
      border-radius: 15px;
      position: absolute;
      top: 15%;
      z-index: 999;
      right: 5%;
      padding: 0px;
      max-width: 380px;
      width: calc(100% - 40px);
  }
/* university-section Css */

.university-section{
    background: url(../images/university_info.webp) no-repeat top center;
    background-size: cover;
    padding: 60px 0;
    position: relative;
}
.university-section::after{
    background: url(../images/uniIcon.webp) no-repeat top right;
    background-size: contain;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    max-width: 760px;
    height: 620px;
    width: 41%;
    z-index: 99;
}
.left-content-wrapper{
    max-width: 1003px;
    width: 58.13%;
}
.left-content-wrapper-two{
    max-width: 1251px;
    overflow: hidden;
    margin: 60px 0 48px;
}
.left-content-wrapper-two h3{
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 28px;
}
.accreditationSwiper {
  width: 100%;
  overflow: hidden;
}

.accred-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 12px;
}

.accred-logo {
  height: 120px;
  width: auto;
  object-fit: contain;
  display: block;
}

.accred-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #636363;
  text-align: center;
  margin: 10px 0 12px;
}




.program-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    max-width: 1430px;
    margin: 0 auto;
}
.program-subtext{
    max-width: 1300px;
}
/* ── TABS ── */
.program-tabs {
    display: flex;
    background: #EAEAEA;
    border-radius: 50px;
    border: 1px solid #979797;
    padding: 4px;
    gap: 10px;
    transform: translateY(50%);
}

.tab-btn {
    font-weight: 600;
    font-style: Bold;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    text-transform: uppercase;
    border-radius: 9999px;
    cursor: pointer;
    padding: 15px 38px;
    border: 0.5px solid #000000;
    backdrop-filter: blur(6.727759838104248px);
    color: #333333;
    background: #FFFFFF;
    transition: background 0.25s ease, color 0.25s ease;
}

.tab-btn.active {
  background: linear-gradient(82.8deg, #46262B -33.59%, #971B35 66.52%);
  box-shadow: 4px 4px 4px 0px #00000040 inset;
  color: #ffffff;
  font-weight: 700;
}

/* ── CONTENT BOX ── */
.program-content {
  width: 100%;
  background: rgba(255, 255, 255, 0.89);
  border-radius: 20px;
  box-shadow: 0px 0px 200px 10px #9D1A3573;
  padding: 78px 50px 40px;
}

/* Tab panels */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* Two-column grid for lists */
.program-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
}

/* List items */
.program-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 50%;
}

.program-list li {
    font-weight: 500;
    font-size: 20px;
    line-height: 200%;
    letter-spacing: 0%;
    color: #000000;
    position: relative;
    padding-left: 35px;
}

/* Maroon diamond bullet */
.program-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 15px;
  height: 20px;
  background: url(../images/Vector.svg) no-repeat top left;
  background-size: 15px 20px;
  border-radius: 2px;
}
/* ════════════════════════════════════════
   RECRUITERS SECTION
════════════════════════════════════════ */
.recruiters-section {
  background: url('../images/recruiters_bg.webp') center center / cover no-repeat;
  padding: 48px 0 60px;
  overflow: hidden;
}

/* Shared small section heading */
.section-sm-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
  margin-bottom: 28px;
}

.text-center {
  text-align: center;
}

/* ── RECRUITER CARDS ── */
.recruitersSwiper {
  width: 100%;
  overflow: hidden;
  margin-bottom: 48px;
}

.recruiter-card {
  display: flex;
  align-items: center;
  justify-content: center;
   height: 150px;
}

.recruiter-card img {
  height: 150px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ── COLLABORATIONS BLOCK ── */
.collaborations-block {
  width: 100%;
}

.collaborationsSwiper {
  width: 100%;
  overflow: hidden;
  margin-top: 0;
}

.collab-card {
  display: flex;
  align-items: center;
  justify-content: center;
   height: 150px;
}

.collab-card img {
  height: 150px;
  width: auto;
  object-fit: contain;
  display: block;
}


/* ── Single Section Wrapper ── */
  .campus-slider-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #FFFADB 0%, rgba(255, 255, 255, 0) 53.67%);
  }

  /* ── Header Row (inside single section) ── */
  .campus-header {
    padding: 40px 0px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .header-text {
    max-width: 1151px;
  }


  .header-text h2{
    margin-bottom: 0;
  }
  .section-heading .subtitle-inline {
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #535353;
  }

  .header-desc {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #535353;
    max-width: 1139px;
  }

  /* ── Arrows ── */
  .campus-header .slider-arrows {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
    padding-top: 4px;
  }

  .campus-header .swiper-btn-prev,
  .campus-header .swiper-btn-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: url(../images/left.svg) no-repeat center center;
    background-size: contain;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 2px 10px rgba(200,150,62,0.35);
  }
  .campus-header .swiper-btn-next{
    transform: rotate(180deg);
  }

  /* ── Swiper Area ── */
  .campus-header .slider-wrapper {
    width: 100%;
    height: 74vh;
    min-height: 460px;
    background: #111;
  }

  .campus-swiper {
    width: 100%;
    height: 100%;
  }

   .campus-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
  }

  .slide-placeholder {
    width: 100%;
    height: 100%;
  }

  .slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Bottom gradient overlay */
  .campus-swiper .swiper-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.22) 100%);
    pointer-events: none;
    z-index: 1;
  }

  /* ── Slide Content Card ── */
  .slide-card {
    position: absolute;
    top: 32px;
    right: 5%;
    max-width: 560px;
    width: calc(100% - 40px);
    background: rgba(0, 0, 0, 0.87);
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    padding: 20px 30px;
    color: #FFFFFF;
    z-index: 10;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transform: translateY(12px);
    opacity: 0;
    transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
  }

  .swiper-slide-active .slide-card {
    opacity: 1;
    transform: translateY(0);
  }

  .slide-card h3 {
    font-weight: 600;
    font-size: 28px;
    line-height: 150%;
    letter-spacing: 0%;
    margin-bottom: 10px;
  }

  .slide-card p {
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    color: #FFFFFF;
  }

  /* ── Pagination ── */
  .campus-swiper .swiper-pagination {
    bottom: 20px;
  }

  .campus-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
    transition: background 0.3s, transform 0.3s;
  }

  .campus-swiper .swiper-pagination-bullet-active {
    background: var(--gold);
    transform: scale(1.35);
  }


    /* ── MOBILE SWIPER OVERRIDES (below 991px) ── */
@media (max-width: 991px) {

    .stats-wrapper {
        display: block;
        padding: 14px 0 40px;
        overflow: hidden;
    }

    .stats-wrapper.swiper-mode {
        display: block;
        overflow: hidden;
        padding-bottom: 40px;
    }

    .stats-wrapper.swiper-mode .swiper {
        width: 100%;
        overflow: hidden;
    }

    .stats-wrapper.swiper-mode .swiper-wrapper {
        display: flex;
        flex-wrap: nowrap;
    }

    .stats-wrapper.swiper-mode .swiper-slide {
        flex-shrink: 0;
        width: 260px !important;
        height: auto;
    }

    .stats-wrapper.swiper-mode .stat-card {
        flex: unset;
        width: 100%;
        margin: 0;
    }

}


 /* ─────────────────────────────────────────
     SECTION
  ───────────────────────────────────────── */
  .admission-section {
    position: relative;
    width: 100%;
    padding: 60px 0px 60px;
    background-image: url('../images/recruiters_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }

  .steps-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
 
  /* ─────────────────────────────────────────
     STEP UNIT — column: number + box stacked
  ───────────────────────────────────────── */
  .step-unit {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;

  }
 
  /* ─────────────────────────────────────────
     NUMBER ROW — number + arrow side by side
  ───────────────────────────────────────── */
  .step-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
  }
 
  .step-number {
    font-weight: 700;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    flex: 1;
  }
 
  /* ─────────────────────────────────────────
     ARROW — between step-units, sits in
     the number row of every unit except last
  ───────────────────────────────────────── */
  .step-arrow {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background-image: url('../images/arrow-sm.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
  }
 
  /* Fallback › if SVG not found */

 
  /* No arrow after last step */
  .step-unit:last-child .step-arrow {
    display: none;
  }
 
  /* ─────────────────────────────────────────
     BOX
  ───────────────────────────────────────── */
  .step-box {
    width: 100%;
    background: linear-gradient(360deg, #91162A -25.58%, #550408 100%);
    border-radius: 10px;
    padding: 22px 14px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-color 0.25s, transform 0.25s;
    min-height: 344px;
  }
 
  .step-box:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
  }
 
  /* ─────────────────────────────────────────
     ICON CIRCLE
  ───────────────────────────────────────── */
  .step-icon {
    width: 82px;
    height: 82px;
    margin-bottom: 16px;
    flex-shrink: 0;
    overflow: hidden;
  }
 
  .step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
  }
 
  .step-icon svg {
    width: 40px;
    height: 40px;
  }
 
  /* ─────────────────────────────────────────
     BOX HEADING
  ───────────────────────────────────────── */
  .step-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0;
    text-align: center;
    color: var(--white);
    margin-bottom: 20px;
  }
 
  /* ─────────────────────────────────────────
     BOX CONTENT
  ───────────────────────────────────────── */
  .step-desc {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0;
    text-align: center;
    color: #FFFFFF;
  }
 

  .testi-section {
    position: relative;
    width: 100%;
    padding: 0;
    background-image: url('../images/testimonail_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }
 
  .testi-inner {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
  }
 
  /* ── Heading ── */
  .testi-stage .section-heading {
    position: relative;
    z-index: 999;
    font-size: 32px;
  }
 
  /* ═══════════════════════════════════════════
     LAYOUT SHELL
     Fixed gold column sits behind everything;
     the slider floats on top.
  ═══════════════════════════════════════════ */
  .testi-stage {
    position: relative;
    gap: 0;
    padding: 60px 0 20px;
  }
 
  /* ── FIXED GOLD COLUMN — never moves ── */
  .testi-gold-column {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 558px;
    width: 60%;
    /* top: photo-centre - some px; bottom: enough for name block */
    top: 0px;          /* aligns with centre of photo circle    */
    bottom: 0;
    background: #D49E38;
    border-radius: 0 0;
    z-index: 0;
    pointer-events: none;
  }
 
  /* ── Prev / Next ── */
  .testi-btn {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: url(../images/left.svg) no-repeat center center;
    background-size: contain;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.14);
    transition: background 0.2s, transform 0.15s;
    z-index: 10;
    left: 0;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
  }
  #testiNext{
    background-image: url(../images/right.svg);
    right: 0;
    left: auto;
  }

  /* ── Slider viewport ── */
  .testi-viewport {
    flex: 1;
    overflow: hidden;
    margin: 0 20px;
    /* must be tall enough for photo + card + name block */
    min-height: 420px;
    position: relative;
    z-index: 1;
  }
 
  /* ── Each slide ── */
  .testi-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    width: 100%;
    top: 0; left: 0;
 
    /* hidden by default */
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
 
  .testi-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative; /* only active takes layout space */
  }
 
  /* ── Photo ── */
  .testi-photo-wrap {
    position: relative;
    z-index: 3;
    margin-bottom: -50px; /* overlap card */
  }
 
  .testi-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    box-shadow: 0px 4px 4px 0px #00000040;
    background: #FFFFFF;
  }
 
  /* ── White quote card ── */
  .testi-card {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 12px;
    padding: 64px 48px 40px;
    box-shadow: 0 4px 28px rgba(0,0,0,0.09);
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
  }
 
  .testi-quote {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #000000;
    text-align: center;
  }
 
  /* ── Name block — bottom gold strip ── */
  .testi-name-block {
    position: relative;
    z-index: 2;
    padding: 22px 48px 28px;
    text-align: center;
    margin-top: 0;
    width: 100%;
    max-width: 558px;
    border-radius: 0 0 8px 8px;
  }
 
  .testi-name {
    font-weight: 600;
    font-size: 28px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 4px;
    color: #FFFFFF;
  }
 
  .testi-role {
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 40px;
  }
 
  .testi-company {
    display: inline-block;
    background: #1a4fa3;
    padding: 6px 16px;
    border-radius: 4px;
  }
 
  .testi-company img { height: 22px; display: block; }
 
  .testi-company-text {
    font-weight: 700;
    font-size: 0.85rem;
    color: #ffffff;
    letter-spacing: 0.04em;
  }
  .testi-company-text span { font-weight: 400; }
 
  /* ── Dots ── */
  .testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
  }
 
  .testi-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.18);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.2s;
  }
  .testi-dot.active {
    background: #D49E38;
    transform: scale(1.35);
  }
 
.edge-section{
    background: url(../images/Harvard_bg_2.webp) no-repeat bottom center, url(../images/Harvard_bg_1.webp) no-repeat top center;
    background-size: auto 414px, cover;
    padding: 60px 0 414px;
}
.edge-block-row {
    max-width: 1430px;
    margin: 40px auto 0;
    display: flex;
    gap: 40px;
}

.edge-block {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    text-transform: capitalize;
}

.edge-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    box-shadow: 0px 4px 24px 0px #00000014;
    border-radius: 9999px;
}
.edge-content-block{
    max-width: 1140px;
    margin: 0 auto;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
}

.facilities-section{
    background: linear-gradient(358.71deg, #F4E4D4 1.11%, #FFFFFF 113.2%);
    padding: 60px 0 52px;
}
.facilities-section .section-heading{
    margin-bottom: 40px;
}
.campus-grid{
  display:grid;
  /* 6 columns visually, but 12 sub-columns for 0.5-column spans */
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 254px);
  gap: 20px;
  max-width: 1720px;
  margin: 0 auto;
}

.g-cell{ overflow:hidden; }
.g-cell img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  object-position: top center;
}

/* Row 1 */
.cell-1{ grid-column: 1 / 3;  grid-row: 1; }      /* col 1 */
.cell-2{ grid-column: 3 / 7;  grid-row: 1; }      /* col 2-3 */
.cell-3{ grid-column: 7 / 11; grid-row: 1 / 3; }  /* col 4-5 (tall) */
.cell-6{ grid-column: 11 / 13; grid-row: 1; }     /* col 6 (football) */

/* Row 2-3 left tall */
.cell-4{ grid-column: 1 / 5;  grid-row: 2 / 4; }  /* col 1-2 (tall) */

/* Row 2 middle */
.cell-5{ grid-column: 5 / 7;  grid-row: 2; }      /* col 3 */

/* Row 2-3 right tall */
.cell-7{ grid-column: 11 / 13; grid-row: 2 / 4; } /* col 6 (tall) */

/* Row 3: two images, each 1.5 columns (3 sub-cols) => fills the blank space */
.cell-8{ grid-column: 5 / 8;  grid-row: 3; }      /* 1.5 cols */
.cell-9{ grid-column: 8 / 11; grid-row: 3; }      /* 1.5 cols */

  /* bottom-section Css */

    .bottom-section{
        background: url('../images/bottomSeection.webp') center center / cover no-repeat;
        padding: 52px 0 52px;
        text-align: center;
    }
    .bottom-section h3{
        font-weight: 800;
        font-size: 52px;
        line-height: 150%;
        letter-spacing: 0%;
        text-align: center;
        background: linear-gradient(180deg, #46262B 0%, #971B35 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 16px;
    }
    .bottom-section p{
        font-weight: 700;
        font-style: Italic;
        font-size: 32px;
        line-height: 150%;
        letter-spacing: 0%;
        text-align: center;
        margin-bottom: 16px;
    }
    .bottom-section p.universityName{
        font-weight: 700;
        font-style: Bold;
        font-size: 28px;
        line-height: 150%;
        letter-spacing: 0%;
        text-align: center;
        font-style: unset;
        margin-bottom: 16px;
    }
    .bottom-section p.universityName span{
        color: #9E1C35;
    }

    footer{
        background-color: #000000;
        padding: 18px 0;
    }
    footer p{
        font-weight: 400;
        font-style: Regular;
        font-size: 18px;
        line-height: 135%;
        color: #FFFFFF;
        letter-spacing: 0%;
        text-align: center;
    }
/* ── 1600px ── */

#mobile-accordion-wrapper {
  display: none;
}
@media (max-width: 1600px) {
  .container { width: calc(100% - 40px); }
  .campus-grid { grid-template-rows: repeat(3, 220px); }
  .recruiter-card img, .collab-card img{
    height: 130px;
  }
}

/* ── 1440px ── */
@media (max-width: 1440px) {
    header .header-logo img{
        height: 80px;
    }
  .section-heading { font-size: 34px; }
  .campus-grid { grid-template-rows: repeat(3, 200px); }
  .step-box { min-height: 300px; }

    .recruiter-card, .collab-card {
        height: 120px;
    }

    .recruiter-card img , .collab-card img{
        height: 120px;
    }
    .step-number{
        font-size: 40px;
    }
    .step-title{
        font-size: 18px;
    }
     .step-desc{
        font-size: 16px;
     }
    .step-icon{
        width: 60px;
        height: 60px;
    }
    .edge-block{
      font-size: 18px;
    }
    .formWidget{
      top: 20%
    }
}   

/* ── 1280px ── */
@media (max-width: 1280px) {
  .section-heading { font-size: 30px; }
  .leftSideContent { max-width: 420px; padding: 90px 0 90px;}
  .leftSideContent .eyebrow{
    font-size: 24px;
    margin-bottom: 30px;
  }
  .formWidget{
      top: 15%
  }
  .leftSideContent .universityName{
    margin-bottom: 40px;
  }
  .leftSideContent .mainHeading{
    font-size: 42px;
  }
  .step-number { font-size: 48px; }
  .step-title  { font-size: 17px; }
  .step-desc   { font-size: 16px; }
  .step-box    { min-height: 280px; padding: 18px 12px 22px; }
  .campus-grid { grid-template-rows: repeat(3, 180px); }
  .testi-card  { padding: 64px 32px 32px; }
     .recruiter-card, .collab-card {
        height: 100px;
    }

    .recruiter-card img , .collab-card img{
        height: 100px;
    }
    .steps-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 14px 10px
    };
}

/* ── 991px ── */
@media (max-width: 991px) {
  .section-heading { font-size: 26px; }
  .section-sm-heading { font-size: 26px; }
  .btn-primary, .btn-secondary { font-size: 18px; }
  .step-number { font-size: 40px; }
  .step-title  { font-size: 14px; }
  .step-desc   { font-size: 13px; }
  .step-icon   { width: 60px; height: 60px; }
  .step-box    { min-height: auto; padding: 16px 10px 20px; }
  .steps-wrapper { gap: 10px; }
  .campus-grid { grid-template-rows: repeat(3, 160px); gap: 8px; }
  .slide-card h3 { font-size: 20px; }
  .slide-card p  { font-size: 15px; }
  .testi-card    { padding: 64px 24px 28px; }
  .testi-name    { font-size: 22px; }
  .testi-quote   { font-size: 16px; }
  .edge-block-row { gap: 24px; }
  .bottom-section h3 { font-size: 38px; }
  .bottom-section p  { font-size: 24px; }


    /* Form CSS */
  .formWidget h2{
    font-size: 16px;
  }
  .formWidget{
      position: unset;
      margin: 30px auto;
  }
}

/* ── 768px ── */
@media (max-width: 768px) {
  body{
    font-size: 16px;
  }
  .section-heading { font-size: 22px; }
  .banner-section {
    background: url(../images/banner_bg_mb.webp) center bottom no-repeat;
    background-size: cover;
    padding-bottom: 292px;
  }
  .btn-secondary{
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: block;
    border-radius: 0;
    padding: 13px;
    font-weight: 800;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
  }
  .program-wrapper{
    padding-top: 20px;
  }
  .banner-section::before{
    width: 100%;
    height: 60%;
    background: linear-gradient(343.33deg, rgba(255, 255, 255, 0) 15.77%, rgba(255, 238, 213, 0.8) 56.43%),linear-gradient(343.33deg, rgba(255, 255, 255, 0) 15.77%, rgba(255, 238, 213, 0.8) 56.43%),linear-gradient(343.33deg, rgba(255, 255, 255, 0) 15.77%, rgba(255, 238, 213, 0.8) 56.43%), linear-gradient(343.33deg, rgba(255, 255, 255, 0) 15.77%, rgba(255, 238, 213, 0.8) 56.43%);
  }
  .banner-section::after{
    display: none;
  }
  .leftSideContent{
    width: 100%;
    padding: 40px 0 0;
  }

  .leftSideContent .mainHeading{
    font-size: 28px;
  }
  .leftSideContent .eyebrow{
    font-size: 18px;
  }
  .leftSideContent .universityName{
    margin-bottom: 20px;
  }

  .stats-wrapper .swiper-pagination{
    display: none;
  }

  .university-section::after{
    display: none;
  }
  .university-section{
    padding: 40px 0 28px;
  }
  .left-content-wrapper{
    width: 100%;
  }

  .left-content-wrapper p{
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0%;
  }
  .left-content-wrapper{
    background: url(../images/uniIcon_mb.webp) no-repeat center bottom;
    background-size: 100% auto;
    padding-bottom: 290px;
  }
  .left-content-wrapper-two h3{
    font-size: 16px;
    line-height: 150%;
  }
  .accred-label{
    font-size: 14px;
  }
  .campus-header { flex-wrap: wrap; }
  .slider-wrapper { height: 56vh; }
  .slide-card h3 { font-size: 16px; }
  .slide-card p  { font-size: 13px; }
  .steps-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 10px;
  }
  .step-unit { flex: unset; }
  .step-unit:nth-child(even) .step-arrow { display: none; }
  .step-number { font-size: 42px; }
  .step-title  { font-size: 15px; }
  .step-desc   { font-size: 13px; }
  .step-box    { min-height: auto; padding: 16px 10px 18px; }
  .campus-grid{
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    grid-auto-rows: clamp(140px, 30vw, 200px); /* base tile height */
    gap: 14px;
    padding: 0 16px;
  }


  .cell-1{ grid-column: 1;     grid-row: 1; }        /* top-left */
  .cell-7{ grid-column: 2;     grid-row: 1 / 3; }    /* tall top-right */
  .cell-3{ grid-column: 1;     grid-row: 2; }        /* left under cell-1 */

  .cell-4{ grid-column: 1;     grid-row: 3 / 5; }    /* tall bottom-left */
  .cell-5{ grid-column: 2;     grid-row: 3; }        /* right */
  .cell-9{ grid-column: 2;     grid-row: 4; }        /* right */

  .cell-6{ grid-column: 1;     grid-row: 5; }        /* next row left */
  .cell-8{ grid-column: 2;     grid-row: 5; }        /* next row right */

  .cell-2{ grid-column: 1 / -1; grid-row: 6; }       /* full-width last */





  .testi-card { padding: 56px 16px 24px; }
  .testi-quote { font-size: 14px; }
  .testi-name  { font-size: 18px; }
  .testi-role  { font-size: 15px; margin-bottom: 20px; }
  .testi-gold-column { width: 80%; }
  .testi-btn { width: 36px; height: 36px; }
  .edge-block-row { flex-direction: column; gap: 32px; }
  .edge-block{
    font-size: 14px;
    font-weight: 600;
  }
  .bottom-section h3 { font-size: 28px; }
  .bottom-section p  { font-size: 18px; }
  .bottom-section p.universityName { font-size: 18px; }
  footer p { font-size: 14px; }
  /* ── Hide original containers on mobile as elements are re-ordered ── */
  .program-tabs,
  .program-content {
    display: none !important; /* Hide these containers on mobile */
  }
 .program-tabs {
    display: none !important;
  }

  .program-content {
    display: none !important;
  }

  /* Show mobile accordion wrapper */
  #mobile-accordion-wrapper {
    display: block;
    margin-top: 20px;
  }

  /* ── Accordion Button ── */
  #mobile-accordion-wrapper .tab-btn {
    width: 100%;
    text-align: center;
    border-radius: 50px;
    padding: 16px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    color: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    position: relative;
    margin-bottom: 12px;
    gap: 10px;
    cursor: pointer;
    outline: none;
    z-index: 2;
  }

  /* Active accordion button */
  #mobile-accordion-wrapper .tab-btn.active {
    background: linear-gradient(82.8deg, #46262B -33.59%, #971B35 66.52%);
    color: #ffffff;
    border-color: transparent;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(151, 27, 53, 0.3);
    margin-bottom: 0;
    z-index: 2;
  }

  /* Chevron */
  #mobile-accordion-wrapper .tab-btn::after {
    content: '';
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f0f0f0 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat center center;
    background-size: 14px;
    transition: transform 0.3s, background 0.25s;
  }

  #mobile-accordion-wrapper .tab-btn.active::after {
    background-color: rgba(255, 255, 255, 0.25);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    transform: rotate(180deg);
  }

  /* ── Accordion Panel (hidden by default) ── */
  #mobile-accordion-wrapper .tab-panel {
    display: none;
  }

  /* Accordion panel open */
  #mobile-accordion-wrapper .tab-panel.acc-mobile-open {
    display: block !important;
    background: #ffffff;
    border: 1px solid #f0e8ea;
    border-top: none;
    border-radius: 0 0 20px 20px;
    padding: 16px 20px 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    margin-top: -16px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
  }

  /* Single column list on mobile */
  #mobile-accordion-wrapper .tab-panel .program-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  #mobile-accordion-wrapper .program-list li {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    padding: 12px 0 12px 32px;
    border-bottom: 1px solid #f2f2f2;
    line-height: 1.5;
    position: relative;
  }

  #mobile-accordion-wrapper .program-list li:last-child {
    border-bottom: none;
  }

  #mobile-accordion-wrapper .program-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L4 6v5c0 5.25 3.4 10.15 8 11.25C16.6 21.15 20 16.25 20 11V6l-8-4z' fill='%23971B35'/%3E%3Cpath d='M10 14l-2.5-2.5 1.41-1.41L10 11.17l4.59-4.58L16 8l-6 6z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
  }
  .mob-panel {
    display: none;
  }

  .mob-panel.acc-mobile-open {
    display: block;
  }
  .campus-slider-section{
      position: relative;
      padding-bottom: 50px;
  }

  .slider-arrows{
    position: absolute;
    bottom: 5px;
    width: 100%;
    justify-content: center;
    left: 0;
  }
  .campus-header .swiper-btn-prev, .campus-header .swiper-btn-next{
    width: 40px;
    height: 40px;
  }
  .slide-card{
    bottom: 14px;
    width: calc(100% - 50px);
    left: 25px;;
    right: auto;
    top: auto;
    max-width: unset; padding: 14px 16px;
    z-index: 999;
  }
  .swiper-pagination-clickable .swiper-pagination-bullet{
    display: none;
  }
  .testi-stage .section-heading{
    font-size: 24px;
  }
  .edge-icon {
        width: 40px;
        height: 40px;
    }
}

/* ── 420px ── */
@media (max-width: 420px) {
  body{
    font-size: 14px;
    font-weight: 400;
  }
  .section-heading { font-size: 24px; }
  .section-sm-heading { font-size: 18px; }
  .btn-primary, .btn-secondary { font-size: 15px; padding: 10px 18px; }
  header .container{
    justify-content: center;
    align-items: center;
    padding: 10px 0;
  }
  header .header-logo{
    text-align: center;
    margin: 0 auto;
    line-height: 0;
  }
  header .header-logo img { height: 40px; }
  .stats-wrapper.swiper-mode{
    padding-bottom: 15px;
  }
  .steps-wrapper { gap: 10px 8px; }
  .step-number { font-size: 34px; }
  .step-title  { font-size: 13px; }
  .step-desc   { font-size: 12px; }

  .step-icon   { width: 52px; height: 52px; }
  .step-box    { padding: 12px 8px 16px; border-radius: 8px; }
  .slide-card  { padding: 10px 12px; }
  .slide-card h3 { font-size: 13px; }
  .slide-card p  { font-size: 11px; }
  .testi-photo { width: 130px; height: 130px; }
  .testi-card  { padding: 44px 12px 20px; }
  .testi-quote { font-size: 13px; }
  .testi-name  { font-size: 16px; }
  .testi-role  { font-size: 13px; margin-bottom: 14px; }
  .edge-section{
    background-size: auto 195px, cover;
    padding: 60px 0 200px;
  }
  .bottom-section h3 { font-size: 22px; }
  .bottom-section p  { font-size: 15px; }
  .recruiter-card img, .collab-card img{
      height: 80px;
  }
  .header-desc{
    font-size: 14px;
  }
  .section-heading .subtitle-inline{
    font-size: 18px;
  }
}



.thankyouSection {
    min-height: 81.5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
}
.thankyouWrap {
    max-width: 700px;
    margin: 0 auto;
}
.thankyouTitle {
    font-size: 42px;
    font-weight: 700;
    color: #9E1C35;
    margin-bottom: 20px;
}
.thankyouDesc {
    font-size: 20px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
}
@media(max-width:1024px) {

    .thankyouTitle {
        font-size: 36px;
    }

    .thankyouDesc {
        font-size: 18px;
    }

}
@media(max-width:768px) {

    .thankyouSection {
        min-height: 70vh;
        padding: 40px 20px;
    }

    .thankyouTitle {
        font-size: 30px;
    }

    .thankyouDesc {
        font-size: 16px;
    }
}
@media(max-width:580px) {

    .thankyouTitle {
        font-size: 26px;
    }

    .thankyouDesc {
        font-size: 15px;
    }

}
@media(max-width:450px) {

    .thankyouTitle {
        font-size: 24px;
    }

    .thankyouDesc {
        font-size: 14px;
    }

}