/* ============ 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: "Playfair Display", serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  width: 100%;
  max-width: 100vw
}

.jimspgdm-scholarship-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.jimspgdm-scholarship-accordion {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.jimspgdm-accordion-item {
    background: #ffffff;
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.jimspgdm-accordion-item:hover {
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.08);
}

/* HEADER */

.jimspgdm-accordion-header {
    width: 100%;
    border: 0;
    outline: none;
    background: #ffffff;
    padding: 12px 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.jimspgdm-accordion-header:hover {
    background: #fafafa;
}

.jimspgdm-header-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.jimspgdm-header-title {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    line-height: 1.4;
}

.jimspgdm-category {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    background: #dbe8ff;
    color: #034da1;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

/* PLUS ICON */

.jimspgdm-accordion-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #dbe8ff;
    color: #034da2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.jimspgdm-accordion-item.jimspgdm-active
.jimspgdm-accordion-icon {
    transform: rotate(45deg);
}

/* CONTENT */

.jimspgdm-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.jimspgdm-accordion-inner {
    padding: 0 22px 20px;
    border-top: 1px solid #eeeeee;
}

/* ROW */

.jimspgdm-benefit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid #eeeeee;
}

.jimspgdm-benefit-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.jimspgdm-criteria {
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
}

.jimspgdm-amount {
    min-width: 125px;
    padding: 9px 12px;
    border-radius: 8px;
    background: #fff5df;
    color: #034da2;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

    .jimspgdm-scholarship-section {
        margin: 25px auto;
        padding: 0 12px;
    }

    .jimspgdm-accordion-header {
        padding: 15px;
    }

    .jimspgdm-header-content {
        gap: 8px;
        align-items: flex-start;
        flex-direction: column;
    }

    .jimspgdm-header-title {
        font-size: 14px;
    }

    .jimspgdm-category {
        font-size: 10px;
    }

    .jimspgdm-accordion-inner {
        padding: 0 15px 15px;
    }

    .jimspgdm-benefit-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .jimspgdm-amount {
        min-width: auto;
    }

}



 .scholarship-container {
      max-width: 100%;
      margin: 0 auto;
      background: #ffffff;
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    }

    .header-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 32px;
      flex-wrap: wrap;
      gap: 16px;
      border-bottom: 2px solid #f1f5f9;
      padding-bottom: 20px;
    }

    .title {
      font-size: 19px;
      font-weight: 800;
      color: #1e1b4b;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .title::before {
      content: '';
      display: inline-block;
      width: 4px;
      height: 28px;
      background: #4f46e5;
      border-radius: 4px;
    }

    .fee-badge1 {
      background: #e0e7ff;
      color: #3730a3;
      padding: 10px 20px;
      border-radius: 99px;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.3px;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(229px, 1fr));
      gap: 13px;
    }

    .card {
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 14px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: all 0.25s ease;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 20px rgba(0,0,0,0.06);
      border-color: #c7d2fe;
    }

    .card.highlight {
      background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
      color: #ffffff;
      border: none;
    }

    .card.highlight .card-title { color: #e0e7ff; }
    .card.highlight .amount { color: #ffffff; }

    .card-title {
      font-size: 15px;
      font-weight: 600;
      color: #64748b;
      margin-bottom: 12px;
      line-height: 1.5;
    }

   .amount {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-top: -6px;
}

    .tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 8px;
      color: #4f46e5;
    }

    .card.highlight .tag { color: #a5b4fc; }


 :root {
      --jims-placement-primary: #1e3a8a;
      --jims-placement-accent: #2563eb;
      --jims-placement-marketing: #3b82f6;
      --jims-placement-finance: #f97316;
      --jims-placement-hr: #94a3b8;
      --jims-placement-text: #334155;
      --jims-placement-muted: #64748b;
      --jims-placement-bg: #ffffff;
      --jims-placement-section-bg: #f8fafc;
    }

    .jims-placement-wrapper {
      font-family: 'Inter', sans-serif;
      background-color: var(--jims-placement-section-bg);
      color: var(--jims-placement-text);
      line-height: 1.6;
      padding: 2rem;
    }

    .jims-placement-wrapper *,
    .jims-placement-wrapper *::before,
    .jims-placement-wrapper *::after {
      box-sizing: border-box;
    }

    /* Main Container */
    .jims-placement-section {
      max-width: 1087px;
      width: 100%;
      margin: 0 auto;
      background: var(--jims-placement-bg);
      border-radius: 20px;
      padding: 11px 16px;
      box-shadow:
        0 10px 30px -5px rgba(0, 0, 0, 0.05),
        0 4px 12px -2px rgba(0, 0, 0, 0.02);
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 3.5rem;
      align-items: center;
    }

    /* Left Content */
    .jims-placement-content {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .jims-placement-badge {
      display: inline-block;
      align-self: flex-start;
      background: rgba(37, 99, 235, 0.1);
      color: var(--jims-placement-accent);
      font-weight: 600;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 6px 14px;
      border-radius: 50px;
    }

    .jims-placement-title {
      font-size: 21px;
      font-weight: 700;
      color: var(--jims-placement-primary);
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    .jims-placement-description {
      color: var(--jims-placement-muted);
      font-size: 14px;
      line-height: 1.7;
	   margin-bottom: 12px;
    }

    .jims-placement-description strong {
      color: var(--jims-placement-text);
    }

    /* Right Chart Area */
    .jims-placement-chart-box {
      background: #fafafa;
      border: 1px solid #f1f5f9;
      border-radius: 16px;
      padding: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    /* Donut Chart */
    .jims-placement-donut {
      position: relative;
      width: 200px;
      height: 200px;
      border-radius: 50%;

      background: conic-gradient(
        var(--jims-placement-marketing) 0% 54%,
        var(--jims-placement-finance) 54% 90%,
        var(--jims-placement-hr) 90% 100%
      );

      display: flex;
      justify-content: center;
      align-items: center;

      transition: transform 0.3s ease;
    }

    .jims-placement-donut:hover {
      transform: scale(1.03);
    }

    /* Donut Inner Circle */
    .jims-placement-donut::before {
      content: "";
      position: absolute;
      width: 130px;
      height: 130px;
      background-color: #fafafa;
      border-radius: 50%;
    }

    .jims-placement-donut-content {
      position: relative;
      text-align: center;
      z-index: 2;
    }

    .jims-placement-number {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--jims-placement-primary);
      display: block;
      line-height: 1;
    }

    .jims-placement-label {
      font-size: 0.75rem;
      color: var(--jims-placement-muted);
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 0.5px;
      margin-top: 4px;
      display: block;
    }

    /* Legend */
    .jims-placement-legend {
      width: 100%;
      display: flex;
      gap: 0.75rem;
    }

    .jims-placement-legend-item {
      display: flex;
      align-items: center;
      justify-content: space-between;

      padding: 8px 12px;
      background: #ffffff;
      border-radius: 8px;
      border: 1px solid #e2e8f0;
    }

    .jims-placement-legend-info {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .jims-placement-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      display: inline-block;
      flex-shrink: 0;
    }

    .jims-placement-dot-marketing {
      background-color: var(--jims-placement-marketing);
    }

    .jims-placement-dot-finance {
      background-color: var(--jims-placement-finance);
    }

    .jims-placement-dot-hr {
      background-color: var(--jims-placement-hr);
    }

    .jims-placement-legend-name {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--jims-placement-text);
    }

    .jims-placement-percentage {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--jims-placement-text);
	   padding: 0 4px;
    }

    /* Responsive */
    @media (max-width: 868px) {

      .jims-placement-wrapper {
        padding: 1rem;
      }

      .jims-placement-section {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2.5rem;
      }

      .jims-placement-title {
        font-size: 1.85rem;
      }
    }

    @media (max-width: 480px) {

      .jims-placement-section {
        padding: 1.5rem;
        border-radius: 14px;
      }

      .jims-placement-chart-box {
        padding: 1.25rem;
      }

      .jims-placement-donut {
        width: 170px;
        height: 170px;
      }

      .jims-placement-donut::before {
        width: 110px;
        height: 110px;
      }

      .jims-placement-title {
        font-size: 1.6rem;
      }
    }


.footer-single-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background-color: #034da2;
  padding: 16px 24px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-icon {
  width: 16px;
  height: 16px;
  stroke: #38bdf8;
  flex-shrink: 0;
}

.footer-item a {
  color: #f8fafc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-item a:hover {
  color: #38bdf8;
}

.footer-divider {
  color: #475569;
}

/* Fallback for small screens */
@media (max-width: 600px) {
  .footer-single-line {
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-divider {
    display: none;
  }
}


.content-section img {
    padding: 8px 0px;
}

.content-section {
    background: #ffffff;
    padding: 16px;
    border-radius: 12px;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.main-title {
    color: #1d4ed8;
    font-size: 18px;
    margin-bottom: 8px;
}

.sub-title {
    color: #1e293b;
    font-size: 15px;
    margin-bottom: 9px;
}

.description {
    color: #475569;
    font-size: 15px;
    line-height: 22px;
}



.testimonial-section {
  max-width: 900px;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header .sub-title {
  color: #4318ff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1b2559;
  margin-top: 6px;
}

/* Slider Wrapper */
.slider-container {
    position: relative;
    width: 833px;
    margin: auto;
}

.slider-wrapper {
  position: relative;
  min-height: 280px;
}

/* Testimonial Card Styling */
.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.98);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  box-shadow: 0px 18px 40px rgba(112, 144, 176, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.testimonial-card.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Decorative Quote Icon */
.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 3rem;
  color: #f0f4ff;
  z-index: 1;
}

/* Image & Badge */
.image-wrapper {
  position: relative;
  flex-shrink: 0;
}

.image-wrapper img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 4px solid #eef2ff;
  box-shadow: 0 8px 16px rgba(67, 24, 255, 0.15);
}

.rating-badge {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #1b2559;
  color: #ffb800;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.rating-badge i {
  color: #ffb800;
  margin-right: 3px;
}

/* Content Area */
.content-wrapper {
  z-index: 2;
  flex-grow: 1;
}

.user-info {
  margin-bottom: 1rem;
}

.user-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1b2559;
  margin-bottom: 4px;
}

.company-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #4318ff;
  background: #f4f0ff;
  padding: 5px 12px;
  border-radius: 8px;
  text-transform: uppercase;
}

.testimonial-text {
  color: #a3edd9;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.65;
  font-weight: 500;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 5px;
}

.prev-btn, .next-btn {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #1b2559;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.prev-btn:hover, .next-btn:hover {
  background: #4318ff;
  color: #ffffff;
  border-color: #4318ff;
  box-shadow: 0 6px 16px rgba(67, 24, 255, 0.3);
  transform: translateY(-2px);
}

.dots-container {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #4318ff;
  width: 28px;
  border-radius: 12px;
}

/* Responsive Adjustments */
@media (max-width: 650px) {
  .testimonial-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  
  .quote-icon {
    top: 1rem;
    right: 1.5rem;
    font-size: 2.2rem;
  }

  .company-badge {
    margin-top: 4px;
  }
}


/* ================================
   Admission Process
================================ */

.admission-process {
    position: relative;
    padding: 90px 20px;
    background: #f7f8fc;
    overflow: hidden;
}

.admission-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading */

.admission-heading {
    max-width: 820px;
    margin: -16px auto 34px;
    text-align: center;
}

.admission-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 16px;
    border-radius: 30px;
    background: #eeeafc;
    color: #4b3298;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.admission-heading h2 {
    margin: 0 0 16px;
    color: #202033;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}

.admission-heading p {
    margin: 0;
    color: #666676;
    font-size: 16px;
    line-height: 24px;
}

.admission-heading strong {
    color: #30303d;
}

/* Grid */

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* Card */

.process-card {
    position: relative;
    min-height: 246px;
    padding: 12px 15px;
    background: #ffffff;
    border: 1px solid #e9e9f0;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(34, 30, 70, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.process-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #4b3298;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 45px rgba(34, 30, 70, 0.11);
}

.process-card:hover::before {
    transform: scaleX(1);
}

/* Number */

.process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    border-radius: 14px;
    background: #f0ecfb;
    color: #4b3298;
    font-size: 15px;
    font-weight: 800;
}

/* Content */

.process-content h3 {
    margin: 0 0 9px;
    color: #222231;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
}

.process-content p {
    margin: 0;
    color: #666676;
    font-size: 14px;
    line-height: 20px;
}

.process-content strong {
    color: #333341;
    font-weight: 700;
}

/* Exams */

.exam-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin-top: 13px;
    padding-top: 7px;
    border-top: 1px solid #eeeeF3;
}

.exam-box span {
    width: 100%;
    margin-bottom: 4px;
    color: #777783;
    font-size: 13px;
}

.exam-box b {
    color: #4b3298;
    font-size: 13px;
    font-weight: 700;
}

.exam-box i {
    color: #b8b8c2;
    font-style: normal;
}

/* ================================
   Tablet
================================ */

@media (max-width: 991px) {

    .admission-process {
        padding: 70px 20px;
    }

    .admission-heading h2 {
        font-size: 36px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 0 auto;
    }

    .process-card {
        min-height: auto;
    }
}

/* ================================
   Mobile
================================ */

@media (max-width: 575px) {

    .admission-process {
        padding: 55px 15px;
    }

    .admission-heading {
        margin-bottom: 35px;
    }

    .admission-heading h2 {
        font-size: 30px;
    }

    .admission-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .process-grid {
        gap: 15px;
    }

    .process-card {
        padding: 24px;
        border-radius: 16px;
    }

    .process-number {
        width: 50px;
        height: 50px;
        margin-bottom: 22px;
        font-size: 16px;
    }

    .process-content h3 {
        font-size: 19px;
    }

    .process-content p {
        font-size: 14px;
    }

    .exam-box {
        margin-top: 20px;
    }
}


/* Total Fee Main Card */

.fee-container {
    max-width: 900px;
    margin: 0 auto;
}

    .total-fee-card {
      background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
      color: #ffffff;
      border-radius: 16px;
      padding: 19px;
      box-shadow: var(--shadow-lg);
      margin-bottom: 1px;
      display: flex;
      flex-direction: column;
      gap: 13px;
    }

    @media (min-width: 640px) {
      .total-fee-card {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
    }

    .total-fee-title {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      color: #93c5fd;
      font-weight: 600;
    }

    .total-fee-amount {
      font-size: 23px;
      font-weight: 800;
      margin-top: 4px;
    }

    .total-fee-breakdown {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .fee-badge {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(8px);
      padding: 8px 12px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 500;
		color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Installments Grid */
    .installments-grid {
      display: flex;
      flex-direction: column;
      gap: 3px;
      margin-bottom: 11px;
    }

    .installment-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 11px 24px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      transition: all 0.2s ease;
      box-shadow: var(--shadow-sm);
    }

    .installment-card:hover {
      border-color: var(--primary-accent);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .installment-card.highlight {
      border-left: 4px solid var(--primary-accent);
    }

    @media (min-width: 640px) {
      .installment-card {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
    }

    .installment-info {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .installment-name {
      font-weight: 700;
      font-size: 16px;
      color: var(--text-dark);
    }

    .installment-meta {
      font-size: 13px;
      color: var(--text-muted);
    }

    .installment-price-box {
      text-align: left;
    }

    @media (min-width: 640px) {
      .installment-price-box {
        text-align: right;
      }
    }

    .installment-price {
      font-size: 20px;
      font-weight: 700;
      color: var(--primary);
    }

    .installment-due {
      font-size: 12px;
      font-weight: 600;
      color: #059669;
      background: #ecfdf5;
      padding: 2px 8px;
      border-radius: 12px;
      display: inline-block;
      margin-top: 4px;
    }

    /* Note Banner Section */
    .note-card {
      background: #dbe8ff;
      border: 1px solid #ffedd5;
      border-radius: 12px;
      padding: 11px;
      display: flex;
      gap: 13px;
      align-items: flex-start;
    }

    .note-badge {
      background: var(--gold);
      color: #ffffff;
      font-weight: 700;
      font-size: 12px;
      padding: 4px 10px;
      border-radius: 6px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      flex-shrink: 0;
    }

    .note-content {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .note-content p {
      font-size: 14px;
      color: #171718;
      font-weight: 500;
      margin-bottom: 6px;
    }

    .loan-link {
      color: #034da2;
      font-weight: 700;
      text-decoration: none;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color 0.2s ease;
    }

    .loan-link:hover {
      color: var(--primary);
      text-decoration: underline;
    }

.bottom-highlight {
    margin-top: 12px;
    padding: 9px 20px;
    background: #eef3ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.bottom-highlight i {
    color: #f15b2a;
}

.bottom-highlight span {
    font-size: 16px;
    color: #444;
    font-weight: 600;
}


.program-table-wrapper {
        margin: 13px auto;
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid #e6e8ef;
    }

    .program-table {
        width: 100%;
        border-collapse: collapse;
        table-layout: fixed;
    }

    /* Header */
    .program-table thead th {
        background: #034ca0;
        color: #fff;
        padding: 20px 22px;
        text-align: left;
        font-size: 16px;
        font-weight: 700;
        border-right: 1px solid rgba(255,255,255,0.2);
    }

    .program-table thead th:last-child {
        border-right: none;
    }

    .program-table thead th:nth-child(1) {
        width: 20%;
    }

    .program-table thead th:nth-child(2) {
        width: 45%;
    }

    .program-table thead th:nth-child(3) {
        width: 35%;
    }

    /* Body */
    .program-table tbody td {
        padding: 22px 12px;
        vertical-align: top;
        color: #4b5563;
        font-size: 15px;
        line-height: 1.7;
        border-right: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;
    }

    .program-table tbody td:last-child {
        border-right: none;
    }

    .program-table tbody tr:last-child td {
        border-bottom: none;
    }

    .program-table tbody tr:hover {
        background: #fafbff;
    }

    /* Program Name */
    .program-name {
        display: inline-block;
        color: #1f3c88;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 10px;
        line-height: 33px;
    }

    .duration {
        display: block;
        padding: 8px 12px;
        background: #eef3ff;
        color: #1f3c88;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 600;
        width: fit-content;
    }

    /* Lists */
    .program-table ul {
        margin: 0;
        padding-left: 20px;
    }

    .program-table li {
        margin-bottom: 12px;
    }

    .program-table li:last-child {
        margin-bottom: 0;
    }

    /* Eligibility */
    .eligibility-title {
        display: block;
        color: #222;
        font-weight: 700;
        margin: 18px 0 8px;
    }

    .test-scores {
        display: inline-block;
        margin-top: 15px;
        padding: 8px 14px;
        background: #fff4e8;
        color: #c56800;
        border-radius: 6px;
        font-weight: 700;
        font-size: 14px;
    }

    /* Responsive */
    @media (max-width: 768px) {

        .program-table-section {
            padding: 25px 10px;
        }

        .program-table-wrapper {
            overflow-x: auto;
            border-radius: 12px;
        }

        .program-table {
            min-width: 850px;
        }

        .program-table thead th {
            padding: 16px;
            font-size: 14px;
        }

        .program-table tbody td {
            padding: 18px 16px;
            font-size: 14px;
        }

        .program-name {
            font-size: 20px;
        }
    }

.program-container {
        max-width: 1100px;
        margin: 0 auto;
        background: #fff;
        padding: 24px;
        border-radius: 15px;
        box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    }

    /* TAB BUTTONS */
    .program-tabs {
        display: flex;
        justify-content: center;
        gap: 25px;
        border-bottom: 1px solid #ddd;
        margin-bottom: 30px;
    }

    .program-tab {
        position: relative;
        border: none;
        background: transparent;
        padding: 16px 25px;
        font-size: 16px;
        font-weight: 600;
        color: #555;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .program-tab:hover {
        color: #e21f26;
    }

    .program-tab.active {
        color: #e21f26;
    }

    .program-tab.active::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 100%;
        height: 3px;
        background: #e21f26;
        border-radius: 5px 5px 0 0;
    }

    /* TAB CONTENT */
    .program-content {
        display: none;
        animation: fadeIn 0.4s ease;
    }

    .program-content.active {
        display: block;
    }

    .program-content h2 {
        font-size: 28px;
        color: #222;
        margin-bottom: 6px;
        margin-top: 16px;
    }

    .program-content p {
        color: #666;
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .program-content ul {
        padding-left: 20px;
        margin-top: 15px;
    }

    .program-content li {
        color: #555;
        margin-bottom: 10px;
        line-height: 1.5;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* MOBILE */
    @media (max-width: 768px) {

        .program-section {
            padding: 30px 15px;
        }

        .program-container {
            padding: 25px 18px;
        }

        .program-tabs {
            display: block;
            border-bottom: none;
        }

        .program-tab {
            display: block;
            width: 100%;
            text-align: left;
            border: 1px solid #ddd;
            margin-bottom: 8px;
            border-radius: 6px;
            padding: 14px 16px;
        }

        .program-tab.active {
            background: #e21f26;
            color: #fff;
            border-color: #e21f26;
        }

        .program-tab.active::after {
            display: none;
        }

        .program-content h2 {
            font-size: 23px;
        }

        .program-content p {
            font-size: 14px;
        }
    }


.why-jims-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.why-jims-card {
    position: relative;
    min-height: 152px;
    padding: 26px 20px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e7e7ea;
    border-radius: 16px;
    overflow: hidden;
    transition: .35s ease;
}

.why-jims-card::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    right: -30px;
    bottom: -30px;
    border-radius: 50%;
    background: rgb(50 135 217 / 7%);
    transition: .35s ease;
}

.why-jims-card:hover {
    transform: translateY(-7px);
    border-color: #ff7928;
    box-shadow: 0 18px 40px rgba(32, 36, 52, .10);
}

.why-jims-card:hover::after {
    width: 130px;
    height: 130px;
}

.why-jims-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #034ca0;
    color: #ffffff;
    font-size: 20px;
    transition: .35s ease;
}

.why-jims-card:hover .why-jims-icon {
    background: #ff7928;
    color: #fff;
}

.why-jims-content {
    position: relative;
    z-index: 2;
    margin-top: 13px;
}

.why-jims-content span {
    display: block;
    margin-bottom: 12px;
    color: #b5b7bf;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.why-jims-content h3 {
    margin: 0;
    color: #202434;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 700;
}

/* Tablet */
@media (max-width: 1050px) {
    .why-jims-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 650px) {
    .why-jims {
        padding: 55px 15px;
    }

    .why-jims-heading h2 {
        font-size: 29px;
    }

    .why-jims-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .why-jims-card {
        min-height: 210px;
        padding: 20px 16px;
    }

    .why-jims-content h3 {
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .why-jims-grid {
        grid-template-columns: 1fr;
    }

    .why-jims-card {
        min-height: 175px;
    }
}


/* =========================================
   RANKINGS GRID — EQUAL CARDS
========================================= */

.rank-logo.nirf-logo img {
    width: 114px;
}

article.rank-card img {
    width: 114px;
}

.rankings-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

/* All cards exactly equal */
.rank-card,
.rank-card-large {
    position: relative;
    overflow: hidden;
    height: 263px;
    min-height: 265px;
    padding: 21px 13px 22px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.13);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
    justify-content: center;
    align-items: center;
}

/* Remove large NIRF layout */
.rank-card-large {
    grid-row: auto;
}

/* Hover */
.rank-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}


/* Red side accent */
.rank-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 28px;
    width: 4px;
    height: 60px;
    background: #fe7727;
    border-radius: 0 5px 5px 0;
}


/* =========================================
   LOGO
========================================= */

.rank-logo {
    height: 65px;
    margin-bottom: 14px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    position: relative;
    z-index: 2;
}


/* =========================================
   CONTENT
========================================= */

.card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.card-tag {
    display: block;
    margin-bottom: 4px;
    color: #ef4a47;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.card-content h3 {
    margin: 0 0 7px;
    color: #034da2;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 500;
}

.card-content h3 strong {
    color: #173e7b;
    font-weight: 800;
}

.card-content h3 sup {
    font-size: 10px;
}

.card-content p {
    max-width: 330px;
    margin: 0;
    color: #2f3031;
    font-size: 12px;
    line-height: 1.6;
}


/* NIRF text same sizing */
.rank-card-large .card-content p {
    max-width: 330px;
    font-size: 12px;
    line-height: 1.6;
}


/* =========================================
   NUMBER
========================================= */

.card-number {
    position: absolute;

    top: 15px;
    right: 20px;

    color: #edf0f5;

    font-size: 50px;
    line-height: 1;

    font-weight: 700;
    letter-spacing: -3px;
}


/* =========================================
   ARROW
========================================= */

.card-arrow {
    position: absolute;

    right: 20px;
    bottom: 18px;

    width: 32px;
    height: 32px;

    border: 1px solid #e1e5ec;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #173e7b;

    font-size: 16px;

    transition: 0.3s ease;
}

.rank-card:hover .card-arrow {
    background: #ef4a47;
    border-color: #ef4a47;
    color: #fff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .rankings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rank-card,
    .rank-card-large {
        height: 265px;
        min-height: 265px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .rankings-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .rank-card,
    .rank-card-large {
        height: 240px;
        min-height: 240px;

        padding: 24px 22px;
    }

    .card-number {
        font-size: 42px;
    }

    .rank-logo {
        height: 58px;
    }

    .card-content h3 {
        font-size: 22px;
    }
}



/* =========================
   ABOUT JIMS
========================= */

.jims-about-section {
    position: relative;
    padding: 30px 0;
    background: #f7f8fc;
    overflow: hidden;
}
.jims-about-highlights img {
    width: 79%;
    border-radius: 44px 0px;
}

.jims-about-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: -180px;
    border-radius: 50%;
    background: rgb(131 168 254 / 81%);
}

.jims-about-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    left: -165px;
    bottom: -150px;
    border-radius: 50%;
    background: rgb(45 112 221 / 20%);
}


.jims-about-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    box-sizing: border-box;
}


/* =========================
   LEFT CONTENT
========================= */

.jims-about-content {
    padding-top: 10px;
}

.jims-about-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e22029;
    margin-bottom: 6px;
}

.jims-about-content h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.18;
    font-weight: 800;
    color: #17213b;
}

.jims-about-content h2 span {
    color: #1d3a7e;
}

.jims-about-line {
    width: 65px;
    height: 3px;
    margin: 12px 0 12px;
    background: #e22029;
    border-radius: 10px;
}


.jims-about-content p {
    margin: 0 0 17px;
    font-size: 15px;
    line-height: 1.75;
    color: #2e2f31;
}

.jims-about-content p strong {
    color: #17213b;
    font-weight: 700;
}


/* =========================
   BUTTON
========================= */

.jims-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 12px;

    padding: 13px 23px;

    background: #1d3a7e;
    color: #fff;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    border-radius: 4px;

    transition: all 0.3s ease;
}

.jims-about-btn span {
    font-size: 20px;
    line-height: 10px;

    transition: transform 0.3s ease;
}

.jims-about-btn:hover {
    background: #e22029;
    color: #fff;
}

.jims-about-btn:hover span {
    transform: translateX(5px);
}


/* =========================
   RIGHT HIGHLIGHTS
========================= */

.jims-about-highlights {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    align-content: start;
}


/* =========================
   HIGHLIGHT CARD
========================= */

.jims-highlight-card {
    position: relative;

    min-height: 115px;

    padding: 20px;

    background: #fff;

    border: 1px solid #e9ebf1;

    border-radius: 8px;

    display: flex;
    align-items: center;

    gap: 15px;

    box-sizing: border-box;

    box-shadow: 0 8px 25px rgba(23, 33, 59, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.jims-highlight-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(23, 33, 59, 0.12);
}


/* =========================
   ESTABLISHED CARD
========================= */

.jims-card-large {
    grid-column: span 2;

    background: #1d3a7e;
    color: #fff;

    border: none;
}

.jims-card-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.15);

    border-radius: 50%;

    font-size: 23px;
}

.jims-card-large strong {
    display: block;

    font-size: 13px;
    font-weight: 500;

    opacity: 0.8;
}

.jims-card-large span {
    display: block;

    margin-top: 3px;

    font-size: 27px;
    font-weight: 800;
}


/* =========================
   RANKING CARDS
========================= */

.jims-card-number {
    min-width: 55px;

    font-size: 30px;
    line-height: 1;

    font-weight: 800;

    color: #e22029;
}

.jims-card-text strong {
    display: block;

    font-size: 14px;
    color: #17213b;
}

.jims-card-text span {
    display: block;

    margin-top: 4px;

    font-size: 12px;

    color: #7a8190;
}


/* =========================
   ACCREDITATION
========================= */

.jims-accreditation-box {
    grid-column: span 2;

    padding: 22px;

    background: #fff;

    border-radius: 8px;

    border: 1px solid #e9ebf1;

    box-shadow: 0 8px 25px rgba(23, 33, 59, 0.05);
}

.jims-accreditation-box > span {
    display: block;

    margin-bottom: 15px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.3px;

    color: #7a8190;
}

.jims-accreditation-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.jims-accreditation-list div {
    padding: 8px 13px;

    border-radius: 4px;

    background: #f1f3f8;

    color: #1d3a7e;

    font-size: 12px;
    font-weight: 800;

    transition: all 0.3s ease;
}

.jims-accreditation-list div:hover {
    background: #1d3a7e;
    color: #fff;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .jims-about-section {
        padding: 70px 0;
    }

    .jims-about-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .jims-about-content h2 {
        font-size: 36px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .jims-about-section {
        padding: 55px 0;
    }

    .jims-about-container {
        padding: 0 15px;
        gap: 35px;
    }

    .jims-about-content h2 {
        font-size: 30px;
    }

    .jims-about-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .jims-about-highlights {
        grid-template-columns: 1fr;
    }

    .jims-card-large,
    .jims-accreditation-box {
        grid-column: span 1;
    }

    .jims-highlight-card {
        min-height: 100px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .jims-about-content h2 {
        font-size: 27px;
    }

    .jims-about-tag {
        font-size: 11px;
    }

    .jims-highlight-card {
        padding: 17px;
    }

    .jims-card-number {
        font-size: 27px;
    }

    .jims-card-large span {
        font-size: 24px;
    }

}


/* ==============================
   ACCREDITATION SLIDER
================================ */

.accreditation-section {
    width: 100%;
    padding: 25px 0;
    background: #fff;
    overflow: hidden;
}

.accreditation-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 45px;
    box-sizing: border-box;
}

.accreditation-slider {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.accreditation-viewport {
    width: 100%;
    overflow: hidden;
}

.accreditation-track {
    display: flex;
    align-items: center;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.accreditation-slide {
    flex: 0 0 20%;
    width: 20%;
    min-height: 130px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px 20px;
    box-sizing: border-box;
}

.accreditation-slide img {
    display: block;
    max-width: 178px;
    max-height: 105px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    border: solid 1px #eee;
    border-radius: 10px;
}

.accreditation-slide:hover img {
    transform: scale(1.06);
}


/* ==============================
   ARROWS
================================ */

.accreditation-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 34px;
    height: 34px;

    border: none;
    border-radius: 50%;

    background: #222;
    color: #fff;

    font-size: 20px;
    line-height: 34px;

    cursor: pointer;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

.accreditation-arrow:hover {
    background: #000;
    transform: translateY(-50%) scale(1.08);
}

.accreditation-prev {
    left: 0;
}

.accreditation-next {
    right: 0;
}


/* ==============================
   TABLET
================================ */

@media (max-width: 991px) {

    .accreditation-container {
        padding: 0 40px;
    }

    .accreditation-slide {
        flex: 0 0 33.3333%;
        width: 33.3333%;
        min-height: 120px;
        padding: 10px 15px;
    }

    .accreditation-slide img {
        max-width: 130px;
        max-height: 90px;
    }

}


/* ==============================
   MOBILE
================================ */

@media (max-width: 767px) {

    .accreditation-section {
        padding: 20px 0;
    }

    .accreditation-container {
        padding: 0 38px;
    }

    .accreditation-slide {
        flex: 0 0 50%;
        width: 50%;
        min-height: 100px;
        padding: 8px;
    }

    .accreditation-slide img {
        max-width: 115px;
        max-height: 75px;
    }

    .accreditation-arrow {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

}


/* ==============================
   SMALL MOBILE
================================ */

@media (max-width: 480px) {

    .accreditation-container {
        padding: 0 35px;
    }

    .accreditation-slide {
        flex: 0 0 100%;
        width: 100%;
        min-height: 95px;
    }

    .accreditation-slide img {
        max-width: 140px;
        max-height: 80px;
    }

}

/* =========================================
   JIMS HERO SECTION
========================================= */

.jims-hero {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    color: #fff;

    background-image:
        linear-gradient(
            90deg,
            rgba(3, 48, 103, 0.97) 0%,
            rgba(4, 66, 130, 0.90) 42%,
            rgba(4, 66, 130, 0.55) 70%,
            rgba(3, 45, 95, 0.80) 100%
        ),
        url("../images/banner.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =========================================
   BACKGROUND
========================================= */

.jims-hero-bg {
    position: absolute;
    inset: 0;
    opacity: .35;
    background-image:
        linear-gradient(
            120deg,
            rgba(255,255,255,.03) 25%,
            transparent 25%
        );
    background-size: 80px 80px;
}

.jims-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(5px);
    pointer-events: none;
}

.jims-glow-1 {
    width: 280px;
    height: 280px;
    background: rgba(0, 145, 255, .22);
    top: -120px;
    left: -80px;
    animation: jimsFloat 8s ease-in-out infinite;
}

.jims-glow-2 {
    width: 350px;
    height: 350px;
    background: rgba(255, 112, 20, .10);
    right: 25%;
    bottom: -180px;
    animation: jimsFloat 10s ease-in-out infinite reverse;
}

.jims-glow-3 {
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,.08);
    right: 5%;
    top: 60px;
    filter: blur(40px);
}


/* =========================================
   CONTAINER
========================================= */

.jims-hero-container {
    position: relative;
    z-index: 5;
    max-width: 1280px;
    min-height: 610px;
    margin: auto;
    padding: 31px 25px 44px;
    display: grid;
    grid-template-columns:
        minmax(400px, 1fr)
        420px
        330px;
    align-items: center;
    gap: 20px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.jims-hero-content {
    position: relative;
    z-index: 10;
    animation: jimsFadeUp .9s ease forwards;
    margin-top: -138px;
}

.jims-hero-tag {
    display: inline-block;

    padding: 7px 16px;
    margin-bottom: 18px;

    border: 1px solid rgba(255,255,255,.3);
    border-radius: 30px;

    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);

    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.jims-hero-content h1 {
    margin: 0;

    font-size: 46px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.jims-hero-content h1 span {
    color: #ff711f;
}

.jims-hero-description {
    max-width: 500px;

    margin: 20px 0;

    color: rgba(255,255,255,.82);
    font-size: 16px;
    line-height: 1.6;
}


/* =========================================
   PROGRAM BADGE
========================================= */

.jims-program {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 7px;
    background: linear-gradient(
        90deg,
        #ff681b,
        #ff7928
    );
    box-shadow:
        0 10px 25px rgba(255,105,25,.25);
    font-size: 15px;
    font-weight: 700;
    transition: .3s ease;
    margin-top: 28px;
}

.jims-program:hover {
    transform: translateY(-3px);
    box-shadow:
        0 15px 35px rgba(255,105,25,.35);
}


/* =========================================
   STATS
========================================= */

.jims-stats {
    display: flex;

    margin-top: 32px;

    max-width: 520px;

    border-top: 1px solid rgba(255,255,255,.15);
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.jims-stat {
    flex: 1;

    padding: 15px 18px;

    position: relative;
}

.jims-stat:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 18%;
    height: 64%;

    width: 1px;

    background: rgba(255,255,255,.3);
}

.jims-stat-number {
    color: #ff7623;

    font-size: 21px;
    font-weight: 800;

    white-space: nowrap;
}

.jims-stat-label {
    margin-top: 5px;

    color: rgba(255,255,255,.8);

    font-size: 12px;
}


/* =========================================
   CTA
========================================= */

.jims-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;

    margin-top: 27px;
    padding: 13px 22px;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 6px;

    color: #fff;
    text-decoration: none;

    background: rgba(255,255,255,.08);

    backdrop-filter: blur(8px);

    font-size: 14px;
    font-weight: 700;

    transition: .3s ease;
}

.jims-hero-btn span {
    font-size: 20px;
    transition: .3s ease;
}

.jims-hero-btn:hover {
    background: #ff6e20;
    border-color: #ff6e20;
    transform: translateY(-3px);
}

.jims-hero-btn:hover span {
    transform: translateX(5px);
}


/* =========================================
   CENTER VISUAL
========================================= */

.jims-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Image Circle */

.jims-image-circle {
    position: relative;
    z-index: 4;
    width: 370px;
    height: 370px;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid rgba(255,255,255,.15);
    background:
        linear-gradient(
            145deg,
            #0b589e,
            #062f66
        );
    box-shadow:
        0 0 0 15px rgba(255,255,255,.025),
        0 0 70px rgba(0,132,255,.35);
    animation: jimsImageFloat 5s ease-in-out infinite;
}

.jims-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .7s ease;
}

.jims-image-circle:hover img {
    transform: scale(1.06);
}


/* =========================================
   RINGS
========================================= */

.jims-image-ring {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.15);
}

.ring-one {
    width: 400px;
    height: 400px;
    animation: jimsRotate 18s linear infinite;
}

.ring-two {
    width: 400px;
    height: 450px;
    border-color: rgba(255,112,28,.18);
    animation: jimsRotate 25s linear infinite reverse;
}


/* =========================================
   FLOATING BADGES
========================================= */

.jims-floating-badge {
    position: absolute;
    z-index: 8;

    padding: 12px 18px;

    border: 1px solid rgba(255,255,255,.2);
    border-radius: 10px;

    background: rgba(255,255,255,.1);

    backdrop-filter: blur(12px);

    box-shadow:
        0 15px 30px rgba(0,0,0,.15);

    display: flex;
    flex-direction: column;

    animation: jimsBadgeFloat 4s ease-in-out infinite;
}

.jims-floating-badge strong {
    color: #ff7623;
    font-size: 17px;
}

.jims-floating-badge span {
    margin-top: 3px;

    color: #fff;
    font-size: 10px;
}

.badge-top {
    top: 90px;
    right: -5px;
}

.badge-bottom {
    bottom: 90px;
    left: -10px;

    animation-delay: 1.5s;
}


/* =========================================
   ORBIT DOTS
========================================= */

.jims-orbit-dot {
    position: absolute;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #ff7020;

    box-shadow:
        0 0 15px rgba(255,112,32,.8);
}

.dot-one {
    top: 75px;
    left: 80px;
}

.dot-two {
    right: 35px;
    bottom: 150px;

    width: 6px;
    height: 6px;
}

.dot-three {
    left: 70px;
    bottom: 120px;

    width: 5px;
    height: 5px;

    background: #fff;
}


/* =========================================
   FORM
========================================= */

.jims-form-wrapper {
    position: relative;
    z-index: 20;
    padding: 3px;
    border-radius: 15px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.7),
            rgba(255,255,255,.15)
        );

    box-shadow:
        0 20px 60px rgba(0,0,0,.25);

    animation: jimsFadeRight 1s ease forwards;
margin-top: -66px;
}

.jims-form {
    padding: 20px 17px;

    border-radius: 12px;

    background:
        rgba(222,228,235,.94);

    backdrop-filter: blur(15px);

    color: #111;
}


/* Form Header */

.jims-form-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;

    padding: 10px;

    margin-bottom: 8px;

    background: #f86b20;

    color: #fff;

    font-size: 16px;
    font-weight: 800;
}

.jims-form-heading strong {
    font-weight: 900;
}

.jims-form-subtitle {
    margin: 8px 5px 13px;

    text-align: center;

    color: #444;

    font-size: 11px;
    line-height: 1.4;
}


/* Inputs */

.jims-input,
.jims-select {
    position: relative;

    margin-bottom: 9px;
}

.jims-input i {
    position: absolute;

    left: 13px;
    top: 50%;

    transform: translateY(-50%);

    color: #777;

    font-size: 12px;
}

.jims-input input,
.jims-select select {
    width: 100%;
    height: 35px;

    box-sizing: border-box;

    border: 1px solid transparent;
    border-radius: 8px;

    outline: none;

    background: #fff;

    color: #333;

    font-size: 12px;

    transition: .25s ease;
}

.jims-input input {
    padding: 0 12px 0 35px;
}

.jims-select select {
    padding: 0 12px;
}

.jims-input input:focus,
.jims-select select:focus {
    border-color: #f86b20;

    box-shadow:
        0 0 0 3px rgba(248,107,32,.1);
}


/* Apply */

.jims-apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    width: 100%;

    height: 43px;

    margin-top: 16px;

    border: 0;
    border-radius: 5px;

    cursor: pointer;

    background:
        linear-gradient(
            90deg,
            #f76a20,
            #ff7a29
        );

    color: #fff;

    font-size: 14px;
    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(248,107,32,.25);

    transition: .3s ease;
}

.jims-apply-btn span {
    font-size: 18px;
}

.jims-apply-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(248,107,32,.4);
}


/* Consent */

.jims-consent {
    margin-top: 10px;

    text-align: center;

    color: #444;

    font-size: 9px;
    line-height: 1.5;
}

.jims-consent a {
    color: #333;
    text-decoration: underline;
}


/* =========================================
   BOTTOM WAVE
========================================= */

.jims-hero-wave {
    position: absolute;

    bottom: -1px;
    left: -5%;

    width: 110%;
    height: 35px;

    background: #fff;

    clip-path: ellipse(55% 65% at 50% 100%);
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes jimsFadeUp {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes jimsFadeRight {

    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes jimsImageFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}

@keyframes jimsBadgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}

@keyframes jimsFloat {

    0%,
    100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(20px,-20px);
    }

}

@keyframes jimsRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .jims-hero-container {
        grid-template-columns:
            1fr
            380px;

        gap: 0;
    }

    .jims-hero-content {
        padding-right: 0;
    }

    .jims-hero-visual {
        position: absolute;

        right: 320px;
        top: 45px;

        transform: scale(.75);

        opacity: .75;
    }

    .jims-form-wrapper {
        grid-column: 2;
        grid-row: 1;
    }

    .jims-hero-content {
        grid-column: 1;
        grid-row: 1;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .jims-hero {
        min-height: auto;
    }

    .jims-hero-container {

        display: flex;
        flex-direction: column;

        padding:
            40px 18px 55px;

        gap: 25px;
    }


    /* Content */

    .jims-hero-content {
        width: 100%;

        text-align: center;
    }

    .jims-hero-content h1 {
        font-size: 32px;
    }

    .jims-hero-description {
        margin-left: auto;
        margin-right: auto;

        font-size: 14px;
    }

    .jims-program {
        font-size: 12px;

        padding: 11px 14px;
    }


    /* Visual */

    .jims-hero-visual {

        position: relative;

        right: auto;
        top: auto;

        width: 100%;
        height: 340px;

        transform: none;

        opacity: 1;

        order: 2;
    }

    .jims-image-circle {

        width: 280px;
        height: 280px;
    }

    .ring-one {

        width: 320px;
        height: 320px;
    }

    .ring-two {

        width: 350px;
        height: 350px;
    }

    .badge-top {
        top: 25px;
        right: 0;
    }

    .badge-bottom {
        bottom: 25px;
        left: 0;
    }


    /* Stats */

    .jims-stats {

        width: 100%;

        margin-top: 25px;
    }

    .jims-stat {

        padding:
            12px 6px;
    }

    .jims-stat-number {
        font-size: 16px;
    }

    .jims-stat-label {
        font-size: 9px;
    }


    /* CTA */

    .jims-hero-btn {
        margin-top: 22px;
    }


    /* Form */

    .jims-form-wrapper {

        width: 100%;
        max-width: 400px;

        box-sizing: border-box;

        order: 3;
    }

    .jims-form {
        padding: 18px 15px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .jims-hero-content h1 {
        font-size: 28px;
    }

    .jims-image-circle {
        width: 245px;
        height: 245px;
    }

    .ring-one {
        width: 285px;
        height: 285px;
    }

    .ring-two {
        width: 310px;
        height: 310px;
    }

    .jims-hero-visual {
        height: 300px;
    }

    .jims-floating-badge {
        padding: 9px 12px;
    }

    .jims-floating-badge strong {
        font-size: 14px;
    }

}





a.btn.btn-primary.btn-sm {
    background: #b01e27;
    border: none;
}

.mu-mba27-wrap{
    margin: 21px auto;
    padding: 0 0px;
    color:#252525;
    line-height:1.6;
}

.mu-mba27-header{
    background: #b01e27;
    color:#fff;
    padding: 15px 30px;
    border-radius:14px;
    margin-bottom:18px;
}

.mu-mba27-header h2{
    margin:0 0 4px;
    font-size:27px;
    line-height:1.3;
}

.mu-mba27-header p{
    margin:0;
    font-size:14px;
    opacity:.9;
}

.mu-mba27-card{
    background:#fff;
    border:1px solid #e6eaf0;
    border-radius:12px;
    padding:22px;
    margin-bottom:18px;
    box-shadow:0 4px 16px rgba(0,0,0,.05);
}

.mu-mba27-title{
    display:flex;
    align-items:center;
    gap:10px;
    color: #034ca0;
    font-size:15px;
    font-weight:700;
    margin-top: 22px;
}

.mu-mba27-number{
    width: 40px;
    height: 38px;
    border-radius:7px;
    background:#eaf1ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:700;
}

.mu-mba27-text{
    margin:0;
    font-size:14px;
    color:#555;
}

.mu-mba27-text strong{
    color:#222;
}

/* Test Scores */

.mu-mba27-tests{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
}

.mu-mba27-test{
    background:#f9fafc;
    border:1px solid #e5e9ef;
    border-radius:9px;
    padding:13px;
}

.mu-mba27-test strong{
    display:block;
    color: #b01e27;
    font-size:14px;
    margin-bottom:3px;
}

.mu-mba27-test p{
    margin:0;
    font-size: 14px;
    line-height:1.5;
    color:#666;
}

/* Fee Highlights */

.mu-mba27-highlights{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-bottom:18px;
}

.mu-mba27-fee-box{
    background:#fff;
    border:1px solid #e5e9ef;
    border-radius:12px;
    padding:18px;
    box-shadow:0 4px 14px rgba(0,0,0,.05);
}

.mu-mba27-fee-box small{
    display:block;
    color:#777;
    font-size:12px;
    margin-bottom:3px;
}

.mu-mba27-fee-box strong{
    display:block;
    color: #b01e27;
    font-size:21px;
    line-height:1.3;
}

.mu-mba27-fee-box p{
    margin:4px 0 0;
    color:#777;
    font-size: 14px;
}

/* Note */

.mu-mba27-note{
    background:#f7f9fc;
    border-left:3px solid #0b3d91;
    padding:12px 14px;
    color:#555;
    font-size: 14px;
    line-height:1.6;
}

.mu-mba27-note strong{
    color:#222;
}

/* Table */

.mu-mba27-table-wrap{
    width:100%;
    overflow-x:auto;
}

.mu-mba27-table{
    width:100%;
    min-width:650px;
    border-collapse:collapse;
}

.mu-mba27-table th{
    background: #b01e27;
    color:#fff;
    text-align:left;
    padding:12px 14px;
    font-size:12px;
    font-weight:600;
}

.mu-mba27-table td{
    padding:12px 14px;
    border-bottom:1px solid #e8ebf0;
    color:#555;
    font-size: 14px;
}

.mu-mba27-table tr:last-child td{
    border-bottom:0;
}

.mu-mba27-table td:nth-child(2){
    color:#222;
    font-weight:700;
    white-space:nowrap;
}

/* Mobile */

@media(max-width:768px){

    .mu-mba27-wrap{
        margin:25px auto;
        padding:0 14px;
    }

    .mu-mba27-header{
        padding:20px;
    }

    .mu-mba27-header h2{
        font-size:22px;
    }

    .mu-mba27-card{
        padding:18px;
    }

    .mu-mba27-tests{
        grid-template-columns:repeat(2,1fr);
    }

    .mu-mba27-highlights{
        grid-template-columns:1fr;
    }
}

@media(max-width:480px){

    .mu-mba27-tests{
        grid-template-columns:1fr;
    }

    .mu-mba27-title{
        font-size:17px;
    }

    .mu-mba27-text{
        font-size:13px;
    }

}


.swiper {
  filter: brightness(0) invert(1); 
}


/* =========================
   KEY FEATURES
========================= */

.key-features {
    padding: 30px 0;
}

.key-features .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

/* Heading */

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading span {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0;
    color: #061d3d;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
}

/* Grid */

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card */

.feature-card {
    position: relative;
    padding: 32px 25px;
    min-height: 270px;
    background: #fff;
    border: 1px solid #e7e9ed;
    border-radius: 10px;
    text-align: left;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-7px);
    border-color: #ed1c24;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Icon */

.feature-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff1f2;
    color: #ed1c24;
    font-size: 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #ed1c24;
    color: #fff;
}

/* Title */

.feature-card h3 {
    margin: 0 0 12px;
    color: #061d3d;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
}

/* Description */

.feature-card p {
    margin: 0;
    color: #555;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card {
        min-height: 240px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .key-features {
        padding: 50px 0;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card {
        min-height: auto;
        padding: 25px 22px;
    }

    .feature-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 18px;
        font-size: 22px;
    }

    .feature-card h3 {
        font-size: 17px;
    }
}





/* ==========================
   About Mahindra University
   ========================== */

.about-mahindra {
    padding: 28px 0 28px;
    background: #fff;
}

.about-mahindra .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-mahindra-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Content */

.about-mahindra-content {
    flex: 1;
    padding-left: 0;
}

.about-mahindra-content h2 {
    margin: 0 0 18px;
    color: #061d3d;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.about-mahindra-content p {
    max-width: 430px;
    margin: 0 0 20px;
    color: #333;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
}

/* Button */

.about-btn {
    display: inline-block;
    padding: 11px 15px;
    border: 1px solid #ed1c24;
    border-radius: 6px;
    background: transparent;
    color: #ed1c24;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: #ed1c24;
    color: #fff;
}

/* Image */

.about-mahindra-image {
    flex: 0 0 454px;
    height: 428px;
    overflow: hidden;
    border-radius: 9px 9px 0 0;
}

.about-mahindra-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* ==========================
   Tablet
   ========================== */

@media (max-width: 991px) {

    .about-mahindra {
        padding: 40px 0;
    }

    .about-mahindra-row {
        gap: 30px;
    }

    .about-mahindra-content h2 {
        font-size: 32px;
    }

    .about-mahindra-image {
        flex: 0 0 45%;
        height: 380px;
    }
}


/* ==========================
   Mobile
   ========================== */

@media (max-width: 767px) {

    .about-mahindra {
        padding: 40px 0;
    }

    .about-mahindra .container {
        padding: 0 15px;
    }

    .about-mahindra-row {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .about-mahindra-content {
        order: 1;
    }

    .about-mahindra-content h2 {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .about-mahindra-content p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.7;
    }

    .about-mahindra-image {
        order: 2;
        width: 100%;
        height: auto;
        aspect-ratio: 1.06 / 1;
        border-radius: 8px 8px 0 0;
    }
}


/* ==========================
   Small Mobile
   ========================== */

@media (max-width: 480px) {

    .about-mahindra-content h2 {
        font-size: 28px;
    }

    .about-mahindra-content p {
        font-size: 13px;
    }

    .about-mahindra-image {
        aspect-ratio: 1 / 0.95;
    }
}


.small-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f3e8e0;
    color: #e63a33;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}
.small-label i {
    font-size: 14px;
}



.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;
}



.ig-gallery-section {
    width: 100%;
    padding: 35px 20px;
    overflow: hidden;
    background: #f7f8fc;
}

.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: 28px 20px;
}

.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: 24px;
    line-height: 1.2;
    font-weight: 800;
    color: #172033;
    text-transform: uppercase;
}

.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: 31px 21px 30px;
}

.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: #b01e27;
    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: 143px;
    padding: 22px 12px 20px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(145deg, #b01e27 0%, #3c212c 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: 18px;
    line-height: 1.15;
    font-weight: 600;
}

/* 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: 23px 30px;
    background: #fff;
    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: 30px 20px;
}

.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: flex;
    gap: 15px;
    justify-content: center;
}


/* ========================================
   CARD
======================================== */

.placement-card {
    position: relative;
    min-height: 133px;
    padding: 13px 14px;
    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;
    width: 21%;
}

.placement-card:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff7223, #e68144);
}

.placement-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(20, 45, 75, .14);
}


/* Icon */

.placement-icon {
    width: 48px;
    height: 48px;
    margin: -3px auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e0e8f1;
    color: #034da2;
    font-size: 20px;
}


/* Label */

.placement-label {
    font-size: 13px;
    color: #657386;
    font-weight: 600;
    margin-bottom: 8px;
}


/* Main Number */

.placement-value {
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
    color: #034da2;
}

.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, #e63a33, #e63a33);
border:none;
}

.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: #e63a33;
  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;
  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;
}

.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: 260px;
}
.accred-card img {
  width: 83% !important;
}
.hero-left {
  margin-top: 22px;
}
/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  backdrop-filter: blur(12px);
  box-shadow: 0px 18px 40px rgba(112, 144, 176, 0.12);
}
.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: "Playfair Display", serif;
  padding: 8px 12px;
  border-radius: 6px;
  letter-spacing: 1px;
  font-style: italic;
  font-size: 18px
}
.logo-text {
  display: flex;
  flex-direction: column;font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--navy);
  line-height: 1.2
}
.main-nav {
    display: flex;
    gap: 18px;
    font-weight: 500;
    font-size: 14px;
}

.main-nav a {
  color: #393535;
  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: "Playfair Display", serif;
  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%
}

.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: "Playfair Display", serif;
  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: #f4efe6;
  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: "Playfair Display", serif;
  color:#e63a33;
  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: #666363;
  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: "Playfair Display", serif;
  font-weight: 800;
  font-size: 24px;
  color: #172b4d;
  margin-bottom: 40px;
  position: relative;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.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, #fe7727, transparent);
}
.section-title span::before {
  right: 100%;
  background: linear-gradient(-90deg, #fe7727, transparent);
}
.section-title span::after {
  left: 100%
}

/* ============ ACCREDITATION ============ */
.accreditation {
  background:#fff;
}

.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: "Playfair Display", serif;
  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: "Playfair Display", serif;
  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: "Playfair Display", serif;
  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: "Playfair Display", serif;
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 15px
}
.col-title {font-family: "Playfair Display", serif;
  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: "Playfair Display", serif;
  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: "Playfair Display", serif;
  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: "Playfair Display", serif;
  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: "Playfair Display", serif;
  font-size: 14px;
  margin-bottom: 4px
}
.campus-card p {
  font-size: 12px;
  color: var(--muted);
  transition: color .3s
}
/* ============ FOOTER ============ */
.site-footer {
  background: #034da2;
  color: #fff;
  padding: 15px 0 13px;
}
.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: 12px;
  padding-top: 5px;
  font-size: 15px;
  color: #fff;
}
/* ============ 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;
}
	
.jims-hero-content {
  margin-top: -29px;
}
.jims-about-highlights {
  display: none;
}
.rank-card, .rank-card-large {
    height: auto;
    min-height: auto;
    padding: 11px 22px;
  }
	.why-jims-card {
    min-height: auto;
    text-align: center;
  }
	
.why-jims-icon {
  margin: auto;
}
.why-jims-content span {
  margin-bottom: 3px;
  margin-top: 10px;
}
 .process-grid {
    text-align: center;
  }
	
.exam-box {
  justify-content: center;
}
	
.process-number {
  margin: auto;

}
.placement-card {
  width: 48%;
  display: inline-block;
   min-height: auto;
}	
	
.placement-stats {
  display: block;
}
 .placement-value {
    font-size: 19px;
  }
	
.slider-container {
  width: 100%;
}
	
.jims-program {
  margin-top: 17px;
}
	
.jims-placement-section {
  max-width: 100%;
  display: block;

}
.jims-placement-legend {
  display: block;
}	
	
.jims-placement-legend-item {
  margin-bottom: 10px;
}	
	
	
}