/* ============ RESET & BASE ============ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}
:root {
  --navy: #0a2756;
  --navy-dark: #061a3d;
  --red: #e8202a;
  --red-dark: #c41820;
  --bg: #f5f7fb;
  --white: #fff;
  --text: #1a2942;
  --muted: #6b7a99;
  --border: #e3e8f0;
  --navy: #123B7A;
  --deep-navy: #082B5C;
  --blue: #1E55A5;
  --gold: #F4B400;
  --light-gold: #FFD45A;
  --white: #ffffff;
  --shadow-sm: 0 4px 12px rgba(10, 39, 86, .08);
  --shadow-md: 0 12px 32px rgba(10, 39, 86, .12);
  --shadow-lg: 0 30px 60px rgba(10, 39, 86, .25);
  --radius: 14px;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden
}
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  width: 100%;
  max-width: 100vw
}


.testimonial-section {
  padding: 55px 0;
  background: #f7f9fc;
}

.testimonial-section .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.section-heading {
  text-align: center;
  margin-bottom: 35px;
}

.section-heading h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: #242d8c;
}

.heading-line {
  width: 55px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 5px;
  background: #f15a29;
}


/* ================= GRID ================= */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}


/* ================= CARD ================= */

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all .3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
}


/* Image */
.testimonial-img {
  height: 270px;
  overflow: hidden;
  background: #eee;
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.testimonial-card:hover .testimonial-img img {
  transform: scale(1.05);
}


/* Info */
.testimonial-info {
  min-height: 85px;
  padding: 15px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.testimonial-info h3 {
  margin: 0 0 5px;
  font-size: 17px;
  color: #222;
  font-weight: 700;
}

.testimonial-info p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #777;
}

.arrow {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #242d8c;
  color: #fff;
  font-size: 20px;
  transition: .3s;
}

.testimonial-card:hover .arrow {
  background: #f15a29;
  transform: translateX(3px);
}


/* ================= MODAL ================= */

.testimonial-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  inset: 0;
  background: rgba(0,0,0,.72);
  padding: 20px;
  align-items: center;
  justify-content: center;
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  padding: 35px;
  box-sizing: border-box;
  animation: modalOpen .25s ease;
}

@keyframes modalOpen {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* Close */
.modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  width: 35px;
  height: 35px;
  border: 0;
  border-radius: 50%;
  background: #f2f2f2;
  color: #222;
  font-size: 25px;
  line-height: 30px;
  cursor: pointer;
  z-index: 2;
}

.modal-close:hover {
  background: #f15a29;
  color: #fff;
}


/* Modal Profile */
.modal-profile {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 40px;
}

.modal-profile img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #eef0ff;
}

.modal-profile h2 {
  margin: 0 0 5px;
  color: #242d8c;
  font-size: 25px;
}

.modal-profile p {
  margin: 0;
  color: #777;
  font-size: 14px;
}


/* Quote */
.quote-icon {
  font-size: 70px;
  line-height: 50px;
  color: #f15a29;
  font-family: Georgia, serif;
  margin-top: 25px;
}

.testimonial-text {
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-img {
    height: 300px;
  }

}

@media (max-width: 575px) {

  .testimonial-section {
    padding: 40px 0;
  }

  .testimonial-section .container {
    width: 92%;
  }

  .section-heading h2 {
    font-size: 26px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .testimonial-img {
    height: 210px;
  }

  .testimonial-info {
    min-height: 75px;
    padding: 10px;
  }

  .testimonial-info h3 {
    font-size: 14px;
  }

  .testimonial-info p {
    font-size: 11px;
  }

  .arrow {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .modal-box {
    padding: 25px 20px;
  }

  .modal-profile img {
    width: 70px;
    height: 70px;
  }

  .modal-profile h2 {
    font-size: 20px;
  }

  .testimonial-text {
    font-size: 14px;
    line-height: 1.7;
  }

}


.ig-gallery-section {
    width: 100%;
    padding: 35px 20px;
    overflow: hidden;
    background: #fff;
}

.ig-gallery-title {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    color: #172033;
    margin: 0 0 28px;
}

.ig-gallery-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.ig-gallery-viewport {
    width: 100%;
    overflow: hidden;
}

.ig-gallery-track {
    display: flex;
    transition: transform .5s ease;
}

.ig-gallery-item {
    flex: 0 0 33.333333%;
    padding: 0 12px;
}

.ig-gallery-item img {
    display: block;
    width: 100%;
    height: 165px;
    object-fit: cover;
    border-radius: 8px;
}

/* Arrows */

.ig-gallery-prev,
.ig-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #172033;
    box-shadow: 0 3px 15px rgba(0,0,0,.18);
    font-size: 20px;
    line-height: 38px;
    padding: 0;
    cursor: pointer;
    z-index: 10;
}

.ig-gallery-prev {
    left: -18px;
}

.ig-gallery-next {
    right: -18px;
}

.ig-gallery-prev:hover,
.ig-gallery-next:hover {
    background: #172033;
    color: #fff;
}

/* Dots */

.ig-gallery-dots {
    text-align: center;
    margin-top: 18px;
}

.ig-gallery-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: .3s;
}

.ig-gallery-dot.active {
    width: 24px;
    border-radius: 10px;
    background: #172033;
}


/* Tablet */

@media(max-width: 900px) {

    .ig-gallery-item {
        flex: 0 0 50%;
    }

    .ig-gallery-item img {
        height: 180px;
    }

    .ig-gallery-prev {
        left: 5px;
    }

    .ig-gallery-next {
        right: 5px;
    }
}


/* Mobile */

@media(max-width: 600px) {

    .ig-gallery-section {
        padding: 25px 12px;
    }

    .ig-gallery-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .ig-gallery-item {
        flex: 0 0 100%;
        padding: 0 5px;
    }

    .ig-gallery-item img {
        height: 220px;
    }

    .ig-gallery-prev,
    .ig-gallery-next {
        width: 34px;
        height: 34px;
        line-height: 34px;
        font-size: 17px;
    }

}

/* ================================
   FACILITIES SECTION
================================ */

.facilities-section {
  width: 100%;
  background: #f9f8f8;
  padding: 42px 20px 18px;
  box-sizing: border-box;
}

.facilities-container {
  max-width: 1100px;
  margin: 0 auto;
}

.facilities-title {
  margin: 0 0 32px;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
  color: #111827;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.facility-card {
  background: #fff;
  border: 1px solid #222;
  border-radius: 10px;
  overflow: hidden;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.facility-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.facility-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 10px 16px;
  box-sizing: border-box;
}

.facility-content p {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #111;
}

.facility-content strong {
  font-weight: 700;
}


/* ================================
   TABLET
================================ */

@media (max-width: 900px) {

  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .facility-card {
    min-height: 250px;
  }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 576px) {

  .facilities-section {
    padding: 32px 15px 20px;
  }

  .facilities-title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .facilities-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .facility-card {
    min-height: auto;
  }

  .facility-card img {
    height: 180px;
  }

  .facility-content {
    min-height: 90px;
    padding: 15px 10px;
  }

  .facility-content p {
    font-size: 14px;
  }

}

.recruiters-section {
    padding: 55px 20px;
    background: #f7f9fc;
}

.recruiters-container {
    max-width: 1200px;
    margin: auto;
}


/* =========================================
   SECTION HEADING
========================================= */

.section-head {
    text-align: center;
    margin-bottom: 25px;
}

.section-head .small-title {
    display: block;
    color: #242d8c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.section-head h2 {
    margin: 0 0 8px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: #172033;
}

.section-head p {
    margin: 0;
    color: #687386;
    font-size: 14px;
}


/* =========================================
   CATEGORY TABS
========================================= */

.recruiter-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 28px 0 30px;
}

.recruiter-tabs button {
    border: 1px solid #dfe4ec;
    background: #ffffff;
    color: #596273;

    padding: 9px 15px;

    border-radius: 30px;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.25s ease;
}

.recruiter-tabs button:hover {
    color: #242d8c;
    border-color: #242d8c;
}

.recruiter-tabs button.active {
    background: #242d8c;
    border-color: #242d8c;
    color: #ffffff;
}


/* =========================================
   SLIDER AREA
========================================= */

.recruiter-slider-wrap {
    position: relative;
    padding: 0 48px;
}

.recruiter-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;

    overflow: hidden;

    min-height: 120px;
}


/* =========================================
   LOGO CARD
========================================= */

.recruiter-card {
    height: 120px;

    background: #ffffff;

    border: 1px solid #e7eaf0;

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 15px;

    box-shadow: 0 5px 20px rgba(20, 30, 60, 0.04);

    animation: logoSlide 0.4s ease;
}

.recruiter-card img {
    width: 150px;
    height: 65px;

    object-fit: contain;

    display: block;

    transition: transform 0.25s ease;
}

.recruiter-card:hover img {
    transform: scale(1.05);
}


/* =========================================
   SLIDER ANIMATION
========================================= */

@keyframes logoSlide {

    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* =========================================
   SLIDER ARROWS
========================================= */

.slider-btn {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 36px;
    height: 36px;

    border: none;

    border-radius: 50%;

    background: #242d8c;

    color: #ffffff;

    font-size: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 5;

    transition: all 0.25s ease;
}

.slider-btn:hover {
    background: #161e70;
    transform: translateY(-50%) scale(1.08);
}

.slider-btn.prev {
    left: 0;
}

.slider-btn.next {
    right: 0;
}


/* =========================================
   SLIDER DOTS
========================================= */

.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 6px;

    margin-top: 20px;
}

.slider-dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #d3d8e2;

    cursor: pointer;

    transition: all 0.25s ease;
}

.slider-dots span.active {
    width: 22px;

    border-radius: 20px;

    background: #242d8c;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .recruiter-slider {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .recruiters-section {
        padding: 40px 15px;
    }

    .section-head h2 {
        font-size: 26px;
    }

    .section-head p {
        font-size: 13px;
        line-height: 1.5;
    }


    /* Horizontal category scroll */

    .recruiter-tabs {
        justify-content: flex-start;

        flex-wrap: nowrap;

        overflow-x: auto;

        padding-bottom: 7px;

        margin-bottom: 22px;

        scrollbar-width: none;
    }

    .recruiter-tabs::-webkit-scrollbar {
        display: none;
    }

    .recruiter-tabs button {
        flex-shrink: 0;

        white-space: nowrap;
    }


    /* Two logos */

    .recruiter-slider-wrap {
        padding: 0 38px;
    }

    .recruiter-slider {
        grid-template-columns: repeat(2, 1fr);

        gap: 10px;
    }

    .recruiter-card {
        height: 95px;

        padding: 10px;

        border-radius: 10px;
    }

    .recruiter-card img {
        width: 105px;
        height: 45px;
    }


    /* Smaller arrows */

    .slider-btn {
        width: 30px;
        height: 30px;

        font-size: 15px;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .recruiter-card {
        height: 85px;
    }

    .recruiter-card img {
        width: 90px;
        height: 40px;
    }

}


.fee-section {
  padding: 45px 20px;
  background: #f7f9fc;
  font-family: "Inter", Arial, sans-serif;
}

.fee-wrap {
  max-width: 1050px;
  margin: auto;
}

/* Heading */
.fee-head {
  text-align: center;
  margin-bottom: 28px;
}

.fee-head span {
  color: #f45a35;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.fee-head h2 {
  margin: 5px 0 0;
  color: #142f68;
  font-size: 28px;
  font-weight: 800;
}

/* Main Fees */
.fee-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.fee-box {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 25px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e3e8f0;
  box-shadow: 0 5px 18px rgba(20, 47, 104, .06);
}

.fee-box.general {
  border-left: 4px solid #183d83;
}

.fee-box.corporate {
  border-left: 4px solid #f45a35;
}

.fee-icon,
.hostel-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
}

.general .fee-icon {
  background: #eaf0ff;
}

.corporate .fee-icon {
  background: #fff0eb;
}

.fee-box p {
  margin: 0 0 5px;
  color: #53627a;
  font-size: 13px;
  font-weight: 600;
}

.fee-box h3 {
  margin: 0;
  color: #183d83;
  font-size: 32px;
  line-height: 1;
}

.corporate h3 {
  color: #f45a35;
}

.fee-box h3 small {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Hostel Heading */
.hostel-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 30px 0 15px;
}

.hostel-title:before,
.hostel-title:after {
  content: "";
  height: 1px;
  background: #d5dce8;
  flex: 1;
}

.hostel-title span {
  background: #183d83;
  color: #fff;
  padding: 8px 28px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

/* Hostel */
.hostel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.hostel-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 14px;
  background: #fff;
}

.hostel-box.year1 {
  border: 1px solid #d8e9d3;
  background: #f8fcf6;
}

.hostel-box.year2 {
  border: 1px solid #e3d7ef;
  background: #fbf8fe;
}

.year1 .hostel-icon {
  background: #e5f3e1;
}

.year2 .hostel-icon {
  background: #eee3f8;
}

.hostel-info p {
  margin: 0 0 2px;
  font-size: 13px;
  font-weight: 800;
  color: #438a42;
  text-transform: uppercase;
}

.year2 .hostel-info p {
  color: #7138a5;
}

.hostel-info h3 {
  margin: 0;
  font-size: 27px;
  color: #438a42;
}

.year2 .hostel-info h3 {
  color: #7138a5;
}

.hostel-info h3 small {
  font-size: 12px;
  text-transform: uppercase;
}

.hostel-info span {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  color: #5d6878;
}

/* Mobile */
@media (max-width: 650px) {

  .fee-section {
    padding: 30px 15px;
  }

  .fee-head h2 {
    font-size: 23px;
  }

  .fee-main-grid,
  .hostel-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fee-box {
    padding: 17px;
  }

  .fee-box h3 {
    font-size: 28px;
  }

  .hostel-title {
    margin: 22px 0 12px;
  }

  .hostel-box {
    padding: 15px;
  }

  .hostel-info h3 {
    font-size: 25px;
  }
}

 .ranking-section {
        width: 100%;
        padding: 30px 0 35px;
        background: #fff;
    }

    .ranking-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 15px;
    }

    /* =========================
       HEADER
    ========================= */

    .ranking-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 19px;
        gap: 20px;
    }

    .ranking-title {
        font-size: 24px;
        line-height: 1.2;
        font-weight: 500;
        color: #292985;
    }

    .ranking-badge {
        background: #302d89;
        color: #fff;
        padding: 11px 15px;
        border-radius: 4px;
        font-size: 14px;
        line-height: 18px;
        font-weight: 700;
        max-width: 309px;
        text-align: left;
    }

    /* =========================
       TABLE
    ========================= */

    .ranking-table-wrapper {
        width: 100%;
        overflow-x: auto;
    }

    .ranking-table {
        width: 100%;
        min-width: 700px;
        border-collapse: collapse;
        table-layout: fixed;
    }

    .ranking-table th,
    .ranking-table td {
        border-right: 1px dashed #d9d9d9;
        border-bottom: 1px dashed #d9d9d9;
        text-align: center;
        vertical-align: middle;
    }

    .ranking-table th:last-child,
    .ranking-table td:last-child {
        border-right: 1px solid #d9d9d9;
    }

    /* Header */

    .ranking-table thead th {
        height: 49px;
        background: #f3f5fa;
        color: #17176f;
        font-size: 16px;
        font-weight: 700;
        padding: 10px;
    }

    .ranking-table thead th:first-child {
        width: 150px;
    }

    /* Body */

    .ranking-table tbody td {
        height: 76px;
        font-size: 16px;
        color: #333;
        background: #fff;
    }

    /* Category column */

    .ranking-table tbody td:first-child {
        padding: 10px 15px;
    }

    .ranking-label {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 119px;
        min-height: 44px;
        margin: auto;
        padding: 8px 10px;
        background: #dd2528;
        color: #fff;
        border-radius: 5px;
        font-size: 15px;
        line-height: 18px;
        font-weight: 700;
    }

    /* Superscript */

    .ranking-number sup {
        font-size: 10px;
        top: -0.45em;
        position: relative;
        margin-left: 1px;
    }

    /* =========================
       RESPONSIVE
    ========================= */

    @media (max-width: 767px) {

        .ranking-section {
            padding: 25px 0 30px;
        }

        .ranking-container {
            padding: 0 12px;
        }

        .ranking-header {
            align-items: flex-start;
            flex-direction: column;
            margin-bottom: 18px;
            gap: 15px;
        }

        .ranking-title {
            font-size: 22px;
        }

        .ranking-badge {
            max-width: 100%;
            width: 100%;
            font-size: 13px;
            line-height: 17px;
        }

        .ranking-table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .ranking-table {
            min-width: 720px;
        }

        .ranking-table thead th {
            font-size: 14px;
            height: 48px;
            padding: 8px;
        }

        .ranking-table tbody td {
            font-size: 14px;
            height: 70px;
        }

        .ranking-label {
            width: 105px;
            min-height: 40px;
            font-size: 13px;
        }
    }

    @media (max-width: 480px) {

        .ranking-title {
            font-size: 20px;
        }

        .ranking-badge {
            font-size: 12px;
            padding: 10px 12px;
        }
    }








/* =========================================
   PROGRAMMES SECTION
========================================= */

.programmes-section {
    padding: 55px 20px 60px;
}

.programmes-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================
   HEADING
========================================= */

.section-heading {
    text-align: center;
    margin-bottom: 30px;
}

.section-heading h2 {
    margin: 0 0 22px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: #172b4d;
}

.programmes-badge {
    display: inline-block;
    padding: 11px 20px;
    border-radius: 10px;
    background: #ffd000;
    color: #172b4d;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,.08);
}

/* =========================================
   PROGRAMME GRID
========================================= */

.programmes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 30px;
}

/* =========================================
   PROGRAMME CARD
========================================= */

.programme-card {
    position: relative;
    min-height: 170px;
    padding: 25px 12px 20px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    overflow: hidden;

    background: linear-gradient(
        145deg,
        #503bc5 0%,
        #35248b 48%,
        #17102f 100%
    );

    box-shadow: 0 8px 18px rgba(28, 20, 67, .18);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transition: all .3s ease;
}

.programme-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 28px rgba(28, 20, 67, .28);
}

/* Decorative circle */

.programme-card:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    top: -55px;
    right: -45px;
    background: rgba(255,255,255,.08);
}

/* Number */

.programme-number {
    position: absolute;
    top: 10px;
    left: 12px;
    font-size: 11px;
    font-weight: 700;
    opacity: .65;
}

/* Icon */

.programme-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 7px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(255,255,255,.14);
    font-size: 18px;
}

/* Card Heading */

.programme-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 5px;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
}

/* Card Description */

.programme-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    min-height: 62px;
    font-size: 15px;
    line-height: 1.35;
    color: #f6f3ff;
}

/* =========================================
   FPM CARD
========================================= */

.fpm-card {
    border: 2px solid #ffd000;

    background:
        linear-gradient(
            145deg,
            #5b42d2,
            #33227f 55%,
            #160e2c
        );
}

.fpm-card h3 {
    color: #ffd000;
}

.seat-badge {
    position: absolute;
    bottom: 10px;

    padding: 4px 12px;
    border-radius: 20px;

    background: #ffd000;
    color: #172b4d;

    font-size: 12px;
    font-weight: 700;
}

/* =========================================
   ADMISSION PROCESS
========================================= */

.admission-process {
    padding: 25px 30px;

    background: #fff;
    border-radius: 14px;

    border: 1px solid #e8e5ef;

    box-shadow: 0 5px 20px rgba(0,0,0,.06);
}

.process-title {
    margin: 0 0 20px;

    color: #9c2874;
    font-size: 22px;
    font-weight: 700;
}

.process-title i {
    margin-right: 8px;
}

/* =========================================
   PROCESS LIST
========================================= */

.process-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
}

.process-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    color: #3d3d3d;
    font-size: 15px;
    line-height: 1.5;
}

.process-item strong {
    color: #282828;
}

.process-icon {
    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f5eaf2;
    color: #9c2874;

    font-size: 14px;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .programmes-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .programme-card {
        min-height: 165px;
    }

    .process-list {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .programmes-section {
        padding: 35px 15px 45px;
    }

    .section-heading h2 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .programmes-badge {
        font-size: 16px;
        padding: 10px 15px;
    }

    .programmes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .programme-card {
        min-height: 155px;
        padding: 24px 8px 18px;
        border-radius: 10px;
    }

    .programme-card h3 {
        font-size: 20px;
    }

    .programme-card p {
        font-size: 13px;
    }

    .programme-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    /* FPM takes full width */

    .fpm-card {
        grid-column: 1 / -1;
        min-height: 145px;
    }

    .fpm-card p {
        min-height: auto;
    }

    .admission-process {
        padding: 22px 17px;
    }

    .process-title {
        font-size: 19px;
    }

    .process-item {
        font-size: 14px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .programmes-grid {
        grid-template-columns: 1fr;
    }

    .fpm-card {
        grid-column: auto;
    }

    .programme-card {
        min-height: 140px;
    }

    .programmes-badge {
        font-size: 15px;
    }
}


.scholarship-strip {
    padding: 18px 20px;
    background: linear-gradient(90deg, #071f43, #0b3d73);
    font-family: Arial, sans-serif;
}

.scholarship-inner {
    max-width: 1150px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
}

.scholarship-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffd15c;
    color: #08284f;
    font-size: 21px;
}

.scholarship-title {
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
}

.scholarship-title span {
    display: block;
    margin-bottom: 3px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffd15c;
}

.scholarship-amount {
    margin-left: auto;
    display: flex;
    align-items: baseline;
    gap: 6px;
    white-space: nowrap;
}

.scholarship-amount strong {
    font-size: 28px;
    color: #ffd15c;
}

.scholarship-amount small {
    font-size: 13px;
    color: #fff;
}

.scholarship-divider {
    width: 1px;
    height: 35px;
    background: rgba(255,255,255,.3);
}

.scholarship-info {
    font-size: 14px;
    white-space: nowrap;
}

.scholarship-info i {
    color: #ffd15c;
    margin-right: 5px;
}

.scholarship-btn {
    padding: 10px 18px;
    border-radius: 5px;
    background: #ffd15c;
    color: #08284f;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: .3s;
}

.scholarship-btn:hover {
    background: #fff;
}

/* Mobile */
@media(max-width: 767px) {

    .scholarship-strip {
        padding: 15px;
    }

    .scholarship-inner {
        gap: 12px;
        flex-wrap: wrap;
    }

    .scholarship-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .scholarship-title {
        font-size: 16px;
        white-space: normal;
    }

    .scholarship-title span {
        font-size: 9px;
    }

    .scholarship-amount {
        width: 100%;
        margin-left: 54px;
        margin-top: -5px;
    }

    .scholarship-amount strong {
        font-size: 24px;
    }

    .scholarship-divider,
    .scholarship-info {
        display: none;
    }

    .scholarship-btn {
        margin-left: 0;
    }
}



.placement-section {
    padding: 60px 20px;
    background: #f6f8fb;
}

.placement-container {
    max-width: 1200px;
    margin: auto;
}

/* Heading */

.placement-heading {
    text-align: center;
    margin-bottom: 35px;
}

.placement-heading span {
    display: inline-block;
    color: #d39b18;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 7px;
}

.placement-heading h2 {
    margin: 0;
    font-size: 24px;
    color: #102b4e;
    font-weight: 800;
}

.placement-heading h2 strong {
    color: #33539e;
}

.placement-heading p {
    margin: 10px auto 0;
    color: #68778a;
    font-size: 14px;
}


/* ========================================
   STAT GRID
======================================== */

.placement-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}


/* ========================================
   CARD
======================================== */

.placement-card {
    position: relative;
    min-height: 205px;
    padding: 25px 18px;
    background: #fff;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e9ef;
    box-shadow: 0 8px 25px rgba(20, 45, 75, .07);
    overflow: hidden;
    transition: .3s ease;
}

.placement-card:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        #c51f2b,
        #e0a928
    );
}

.placement-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(20, 45, 75, .14);
}


/* Icon */

.placement-icon {
    width: 48px;
    height: 48px;
    margin: 5px auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fdf2df;
    color: #c89518;
    font-size: 20px;
}


/* Label */

.placement-label {
    font-size: 13px;
    color: #657386;
    font-weight: 600;
    margin-bottom: 8px;
}


/* Main Number */

.placement-value {
    font-size: 31px;
    line-height: 1;
    font-weight: 900;
    color: #102b4e;
}

.placement-value small {
    font-size: 13px;
    font-weight: 700;
    color: #c51f2b;
}


/* Previous Value */

.placement-old {
    margin-top: 10px;
    font-size: 11px;
    color: #8b96a5;
    text-decoration: line-through;
}


/* Improvement */

.placement-arrow {
    display: inline-block;
    margin-top: 7px;
    padding: 4px 8px;
    border-radius: 20px;
    background: #edf8f1;
    color: #26934c;
    font-size: 10px;
    font-weight: 700;
}

.placement-arrow i {
    margin-right: 3px;
}


/* New Recruiters */

.placement-new {
    margin-top: 10px;
    color: #c51f2b;
    font-size: 10px;
    font-weight: 700;
}

.placement-new i {
    margin-right: 3px;
}


/* Bottom Text */

.placement-bottom {
    margin-top: 11px;
    font-size: 10px;
    color: #7a8797;
    font-weight: 600;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

    .placement-stats {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {

    .placement-section {
        padding: 45px 15px;
    }

    .placement-heading h2 {
        font-size: 27px;
    }

    .placement-heading p {
        line-height: 1.5;
    }

    .placement-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .placement-card {
        min-height: 185px;
        padding: 20px 10px;
    }

    .placement-value {
        font-size: 27px;
    }

}

@media (max-width: 380px) {

    .placement-stats {
        grid-template-columns: 1fr;
    }

}





.swiper-slide img {border-radius: 10px;}

button#Apply {
background: linear-gradient(90deg, var(--navy), var(--blue));	
}

.hero-sub:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 75px;
    height: 4px;
    background: var(--gold);
    border-radius: 10px;
}


img {
  max-width: 100%;
  display: block
}
a {
  color: inherit;
  text-decoration: none
}
h1.hero-title span {
  color: #f8ba0b;
  font-weight: bold;
}
.no-strip {
  margin-top: 0px !important;
}
.orange-strip {
  color: white;
  background: #e95020;
  padding: 6px 0px;
  top: 0px;
  left: 0;
  position: relative;
  z-index: 999999;
  overflow: hidden;
  width: 100%;
}
.orange-strip h3 {
  font-size: 14px;
  padding: 3px 0px;
  margin: 0;
  color: #ffff;
  font-weight: 600;
}
.orange-strip h3 a {
  font-size: 13px;
  color: #ff6600;
  font-weight: 600;
  text-decoration: none;
}
@keyframes blink {
  0%, 50%, 100% {
    background-color: #000;
    color: #fff;
  }
  25%, 75% {
    background-color: #000;
    color: #fff;
  }
}
.btn-strip {
  cursor: pointer;
  animation: blink 3s infinite;
  transition: 0.9s;
  padding: 4px 9px !important;
  margin: 0 0 0 13px;
  background: #ffffff;
  border-radius: 10px;
}
.hero-right {
  position: relative;
  top: 17px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 31px;
    margin-bottom: 22px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  color: #fff;
}
.highlight-item i {
  font-size: 21px;
  color: #fff;
  margin-right: 13px;
  margin-top: 8px;
  flex-shrink: 0;
}
.highlight-item span {
  font-size: 17px;
  line-height: 1.35;
  font-weight: 400;
}
/* Tablet */
@media(max-width:768px) {
  .highlights-section {
    padding: 25px 20px;
  }
  .highlight-item i {
    font-size: 24px;
  }
  .highlight-item span {
    font-size: 20px;
  }
}
/* Mobile */
@media(max-width:576px) {
  .highlights-grid {
    gap: 20px;
  }
  .highlight-item i {
    font-size: 22px;
  }
  .highlight-item span {
    font-size: 14px;
  }
}
.fee-accordion-wrapper {
  margin-top: 10px;
}
.fee-accordion-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}
.fee-accordion-header {
  background: #163c7a;
  color: #fff;
  cursor: pointer;
  padding: 12px 19px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: .3s;
}
.fee-accordion-header:hover {
  background: #1c4b96;
}
.fee-accordion-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 600;
}
.fee-accordion-title i {
  font-size: 20px;
}
.fee-arrow {
  transition: .35s;
}
.fee-accordion-item.active .fee-arrow {
  transform: rotate(180deg);
}
.fee-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  background: #fff;
}
.fee-accordion-content {
  padding: 25px;
}
.fee-accordion-content ol {
  padding-left: 22px;
}
.fee-accordion-content li {
  margin-bottom: 8px;
  line-height: 1.8;
  color: #444;
  font-size: 16px;
}
.fee-emi-box {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: #eef7ff;
  border-left: 5px solid #0d6efd;
  border-radius: 8px;
}
.fee-emi-icon {
  width: 60px;
  height: 60px;
  background: #0d6efd;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  flex-shrink: 0;
}
.fee-emi-text h4 {
  margin: 0 0 8px;
  color: #163c7a;
}
.fee-emi-text p {
  margin: 0;
  color: #555;
  line-height: 1.7;
}
@media(max-width:768px) {
  .fee-accordion-header {
    padding: 15px;
  }
  .fee-accordion-title {
    font-size: 16px;
  }
  .fee-accordion-content {
    padding: 18px;
  }
  .fee-accordion-content li {
    font-size: 15px;
  }
  .fee-emi-box {
    flex-direction: column;
    text-align: center;
  }
}
.certificat img {
  transition: all 1s linear;
}
.degree img {
  margin: auto;
  transition: all 1s linear;
}
.degree img:hover {
  transform: scale(1.1);
}
.elective-grid {
  margin-top: 6px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.course-card {
  background: #fff;
  border-radius: 15px;
  padding: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  transition: .35s;
  border: 1px solid #e7ecf5;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
  border-color: #0b3d91;
}
.number {
  min-width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #855cb6, #2b296d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}
.course-content h4 {
  color: #222;
  font-size: 15px;
  line-height: 1.4;
}
.course-content i {
  color: #7b13d3;
  margin-right: 8px;
}
@media(max-width:1100px) {
  .elective-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width:700px) {
  .section-title h2 {
    font-size: 30px;
  }
  .section-title p {
    font-size: 16px;
  }
  .elective-grid {
    grid-template-columns: 1fr;
  }
  .course-card {
    padding: 18px;
  }
}
.program-tabs {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border: 1px solid #d9e2ef;
  border-radius: 10px;
  overflow: hidden;
}
.tabs {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #dfe7f2;
  background: #fff;
}
.tab-btn {
  flex: 1;
  padding: 20px;
  background: #fff;
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: #31476d;
  transition: .3s;
}
.tab-btn.active {
  background: #0f2d63;
  color: #fff;
}
.tab-content {
  display: none;
  padding: 30px;
  animation: fade .4s;
}
.tab-content.active {
  display: block;
}
.tabs2 {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #dfe7f2;
  background: #fff;
}
.tab2-btn {
  flex: 1;
  padding: 20px;
  background: #fff;
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: #31476d;
  transition: .3s;
}
.tab2-btn.active {
  background: #0f2d63;
  color: #fff;
}
.tab2-content {
  display: none;
  padding: 30px;
  animation: fade .4s;
}
.tab2-content.active {
  display: block;
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.course-icon {
  width: 55px;
  height: 55px;
  background: #f7e7d5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #5c3410;
}
.course h2 {
  font-size: 34px;
  color: #0d2f63;
  margin-bottom: 8px;
}
.course p {
  color: #666;
  font-size: 15px;
}
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #e4ebf5;
  padding-bottom: 25px;
  border-bottom: 1px solid #e4ebf5;
}
.features span {
  color: #39a6a3;
  font-size: 17px;
}
.features i {
  margin-right: 8px;
}
.explore {
  display: inline-block;
  margin-top: 22px;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: #0f2d63;
}
.explore:hover {
  color: #0056b3;
}
@media(max-width:991px) {
  .tabs {
    overflow: auto;
    white-space: nowrap;
  }
  .tab-btn {
    min-width: 220px;
    flex: none;
  }
  .course {
    flex-direction: column;
  }
  .course h2 {
    font-size: 28px;
  }
  .features {
    flex-direction: column;
    gap: 18px;
  }
}
.career-box {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  border: 3px solid #72dff4;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}
.career-box h2 {
  font-size: 24px;
  color: #222;
  margin-bottom: 18px;
  font-weight: 700;
  text-align: center;
}
.tag-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tag {
  display: inline-block;
  padding: 9px 18px;
  background: #fff;
  border: 2px solid #c99cff;
  border-radius: 30px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: .3s;
}
.tag:hover {
  background: #7c3aed;
  color: #fff;
  border-color: #7c3aed;
  transform: translateY(-3px);
}
@media(max-width:768px) {
  .career-box {
    padding: 18px;
  }
  .career-box h2 {
    font-size: 20px;
  }
  .tag {
    font-size: 13px;
    padding: 8px 15px;
  }
}
@media(max-width:480px) {
  .tag-wrapper {
    gap: 8px;
  }
  .tag {
    width: 100%;
    text-align: center;
  }
}
.accordion-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.accordion-column {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
/*=========================
    ACCORDION
==========================*/
.accordion-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px;
  cursor: pointer;
  transition: .3s;
}
.accordion-header:hover {
  background: #f8fbff;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.icon {
  width: 58px;
  height: 58px;
  background: #eef3ff;
  color: #315efb;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  flex-shrink: 0;
}
.header-left h3 {
  font-size: 16px;
  color: #222;
}
.arrow {
  width: 24px;
  height: 24px;
  background: #082b5c;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .35s;
  font-size: 12px;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.accordion-body {
  padding: 0 20px 16px 40px !important;
  color: #555;
  line-height: 1.8;
  font-size: 14px;
}
.accordion-body ul {
  padding-left: 20px;
}
.accordion-body li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #000;
}

.tool-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.tool {
  background: #2e2c6e;
  color: #fff;
  padding: 4px 14px;
  border-radius: 25px;
  font-size: 13px;
}
.accordion-item.active .accordion-content {
  max-height: 400px;
}
.accordion-item.active .arrow {
  transform: rotate(180deg);
}
/*=========================
    MOBILE
==========================*/
@media(max-width:768px) {
  .heading h2 {
    font-size: 30px;
  }
  .accordion-wrapper {
    grid-template-columns: 1fr;
  }
  .accordion-header {
    padding: 18px;
  }
  .header-left {
    gap: 12px;
  }
  .icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
  .header-left h3 {
    font-size: 18px;
  }
  .accordion-body {
    padding: 0 18px 20px 18px;
  }
  .arrow {
    width: 36px;
    height: 36px;
  }
}
.swiper-button-next, .swiper-button-prev {
  display: none !important;
}
.swiper {
  padding-bottom: 70px;
}
.program-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  height: 233px;
  border: 1px solid #ececec;
  transition: .35s;
  text-align: center;
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, .12);
}
.icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: #edf4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0057ff;
  font-size: 30px;
  margin-bottom: 22px;
}
.program-card h3 {
  font-size: 20px;
  color: #4b36ca;
  margin-bottom: 3px;
  line-height: 1.4;
}
.program-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}
.swiper-button-next, .swiper-button-prev {
  color: #0057ff;
}
.swiper-pagination-bullet-active {
  background: #0057ff;
}
@media(max-width:768px) {
  .program-card {
    height: auto;
  }
  .heading h2 {
    font-size: 32px;
  }
}
p.paira {
  margin-top: -36px;
  padding: 15px 208px;
  text-align: center;
  line-height: 21px;
  font-size: 15px;
  color: #766f6f;
}
.indus-crd {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.industry-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
  transition: .3s;
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}
.icons-1 {
  width: 65px;
  height: 65px;
  min-width: 65px;
  border-radius: 50%;
  background: #4b36ca;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icons-1 i {
  color: #fff;
  font-size: 28px;
}
.icons-2 {
  width: 65px;
  height: 65px;
  min-width: 65px;
  border-radius: 50%;
  background: #4b36ca;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icons-2 i {
  color: #fff;
  font-size: 28px;
}
.content h3 {
  color: #222;
  font-size: 16px;
  margin-bottom: 8px;
}
.content p {
  color: #666;
  line-height: 1.7;
  font-size: 14px;
}
/* Tablet */
@media(max-width:991px) {
  .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Mobile */
@media(max-width:767px) {
  .industry-card {
    padding: 18px;
    gap: 15px;
    margin-bottom: 10px;
  }
  .icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
  }
  .icon i {
    font-size: 22px;
  }
  .content h3 {
    font-size: 18px;
  }
  .content p {
    font-size: 14px;
    line-height: 1.6;
  }
}
.disclaimer p {
  color: #b1b1b1;
  font-size: 11px;
  font-style: italic;
  font-weight: normal;
  line-height: 15px;
}
.disclaimer {
  margin-top: 28px;
}
.info-section {
  padding: 41px 20px;
}
.container1 {
  max-width: 1400px;
  margin: auto;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.info-card {
  flex: 1 1 232px;
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  gap: 9px;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  transition: .3s;
  border-top: 4px solid #113977;
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, .12);
}
.container1 .icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background: #f8ba0b;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}
.label {
  display: block;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0e356f;
  margin-bottom: 2px;
  font-weight: 800;
}
.content h4 {
  font-size: 16px;
  color: #222;
  line-height: 1.45;
  margin-bottom: 0px;
}
.content small {
  color: #0a58ca;
  font-weight: 600;
  font-size: 14px;
}
@media(max-width:992px) {
  .info-card {
    flex: 1 1 calc(50% - 20px);
  }
}
@media(max-width:600px) {
  .container {
    gap: 15px;
  }
  .info-card {
    flex: 1 1 100%;
    padding: 18px;
  }
  .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 20px;
  }
  .content h4 {
    font-size: 16px;
  }
}
.about-text ul {
  padding: 0 14px;
}
.about-text ul li {
  opacity: .92;
  line-height: 1.65;
  color: #fff;
  font-size: 14px;
}
.about {
  background: #2f2e70;
  color: #fff;
  padding: 45px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}
.about-img {
  height: 380px;
  border-radius: 8px;
  background: url(https://images.unsplash.com/photo-1607237138185-eedd9c632b0b?auto=format&fit=crop&w=1200&q=80) center / cover no-repeat;
}
.about-text .eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: 8px;
}
.check-list {
  list-style: none;
}
.check-list li {
  padding: 6px 0 6px 28px;
  position: relative;
  font-size: 14px;
  opacity: .92;
}
.about-text h4 {
  font-size: 22px;
  margin-bottom: 14px;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.t-card {
  background: #f3f5f9;
  border-radius: 8px;
  padding: 15px;
  position: relative;
  min-height: 300px;
  width: 367px;
}
.owl-nav {
  text-align: center;
  margin-top: 10px;
}
i.fa.fa-arrow-left {
  padding: 5px 11px;
}
i.fa.fa-arrow-right {
  padding: 5px 11px;
}
.t-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 3rem;
  color: var(--gold);
  font-family: 'Playfair Display';
  line-height: 1;
}
.t-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #cfd9e6;
  background-size: cover;
}
.avatar img {
  border-radius: 50%;
}
.t-head strong {
  color: var(--navy);
  font-size: .95rem;
}
.t-head small {
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.3;
}
.t-card p {
  font-size: .83rem;
  color: #2c3650;
  font-style: italic;
}
.contact_fild {
  padding: 10px 10px;
}
.icon {
  width: 50px;
  height: 50px;
  background: #f8ba0b;
  color: #082b5c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  margin: 10px auto;
}
/* Mobile Responsive */
@media(max-width:768px) {
  .section-title h2 {
    font-size: 30px;
  }
  .program-grid {
    grid-template-columns: 1fr;
  }
  .program-card {
    padding: 25px;
  }
  .program-card h3 {
    font-size: 24px;
  }
}
.contact_fild.tx p {
  font-size: 14px;
  color: #222;
}
.campus-gallery {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
}
.campus-gallery h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 36px;
}
.slider-wrapper {
  position: relative;
}
.slider {
  overflow: hidden;
}
.slide-track {
  display: flex;
  transition: 0.5s ease;
}
.slide {
  min-width: 33.333%;
  padding: 10px;
}
.slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border: none;
  background: #002147;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  font-size: 20px;
}
.prev {
  left: -20px;
}
.next {
  right: -20px;
}
@media(max-width:768px) {
  .slide {
    min-width: 100%;
  }
  .slide img {
    height: 220px;
  }
  .campus-gallery h2 {
    font-size: 28px;
  }
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 57px;
  align-items: center;
}
.about-img {
  height: 499px;
  border-radius: 8px;
  background: url(../images/about.jpg) center / cover no-repeat;
}
.about-text .eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 8px;
}
.about-text h2 {
  font-size: 27px;
  margin-bottom: 18px;
  font-weight: 700;
  color: #fff;
}
.about-text p {
  margin-bottom: 18px;
  opacity: .92;
  line-height: 1.65;
  color: #fff;
  font-size: 14px;
}
.logo img {
  width: 212px;
}
.accred-card img {
  width: 83% !important;
}
.hero-left {
  margin-top: 0px;
}
/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border)
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px
}
.logo-mark {
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-family: 'Poppins';
  padding: 8px 12px;
  border-radius: 6px;
  letter-spacing: 1px;
  font-style: italic;
  font-size: 18px
}
.logo-text {
  display: flex;
  flex-direction: column;
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 12px;
  color: var(--navy);
  line-height: 1.2
}
.main-nav {
  display: flex;
  gap: 28px;
  font-weight: 500;
  font-size: 14px
}
.main-nav a {
  color: var(--text);
  transition: color .2s;
  text-decoration: none;
  text-transform: uppercase;
}
.main-nav a:hover {
  color: var(--red)
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--navy);
  cursor: pointer
}
/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-family: 'Poppins';
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, filter .2s;
  font-size: 16px;
  text-transform: uppercase;
}
.btn-primary {
  background: linear-gradient(135deg, #83a5c5, #3dbaf4);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 12px 28px rgba(232, 32, 42, .45)
}
.btn-sm {
  padding: 10px 20px;
  font-size: 12px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 10px;
}
.btn-block {
  width: 100%
}
/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 492px;
  background: radial-gradient(circle at 85% 20%, rgba(244, 180, 0, .16), transparent 28%), linear-gradient(120deg, var(--deep-navy) 0%, var(--navy) 50%, var(--blue) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none
}
.blob {
  position: absolute;
  border-radius: 50%;
  opacity: .5
}
.blob-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #31578e, #0e346d 93%);
  bottom: 1px;
  left: -99px;
  animation: float 6s ease-in-out infinite;
}
.blob-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #30ffc7, transparent 70%);
  bottom: 1px;
  right: 0;
  opacity: .3;
  animation: float 14s ease-in-out infinite reverse
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgb(235 235 235 / 4%) 1px, transparent 1px), linear-gradient(90deg, rgba(10, 39, 86, .04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
@keyframes float {
  0%, 100% {
    transform: translate(0, 0)
  }
  50% {
    transform: translate(40px, -40px)
  }
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 58px;
  align-items: center
}
.pill {
  display: inline-block;
  background: #c02621;
  color: #fff;
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
  border: 1px solid rgba(10, 39, 86, .15)
}
.hero-title {
  font-family: 'Poppins';
  font-size: 33px;
  line-height: 49px;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -1px;
  width: 543px;
  font-weight: bold;
}
.hero-title .muted {
  color: #f03430;
  font-weight: 600
}
.gradient-text {
  background: linear-gradient(135deg, var(--red), #262727);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 34px;
  color: #ffffff;
  max-width: 390px;
  margin-bottom: 26px;
  font-weight: 600;
  line-height: normal;
  position: relative;
}

h1.hero-title p {
    font-size: 22px;
    color: #f8ba0b;
    font-weight: 600;
    font-style: italic;
}

.hero-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 43px;
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s
}
.stat-card:hover {
  transform: translateY(-4px) rotateX(5deg)
}
.stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a5cb0, var(--navy));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px
}
.stat-icon.red {
  background: linear-gradient(135deg, #ff4757, var(--red-dark))
}
.stat-num {
  font-family: 'Poppins';
  font-weight: 800;
  color: var(--navy);
  font-size: 18px;
  line-height: 1
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px
}
.admission-bar {
  display: inline-block;
  align-items: center;
  background: linear-gradient(135deg, #5e49e2, #412dbd);
  color: #fff;
  padding: 9px 28px;
  border-radius: 99px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}
.admission-bar i {
  color: #ffd700
}
/* ============ 3D CARD ============ */
.card-3d {
  transform-style: preserve-3d;
  animation: floatCard 6s ease-in-out infinite
}
@keyframes floatCard {
  0%, 100% {
    transform: translateY(0) rotateX(2deg)
  }
  50% {
    transform: translateY(-12px) rotateX(-2deg)
  }
}
.card-3d-inner {
  overflow: hidden;
  transform-style: preserve-3d;
  float: right;
  width: 365px;
  background: #fff;
  border-radius: 22px;
  padding: 18px 20px 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, .25);
  position: relative;
}
.card-3d-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 32, 42, .04), transparent 50%);
  pointer-events: none
}
.card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .6), transparent);
  transform: skewX(-20deg);
  animation: shine 4s infinite;
  pointer-events: none
}
@keyframes shine {
  0%, 80% {
    left: -100%
  }
  100% {
    left: 200%
  }
}
.card-3d-inner h2 {
  font-family: 'Poppins';
  color: #113a78;
  font-size: 19px;
  font-weight: 800;
  text-align: center;
  padding: 19px;
  margin-top: -17px;
}
.card-sub {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px
}
.apply-form {
  display: flex;
  flex-direction: column;
  gap: 10px
}
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.input-wrap i {
  position: absolute;
  left: 14px;
  color: var(--muted);
  font-size: 14px
}
.input-wrap input, .input-wrap select {
  width: 100%;
  padding: 7px 14px 8px 39px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: #fafbfd;
  transition: border-color .2s, box-shadow .2s;
  color: var(--text);
}
.input-wrap input:focus, .input-wrap select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232, 32, 42, .1);
  background: #fff
}
.privacy {
  text-align: center;
  font-size: 10px;
  color: #393838;
  margin-top: 8px;
  line-height: normal;
  margin-bottom: 5px;
}
/* ============ SECTIONS ============ */
.section {
  padding: 40px 0;
}
.section-title {
  text-align: center;
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 40px;
  position: relative;
  letter-spacing: 1px;
}
.section-title span {
  position: relative;
  padding: 0 30px
}
.section-title span::before, .section-title span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #9111fe, transparent)
}
.section-title span::before {
  right: 100%;
  background: linear-gradient(-90deg, #9111fe, transparent)
}
.section-title span::after {
  left: 100%
}
/* ============ ACCREDITATION ============ */
.accreditation {
  background: #082b5c;
}
.accred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}
.accred-card {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius);
  background: #fafbfd;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s
}
.accred-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md)
}
.accred-badge {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
  font-family: 'Poppins';
  font-weight: 900;
  font-size: 20px;
  border: 4px solid #fff;
  box-shadow: var(--shadow-sm)
}
.accred-badge.aicte {}
.accred-badge.nba {}
.accred-badge.aiu {}
.accred-badge.asic {}
.accred-card h4 {
  font-family: 'Poppins';
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 6px
}
.accred-card p {
  color: var(--muted);
  font-size: 13px
}
/* ============ PROGRAMMES ============ */
.programmes {
  background: #fff
}
.prog-grid {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.prog-col {
  background: #fafbfd;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .3s, box-shadow .3s
}
.prog-col:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md)
}
.prog-head {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: #fff;
  padding: 16px;
  border-radius: 10px;
  margin: -8px -8px 18px
}
.prog-head h3 {
  font-family: 'Poppins';
  font-size: 16px;
  margin-bottom: 4px
}
.prog-head p {
  font-size: 13px;
  opacity: .9
}
.badge-red {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  margin-top: 8px
}
.prog-col h4 {
  font-family: 'Poppins';
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 15px
}
.col-title {
  font-family: 'Poppins';
  color: var(--navy);
  margin-bottom: 16px;
  font-size: 18px;
  border-bottom: 2px solid var(--red);
  padding-bottom: 8px;
  display: inline-block
}
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px
}
.check-list li {
  padding-left: 24px;
  position: relative;
  font-size: 13.5px
}
.elig-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start
}
.elig-item i {
  color: var(--red);
  font-size: 18px;
  margin-top: 2px
}
.elig-item p {
  font-size: 13.5px
}
.exam-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 10px
}
.exam-grid span {
  background: #fff;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  padding: 6px;
  text-align: center;
  border-radius: 6px;
  font-weight: 600;
  font-size: 12px
}
.muted-text {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px
}
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px
}
.spec {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: all .2s
}
.spec:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateX(3px)
}
.spec i {
  color: var(--navy);
  font-size: 14px
}
/* ============ PLACEMENTS ============ */
.placements {
  background: var(--bg)
}
.place-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px
}
.place-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s
}
.place-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-md)
}
.pc-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: #fff;
  font-size: 26px
}
.pc-icon.red {
  background: linear-gradient(135deg, var(--red), var(--red-dark))
}
.pc-icon.blue {
  background: linear-gradient(135deg, #3b6fc0, var(--navy))
}
.pc-num {
  font-family: 'Poppins';
  font-weight: 800;
  color: var(--navy);
  font-size: 34px;
  line-height: 1
}
.pc-num small {
  font-size: 16px;
  color: var(--red)
}
.place-card p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px
}
.place-strip {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: #fff;
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 15px
}
/* ============ RECRUITERS ============ */
.recruiters {
  background: #fff
}
.recruiter-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
  margin-bottom: 20px
}
.rec {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 10px 10px;
  border-radius: 10px;
  text-align: center;
  font-family: 'Poppins';
  font-weight: 700;
  color: var(--navy);
  transition: all .3s
}
.rec:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md)
}
.rec-note {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px
}
/* ============ DUAL BLOCKS ============ */
.dual-blocks {
  background: var(--bg)
}
.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}
.db-card {
  padding: 32px;
  border-radius: var(--radius);
  color: #fff;
  box-shadow: var(--shadow-md)
}
.db-card.blue {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark))
}
.db-card.red {
  background: linear-gradient(135deg, var(--red), var(--red-dark))
}
.db-card h3 {
  font-family: 'Poppins';
  margin-bottom: 6px;
  font-size: 20px;
  letter-spacing: .5px
}
.db-sub {
  opacity: .9;
  margin-bottom: 20px;
  font-size: 14px
}
.db-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}
.db-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px
}
.db-card li i {
  margin-top: 4px;
  color: #ffd700;
  flex-shrink: 0
}
/* ============ CAMPUS ============ */
.campus {
  background: #fff
}
.campus-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px
}
.campus-card {
  text-align: center;
  padding: 24px 12px;
  border-radius: var(--radius);
  background: #fafbfd;
  border: 1px solid var(--border);
  transition: all .3s
}
.campus-card:hover {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: #fff;
  transform: translateY(-6px);
  box-shadow: var(--shadow-md)
}
.campus-card:hover i, .campus-card:hover p {
  color: #fff
}
.campus-card i {
  font-size: 32px;
  color: var(--red);
  margin-bottom: 12px;
  transition: color .3s
}
.campus-card h4 {
  font-family: 'Poppins';
  font-size: 14px;
  margin-bottom: 4px
}
.campus-card p {
  font-size: 12px;
  color: var(--muted);
  transition: color .3s
}
/* ============ FOOTER ============ */
.site-footer {
  background: linear-gradient(135deg, var(--navy-dark), #020e25);
  color: #fff;
  padding: 30px 0 16px
}
.footer-grid {
  gap: 20px;
  font-size: 14px;
  margin: auto;
  text-align: center;
}
.footer-grid div {
  align-items: center;
  gap: 10px
}
.footer-grid i {
  color: var(--red)
}
.copyright {
  text-align: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 13px;
}
/* ============ RESPONSIVE ============ */
@media (max-width:980px) {
  .main-nav {
    display: none
  }
  .nav-toggle {
    display: block
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }
  .hero-right {
    order: -1
  }
  .accred-grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .prog-grid {
    grid-template-columns: 1fr
  }
  .place-grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .recruiter-grid {
    grid-template-columns: repeat(4, 1fr)
  }
  .dual-grid {
    grid-template-columns: 1fr
  }
  .campus-grid {
    grid-template-columns: repeat(3, 1fr)
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
  .about-grid {
    grid-template-columns: 1fr
  }
  .about-left {
    padding: 30px
  }
}
@media (max-width:560px) {
  .container {
    padding: 0 16px
  }
  .section {
    padding: 50px 0
  }
  .hero {
    padding: 30px 0 50px
  }
  .hero-title {
    font-size: 34px
  }
  .hero-sub {
    font-size: 15px
  }
  .hero-stats {
    flex-direction: column
  }
  .stat-card {
    width: 100%
  }
  .card-3d-wrap {
    max-width: 100%
  }
  .accred-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px
  }
  .accred-badge {
    width: 70px;
    height: 70px;
    font-size: 16px
  }
  .recruiter-grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .campus-grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .footer-grid {
    grid-template-columns: 1fr
  }
  .place-grid {
    grid-template-columns: 1fr 1fr
  }
  .pc-num {
    font-size: 26px
  }
  .card-3d-inner {
    padding: 24px 20px
  }
  .logo-text {
    display: none
  }
  .exam-grid {
    grid-template-columns: repeat(3, 1fr)
  }
  .section-title {
    font-size: 17px
  }
  .section-title span {
    padding: 0 14px
  }
  .section-title span::before, .section-title span::after {
    width: 30px
  }
  .about-right {
    padding: 24px
  }
  .about-left {
    padding: 24px
  }
  .db-card {
    padding: 24px 20px
  }
  .admission-bar {
    font-size: 14px;
    padding: 12px 20px
  }
}
@media (max-width: 767px) {
  .card-3d-inner {
    float: inherit;
  }
  .hero {
    height: auto;
  }
  .pill {
    display: block;
    font-size: 13px;
    text-align: center;
  }
  .hero-title {
    font-size: 39px;
    text-align: center;
    line-height: 38px;
  }
  .hero-sub {
    font-size: 30px;
    text-align: center;
  }
  .card-3d-wrap {
    margin-top: 10px;
  }
  .container {
    padding: 6px 10px;
  }
  .hero-left {
    margin-top: -16px;
  }
  .hero-stats {
    display: block;
  }
  .stat-card {
    width: 48%;
    margin-top: 8px;
    display: inline-flex;
    padding: 7px 12px;
  }
  .stat-label {
    font-size: 10px;
  }
  .about-img {
    display: none;
  }
  .about-text {
    text-align: center;
  }
  .hero {
    padding: 30px 0 10px;
  }
  .hero-stats {
    margin-bottom: 25px;
  }
  .section {
    padding: 26px 0;
  }
  .admission-bar {
    display: block;
    margin: auto;
    text-align: center;
  }
  .prog-grid {
    display: block;
  }
  .prog-col {
    margin-bottom: 10px;
  }
  .t-head {
    display: block;
  }
  .t-card {
    height: auto;
    width: 100%;
  }
  .blob-1 {
    display: none;
  }
  .blob-2 {
    display: none;
  }
  .next {
    right: -8px;
  }
  .prev {
    left: -10px;
  }
  .hero-title {
    width: 100%;
  }
  .container1 {
    max-width: 100%;
    margin: auto;
    display: block;
  }
  .info-card {
    display: inline-block;
    width: 49%;
    margin-bottom: 10px;
    text-align: center;
    padding: 10px;
  }
  .about-text ul li {
    text-align: left;
  }
  .indus-crd {
    display: block;
    margin: auto;
  }
  p.paira {
    padding: 10px;
  }
  .tabs {
    overflow: auto;
    white-space: normal;
    display: block;
  }
  .tab-btn {
    min-width: 100%;
  }
  .fee-accordion-header {
    padding: 8px;
  }
  .tab2-btn {
    width: 100%;
  }
  .hero-right {
    position: relative;
    top: 0;
  }
  .orange-strip h3 {
    font-size: 15px;
    padding: 3px 0px;
    margin: 0;
    color: #ffff;
    font-weight: 600;
    line-height: 23px;
  }
	
.seat-badge {
  bottom: -6px;

}	
.seat-badge {
  position: relative;
}
	
	
}