:root {
  --primary-orange: #f6a200;
  --primary-dark: #1d1d1d;
  --text-grey: #4a4949;
  --bg-cream: #fff2de;
  --bg-light: #fef6e5;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'FreightSans Pro Medium', 'Gotham', 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: var(--primary-dark);
  overflow-x: hidden;
}

.container {
   max-width: 1300px; 
  margin: 0 auto;
  padding: 10px 20px;
  width: 100%;
}

/* img {
  max-width: 100%;
  height: auto;
  display: block;
} */

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-orange);
  color: #fff;
  border: 1px solid var(--primary-orange);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--primary-orange);
  color: var(--primary-dark);
}

.section-padding {
  padding: 60px 0;
}

/* Tabs inside program card */
.program-tabs {
  margin-top: 12px;
}
.tab-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
}
.tab-btn {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  text-align:left;
  font-size:20px;
  color:#757575;
}
.tab-btn.active {
  background: var(--primary-orange);
  color: #fff;
  border-color: var(--primary-orange);
}
.tab-pane {
  display: block;
}
.tab-pane[hidden] {
  display: none;
}
.program-badge-outline.tab-toggle {
  cursor: pointer;
}

/* Center header for Why Join section */
.why-join-section .section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}


/* Round top corners of the About section */
.section-padding.about-section {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  overflow: hidden;
}

/* Application closing banner styles */
.app-closing-banner {
  background: #f6a200;
  color: #fff;
  padding: 10px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0; /* will be overridden by JS to sit below header */
  z-index: 999;
}
.app-closing-banner .banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.app-closing-banner .banner-label {
  font-weight: 700;
  font-size: 23px;
}
.app-closing-banner .banner-ticker {
  display: flex;
  gap: 12px;
  align-items: center;
}
.app-closing-banner .time-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  /*min-width: 56px;*/
  border: 1px solid #fff;
  padding:4px;
  border-radius:5px;
}
.app-closing-banner .time-pill {
  /*background: #ffffff;*/
  color: #fff;
  /*padding: 6px 10px;*/
  border-radius: 6px;
  font-weight: 700;
  font-size: 20px;
  min-width: 40px;
  text-align: center;
}
.app-closing-banner .time-label {
  font-size: 12px;
  color: #fff;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .app-closing-banner .banner-content {
    flex-direction: unset !important;
    gap: 5px !important;
    text-align: left;
    padding:7px;
  }
  .scholarship-card .card-title {
  font-size: 18px !important;
      
  }
      
  .app-closing-banner .banner-label-for-mob {
    font-size: 12px;
  }
  .a-diverse-and-vibrant-student-community {
    padding:20px !important;
  }
 .left-side-section {
     padding:0px 0px 40px 0px !important;
 }
  .gemini-generated-image-m-3-iz-17-m-3-iz-17-m-3-iz-3 {
    opacity:unset !important
  }
  .frame-1321319959 {
      grid-template-columns: repeat(2, 1fr) !important;
      display:grid !important;
      gap: unset !important;
  }
  .outcomes-card{
    display:none;
  }
  .graph-mobile-img {
    display: block !important;
    /*padding:20px;*/
    width:340px !important;
    height:340px !important;
  }
  /* .frame-1321319877 {
    padding:30px !important
  } */
  .app-closing-banner .banner-ticker {
      gap:5px !important;
  }
  .app-closing-banner {
      padding:unset !important;
  }
  .hero-sec-building-linedrawing {
      height:50px !important;
  }
  .frame-1321319862 .title-text {
      font-size:23px !important;
      line-height:33px !important;
  }
  .frame-1321319917 {
      max-width:379px !important;
  }
  .qs-global-rankings-2026 , ._51-38-lpa-2025-highest-ctc , .top-6-globally-aacsb-accredited , .bangalore-mumbai-campus {
      font-size: 13px !important;
  }
  .features-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 60px;
  }

  .features-slider {
    display: flex !important;
    transition: transform 0.4s ease !important;
    gap:unset !important;
    touch-action: pan-y;
  }

  .slide {
    min-width: 100%;
    box-sizing: border-box;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }

/* Left arrow */
.features-wrapper .left-arrow {
  left: 91px;
}
.app-closing-banner .time-pill {
    font-size:13px !important;
}
/* Right arrow */
.features-wrapper .right-arrow {
  right:91px;
}
.feature-card {
    padding:10px !important;
}
.graph-desktop-img {
  display:none;
}
.section-padding {
    padding-top:60px 0px 0px 0px !important;
}
.employers-section .section-header h2 , #features-section  .section-header h2 , .a-diverse-and-vibrant-student-community .section-header h2 , #scholarships-section .section-header h2{
    text-align: center !important;
}
#section-process-steps .section-header h2 {
    text-align:center !important;
}
.step-header {
    justify-content: center !important;
}
.step-card {
    text-align:center !important;
}

}
 .graph-mobile-img {
  display:none;
 }
 .graph-desktop-img {
     width:100%;
 }
/* Mobile only */
@media (min-width: 769px) {
  .features-wrapper .left-arrow , .features-wrapper .right-arrow {
    display: none; /* slider hidden on desktop */
  }
}

/* extra css */
.p-feature:not(:last-child) {
  border-right: 1px solid #ccc; /* Divider line */
  margin-right: 20px;
  padding-right: 20px;
}
.program-features .feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 5px;
  margin-bottom: 18px;
}

/* bespoke curriculum */
#features-section {
  width: 100vw; /* full viewport width */
  margin-left: calc(-50vw + 50%); /* center the full-width section */
  padding: 40px calc(50vw - 50%); /* keep inner padding aligned with page */
  box-sizing: border-box;
  background: transparent;
}

.features-container {
  display: grid;
  flex-wrap: wrap;
  gap: 24px;
  /*width: 100vw; */
  /*max-width: none;*/
  /*margin-left: calc(-50vw + 50%); */
  padding: 0 20px; 
  box-sizing: border-box;
  justify-content: center;
  grid-template-columns: repeat(4, 1fr); /* Desktop (4 cards) */
}

.feature-card {
  background-color: rgba(254, 237, 201, 0.1);
  border: 0.5px solid #ebdac2;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 280px; /* Responsive basis */
  
}

/* Specific adjustment for the second card based on Figma data */
.feature-card--adjusted {
  padding-top: 23px;
}

.card-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0; /* Gap is handled by parent flex gap */
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px; /* Estimated from visual hierarchy */
  line-height: 1.3;
  color: #1d1d1d;
  margin: 0;
}

.card-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px; /* Estimated from visual hierarchy */
  line-height: 1.5;
  color: #4f5975;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .features-container {
     gap: 16px !important; 
     grid-template-columns: repeat(2, 1fr) !important;
     padding:unset;
  }

  .feature-card {
    max-width: 100%; /* Full width on mobile */
    flex-basis: 100%;
    padding:px !important;
    
  }
  .card-content {
    height:unset !important;
    padding:15px !important
  }
  .feature-card h3 , .about-content h2 {
    font-size:18px !important;
  }
  .feature-list li {
      font-size:14px !important;
  }
  
  .tab-btn {
      font-size:14px !important;
  }
  .p-feature {
      font-size:14px !important;
  }
  .program-body p {
      font-size:14px !important;
  }
  .section-header h2 {
      font-size:18px !important;
      text-align:left !important;
      margin-bottom:unset !important;
  }
}

/* end of bespoke curriculum */

/* diverse and vibrant section */
/* .a-diverse-and-vibrant-student-community,
.a-diverse-and-vibrant-student-community * {
  box-sizing: border-box;
} */
.a-diverse-and-vibrant-student-community {
  background: #ffffff;
  padding: 70px 80px 70px 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.frame-1321319877 {
  padding: 52px 0px 72px 0px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-1321319947 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-1321319869 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.a-diverse-and-vibrant-student-community2 {
  color: var(--primary-text, #1a1a1a);
  text-align: center;
  font-family: "Gotham-Bold", sans-serif;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: -0.07px;
  font-weight: 700;
  position: relative;
  align-self: stretch;
  min-width: 364px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.frame-1321319217 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-1321319195 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-1321319204 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.our-strength-lies-in-our-diversity-we-bring-together-students-from-various-academic-cultural-and-professional-backgrounds-to-create-a-rich-and-collaborative-learning-environment {
  color: var(--secondary-text, #757575);
  text-align: center;
  font-family: "Gotham-Book", sans-serif;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.04em;
  font-weight: 400;
  position: relative;
  width: 100%;
  min-width: 364px;
  max-width: 682px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.frame-1321319918 {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  /*margin-top:50px;*/
}
.frame-1321319137 {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  
  position: relative;
}
.background {
  border-radius: 8px;
  border-style: solid;
  border-color: var(--border-stroke, #e8e8e8);
  border-width: 1px;
  padding: 16px 12px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex: 1;
  position: relative;
}
.frame {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  position: relative;
  overflow: visible;
}
.frame-1321319130 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.educational-background {
  color: #1d1d1d;
  text-align: left;
  font-family: "WorkSans-SemiBold", sans-serif;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.05px;
  font-weight: 600;
  position: relative;
  align-self: stretch;
}
.our-classrooms-bring-together-talent-from-varied-academic-streams-fostering-diverse-perspectives {
  color: #4f5975;
  text-align: left;
  font-family: "Gotham-Book", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}
.frame-1321319900 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  height: 176px;
  position: relative;
}
.frame-1321319900 .container {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-end;
  justify-content: flex-start;
  align-self: stretch;
  flex: 1;
  position: relative;
}
.frame-1321319953 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
.background2 {
  background: var(--accents-orange, #ff8d28);
  border-radius: 6px 6px 0px 0px;
  padding: 4px 0px 60.63px 0px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 108px;
  position: relative;
}
.container2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  /*justify-content: flex-start;*/
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
._28 {
  color: #ffffff;
  text-align: center;
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.b-com {
  color: var(--secondary-text, #757575);
  text-align: center;
  font-family: "Gotham-Book", sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.frame-1321319954 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
.background3 {
  background: #0d3b66;
  border-radius: 6px 6px 0px 0px;
  padding: 4px 0px 54.88px 0px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 101px;
  position: relative;
}
._26 {
  color: #ffffff;
  text-align: center;
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.be-b-tech {
  color: var(--secondary-text, #757575);
  text-align: center;
  font-family: "Gotham-Book", sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.frame-1321319955 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
.background4 {
  background: #9ca3af;
  border-radius: 6px 6px 0px 0px;
  padding: 4px 0px 52px 0px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 96px;
  position: relative;
}
._25 {
  color: #ffffff;
  text-align: center;
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bba {
  color: var(--secondary-text, #757575);
  text-align: center;
  font-family: "Gotham-Book", sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.frame-1321319956 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
.background5 {
  background: #6b7280;
  border-radius: 6px 6px 0px 0px;
  padding: 4px 0px 8.8px 0px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 39px;
  position: relative;
}
._10 {
  color: #ffffff;
  text-align: center;
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.b-sc {
  color: var(--secondary-text, #757575);
  text-align: center;
  font-family: "Gotham-Book", sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.frame-1321319957 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
.background6 {
  background: #4b5563;
  border-radius: 6px 6px 0px 0px;
  padding: 4px 0px 5.91px 0px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 35px;
  position: relative;
}
._9 {
  color: #ffffff;
  text-align: center;
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.others {
  color: var(--secondary-text, #757575);
  text-align: center;
  font-family: "Gotham-Book", sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.frame-1321319889 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
.frame-13213191372 {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.background7 {
  border-radius: 8px;
  border-style: solid;
  border-color: var(--border-stroke, #e8e8e8);
  border-width: 1px;
  padding: 16px 12px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
.frame2 {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  position: relative;
  overflow: visible;
}
.gender-ratio {
  color: #1d1d1d;
  text-align: left;
  font-family: "WorkSans-SemiBold", sans-serif;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.05px;
  font-weight: 600;
  position: relative;
  align-self: stretch;
}
.a-healthy-balance-that-encourages-inclusive-collaboration-and-enriches-classroom-discussions {
  color: #4f5975;
  text-align: left;
  font-family: "Gotham-Book", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}
.container3 {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  height: 176px;
  position: relative;
}
.container4 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.mens-symbol {
  flex-shrink: 0;
  width: 85px;
  height: 102px;
  position: relative;
  overflow: visible;
}
._59 {
  color: var(--primary-text, #1a1a1a);
  text-align: center;
  font-family: "Gotham-Bold", sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.male {
  color: var(--secondary-text, #757575);
  text-align: center;
  font-family: "Inter-Regular", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.female-symbol {
  flex-shrink: 0;
  width: 85px;
  height: 102px;
  position: relative;
  overflow: visible;
}
._41 {
  color: var(--primary-text, #1a1a1a);
  text-align: center;
  font-family: "Gotham-Bold", sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.female {
  color: var(--secondary-text, #757575);
  text-align: center;
  font-family: "Inter-Regular", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.frame-1321319891 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  height: 352px;
  position: relative;
}
.frame-13213191373 {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  /*min-width: 364px;*/
  position: relative;
}
.frame3 {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  position: relative;
  overflow: visible;
}
.geographic-diversity {
  color: #1d1d1d;
  text-align: left;
  font-family: "WorkSans-SemiBold", sans-serif;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.05px;
  font-weight: 600;
  position: relative;
  align-self: stretch;
}
.students-represent-india-s-cultural-and-regional-breadth-creating-a-truly-national-community {
  color: #4f5975;
  text-align: left;
  font-family: "Gotham-Book", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}
.frame-1321319952 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 176px;
  position: relative;
}
.frame-1321319948 {
  padding: 4px 0px 4px 0px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.south {
  color: var(--secondary-text, #757575);
  text-align: left;
  font-family: "Gotham-Book", sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  font-weight: 400;
  position: relative;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.background8 {
  background: #e5e7eb;
  border-radius: 9999px;
  flex: 1;
  height: 14px;
  position: relative;
}
.background9 {
  background: #ff8d28;
  border-radius: 9999px;
  width: 33.81%;
  height: 14px;
  position: absolute;
  right: 66.07%;
  left: 0.12%;
  top: 0px;
}
.progress_number_one {
  color: #1a1a1a;
  text-align: left;
  font-family: "Inter-Medium", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.frame-1321319949 {
  padding: 4px 0px 4px 0px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.east {
  color: var(--secondary-text, #757575);
  text-align: left;
  font-family: "Gotham-Book", sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  font-weight: 400;
  position: relative;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.background10 {
  background: #0d3b66;
  border-radius: 9999px;
  width: 24.91%;
  height: 14px;
  position: absolute;
  right: 74.97%;
  left: 0.12%;
  top: 0px;
}
._252 {
  color: #1a1a1a;
  text-align: left;
  font-family: "Inter-Medium", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.frame-1321319950 {
  padding: 4px 0px 4px 0px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.north {
  color: var(--secondary-text, #757575);
  text-align: left;
  font-family: "Gotham-Book", sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  font-weight: 400;
  position: relative;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.background11 {
  background: var(--grays-gray, #8e8e93);
  border-radius: 9999px;
  width: 16.73%;
  height: 14px;
  position: absolute;
  right: 83.16%;
  left: 0.12%;
  top: 0px;
}
._17 {
  color: #1a1a1a;
  text-align: left;
  font-family: "Inter-Medium", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.frame-1321319951 {
  padding: 4px 0px 4px 0px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.west {
  color: var(--secondary-text, #757575);
  text-align: left;
  font-family: "Gotham-Book", sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  font-weight: 400;
  position: relative;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.background12 {
  background: var(--grays-gray-4, #d1d1d6);
  border-radius: 9999px;
  width: 16.01%;
  height: 14px;
  position: absolute;
  right: 83.87%;
  left: 0.12%;
  top: 0px;
}
._16 {
  color: #1a1a1a;
  text-align: left;
  font-family: "Inter-Medium", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* end of diverse and vibrant section  */

/* add admission elegibilty  */
.admission-eligibility,
.admission-eligibility * {
  box-sizing: border-box;
}
.admission-eligibility {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.frame-1321319877-admission {
  background-color: #f7a600 !important;
  border-radius: 100px 100px 0px 0px;
  padding: 50px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-1321319947 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  /* min-width: 374px; */
  position: relative;
}
.frame-1321319869 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.admission-eligibility2 {
  color: var(--primary-text, #1a1a1a);
  text-align: center;
  font-family: "Gotham-Bold", sans-serif;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: -0.07px;
  font-weight: 700;
  position: relative;
  align-self: stretch;
  /* min-width: 364px; */
  /*display: flex;*/
  align-items: center;
  /*justify-content: center;*/
}
.frame-1321319918 {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-1321319137 {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
.admission-eligibility-one {
  border-radius: 8px;
  border-style: solid;
  border-color: var(--border-stroke, #e8e8e8);
  border-width: 1px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex: 1;
  position: relative;
}
.frame-1321319241 {
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.degree-requirement {
  color: #333333;
  text-align: left;
  font-family: "Gotham-Bold", sans-serif;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.05px;
  font-weight: 700;
  position: relative;
  align-self: stretch;
}
.frame-1321319874 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-1321319871 {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-1321319920 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: auto;
  position: relative;
  overflow: visible;
}
.graduate-10-2-3-or-10-2-4-from-a-recognized-university {
  color: rgba(51, 51, 51, 0.9);
  text-align: left;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  position: relative;
  flex: 1;
}
.frame-1321319875 {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  
}
.frame-13213199202 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: auto;
  position: relative;
  overflow: visible;
}
.minimum-50-aggregate-general-category {
  color: rgba(51, 51, 51, 0.9);
  text-align: left;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  position: relative;
  flex: 1;
}
.frame-13213198742 {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-13213199203 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: auto;
  position: relative;
  overflow: visible;
}
.minimum-45-aggregate-reserved-category {
  color: rgba(51, 51, 51, 0.9);
  text-align: left;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  position: relative;
  flex: 1;
}
.frame-1321319876 {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-13213199204 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: auto;
  position: relative;
  overflow: visible;
}
.final-year-students-may-also-apply {
  color: rgba(51, 51, 51, 0.9);
  text-align: left;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  position: relative;
  flex: 1;
}
.frame-1321319893 {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  min-width: 364px;
  min-height: 256px;
  position: relative;
}
.admission-eligibility-two {
  border-radius: 8px;
  border-style: solid;
  border-color: var(--border-stroke, #e8e8e8);
  border-width: 1px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex: 1;
  position: relative;
}
.frame-1321319242 {
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.work-experience {
  color: #333333;
  text-align: left;
  font-family: "Gotham-Bold", sans-serif;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.05px;
  font-weight: 700;
  position: relative;
  align-self: stretch;
}
.frame-13213199205 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: auto;
  position: relative;
  overflow: visible;
}
.not-mandatory {
  color: rgba(51, 51, 51, 0.9);
  text-align: left;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  position: relative;
  flex: 1;
}
.frame-13213199206 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: auto;
  position: relative;
  overflow: visible;
}
.fresh-graduates-and-early-career-professionals-are-eligible {
  color: rgba(51, 51, 51, 0.9);
  text-align: left;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  position: relative;
  flex: 1;
}
.frame-1321319892 {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  min-width: 364px;
  min-height: 256px;
  position: relative;
}
.admission-eligibility-three {
  border-radius: 8px;
  border-style: solid;
  border-color: var(--border-stroke, #e8e8e8);
  border-width: 1px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
.accepted-entrance-exams {
  color: #333333;
  text-align: left;
  font-family: "Gotham-Bold", sans-serif;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.05px;
  font-weight: 700;
  position: relative;
  align-self: stretch;
}
.frame-13213199207 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  /*align-self: stretch;*/
  flex-shrink: 0;
  height: auto;
  position: relative;
  overflow: visible;
  margin-top:3px;
}
.cat {
  color: rgba(51, 51, 51, 0.9);
  text-align: left;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  position: relative;
  flex: 1;
}
.frame-13213199208 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: auto;
  position: relative;
  overflow: visible;
}
.xat {
  color: rgba(51, 51, 51, 0.9);
  text-align: left;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  position: relative;
  flex: 1;
}
.frame-13213199209 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: auto;
  position: relative;
  overflow: visible;
}
.cmat {
  color: rgba(51, 51, 51, 0.9);
  text-align: left;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  position: relative;
  flex: 1;
}
.frame-132131992010 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: auto;
  position: relative;
  overflow: visible;
}
.gmat {
  color: rgba(51, 51, 51, 0.9);
  text-align: left;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  position: relative;
  flex: 1;
}
.frame-13213198772 {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-132131992011 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: auto;
  position: relative;
  overflow: visible;
}
.mat {
  color: rgba(51, 51, 51, 0.9);
  text-align: left;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  position: relative;
  flex: 1;
}
.frame-1321319878 {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-132131992012 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: auto;
  position: relative;
  overflow: visible;
}
.nmat {
  color: rgba(51, 51, 51, 0.9);
  text-align: left;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  position: relative;
  flex: 1;
}

/* Ensure the three admission cards are equal height */
.frame-1321319918 {
  /* stretch children so all columns match height */
  align-items: stretch;
}
.frame-1321319137,
.frame-1321319893,
.frame-1321319892 {
  /* make each column a vertical flex container and stretch its content */
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.admission-eligibility-one,
.admission-eligibility-two,
.admission-eligibility-three {
  /* ensure the card itself fills the column height */
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* end add admission elegibilty */

/* add selection process css */
/* Section Layout */
.process-section {
  width: 100%;
  padding: 40px 20px;
  /* display: flex; */
  justify-content: center;
}

.process-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0; /* Design specifies 0 spacing between main items, spacing is handled by element widths */
}

/* Card Styles */
.step-card {
  background-color: #ffffff;
  border: 0.5px solid #ebdac2;
  border-radius: 12px;
  padding: 32px;
  width: 100%;
  max-width: 368px;
  min-height: 244px; /* Ensure consistent height */
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

/* Number Circle */
.step-header {
  display: flex;
  justify-content: flex-start;
}

.step-number {
  width: 36px;
  height: 36px;
  border: 2.25px solid #f7a600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f7a600;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
}

/* Content Styles */
.step-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-title {
  margin: 0;
  color: #1d1d1d;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.step-description {
  margin: 0;
  color: #4f5975;
  font-size: 16px;
  line-height: 1.5;
}

/* Connector (Arrow) Styles */
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .process-container {
    flex-direction: column;
    gap: 24px;
  }
  .admission-eligibility2 , .degree-requirement , .work-experience , .accepted-entrance-exams , .guided-by-leaders-not-lecturers2 , .step-title{
      font-size:18px !important;
  }

  .step-card {
    max-width: 100%;
    min-height: auto;
  }

  .step-connector {
    display: none; /* Hide horizontal arrows on mobile/tablet vertical layout */
  }
  .frame-1321319877-admission {
    padding:30px !important;
    border-radius:20px 20px 0px 0px;
  }
  .frame-1321319877-admission .frame-1321319137 , .frame-1321319892 ,.frame-1321319893{
    /*min-width: auto !important;*/
  }
  .title-divider h2 {
      text-align:center !important;
  }
  .form-wrapper .section-header h2 {
      text-align:center !important;
  }
   .form-wrapper .section-header p , .success-section .section-header p {
       font-size:14px !important;
   }
}
/* end selection process css */


.scholarships-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch;
}
.scholarships-container::-webkit-scrollbar {
  display: none; /* hide scrollbar */
}
/* CTA under scholarships */
.scholarships-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.scholarship-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 32px;
  gap: 16px;
  background-color: rgba(254, 237, 201, 0.1);
  border: 0.5px solid #ebdac2;
  border-radius: 12px;
  width: 240.8px;
  flex: 1 1 220px; /* Responsive flex basis */
  min-height: 257px;
}
#scholarships-section {
  width: 100%;
  /* display: flex; */
  justify-items: anchor-center;
  padding: 50px;
  background-color: #ffa50012 ;
}

@media (max-width: 768px) {
  
}

.card-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 58px; /* Fixed height to align titles if icons vary */
  /*width: 100%;*/
  margin-bottom: 16px; /* Gap from design */
  margin:auto;
}

.card-icon {
  height: auto;
}



.card-title {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px; /* Estimated based on visual hierarchy */
  line-height: 1.4;
  color: #1d1d1d;
  white-space: pre-wrap; /* Preserves line breaks from text content */
}

@media (max-width: 768px) {
  

  .scholarships-container::-webkit-scrollbar {
    display: none;
  }

  .scholarship-card {
    flex: 0 0 20%;      /* EXACTLY 1 card per view */
    /* scroll-snap-align: start; */
  }
  .hero-sec-content2 {
      min-width:300px !important;
  }
  .scholarship-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
}

/* Arrows */
.scholarship-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #cfcfcf;
  background: #fff;
  color: #000;
  font-size: 18px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.scholarship-arrow:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* Dot bars */
.scholarship-dots {
  display: flex;
  gap: 10px;
}

.scholarship-dots .dot {
  width: 22px;
  height: 6px;
  background: #e0e0e0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.scholarship-dots .dot.active {
  background: #000;
  width: 32px;
}

  
}
/* MOBILE SLIDER - One card at a time */
@media (max-width: 480px) {

  .scholarships-container {
    display: flex !important;
    /*overflow-x: auto;*/
    /*scroll-snap-type: x mandatory;*/
    gap: 16px;
    /*padding: 10px 0;*/
    /*-webkit-overflow-scrolling: touch;*/
    /*width: 100%;*/
    /*touch-action: pan-y;*/
    
    /*display: flex;*/
        flex-wrap: nowrap;
        transition: transform 0.4s ease;
        /*gap: unset !important;*/
        touch-action: pan-y;
  }

  .scholarships-container::-webkit-scrollbar {
    display: none;
  }

  .scholarship-card {
    flex: 0 0 100%;          /* FULL WIDTH CARD */
    width: 100% !important;  /* Prevent any smaller size */
    scroll-snap-align: start;
    padding:20px;
    min-height:unset !important;
    text-align:center;
    align-items:unset !important;
  }
  .scholarship-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
}

/* Arrows */
.scholarship-arrow {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  border: 1.5px solid #cfcfcf;
  background: #fff;
  color: #000;
  font-size: 18px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.scholarship-arrow:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* Dot bars */
.scholarship-dots {
  display: flex;
  gap: 10px;
}

.scholarship-dots .dot {
  width: 22px;
  height: 3px;
  background: #e0e0e0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.scholarship-dots .dot.active {
  background: #000;
  width: 32px;
}
.card-icon-wrapper {
    justify-content:  unset !important;
    display:unset;
}

}


/* DESKTOP: normal grid */
@media (min-width: 768px) {
  .success-slider {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
     overflow: hidden;
     padding-bottom:20px;
  }
  .slider-track {
    display: contents;
    /*display: flex;*/
    transition: transform 0.4s ease;
  }
  .success-nav , .scholarship-nav , .slider-ui{
    display: none !important;
  }
  
  
}

/* MOBILE: single card slider */
@media (max-width: 768px) {

  .success-slider {
    position: relative;
    overflow: hidden;
    gap:20px;
  }

  .slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    /*gap:10px !important;*/
  }

  .student-card {
     flex: 0 0 100%;
  }
  .frame-1321319861 {
      display:block !important;
  }
  .frame-1000007267 {
      margin-bottom:10px !important;
  }

  /* Arrows */
  .success-slider {
    overflow: hidden;
  }

  .slider-track {
    display: flex;
    transition: transform 0.4s ease;
  }

  

  /* Navigation */
  .success-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 16px;
  }

  .success-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #cfcfcf;
    background: #fff;
    font-size: 18px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .success-arrow:hover {
    background: #000;
    color: #fff;
    border-color: #000;
  }

  /* Dot bars */
  .success-dots {
    display: flex;
    gap: 10px;
  }

  .success-dots .dot {
    width: 22px;
    height: 6px;
    background: #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .success-dots .dot.active {
    background: #000;
    width: 32px;
  }
  
}
/* hero section */
.hero-section-testing,
.hero-section-testing * {
  box-sizing: border-box;
}
.hero-section-testing {
  background: #ffffff;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  /* max-width: 1820px; */
  position: relative;
  overflow: hidden;
  padding-right: 0 !important;
}

/* Remove right-side space on desktop only */
@media (min-width: 769px) {
  .hero-section-testing {
    padding-right: 0 !important;
    margin-right: 0 !important;
  }
}
.container-back-yellow-graident {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 2777px;
  height: 840px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: hidden;
}
.layer-yellow-back-gradient {
  background: var(
    --v2-landing-page-back,
    linear-gradient(
      180deg,
      rgba(255, 226, 159, 0.5) 0%,
      rgba(255, 166, 43, 0.5) 100%
    )
  );
  align-self: stretch;
  flex: 1;
  position: relative;
}
.hero-sec-content {
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
.hero-sec-pattern-layer {
  flex-shrink: 0;
  width: 1601px;
  height: 883px;
  position: absolute;
  left: 22px;
  top: 78px;
}
.hero-sec-pattern-img {
  background: linear-gradient(
    -83.8deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(255, 255, 255, 0.7) 88.29678297042847%
  );
  border-radius: 0px 49px 49px 49px;
  opacity: 0.18;
  width: 1601px;
  height: 883px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  mix-blend-mode: color-burn;
  object-fit: cover;
  aspect-ratio: 1601/883;
}
.left-side-section {
  border-radius: 40px;
  padding: 0px 0px 40px 50px;
  display: flex;
  flex-direction: column;
  gap: 58px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
   min-width: 378px; 
   /* max-width: 638px;  */
  position: relative;
}
.hero-sec-content2 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  min-width: 364px;
  position: relative;
}
.hero-sec-building-linedrawing {
  padding: 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 124px;
  position: relative;
}
.gemini-generated-image-m-3-iz-17-m-3-iz-17-m-3-iz-3 {
  /*opacity: 0.26;*/
  flex-shrink: 0;
  width: 155.53%;
  height: 446.77%;
  position: absolute;
  right: -25.2%;
  left: -30.33%;
  bottom: -173.39%;
  top: -173.39%;
  mix-blend-mode: multiply;
  object-fit: cover;
  aspect-ratio: 759/554;
}
.hero-sec-content3 {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  min-width: 364px;
  position: relative;
  margin-left:6px;
}
.frame-1321319862 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  flex-shrink: 0;
  max-width: 726px;
  position: relative;
}
.title-text {
  color: radial-gradient(
    closest-side,
    rgba(30, 30, 30, 1) 40.38461446762085%,
    rgba(245, 164, 29, 1) 100%
  );
  text-align: left;
  font-family: "Gotham-Bold", sans-serif;
  font-size: 40px;
  line-height: 44px;
  font-weight: 700;
  position: relative;
  align-self: stretch;
}
.main-container {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.subtitle-text {
  color: #000000;
  text-align: left;
  font-family: "Gotham-Book", sans-serif;
  font-size: 24px;
  line-height: 20px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.frame-1321319917 {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  flex-shrink: 0;
  max-width: 486px;
  position: relative;
}
.container2graph {
  display: flex;
  flex-direction: column;
  gap: 12px;
  /*align-items: flex-start;*/
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.hero-container3 {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.component-1 {
  border-radius: 4px;
  border-style: solid;
  border-color: #f6a200;
  border-width: 1px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
.background-group {
  background: #feedc9;
  border-radius: 4px;
  border-style: solid;
  border-color: #f6a200;
  border-width: 1px;
  padding: 8px 12px 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.text {
  color: #000000;
  text-align: center;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.component-2 {
  border-radius: 4px;
  border-style: solid;
  border-color: #f6a200;
  border-width: 1px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
.border-frame{
  background: #feedc9;
  border-radius: 4px;
  border-style: solid;
  border-color: #feedc9;
  border-width: 0.5px;
  padding: 6px 16px 6px 16px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-1321319863 {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-13213198622 {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
}
.frame-1321319906 {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.image-49 {
  flex-shrink: 0;
  width: 45px;
  height: 44px;
  position: relative;
  object-fit: cover;
  aspect-ratio: 45/44;
}
.aicte {
  color: #414040;
  text-align: left;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 16px;
  line-height: 18.54px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.vector-2811 {
  align-self: stretch;
  flex-shrink: 0;
  width: 0px;
  height: auto;
  position: relative;
  overflow: visible;
}
.frame-1321319907 {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.image-53 {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  position: relative;
  object-fit: cover;
  aspect-ratio: 1;
}
.aiu {
  color: #414040;
  text-align: left;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 16px;
  line-height: 18.54px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.vector-2812 {
  align-self: stretch;
  flex-shrink: 0;
  width: 0px;
  height: auto;
  position: relative;
  overflow: visible;
}
.frame-1321319908 {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.image-677 {
  flex-shrink: 0;
  width: 35px;
  height: 38px;
  position: relative;
  object-fit: cover;
  aspect-ratio: 35/38;
}
.ugc {
  color: #414040;
  text-align: left;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 16px;
  line-height: 18.54px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.frame-1321319959 {
  display: flex;
  flex-direction: row;
  gap: 55px;
  row-gap: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.hero-section-point-01 {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: center;
  flex: 1;
  height: 44px;
  min-width: 200px;
  position: relative;
}
.hero-section-point-01-icon {
  background: #fef6e5;
  border-radius: 4px;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  position: relative;
  aspect-ratio: 1;
}
.certificate {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
  aspect-ratio: 1;
}
.hero-section-point-01-text {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
.top-6-globally-aacsb-accredited {
  text-align: left;
  font-family: "-", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.top-6-globally-aacsb-accredited-span {
  color: #000000;
  font-family: "Gotham-Medium", sans-serif;
  font-weight: 500;
}
.top-6-globally-aacsb-accredited-span2 {
  color: rgba(0, 0, 0, 0.6);
  font-family: "Gotham-Book", sans-serif;
}
.hero-section-point-02 {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: center;
  flex: 1;
  height: 44px;
  min-width: 200px;
  position: relative;
}
.hero-sec-point-02-icon {
  background: #fef6e5;
  border-radius: 4px;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  position: relative;
  aspect-ratio: 1;
}
.seal-check {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
  aspect-ratio: 1;
}
.hero-sec-point-02-text {
  display: flex;
  flex-direction: row;
  gap: 3.21px;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
.qs-global-rankings-2026 {
  text-align: left;
  font-family: "-", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.qs-global-rankings-2026-span {
  color: #000000;
  font-family: "Gotham-Medium", sans-serif;
  font-weight: 500;
}
.qs-global-rankings-2026-span2 {
  color: #000000;
  font-family: "Gotham-Book", sans-serif;
}
.qs-global-rankings-2026-span3 {
  color: rgba(0, 0, 0, 0.6);
  font-family: "Gotham-Book", sans-serif;
}
.hero-section-point-03 {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: center;
  flex: 1;
  height: 44px;
  min-width: 200px;
  position: relative;
}
.point-03-icon {
  background: #fef6e5;
  border-radius: 4px;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  position: relative;
  aspect-ratio: 1;
}
.building-apartment {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
  aspect-ratio: 1;
}
.hero-section-point-03-text {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
.bangalore-mumbai-campus {
  text-align: left;
  font-family: "-", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.bangalore-mumbai-campus-span {
  color: #000000;
  font-family: "Gotham-Medium", sans-serif;
  font-weight: 500;
}
.bangalore-mumbai-campus-span2 {
  color: #000000;
  font-family: "Gotham-Book", sans-serif;
}
.bangalore-mumbai-campus-span3 {
  color: rgba(0, 0, 0, 0.6);
  font-family: "Gotham-Book", sans-serif;
}
.bangalore-mumbai-campus-span4 {
  color: rgba(0, 0, 0, 0.4);
  font-family: "Gotham-Book", sans-serif;
}
.hero-section-point-04 {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: center;
  flex: 1;
  height: 44px;
  min-width: 200px;
  position: relative;
}
.point-04-icon {
  background: #fef6e5;
  border-radius: 4px;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  position: relative;
  aspect-ratio: 1;
}
.bank {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
  aspect-ratio: 1;
}
.point-04-text {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
._51-38-lpa-2025-highest-ctc {
  text-align: left;
  font-family: "-", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
._51-38-lpa-2025-highest-ctc-span {
  color: #000000;
  font-family: "Gotham-Medium", sans-serif;
  font-weight: 500;
}
._51-38-lpa-2025-highest-ctc-span2 {
  color: rgba(0, 0, 0, 0.6);
  font-family: "Gotham-Book", sans-serif;
}
.frame-1321319861 {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-1000007267 {
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
.container4 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
.component-22 {
  background: #f6a200;
  border-radius: 4px;
  padding: 12px 16px 12px 16px;
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.container5 {
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.container6 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.text2 {
  color: #ffffff;
  text-align: center;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container7 {
  background: #feedc9;
  border-radius: 4px;
  border-style: solid;
  border-color: #f6a200;
  border-width: 0.89px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
.component-23 {
  background: rgba(246, 162, 0, 0);
  border-radius: 4px;
  padding: 12px 16px 12px 16px;
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.text3 {
  color: #1d1d1d;
  text-align: center;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.group-photos {
  padding: 0px 16px 0px 16px;
  flex: 1;
  height: 729px;
  max-width: 1038px;
  position: relative;
  overflow: hidden;
  
}
.content {
  opacity: 0.6;
  position: absolute;
  inset: 0;
  mix-blend-mode: luminosity;
}
.background-second {
  width: 1093.37px;
  height: 729px;
  position: absolute;
  left: 16px;
  top: 0px;
  object-fit: cover;
  aspect-ratio: 1093.37/729;
}
.foreground {
  width: 1093.37px;
  height: 729px;
  position: absolute;
  left: 16.87px;
  top: 0px;
  object-fit: cover;
  aspect-ratio: 1093.37/729;
  mix-blend-mode: soft-light;
}

/* ADMISSION ELE */


/* DESKTOP: show all 3 cards in a row */
.eligibility-slider {
  display: flex;
  gap: 20px;
}

.eligibility-slide {
  flex: 1;
}

/* Hide arrows on desktop */
.eligibility-arrows {
  display: none;
}
.eligibility-slider-wrapper {
  width:100%;
}



/* --------------- MOBILE SLIDER --------------- */
@media (max-width: 768px) {
/* Wrapper hides extra content */
.eligibility-slider-wrapper {
    overflow: hidden;
}

/* Slider must be 1-row only */
.eligibility-slider {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.4s ease;
    gap:unset !important;
    touch-action:pan-y;
    /* width:300px !important; */
}
.component-23 {
    padding: 12px 2px 12px 2px !important;
}
.hero-section-point-04 , .hero-section-point-03 ,.hero-section-point-02 , .hero-section-point-04 {
    min-width:100px !important;
}
/* Each slide = 100% width */
.eligibility-slide {
    min-width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
}
.foreground {
    display:none !important;
}
.group-photos {
    height:unset !important;
}
.section-header .subtitle {
    padding:unset !important;
    margin-top:5px;
}

/* Figma frames — REMOVE fixed widths */
/*.frame-1321319137,*/
/*.frame-1321319893,*/
/*.frame-1321319892 {*/
/*    width: 100% !important;*/
/*    max-width: 100% !important;*/
/*    flex: 0 0 100% !important;*/
/*}*/

  /* Show arrows under slider */
  .eligibility-arrows {
     display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
  }

  .eligibility-arrow {
    width: 31px;
  height: 31px;
  border-radius: 50%;
  border: 1.5px solid #cfcfcf;
  background: #fff;
  color: #000;
  font-size: 18px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}
.eligibility-arrow:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* Optional: disabled state */
.eligibility-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
/* Dot bars */
.eligibility-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.eligibility-dots .dot {
  width: 22px;
  height: 3px;
  background: #e0e0e0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.eligibility-dots .dot.active {
  background: #000;
  width: 32px;
}
.guided-by-leaders-not-lecturers .section-header h2 , .guided-by-leaders-not-lecturers .section-header .subtitle {
    text-align:center !important;
}
}
/* guided section */
.guided-by-leaders-not-lecturers,
.guided-by-leaders-not-lecturers * {
  box-sizing: border-box;
}
.guided-by-leaders-not-lecturers {
  background: #ffffff;
  /*padding: 0px 150px 0px 150px;*/
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
/* .frame-1321319877 {
  padding: 52px 0px 72px 0px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
} */
/*.frame-1321319947 {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  gap: 12px;*/
/*  align-items: center;*/
/*  justify-content: flex-start;*/
/*  align-self: stretch;*/
/*  flex-shrink: 0;*/
/*  min-width: 364px;*/
/*  position: relative;*/
/*}*/
.frame-1321319869 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.guided-by-leaders-not-lecturers2 {
  color: var(--primary-text, #1a1a1a);
  text-align: center;
  font-family: "Gotham-Bold", sans-serif;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: -0.07px;
  font-weight: 700;
  position: relative;
  align-self: stretch;
  min-width: 364px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.frame-1321319217 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-1321319195 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-1321319204 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.our-faculty-bring-a-blend-of-strong-academic-backgrounds-and-deep-industry-experience-ensuring-students-learn-from-experts-who-understand-both-management-theory-and-real-world-practice {
  color: var(--secondary-text, #757575);
  text-align: center;
  font-family: "Gotham-Book", sans-serif;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.04em;
  font-weight: 400;
  position: relative;
  width: 100%;
  min-width: 364px;
  max-width: 716px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.frame-1321319918-guided {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  min-width: 364px;
  position: relative;
}
.frame-1321319039 {
  background: rgba(254, 237, 201, 0.1);
  border-radius: 12px;
  border-style: solid;
  border-color: #ebdac2;
  border-width: 0.5px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  height: 200px;
  min-width: 208px;
  position: relative;
}
._45 {
  color: #f7a600;
  text-align: left;
  font-family: "Gotham-Bold", sans-serif;
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.frame-1321319922 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-1321319241 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.full-time-faculty-members {
  color: #1d1d1d;
  text-align: left;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: -0.05px;
  font-weight: 500;
  position: relative;
  align-self: stretch;
}
.frame-1321319037 {
  background: rgba(254, 237, 201, 0.1);
  border-radius: 12px;
  border-style: solid;
  border-color: #ebdac2;
  border-width: 0.5px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  height: 200px;
  min-width: 208px;
  position: relative;
}
._12 {
  color: #f7a600;
  text-align: left;
  font-family: "Gotham-Bold", sans-serif;
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cx-os-senior-industry-leaders {
  color: #1d1d1d;
  text-align: left;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: -0.05px;
  font-weight: 500;
  position: relative;
  align-self: stretch;
}
.frame-1321319040 {
  background: rgba(254, 237, 201, 0.1);
  border-radius: 12px;
  border-style: solid;
  border-color: #ebdac2;
  border-width: 0.5px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  height: 200px;
  min-width: 208px;
  position: relative;
}
._13 {
  color: #f7a600;
  text-align: left;
  font-family: "Gotham-Bold", sans-serif;
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.iit-bits-alumni {
  color: #1d1d1d;
  text-align: left;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: -0.05px;
  font-weight: 500;
  position: relative;
  align-self: stretch;
}
.frame-1321319036 {
  background: rgba(254, 237, 201, 0.1);
  border-radius: 12px;
  border-style: solid;
  border-color: #ebdac2;
  border-width: 0.5px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  height: 200px;
  min-width: 208px;
  position: relative;
}
._11 {
  color: #f7a600;
  text-align: left;
  font-family: "Gotham-Bold", sans-serif;
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.iim-alumni {
  color: #1d1d1d;
  text-align: left;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: -0.05px;
  font-weight: 500;
  position: relative;
  align-self: stretch;
}
.frame-1321319038 {
  background: rgba(254, 237, 201, 0.1);
  border-radius: 12px;
  border-style: solid;
  border-color: #ebdac2;
  border-width: 0.5px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  height: 200px;
  min-width: 208px;
  position: relative;
}
._07 {
  color: #f7a600;
  text-align: left;
  font-family: "Gotham-Bold", sans-serif;
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.jbims-spjimr-mdi-imt-imi-alumni {
  color: #1d1d1d;
  text-align: left;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: -0.05px;
  font-weight: 500;
  position: relative;
  align-self: stretch;
}
@media (max-width: 768px) {
  .guided-by-leaders-not-lecturers {
    padding: unset !important;
  }
  .frame-1321319918-guided {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    gap: 12px;
    margin-top:unset !important;
  }

  /* Make last card full width */
  .frame-1321319918-guided > :last-child {
    grid-column: 1 / -1; /* spans full row */
  }
  .frame-1321319039, .frame-1321319037 , .frame-1321319040 , .frame-1321319036 , .frame-1321319038 {
    padding:15px !important;
    height:auto !important;
    min-width: unset !important;
  }
  ._45 ,._12, ._13 , ._11 , ._07 {
    font-size:30px !important;
  }
  .footer {
      padding:20px !important;
  }
  .logo-wrapper img {
      height:27px !important;
  }
}
.student-life-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  /*padding: 20px 0;*/
}

.student-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.student-slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.student-slide {
 flex: 0 0 calc(33.333% - 20px);
}


.student-slide img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.slider-left { left: 10px; }
.slider-right { right: 10px; }

/* Mobile: show 1.2 images (center + peek left/right) */
@media (max-width: 480px) {
  .student-slide {
    flex: 0 0 100%;
  }

  .student-slider-track { gap: 16px; }
}


/* end student life */
/* footer css */
.footer,
.footer * {
  box-sizing: border-box;
}
.footer {
  background: #fff2de;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 44px;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}
.footer-logos {
  display: flex;
  flex-direction: row;
  gap: 20.37px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 344px;
  position: relative;
}
.footer-logos-jagsom-logo {
  flex-shrink: 0;
  width: 176.13px;
  height: 36px;
  position: relative;
  overflow: hidden;
  object-fit: cover;
  aspect-ratio: 176.13/36;
}
.footer-logos-divider {
  align-self: stretch;
  flex-shrink: 0;
  width: 0px;
  height: auto;
  position: relative;
  overflow: visible;
}
.footer-logos-30-years-of-legacy-logo {
  flex-shrink: 0;
  width: 127.3px;
  height: 35.87px;
  position: relative;
  object-fit: cover;
  aspect-ratio: 127.3/35.87;
}
.footer-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  min-width: 344px;
  position: relative;
}
.footer-email {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.footer-email-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  height: 17px;
  position: relative;
}
.item-link-success-stories {
  color: rgba(29, 29, 29, 0.5);
  text-align: left;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.05px;
  font-weight: 500;
  position: relative;
}
.footer-email-text {
  color: #000000;
  text-align: center;
  font-family: "Gotham-Book", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-contact-us {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.footer-contact-us-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  height: 17px;
  position: relative;
}
.footer-contact-us-text {
  color: #000000;
  text-align: left;
  font-family: "Gotham-Book", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  position: relative;
  width: 211px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-banglore-campus {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.footer-banglore-campus-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  height: 17px;
  position: relative;
}
.footer-banglore-campus-text {
  color: #000000;
  text-align: left;
  font-family: "Gotham-Book", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-mumbai-campus {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.footer-mumbai-campus-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  height: 17px;
  position: relative;
}
.footer-mumbai-campus-text {
  color: #000000;
  text-align: left;
  font-family: "Gotham-Book", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .footer-banglore-campus-text ,.footer-mumbai-campus-text , .footer-contact-us-text, .footer-email-text , .educational-background , .gender-ratio , .container2graph ._59 , .container2graph ._41 , .geographic-diversity {
    font-size:18px !important;
     white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  }
  .footer-text {
      min-width:unset !important;
  }
  .footer-logos {
      width: unset !important;
      display:none !important;
  }
  
}

/*apply now popup*/
/* Popup Background */
.apply-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  display: none;               /* hidden initially */
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

/* Popup Box */
.popup-content {
  background: #fff;
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  max-height: 100vh;
  overflow-y: auto;
}

/* Close button */
.close-popup ,.close-brochure {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

/* Mobile */
@media (max-width: 480px) {
  .popup-content {
    width: 100%;
    max-width: 95%;
    padding: 15px;
    overflow: visible !important;
  }
}

/*added css*/
/* Wrapper for arrows + dots */
.slider-ui {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
}

/* Arrow buttons */
.arrow {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  border: 1.5px solid #cfcfcf;
  background: #fff;
  color: #000;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.arrow:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* Center dots */
.slider-dots {
  display: flex;
  gap: 10px;
}

/* Dot style */
.slider-dots .dot {
  width: 22px;
  height: 3px;
  background: #e0e0e0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* Active dot */
.slider-dots .dot.active {
  background: #000;
  width: 32px;
}
.faculty-company-logo {
    width:30% !important;
}
.guided-by-leaders-not-lecturers .frame-1321319869 {
    display:unset !important;
}
.slider-pagination {
  display: flex;
  width: 100%;
  gap: 10px;
  margin-top: 16px;
}

/* Each line takes equal width */
.pagination-line {
  flex: 1;
  height: 3px;
  background: #dcdcdc;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.pagination-line.active {
  background: #000;
}

.title-divider h2::after {
  content: "";
  display: block;
  width: 10%;
  height: 3px;
  background-color: #f58220; /* divider color */
  margin: 12px auto 0; /* space + center */
  border-radius: 2px;
}
#apply-now-btn , #download-brochure-btn {
    cursor: pointer;
}
.about-content h4 {
  background-color: #fff;
  Padding:10px;
} 