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

html {
  scroll-behavior: smooth;
}

:root {
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Rozha One", serif;
  --font-third: "Roboto", sans-serif;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-weight: 400;
  font-family: var(--font-primary);
}

p {
  font-family: var(--font-third);
  font-weight: 400;
}

.primary-btn {
  background-color: #3d57a7;
  color: white;
  font-family: var(--font-primary);
  font-weight: 500;
  padding: 10px 20px;
  border: none;
  border-radius: 24px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

/* header section strat here  */
.navigation {
  position: sticky;
  left: 0;
  top: 0;
  right: 0;
  bottom: auto;
  z-index: 999;
  display: flex;
  max-width: none;
  padding: 20px 1em;
  background: #fff;
}

.navigation-wrap {
  display: flex;
  width: 90%;
  margin: auto;
  justify-content: space-between;
  align-items: center;
}

.logo-image {
  display: block;
  width: 100%;
  height: auto;
}
.hide-mobile {
    display: block;
}
.cta-btn.open-popup {
    text-decoration: none;
}

/* /////////////////////////////////////////////// */

/* section 1st start here  */
.hero {
  background-image: url("../images/main_background.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 40px;
  height: 600px;
  padding: 50px 70px;
}
/* ── LEFT CONTENT ── */
.hero-left {
  flex: 1;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  border: 1.5px solid #fff;
  color: #234192;
  background-color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
  font-family: var(--font-primary);
}

.headline {
  font-family: var(--font-secondary);
  font-size: 60px;
  font-weight: 400;
  line-height: 70px;
  width: 65%;
  color: #fff;
  margin-bottom: 22px;
}

.headline .highlight {
  color: #f5b800;
}

.cta-btn {
  display: inline-block;
  background: #fdd024;
  color: #234192;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 20px;
  padding: 10px 25px;
  border-radius: 13px;
  cursor: pointer;
}
.accreditation-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  font-weight: 600;
  margin: 20px 0;
}

.accreditation-logos {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
/* ── ENQUIRY CARD ── */
.enquiry-card {
  width: 26%;
  flex-shrink: 0;
  background: #fff;
  border-radius: 14px;
  padding: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.enquiry-card h3 {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 16px;
}

.enquiry-card input,
.enquiry-card select {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 10px;
  border: 1.5px solid #020617;
  border-radius: 24px;
  font-size: 15px;
  color: #030712;
  font-family: "Open Sans", sans-serif;
  outline: none;
  background: #fff;
  font-weight: 500;
  appearance: none;
}
input::placeholder {
  color: #030712;
  font-weight: 500;
}

.enquiry-card input:focus,
.enquiry-card select:focus {
  border-color: #2563eb;
}

.select-wrapper {
  position: relative;
}
.select-wrapper::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-60%);
  color: #6b7280;
  font-size: 13px;
  pointer-events: none;
}

.submit-btn {
  width: 42%;
  display: block;
  margin: auto;
  padding: 12px;
  background: #001c54;
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
}
.submit-btn:hover {
  background: #0f1d4e;
}
.enquiry-card .npf_wgts {
    line-height: 0;
}
/* scholarship strip */
.scholarship-strip {
  /* margin: 14px -22px 0; */
  margin: 0px -22px 0;
  background: #ffefb4;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.scholarship-strip p {
  font-size: 16px;
  font-weight: 700;
  color: #234192;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-primary);
}

.progress-bar-outer {
  width: 100%;
  height: 10px;
  background: #d3ccad;
  border-radius: 4px;
  overflow: hidden;
}
.progress-bar-inner {
  width: 85%;
  height: 100%;
  background: #234192;
  border-radius: 4px;
}

/* section 1st stop here  */

/* section 2 start here  */
.stats-bar {
  display: flex;
  justify-content: space-between;
  background: #1a2c6e;
}

.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 35px 28px;
}

/* Middle item gets yellow background */
#stat_sec{
 background: #f8c300;
}
#stat_sec .stat-number {
  color: #234192;
}
.stat-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  object-fit: contain;
}
.stat-text {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.stat-number {
  font-family: var(--font-secondary);
  font-size: 40px;
  font-weight: 400;
  color: #f8c300;
}
.stat-label {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

/* section 2 end here  */

/* section 3rd strat here  */

.rankings-section {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: 90%;
  padding: 50px 0px;
  margin: 0 auto;
  background: #fff;
}

/* ── LEFT COLUMN ── */
.rankings-left {
  width: 57%;
}

.rankings-left h2 {
  font-family: var(--font-secondary);
  font-size: 50px;
  font-weight: 400;
  color: #234192;
}

.rankings-left p {
  font-size: 20px;
  line-height: 30px;
  color: #2c3e50;
  margin-bottom: 30px;
  font-family: var(--font-third);
}

.rankings-left p a,
.rankings-left p strong {
  font-weight: 700;
  color: #234192;
  text-decoration: none;
}

.rankings-left p a:hover {
  text-decoration: underline;
}

.student-image {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.student-image img {
  width: 90%;
}

/* Placeholder if no image uploaded */
/* ── RIGHT COLUMN ── */
.rankings-right {
  flex: 1;
  min-width: 0;
  background: #ebf1ff;
  border-radius: 14px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accreditation-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
}

.acc-text {
  font-size: 18px;
  font-weight: 400;
  color: #2c3e50;
  line-height: 26px;
  font-family: var(--font-third);
  width: 75%;
}

/* section 3rd stop here  */

/* why section start from here  */
.why-section {
  background: #234192;
  padding: 50px 55px 50px;
}

/* ── HEADING ── */
.why-heading {
  font-family: var(--font-secondary);
  font-size: 50px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 40px;
}
span.new_abbs {
  background: #fdd024;
  border-radius: 13px;
  color: #234192;
  padding: 0px 30px;
}
.why-heading .highlight-badge {
  background: #f5b800;
  color: #1a2c6e;
  padding: 4px 14px;
  border-radius: 8px;
  font-size: 30px;
  font-weight: 900;
}

/* ── GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6%;
  row-gap: 15%;
  margin: 6% 0px;
}

/* ── CARD ── */
.card {
  background: #f2f5ff;
  border-radius: 16px;
  padding: 30px;
  position: relative;
}
.card-icon {
  position: absolute;
  top: -40px;
  right: 20px;
}

.card-title {
  font-family: var(--font-secondary);
  font-size: 28px;
  font-weight: 400;
  color: #234192;
  margin-top: 20px;
  margin-bottom: 10px;
  width: 60%;
  line-height: 34px;
}

.card-desc {
  font-family: var(--font-third);
  font-size: 16px;
  color: #2c3e50;
  line-height: 28px;
  font-weight: 400;
  width: 90%;
}

/* why section stop from here  */

/* school opportunity  */
.scholarship-section {
  background-color: #2a3f9f;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scholarship-section h2 {
  font-family: var(--font-secondary);
  color: #ffffff;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 35px;
  text-align: center;
}
.school-card-content h3 {
  font-family: var(--font-secondary);
  color: #ffffff;
  font-size: 40px;
  font-weight: 400;
  color: #234192;
}

.school_card {
  background: #ebf0ff;
  border-radius: 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
  padding: 50px;
  width: 90%;
}

/* Placeholder image using a gradient if no real image */

.school-card-content p {
  color: #2c3e50;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  font-family: var(--font-third);
  width: 90%;
}
/* school opportunity end  */

/*  hiring section  */
.hiring-section h2 {
  text-align: center;
  color: #234192;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 36px;
  font-family: var(--font-secondary);
}

section.hiring-section {
  padding: 50px 0px;
}
/* Carousel item */
.partner-item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
}

.partner-item img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0%);
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.partner-item img:hover {
  transform: scale(1.07);
  filter: grayscale(0%) brightness(1.05);
}
/*  hiring section  end */

/* alumini section start from here  */

.alumni-section {
  background-color: #234192;
  padding: 50px;
}

.alumni-section h2 {
  font-family: var(--font-secondary);
  color: #ffffff;
  font-size: 50px;
  font-weight: 400;
  width: 88%;
  margin: 30px auto;
}
/* ── Card ── */

.alumni-card {
  background: #fffbee;
  border-radius: 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  padding: 50px;
  width: 88%;
  margin: auto;
}

/* ── Alumni photo ── */
/* ── Text content ── */
.alumni-content {
  flex: 1;
}

.alumni-content h3 {
  color: #234192;
  font-family: var(--font-secondary);
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 4px;
}
.alumni-content .designation {
  font-family: var(--font-third);
  color: #2c3e50;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}
.alumni-content p {
  color: #2c3e50;
  font-size: 18px;
  font-family: var(--font-third);
}
#alumniCarousel .owl-nav button {
  position: absolute;
  top: -80px;
}
#alumniCarousel button.owl-prev {
  right: 15%;
  background: none;
}
#alumniCarousel button.owl-next {
  right: 10%;
  background: none;
}

#alumniCarousel .owl-nav button span {
  color: #234192;
  background-color: #f8c300;
  padding: 0px 16px;
  font-size: 35px;
  border-radius: 10px;
  font-family: var(--font-primary);
}
/* alumini section stop from here  */

/* admission start section here  */
section.admission_section {
  padding: 50px 0px;
  margin-bottom: 8%;
}
.admission_section h2 {
  font-family: var(--font-secondary);
  color: #234192;
  font-size: 60px;
  font-weight: 400;
  margin-bottom: 35px;
  text-align: center;
}
.process-wrapper {
  position: relative;
  max-width: 80%;
  margin: auto;
}

/* Horizontal line */
.process-wrapper::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 8%;
  width: 85%;
  height: 2px;
  background: #f8c300;
  z-index: 0;
}

.process {
  display: flex;
  justify-content: space-between;
}

.step {
  width: 18%;
  position: relative;
  z-index: 1;
}

.circle {
  width: 80px;
  height: 80px;
  background: #f8c300;
  color: #1a3d8f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 400;
  margin: auto;
  font-family: var(--font-secondary);
}

.step h4 {
  font-size: 22px;
  color: #234192;
  margin: 10px 0px;
  text-align: center;
  font-family: "Rozha One";
  font-weight: 400;
  line-height: 28px;
}

.step p {
  font-size: 14px;
  color: #2c3e50;
  font-family: var(--font-third);
  text-align: center;
}
/* admission stop section here  */

/* program  */
.programs-section {
  padding: 50px 0px;
  width: 90%;
  margin: 0 auto;
}

.programs-section h2 {
  font-family: var(--font-secondary);
  color: #234192;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 35px;
  text-align: center;
}

/* ── Tab wrapper ── */
.tab-wrapper {
  background: #ebf0ff;
  border-radius: 28px;
  padding: 50px;
}

/* Small avatar above tabs */
.tab-avatar-top {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  background: #c8d0e7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-avatar-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tab-avatar-top svg {
  width: 28px;
  height: 28px;
  fill: #7a8ab0;
}

/* ── Tab buttons ── */
.tab-buttons {
  display: flex;
  gap: 12px;
}

.tab-btn {
  flex: 1;
  padding: 8px 20px;
  border-radius: 18px;
  border: none;
  font-family: var;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--font-secondary);
  font-size: 40px;
  color: #234192;
  background: #d7def5;
}

.tab-btn.active {
  background: #1a2e7a;
  color: #ffffff;
}

/* ── Tab content ── */
.tab-content-wrapper {
  background: #eef1f8;
  border-radius: 0 0 14px 14px;
  padding: 36px 0px 0px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 36px;
}

/* ── Left content ── */
.prog-left h2 {
  font-family: var(--font-secondary);
  color: #234192;
  font-size: 35px;
  font-weight: 400;
  margin-bottom: 4px;
  text-align: justify;
}

.prog-left .duration {
  font-size: 16px;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 18px;
  font-family: var(--font-third);
}

.prog-left p {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 14px;
  color: #2c3e50;
}

.prog-left .eligibility {
  font-size: 18px;
  color: #231f20;
  font-family: var(--font-third);
  font-weight: 600;
  margin-top: 6px;
}

.prog-left .eligibility strong {
  color: #1a2e7a;
}

/* ── Right sidebar ── */
.prog-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.specializations-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 40px;
}

.specializations-box h3 {
  font-family: var(--font-secondary);
  color: #234192;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.35;
}
.program-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.program-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 16px;
  color: #2c3e50;
  line-height: 1.4;
  font-family: var(--font-third);
}

.program-list li::before {
  content: "✔";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #4caf50;
  color: #fff;
  font-size: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Bottom note card ── */

.note-card p {
  font-size: 16px;
  color: #2c3e50b2;
  line-height: 1.55;
  text-align: center;
  width: 80%;
  margin: auto;
  font-family: var(--font-third);
}

/* program  */

/* future section start here  */
.future_begins {
  border-radius: 20px;
  width: 85%;
  margin: 40px auto;
  min-height: 220px;
  display: flex;
  align-items: center;
  background: url(../images/background_banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ── Student image ── */

.main_future {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 0px 40px;
}
.hero-student {
  margin-top: -8%;
}

/* ── Right content ── */

/* ── Countdown pill ── */
.countdown-pill {
  display: inline-flex;
  align-items: center;
  background: #ffefb4;
  border-radius: 16px;
  padding: 12px 20px;
  gap: 10px;
  margin-bottom: 16px;
}

.pill-label {
  font-weight: 700;
  line-height: 1.2;
  color: #234192;
  font-size: 14px;
  font-family: var(--font-primary);
}

.pill-label span {
  display: block;
  font-weight: 700;
  line-height: 1.2;
  color: #234192;
  font-size: 14px;
  font-family: var(--font-primary);
}

/* Countdown blocks */
.countdown-blocks {
  display: flex;
  gap: 20px;
  align-items: center;
}

.cd-block .cd-num {
  display: block;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
  background: #234192;
  padding: 6px;
  border-radius: 2px;
}

.cd-block .cd-label {
  display: block;
  color: #616161;
  font-size: 12px;
  text-transform: capitalize;
  font-weight: 600;
}

/* ── Headline ── */
.content_inner_futture h3 {
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  font-family: var(--font-secondary);
}

.content_inner_futture h3 spam {
  color: #e8b84b;
  font-weight: 400;
  font-family: var(--font-secondary);
}

/* ── Body text ── */
.content_inner_futture p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px;
  font-family: var(--font-third);
  width: 79%;
}

/* ── Tagline ── */
.content_inner_futture p.hero-tagline {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  font-family: var(--font-third);
}

.content_inner_futture .hero-tagline .highlight {
  background: #234192;
  color: #f8c300;
  padding: 2px 10px;
  border-radius: 8px;
  font-weight: 700;
  font-family: var(--font-third);
}

/* ── CTA Button ── */
.btn-cta {
  display: inline-block;
  background: #f8c300;
  color: #234192;
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

/* future section stop here  */

/* cta contact button  */
.ulbtnn a {
  display: block;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-decoration: none;
  color: #234192;
  padding: 15px 10px;
  font-weight: 600;
  letter-spacing: 1px;
  background: #fdd024;
  border-radius: 20px;
  cursor: pointer;
}
.ulbtnn li {
  margin-bottom: 5px;
}
.ulbtnn {
  list-style: none;
  padding: 0;
  margin: 0;
}
.floating-contact {
  position: fixed;
  right: 0;
  top: 30%;
  z-index: 999;
  display: block;
}
.ulbtnn a.call {
    display: none;
}

.popup-box {
    background: #fff;
    padding: 0px;
    width: 500px;
    max-width: 90%;
    border-radius: 8px;
    position: relative;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    border: none;
    background: none;
    font-size: 25px;
    cursor: pointer;
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
/* cta contact button  */

/* mobile responsive  */
@media (max-width: 1300px) {
  .why-section {
    margin-top: 35px;
  }
  .headline {
    width: 65%;
  }
  .card-title {
    width: 70%;
  }
  .content_inner_futture p.hero-tagline {
    font-size: 20px;
  }
  .process-wrapper {
    max-width: 95%;
  }
  .rankings-right {
    padding: 40px;
  }
  .school-card-content h3 {
    line-height: 50px;
    margin-bottom: 20px;
  }
  .student-future img {
    width: 380px;
  }
  .cards-grid{
    margin: 10% 0px;
  }
}
@media (max-width: 1100px) {
  .cards-grid {
  row-gap: 10%;
  }
  .alumni-card{
    width: 95%;
  }
  .headline {
    width: 80%;
  }
  .enquiry-card {
    width: 32%;
  }
  .student-image img {
    width: 100%;
  }
  .student-image {
    max-width: unset;
  }
}

@media (max-width: 990px) {
  .rankings-section {
    flex-wrap: wrap;
  }
  .enquiry-card {
    width: 80%;
  }
  .hero {
    flex-direction: column;
    height: 100%;
  }
  .stats-bar {
    flex-wrap: wrap;
  }
  .rankings-left {
    width: 100%;
  }
  .student-image {
    height: auto;
  }
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3%;
    row-gap: 7%;
    margin-bottom: 22%;
  }
  .tab-pane.active {
    grid-template-columns: auto;
  }
  .school_card {
    flex-wrap: wrap;
  }
  .main_future {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-content: center;
    padding: 40px 40px 0px;
    height: auto;
  }
  .student-future img {
    width: 255px;
  }
  .process {
    flex-direction: column;
  }
  #alumniCarousel button.owl-next {
    right: 5%;
  }
  .process-wrapper::before {
    position: unset;
  }
  .step {
    margin-bottom: 30px;
    width: 100%;
  }
}
@media (max-width: 767px) {
	.hide-mobile {
		display: none;
	}
	.rankings-right {
        padding: 20px;
    }
	.cta-btn{
		font-size: 17px;
		padding: 4px 25px;
		border-radius: 10px;
	}
	.logo-circle img {
		width: 50px;
	}
	section.admission_section{
		padding: 50px 0px 0;
	}
	.alumni-card{
		padding: 20px;
		gap:20px;
	}
	.stat-item {
		flex: 1;
		display: flex;
		justify-content: left;
		gap: 10px;
		padding: 12px 28px;
		align-items: center;
	}
	.stat-number{
		font-size: 25px;
	}
	.stat-label{
		font-size: 20px;	
	}
  .cards-grid{
    margin-bottom: 1%;
	row-gap: 4%;
  }
  .floating-contact {
    bottom: 0;
    top: auto;
    right: 0;
    width: 100%;
  }
  .ulbtnn li {
    flex: 1;
    margin: 0;
  }
  .ulbtnn a.call{
	  display:block;
  }
  .ulbtnn a {
    writing-mode: horizontal-tb;
    transform: none;
    text-align: center;
    padding: 14px;
    font-size: 14px;
    display: block;
    border-radius: 0px;
  }
  .badge{
	  margin-bottom: 10px;
	  font-size:14px;
  }

  .ulbtnn {
    display: flex;
  }
  .enquiry.open-popup {
    display: block;
    background: #234192;
    color: #fff;
  }
  .enquiry-card {
    width: 100%;
  }
  .hero {
    padding: 25px 30px;
	gap: 10px;
  }
	.headline {
        line-height: 28px;
        width: 95%;
        font-size: 28px;
        margin-bottom: 8px;
    }
  .accreditation-label{
	  margin: 10px 0;
  }
  .cards-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  /* .student-image img {
    width: 370px;
  } */
  .card-title {
    width: 100%;
  }
  .card-desc {
    width: 100%;
  }
  .why-section {
    padding: 25px 25px 280px;
  }
  .programs-section h2,
  .scholarship-section h2,
  .hiring-section h2,
  .alumni-section h2,
  .admission_section h2,
  .rankings-left h2 {
    font-size: 40px;
    line-height: 40px;
  }
  .tab-wrapper {
    padding: 20px;
  }
  .tab-btn {
    font-size: 30px;
  }
  .scholarship-section {
    padding: 50px 1px;
  }
  .school_card {
    padding: 24px;
  }
  .school_img img {
    width: 100%;
  }
  .school-card-content h3 {
    line-height: 35px;
    font-size: 30px;
  }
  .alumni-section {
    padding: 40px 15px;
    text-align: center;
  }
  #alumniCarousel button.owl-prev {
    left: -81%;
  }
  #alumniCarousel .owl-nav button {
    top: 50%;
  }
  #alumniCarousel button.owl-next {
    right: -7%;
  }
  .content_inner_futture h3 {
    font-size: 29px;
  }
  .content_inner_futture p {
    width: 100%;
  }
  .content_inner_futture p.hero-tagline {
    font-size: 16px;
  }
  .main_future {
    padding: 30px 30px 0;
  }
  .future_begins {
    margin-bottom: 45px;
    width: 95%;
  }
  .rankings-left p {
    font-size: 16px;
  }
  .school_img img {
    width: 100%;
  }
  .scholarship-section {
    padding: 56px 5px;
  }
  .school_card {
    padding: 20px;
  }
  .navigation-wrap {
    flex-direction: column;
    row-gap: 20px;
  }
  .alumni-card {
    flex-wrap: wrap;
    justify-content: center;
  }
  .alumni-content h3 {
    font-size: 34px;
    line-height: 35px;
  }
}
@media (max-width: 425px) {
.main_future {
        padding: 30px 10px 0;
    }
        .why-section {
        padding: 25px 25px 375px;
  }
}