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

html {
  scroll-behavior: smooth;
}

:root {
  --font-primary: "Montserrat", sans-serif;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.primary-btn {
  background-color: #5b2b81;
  color: white;
  font-family: var(--font-primary);
  font-weight: 500;
  padding: 10px 20px;
  border: none;
  border-radius: 120px;
  text-decoration: none;
}
.campus_btn{
  background-color: #ffffff  !important;
  color: #5b2b81 !important;

}

.primary-btn:hover {
    background: #fff;
    color: #5b2b81;
    border: 1px solid #43c44b;
}

/* header section strat here  */



.navigation {
  position: sticky;
  left: 0;
  top: 0;
  right: 0;
  bottom: auto;
  z-index: 999;
  display: flex;
  max-width: none;
  padding: 10px 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;
}

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


.hero-top {
  position: relative;
  z-index: 1;
  display: flex;
  padding: 52px 64px 0;
  gap: 0;
  min-height: 600px;
  justify-content: space-between;
  align-items: center;
}

/* ── LEFT ── */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 44px;
}

.hero-left h1 {
  font-family: var(--font-primary);
  font-size: 50px;
  color: #5b2b81;
  line-height: 1.15;
}

.hero-left .sub {
  font-family: var(--font-primary);
  font-size: 20px;
  color: #000000;
  line-height: 1.5;
}

.badges {
  display: flex;
  gap: 10px;
}

.badge {
  font-family: var(--font-primary);
  font-size: 16px;
  color: #221818;
  font-weight: 500;
  background-color: #ffffff;
  padding: 4px 16px;
  border: 1px solid #fff;
  border-radius: 99px;
}

.admissions-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  padding: 7px 20px;
  width: fit-content;
  font-family: var(--font-primary);
  font-size: 25px;
  font-weight: 400;
  color: #000000;
}

.admissions-pill strong {
  font-weight: 700;
  color: #000000;
}

/* bottom */

.feature-wrapper {
  background: #e8dff1;
  padding: 30px;
  width: 90%;
  margin: auto;
  border-radius: 12px;
  /* position: absolute;
  bottom: -140px;
  left: 70px; */
  box-shadow: 0px 32px 20px #EBE5F0;
}

/* Main White Container */
.feature-container {
  margin: auto;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}

/* Individual Cards */
.feature-card {
  flex: 1;
  min-width: 220px;
  background: #f8f6fb;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  transition: 0.3s ease;
}

/* Hover Effect */
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Icon */
.feature-card img {
  width: 40px;
  margin-bottom: 15px;
}
.feature-mobile_container .feature-card img {
  width: 40px;
  margin-bottom: 15px;
}

.feature-card p {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: #1e1919;
  text-align: center;
  line-height: 1.35;
}

#feture_section_mobile {
  display: none;
}

/* section 2rd end here  */

/* section 3rd strat here  */
.pathways {
  background: #5b2b81;
  padding: 56px 32px 60px;
  border-radius: 100px;
  margin-top: 50px;
}

.pathways-inner {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* ── TITLE ── */
.pathways-title {
  font-family: var(--font-primary);
  font-size: 40px;
  color: #fff;
  text-align: center;
}

/* ── TAB BUTTONS ── */
.tab-btns {
  display: flex;
  gap: 12px;
}

.tab-btn {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  padding: 8px 28px;
  border-radius: 99px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: #fff;
  color: #1a1a2e;
}

.tab-btn.active {
  background: #22c55e;
  border-color: #22c55e;
  color: #fff;
}
/* ── CONTENT WRAPPER ── */
.tab-content-wrap {
  width: 100%;
  background: #fff;
  border-radius: 10px;
}

/* ── PANELS ── */
.tab-panel {
  display: none;
  padding: 32px 28px 36px;
}
.tab-panel.active {
  display: block;
}
/* ── PANEL HEADER ── */
.panel-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.board-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
}
.panel-header h3 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 700;
  color: #5b2b81;
}
.panel-sub {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 500;
  color: #000000;
  margin-top: 3px;
}

/* ── STAGE CARDS GRID ── */
.stage-cards {
  display: flex;
  justify-content: center;
   gap: 20px;
}
/* css */
.stage-card {
  background: #f5f0ff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.stage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(91, 31, 160, 0.15);
}

/* ── CARD IMAGE ── */
.stage-img {
  width: 100%;
  height: 160px;
  background: #c4b5fd;
  overflow: hidden;
}

.stage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── CARD BODY ── */
.stage-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  background: #ded5e6;
  justify-content: space-between;
}

.stage-body h4 {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 600;
  color: #5b1fa0;
}

.stage-age {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 700;
  color: #221010;
}

.stage-body p {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  color: #1e1919;
  margin-top: 4px;
}




/* ── GRADE TAGS ── */
.grade-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.grade-tag {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: #1e1919;
  border: 1.5px solid #1e1919;
  border-radius: 999px;
  padding: 3px 10px;
}

.program-container{
  display:flex;
  align-items:center;
  gap:50px;
}

.program-image img{
  width:320px;
}

.program-content{
  flex:1;
}

.program-content h2{
      font-size: 25px;
    margin-bottom: 10px;
    color: #5b1fa0;
}

.age{
      margin-bottom: 16px;
    font-weight: 500;
    color: #1e1919;
}

.program-cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.card{
  background:white;
  padding:20px;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  transition:0.3s;
}


/* start section 4th strat here  */

.stats-section {
  padding: 50px;
  display: none;
}

.stats-inner {
  max-width: 85%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* ── TITLE ── */
.stats-title {
  font-family: var(--font-primary);
  font-size: 40px;
  color: #000000;
  text-align: center;
  line-height: 1.35;
  width: 60%;
}
.main_car {
  width: 91%;
  background: #f5fcf6;
  padding: 50px;
  margin: auto;
  text-align: center;
  border: 1px solid #43c44b;
  border-radius: 12px;
}
.stats-owl {
  margin-bottom: 30px;
}

/* ── STAT CARDS ── */
.stat-card {
  border: 1.5px solid #000000;
  background-color: #ffffff;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 200px;
}

.stat-num {
  font-family: var(--font-primary);
  font-size: 60px;
  font-weight: 600;
  color: #5b2b81;
  line-height: 1;
  text-align: center;
}

.stat-card p {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 400;
  color: #1e1919;
  line-height: 1.55;
  text-align: center;
}
.stats-owl .owl-nav button {
  position: absolute;
  top: 30%;
}
.testimonial-group .owl-nav button{
   position: absolute;
  top: 30%;
}

.stats-owl button.owl-prev {
  left: -35px;
}
.stats-owl button.owl-next {
  right: -30px;
}
.stats-owl .owl-nav button span {
  font-size: 50px;
}
/* ── NOTE TEXT ── */
.stats-note {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: #1e1919;
  text-align: center;
  margin-bottom: 30px;
}
/* start section 4th end here  */

/* everything section start here  */
.explore-section {
  background-color: #5b2b81;
  padding: 70px 50px;
  border-radius: 100px;
}

.explore-inner {
  width: 70%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* ── TITLE ── */
.explore-title {
  font-family: var(--font-primary);
  font-size: 35px;
  color: #fff;
  text-align: center;
  line-height: 1.3;
}

/* ── TAB BUTTONS ── */
.explore-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.explore-btn {
  font-family: var(--font-primary);
  font-size: 20px;
  letter-spacing: 0.8px;
  padding: 9px 24px;
  border-radius: 999px;
  border: 1.5px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.explore-btn.active {
  background: #22c55e;
  border-color: #22c55e;
  color: #fff;
}

.explore-btn:not(.active):hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ── CONTENT AREA ── */
.explore-content {
  width: 100%;
  background: #f5f0ff;
  border-radius: 16px;
  overflow: hidden;
}

/* ── PANELS ── */
.explore-panel {
  display: none;
  align-items: center;
  gap: 0;
  padding: 40px;
  background-image: url(../images/back_com.webp);
    background-repeat: no-repeat;
    background-size: 20%;
    background-position: right;
}

.explore-panel.active {
  display: flex;
}

/* ── LEFT IMAGE ── */
.panel-img {
  width: 450px;
  border-radius: 10px;
  overflow: hidden;
  background: #c4b5fd;
}

.panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── RIGHT INFO ── */
.panel-info {
  flex: 1;
  padding: 20px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  }

.panel-info h3 {
  font-family: var(--font-primary);
  font-size: 25px;
  font-weight: 600;
  color: #5b1fa0;
  letter-spacing: 1px;
}

.panel-info ul,
.overlay ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel-info ul li {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 500;
  color: #1e1919;
  display: flex;
  align-items: center;
  gap: 10px;
  
}
.panel-info p {
    font-size: 20px;
    font-weight: 500;
    color: #1e1919;
}

.overlay ul li {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
      text-align: left;
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check_card {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  color: #000000;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* everything section end here  */

/* addmission start here  */
.admission-section {
  padding: 50px;
}

.section-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #000000;
  text-align: center;
}

.steps-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.step-card {
  position: relative;
  width: 250px;
  padding: 30px;
  border: 1.5px dashed #000000;
  border-radius: 10px;
  background: #fff;
  transition: 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-label {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #d5e3f2;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 4px;
}

.icon-circle img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000000;
}

.step-card p {
  font-size: 16px;
  color: #221010;
  line-height: 1.5;
}

/* addmission end here  */

/* admmission cst button */

.admission-cta {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.cta-container {
  background-color: #f5fcf6;
  padding: 40px 40px;
  text-align: center;
  width: 65%;
  border-radius: 6px;
  border: 1px solid #d1f1d4;
}

.cta-container h2 {
  color: #5b2c83;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* admmission cst end button */

/* faq start here  */
.faq-section {
  text-align: center;
}

.faq-title {
  width: 70%;
  margin: 20px auto;
  font-size: 40px;
  color: #000000;
  font-family: var(--font-primary);
      line-height: 50px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #ebe5f0;
  border-radius: 8px;
  padding: 10px 40px;
  text-align: left;
}

.faq-question {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #000000;
}

.faq-answer {
  margin-top: 15px;
  font-size: 16px;
  color: #221010;
  line-height: 1.6;
}

.icon {
  background: #e8e8e8;
  color: #2e7d32;
  font-size: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Closed FAQ Items */
.faq-item:not(.active) .faq-answer {
  display: none;
}
.faq-item.active {
  padding: 20px 40px;
}
.icon {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

/* Arrow shape */
.icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #2e7d32;
  border-bottom: 2px solid #2e7d32;
  transform: translate(-50%, -60%) rotate(45deg);
  transition: 0.3s ease;
}

/* Rotate arrow when active */
.faq-item.active .icon::before {
  transform: translate(-50%, -40%) rotate(-135deg);
}
/* faq end here  */

.footer_main {
  padding: 20px 0px;
  background-color: #f7f4f9;
  text-align: center;
}
.footer_main p {
  color: #221010;
  font-size: 16px;
  font-family: var(--font-primary);
}

/* location section start here  */

.location-section {
  padding: 60px 20px;
  text-align: center;
}

.location-card {
  width: 90%;
  margin: auto;
  background: #5b1e8f;
  border-radius: 14px;
  padding: 40px;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.location-content {
  flex: 1;
  text-align: left;
  color: #fff;
}

.location-content h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  width: 79%;
  line-height: 42px;
  margin: 20px auto;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.info-item h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 5px;
}


.info-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 30px 0;
}

.location-map {
  flex: 1;
  min-width: 725px;
}

.location-map iframe {
  width: 100%;
  height: 430px;
  border: none;
  border-radius: 10px;
}
/* location section end here   */

/* what student can do section start here */

.children-section {
  padding: 60px 20px;
  text-align: center;
}

.children-section h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Filter Buttons */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 30px;
  border-radius: 999px;
  border: none;
  background: #6a2c91;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
  font-family: var(--font-primary);
}

.filter-btn.active {
  background: #39b54a;
}

/* Testimonials */
.testimonial-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  width: 34%;
  position: relative;
  background: #fff;
  padding: 15px;
  border-radius: 22px;
  border: 1.5px dashed #5b2b81;
}

.testimonial-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.quote {
  font-size: 16px;
  margin-bottom: 15px;
  color: #000000;
  font-weight: 500;
  line-height: 20px;
}

.testimonial-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #5b2b81;
}

.testimonial-card small {
  font-size: 13px;
  color: #000000;
}

/* Badges */
.student_badge {
  position: absolute;
  display: inline-block;
  padding: 0px 15px;
  background: #d5e3f2;
  color: #000000;
  font-size: 14px;
  border-radius: 6px;
  font-weight: 500;
  top: -15px;
  left: 15%;
}

.student_badge.green {
  background: #dff2d5;
}

.student_badge.orange {
  background: #f2d6d5;
}

.testimonial-group {
  display: none;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-group.active-group {
  display: flex;
  flex-wrap: wrap;
}

.test_main {
  display: flex;
  padding: 15px;
  text-align: start;
  gap: 20px;
  align-items: center;
}

/* what student can do section stop here */

/* musuem section start here  */
.campus-section {
  background: #5b2b81;
  padding: 60px;
  color: #fff;
  border-radius: 100px 100px 0px 0px;
}

.campus-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}
.campus-image {
  width: 60%;
  position: relative;
}
.campus-image img {
  width: 100%;
}

.campus-image h5{
position:absolute;
bottom:20px;
right:0;
max-width:420px;
background:#fff;
color:#5b2b81;
padding:16px 24px;
font-size:18px;
font-weight:600;
border-radius:30px 0 0 0;
box-shadow:0 6px 20px rgba(0,0,0,0.15);
}

.campus-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  width: 65%;
  line-height: 55px;
}
.campus-content {
  width: 60%;
}

.campus-content p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
  width: 75%;
}

.thumbnail-wrapper {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.thumbnail-wrapper img {
  width: 212px;
  height: 130px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}

.thumbnail-wrapper img:hover,
.thumbnail-wrapper img.active {
  opacity: 1;
  transform: scale(1.05);
  border: 2px solid #43c44b;
}
/* musuem section stop here  */

/* glendal help start here  */
.purpose-section {
  padding: 60px 0px;
  background: #eae7ee;
  border-radius: 0 0 60px 60px;
}

.purpose-carousel .owl-item .purpose-card{
transform: scale(0.88);
transition: all 0.4s ease;
opacity: 0.6;
}

/* center card */
.purpose-carousel .owl-item.center .purpose-card{
transform: scale(1);
opacity: 1;
width: 75%;
margin: auto;
}

.purpose-card {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.image-wrapper p {
  position: absolute;
  bottom: 35px;
  padding: 10px;
  text-align: center;
  color: #fff;
  width: 100%;
  font-weight: 500;
  font-size: 20px;
}
img.image_test {
  position: relative;
}

.image-wrapper img {
  width: 375px;
  height: 450px;
  display: block;
  border-radius: 10px;
  transition: 0.4s;
  object-fit: cover;
}

/* Overlay */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #5b2b81;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: 0.4s ease;
}

.purpose-card h4 {
  margin-bottom: 20px;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
}

/* Hover Effect */
.image-wrapper:hover .overlay {
  opacity: 1;
}

.image-wrapper:hover img {
  transform: scale(1.1);
}

.btn-wrapper {
  text-align: center;
  margin-top: 40px;
}

.purpose-carousel .owl-nav button{
  position: absolute;
  top: 50%;
}
.purpose-carousel button.owl-prev {
  left: 15%;
}
.purpose-carousel button.owl-next {
  right: 15%;
}
.program-cards .owl-nav button{
  position: absolute;
  top: 30%;
}
.program-cards button.owl-prev {
    left: -5%;
}
.program-cards button.owl-next {
    right: 0%;
}
.purpose-carousel button.owl-prev img,
.purpose-carousel button.owl-next img {
  width: 75%;
  background-image: url("../images/bckgroung_blur.webp");
}
.purpose-carousel {
  background-image: url(../images/bckgroung_blur.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: left center;
}

.steps-mobile,
.admissions_mobile {
  display: none;
}

.form-card {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 10px;
  padding: 2%;
}
.form_mobile {
  display: none;
}
.info-item h5.buslp, .info-item h5.addlp {
  font-size: 22px !important;
  font-weight: 500 !important;
  margin-bottom: 5px !important;
}

/* glendal help stop here  */

/* ══════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════ */
@media (max-width: 1480px) {
  .feature-wrapper {
    bottom: -140px;
  }
}
@media (max-width: 1350px) {
  .filter-buttons {
    display: inline-block;
    overflow-x: auto !important;
    max-width: 100%;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: none;
  }
  .feature-wrapper {
    bottom: -100px;
  }
  .hero-top {
    align-items: normal;
  }
  .testimonial-card {
    width: 40%;
  }
  .thumbnail-wrapper img {
    width: 178px;
  }
  .step-card {
    width: 220px;
  }
  .cta-container {
    width: 75%;
  }
  .faq-title {
    width: 75%;
  }
  .stats-title {
    width: 70%;
  }
}
@media (max-width: 1300px) {
  .step-card {
    width: 215px;
  }
  .hero-top{
   align-items: self-start;
  }
}

@media (max-width: 1200px) {
  .thumbnail-wrapper img {
    width: 165px;
    height: 100px;
  }
  .stats-title {
    width: 80%;
  }
  .explore-inner {
    width: 90%;
  }
  .thumbnail-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 1100px) {
  .hero {
    margin-bottom: 14%;
  }
  .feature-card {
    min-width: 175px;
  }

  .campus-content h2 {
    width: 100%;
  }
  .campus-content p {
    width: 100%;
  }
  .thumbnail-wrapper img {
    width: 205px;
  }
  .stats-title {
    width: 100%;
  }
}

@media (max-width: 990px) {
 .program-container{
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero {
    margin-bottom: 0%;
  }
  .form-card {
    display: none;
  }
  .form_mobile {
    display: block;
    
  }
  .stage-cards {
    display: block;
  }
  #feture_section_mobile {
    display: block;
  }
  #feture_section_desktop {
    display: none;
  }
  .feature-wrapper {
    position: unset;
  }
  .feature-card {
    text-align: -webkit-center;
    width: 75%;
    margin: auto;
  }
  .feature-card p {
    font-size: 14px;
  }
  .testimonial-card {
    width: 95%;
  }
  .campus-wrapper {
    flex-wrap: wrap;
  }

  .campus-content {
    width: 100%;
    text-align: center;
  }
  .thumbnail-wrapper img {
    width: 310px;
    
  }
  .stats-inner {
    max-width: 100%;
  }
  .explore-panel.active {
    flex-wrap: wrap;
  }
  .step-card {
    width: 300px;
  }
  .cta-container {
    width: 95%;
  }
  .faq-title {
    width: 90%;
  }
  .faq-container {
    max-width: 90%;
  }
  .location-card {
    width: 100%;
  }
  .explore-tabs {
        display: flex;
        overflow-x: auto !important;
        max-width: 100%;
        overflow-y: hidden;
        white-space: nowrap;
        scrollbar-width: none;
        gap: 8px;

  }
  .feature-mobile_container .owl-nav button span {
    font-size: 50px;
  }
  .stage-cards .owl-nav button span, .testimonial-group .owl-nav button span, .program-cards 
  .owl-nav button span {
    font-size: 50px;
    color: #9d6fd4;
  }
  .feature-mobile_container button.owl-prev {
    left: 0px;
  }
  .stage-cards button.owl-prev, .testimonial-group button.owl-prev{
    left: -20px;
  }
  .feature-mobile_container .owl-nav button,
  .stage-cards .owl-nav button {
    position: absolute;
    top: 10%;
  }
  .stage-cards button.owl-next, .testimonial-group button.owl-next {
    right: -20px;
  }
  .feature-mobile_container button.owl-next {
    right: 0px;
  }
}

@media (max-width: 767px) {
  .campus-image h5 {
   bottom: -35px;
    padding: 16px 15px;
    font-size: 13px;
  }

  .stat-card p{
    font-size: 17px;
  }
  .testimonial-card{
     width: 95%;
     margin: auto;
  }
  .purpose-carousel .owl-item.center .purpose-card{
    width: 100%;
  }
  .explore-panel.active{
    padding: 30px;
  }
.pathways{
      padding: 56px 20px 60px;
}

  .testimonial-card{
    margin-top: 15px;
  }

  .test_main{
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .panel-info p {
    font-size: 17px;
  }
  .program-cards{
        grid-template-columns: repeat(1, 1fr);
  }
  .logo-image{
    width: 80%;
  }
  .admission-section {
    padding-bottom: 0px;
}
  .explore-section{
    border-radius: 32px;
    padding: 50px 22px;
  }
      .cta-container {
        width: 100%;
    }
  .campus-content p{
    text-align: left;
  }
  .campus-section{
    border-radius: 32px 32px 0px 0px;
  }
  .overlay ul li {
    font-size: 16px;
  }
  .location-card {
    flex-direction: column-reverse;
  }
  .location-map {
    min-width: 330px;
  }
  .explore-btn {
    padding: 9px 20px;
    font-size: 14px;
  }
  .stats-section {
    padding: 50px 0px;
  }
  .stat-num {
    font-size: 45px;
  }
  .main_car {
    padding: 32px;
  }
  .pathways {
    border-radius: 50px;
  }
  .pathways-inner {
    width: 100%;
  }

  .feature-wrapper {
    bottom: -255px;
    left: 0px;
    width: 100%;
    border-radius: 0px;
  }
  .pathways-title {
    font-size: 27px;
  }
  .panel-header h3 {
    font-size: 18px;
  }
  .panel-sub {
    font-size: 12px;
  }
  .children-section h2 {
    font-size: 33px;
  }
  .campus-image {
    width: 100%;
  }
  .faq-question {
    font-size: 20px;
  }

  .campus-content h2 {
    font-size: 30px;
    text-align: left;
    line-height: 40px;
    margin-top: 20px;
  }
  .campus-section {
    padding: 55px;
    text-align: left;
  }

  .thumbnail-wrapper img {
    width: 84px;
    
  }
  .section-title {
    font-size: 30px;
  }
  .purpose-carousel button.owl-prev img,
  .purpose-carousel button.owl-next img {
    width: 30%;
  }
  .purpose-carousel button.owl-next {
    right: 0%;
  }
  .purpose-carousel button.owl-prev {
    left: 0%;
  }
  .stats-title,
  .explore-title {
    font-size: 28px;
  }
  .main_car {
    width: 100%;
  }
  .explore-inner {
    width: 100%;
  }
  .explore-panel {
    padding: 15px;
  }
  .panel-info h3 {
    font-size: 20px;
  }
  .panel-info {
    padding: 10px 0px;
  }
  .panel-info ul li {
    font-size: 16px;
  }
  .cta-container h2 {
    font-size: 22px;
  }
  .faq-title {
    font-size: 30px;
  }
  .location-content h3 {
    font-size: 28px;
    width: 100%;
  }
  .location-card {
    padding: 20px;
  }
  .hero-top {
    padding: 25px;
    align-items: inherit;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .hero-left h1 {
    font-size: 30px;
    width: 100%;
    line-height: 40px;
  }
  .hero-left .sub {
    width: 100%;
    font-size: 16px;
  }
  
  
  .admissions-pill {
        border: 3px solid #ffff;
        background: #5B2B81;
        color: #fff;
        font-size: 20px;       
  }
  .badge {
    padding: 4px 20px;
    font-size: 15px;
  }
  .hero-left {
    justify-content: center;
    text-align: center;
    align-items: center;
  }

  /* .hero-left .sub {
        width: 83%;
    } */
  .steps-mobile {
    display: block;
  }
  .steps-container {
    display: none;
  }
  .badges {
    justify-content: center;
  }

  .steps-mobile {
    max-width: 100%;
    margin: auto;
    position: relative;
    padding-left: 70px;
  }

  /* Vertical dotted line */
  .steps-mobile::before {
    content: "";
    position: absolute;
    left: 32px;
    top: 53px;
    width: 2px;
    height: 85%;
    border-left: 2px dotted #bdbdbd;
  }

  /* Each Step */
  .step-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    border: unset;
  }

  /* Circle Icon */
  .icon-circle {
    position: absolute;
    left: -70px;
    width: 60px;
    height: 60px;
    background: #fff;
  }

  /* Content */
  .step-content {
    padding-left: 10px;
  }
  .step-label {
    left: 40px;
  }

  .admissions_mobile {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 25px;
    border-radius: 50px;
    background: #5b2b81;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: 0.3s ease;
    width: 75%;
    text-align: center;
  }
  .filter-btn {
    font-size: 12px;
    padding: 10px 20px;
  }
}

@media (max-width: 425px) {
  .feature-wrapper {
    bottom: -15px;
  }
      .location-map {
        min-width: 290px;
    }
    .primary-btn{
          font-size: 13px;
    }
        .step-card {
        width: 235px;
    }
    .faq-question {
    font-size: 15px;
}
.info-item p {
    font-size: 14px;
}
.admissions_mobile{
  width: 90%;
}
    .cta-container h2 {
        font-size: 20px;
    }
        .campus-content h2 {
        font-size: 25px;
        }

        .campus-section{
            padding: 40px 35px;
        }
}
