* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
/* HERO */

.eng-hero{
width:100%;
min-height:10vh;
background:url("img/auimg.webp") center/cover no-repeat;
font-family:'Segoe UI',sans-serif;
display:flex;
position:relative;
overflow:hidden;
flex-direction:column;
}

/* OVERLAY */

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:1;
pointer-events:none;
}

/* LOGO */

.hero-logo-top{
position:relative;
z-index:3;
padding:30px 40px;
}

.hero-logo-top img{
width:200px;
}

/* MAIN CONTAINER */

.hero-container{
position:relative;
z-index:2;
max-width:fit-content;
margin:auto;
width:100%;
display:flex;
align-items:center;
justify-content:space-between;
padding:40px;
color:#ffffff;
}

/* LEFT SIDE */

.hero-left{
flex:1;

max-width:650px;
}

/* HERO TEXT STYLE (MATCH IMAGE) */

/* ===============================
   HERO TEXT PREMIUM STYLE
================================ */

.hero-text {
  font-size: 50px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 1px;
}

/* WHITE STRIP (TOP MANAGEMENT) */
.highlight-white {
  background: #ffffff;
  color: #8b1e14;
  padding: 10px 22px;
  font-weight: 800;
  display: inline-block;
}

/* ORANGE STRIP (HIMACHAL) */
.highlight-orange {
  background: #f7941d;
  color: #000;
  padding: 12px 24px;
  font-weight: 900;
  display: inline-block;
  margin-top: 10px;
}
/* ===============================
   NETFLIX STYLE TEXT REVEAL
================================ */

.reveal-text {
  overflow: hidden;
  display: block;
}

.reveal-text span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  animation: revealText 1s cubic-bezier(0.22,1,0.36,1) forwards;
}

/* STAGGER (LINE BY LINE) */
.reveal-text:nth-child(1) span { animation-delay: 0.2s; }
.reveal-text:nth-child(2) span { animation-delay: 0.5s; }
.reveal-text:nth-child(3) span { animation-delay: 0.8s; }
.reveal-text:nth-child(4) span { animation-delay: 1.1s; }

/* KEYFRAME */
@keyframes revealText {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* DARK OVERLAY LIKE IMAGE */
.hero-overlay {
  background: rgba(0, 40, 30, 0.55); /* greenish dark overlay */
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ENSURE TEXT ABOVE OVERLAY */
.hero-container {
  position: relative;
  z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-text {
    font-size: 34px;
  }

  .highlight-white,
  .highlight-orange {
    display: block;
    width: fit-content;
  }

}
/* BADGE */
.badge-admission
 {
    display: inline-block;
    background: #0c2a2a;
    padding: 8px 16px;
    border-radius: 16px;
    color: white;
    font-size: 15px;
        position: relative;
    bottom: -12px;
    animation: pulse 2s infinite;
}

@keyframes pulse{
0%{transform:scale(1)}
50%{transform:scale(1.07)}
100%{transform:scale(1)}
}

/* FORM */


.hero-right {
    width: 400px;
    height: 680px;
margin-left: 300px;
background:#fff;
padding:25px;
border-radius:6px;
box-shadow:0 10px 40px rgba(0,0,0,0.3);
color:#000;
}

/* FORM HEADER */

.hero-right-box{
text-align:center;
padding:15px;
background:#0c2a2a;
border-radius:5px 5px 0 0;
margin:-25px -25px 20px -25px;
}

.hero-right-box h2{
color:#fff;
font-size:20px;
}

/* MOBILE */

@media (max-width:900px){

.hero-container{
flex-direction:column;
text-align:center;
padding:30px 20px;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:150%;
background:linear-gradient(
120deg,
rgba(0,0,0,0.85),
rgba(0,0,0,0.5)
);
z-index:1;
}

.hero-logo-top{
left: 20px;
padding:25px 0;
}

.hero-logo-top img{
width:150px;
}

.hero-left h1{
font-size:34px;
}

.hero-left h3{
font-size:16px;
}

.hero-right{
width:100%;
max-width:350px;
margin-left: -0px;
margin-top: 20px;
}

}
/* ===============================
   PREMIUM STATS BAR
================================ */
/* INFO BAR */
/* STATS SLIDER SECTION */
.stats-slider-section {
  background: #7d4900;
  color: white;
  padding: 19px 0;
  font-family: sans-serif;
  overflow: hidden;
  width: 100%;
  margin: -20px 0 0;
  position: relative;
  z-index: 2;
}
.stats-slider-container {
  width: 100%;
  overflow: hidden;

  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
    mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.stats-track {
  display: flex;
  gap: 100px;
  width: max-content;
  align-items: center;
  padding: 0 50px;
 
}

.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 10px;
  min-width: 220px;
  flex-shrink: 0;
}

.stats-item i {
  font-size: 24px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.stats-item h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.stats-item p {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  opacity: 0.9;
}

.degrees-section {
  padding: 120px 60px;
  text-align: center;
}
.degrees-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0c2a2a;
  margin-bottom: 20px;
}

/* ===============================
   RESPONSIVE
================================ */

/* TABLET */
@media (max-width: 1024px) {
   .stats {
    align-items: center;
    gap: 20px;
  }
}


/* Collaborations section */
.alpha-global-v2 {
  padding: 80px 0;
  text-align: center;
}


.recognition-track {
  display: flex;
  gap: 30px;
  width: max-content;
  align-items: center;
}

.logo-card {
  min-width: 240px;
  height: 110px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  flex-shrink: 0;
}

.logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* international collaborations section */

/* Collaborations section */
.alpha-global-v2 {
  padding: 80px 0;
  text-align: center;
}


.recognition-track {
  display: flex;
  gap: 30px;
  width: max-content;
  align-items: center;
}

.logo-card {
  min-width: 240px;
  height: 110px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  flex-shrink: 0;
}

.logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* international collaborations section */

.alpha-global-v2 {
  position: relative;
  padding: 100px 20px;
  background: url('your-bg-image.jpg') center/cover no-repeat;
  font-family: 'Poppins', sans-serif;
}



/* DARK OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.85);

}

/* CONTAINER */
.alpha-container {
  position: relative;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

/* LEFT */
.alpha-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.alpha-logo {
  width: 280px;
}

.alpha-sub {
  font-size: 13px;
  letter-spacing: 2px;
  color: #000000;
}

/* LOGOS */
.collab-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.collab-logos img {
  width: 90px;

}

.collab-logos img:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.1);
}

/* MOU COUNTER */
.mou {
  display: flex;
  align-items: center;
  gap: 10px;
}

.num {
  font-size: 90px;
  font-weight: 800;
  color: #2d4fa3;
}

.text {
  font-size: 60px;
  font-weight: 800;
  color: #0c2a2a;
}
.tex {
  font-size: 60px;
  font-weight: 800;
  color: #7d4900;
}

.mou-desc {
  font-size: 14px;
}

/* RIGHT */
.alpha-right h1 {
  font-size: 70px;
  font-weight: 800;
  line-height: 1.1;
}


/* TEXT */
.desc {
  margin: 25px 0;
  color: #444;
  max-width: 500px;
}

.uni-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  justify-items: center; /* centers smaller items */
}

.uni-grid img {
  width: 55%;
}


/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media(max-width: 900px) {
  .alpha-container {
    grid-template-columns: 1fr;
  }

  .alpha-right h1 {
    font-size: 42px;
  }

  .num {
    font-size: 60px;
  }

  .text {
    font-size: 40px;
  }

  .uni-grid {
    grid-template-columns: 1fr;
  }
}


/* ===============================
   ABOUT PREMIUM (FIXED)
================================ */

.about-premium {
  padding: 60px 160px; /* 🔥 reduced top space */
  background: #f5f5f5;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.about-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px; /* tighter */
  align-items: center;
}

/* LEFT */
.company-heading{
  letter-spacing: 3px;
  font-size: 36px;
  color: #0c2a2a;
  font-weight: 700;
  font-family: sans-serif;
  display: inline-block;
  padding-bottom: 10px;
}
.about-title {
    font-size: 80px;
    font-weight: 700;
    color: #000000;
    line-height: 1.05;
    margin-top: -98px;
}

.about-title span {
  color: #0f3636;
}

.about-text {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  max-width: 520px;
}

/* ===============================
   RIGHT IMAGES (FIXED LAYOUT)
================================ */

.about-right {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
}

/* COLUMN */
.img-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* IMAGE CARD */
.img-card {
  width: 200px;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
  transition: transform 0.6s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* 🔥 PERFECT STAGGER (LIKE IMAGE) */
.img1 { transform: translateY(-40px); }
.img2 { transform: translateY(30px); }
.img3 { transform: translateY(10px); }
.img4 { transform: translateY(-20px); }

/* ===============================
   FLIP ANIMATION (HOVER)
================================ */

.img-card:hover {
  transform: rotateY(10deg) scale(1.05);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

/* ===============================
   SCROLL REVEAL (SMOOTH)
================================ */

.about-left,
.img-card {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s cubic-bezier(0.22,1,0.36,1);
}

.about-left.show {
  opacity: 1;
  transform: translateY(0);
}

/* stagger reveal */
.img-card.show:nth-child(1) { transition-delay: 0.2s; }
.img-card.show:nth-child(2) { transition-delay: 0.4s; }
.img-card.show:nth-child(3) { transition-delay: 0.6s; }
.img-card.show:nth-child(4) { transition-delay: 0.8s; }

.img-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   MOBILE FIX
================================ */

@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-right {
    justify-content: center;
  }

  .img-card {
    width: 200px;
    height: 260px;
  }

  .about-title {
    font-size: 42px;
    margin-top: 0px;
  }
}

@media (max-width: 600px) {

  .about-premium {
    padding: 50px 20px;
  }

  .about-right {
    flex-direction: column;
  }

  .img-col {
    flex-direction: row;
    justify-content: center;
  }

  .img-card {
    width: 45%;
    height: 180px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-text {
    font-size: 14px;
  }
}

.scholarship-section {
  padding: 80px 20px;
  background: linear-gradient(to right,#f4f6f9,#e9eef4);
  font-family: 'Poppins', sans-serif;
}

.scholarship-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.title-wrap {
  display: flex;
  align-items: center;
  gap: 25px;
}

.big {
  font-size: 90px;
  font-weight: 800;
  color:#8b1e14;
  line-height: 1;
}

.title-text {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  position: relative;
}

.title-text .line {
  width: 60px;
  height: 4px;
  background: #072222;
  display: block;
  margin-top: 10px;
}

.buset-img {
  width: 180px;
  margin: 25px 0;
}

/* CRITERIA */
.criteria-box {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  overflow: hidden;
}

.criteria-box h3 {
  background: radial-gradient(circle at top, #0c2a2a, #051616);
  color: #fff;
  padding: 15px;
  font-size: 16px;
}

.criteria-box ul {
  padding: 18px;
}

.criteria-box li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 15px;
}

/* TEXT */
.merit {
  margin-top: 20px;
  font-size: 15px;
}

/* RIGHT PANEL */
.right-panel h2 {
  font-size: 32px;
  margin-bottom: 25px;
}

/* GRID (FIXED — NO COMPACT ISSUE) */
.edge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARDS */
.edge-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.edge-card:hover {
  transform: translateY(-5px);
}

/* PERCENT */
.percent {
  background: #8b1e14;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  padding: 20px;
  height: 50px;
  min-width: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  text-align: center;
}

/* Optional smaller variant */
.percent.small {
  font-size: 22px;
  height: 70px;
  padding: 14px 18px;
}

/* Optional larger variant */
.percent.large {
  font-size: 32px;
  height: 110px;
  padding: 24px 28px;
}

/* TEXT */
.edge-card p {
  font-size: 14px;
  color: #333;
}

/* MOBILE */
@media(max-width: 900px) {
  .scholarship-container {
    grid-template-columns: 1fr;
  }

  .title-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .big {
    font-size: 60px;
  }

  .title-text {
    font-size: 30px;
  }

  .edge-grid {
    grid-template-columns: 1fr;
  }
}
/* Ranking strip section*/

.ranking-strip {
  background: radial-gradient(circle at top, #0c2a2a, #051616);
  padding: 35px 20px;
  font-family: 'Poppins', sans-serif;
}

/* CENTER EVERYTHING PROPERLY */
.ranking-container {
  max-width: 900px; /* 🔥 controls spacing */
  margin: auto;

  display: flex;
  justify-content: center; /* center both items */
  align-items: center;
  gap: 80px; /* 🔥 controlled spacing */
}

/* ITEM */
.rank-item {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
}

/* NUMBER */
.rank-item h2 {
  font-size: 60px;
  font-weight: 800;
  margin: 0;
}

/* TEXT */
.rank-item p {
  font-size: 15px;
  line-height: 1.4;
  margin: 0;
}

.rank-item span {
  font-weight: 600;
}

/* DIVIDER (CLEAN CENTER LINE) */
.rank-item:first-child {
  padding-right: 40px;
  border-right: 1px solid rgba(255,255,255,0.4);
}

/* MOBILE */
@media(max-width: 768px) {

  .ranking-container {
    flex-direction: column;
    gap: 25px;
  }

  .rank-item:first-child {
    border-right: none;
    padding-right: 0;
  }

  .rank-item h2 {
    font-size: 46px;
  }

  .rank-item p {
    font-size: 14px;
  }
}

/* Recognization section*/

.recognition-section {
  padding: 80px 0;
  background: #f8f9fb;
  text-align: center;
}

.recognition-title {
  text-align: center;
  font-size: 40px;
  font-family: sans-serif;
  font-weight: 700;
  margin-bottom: 50px;
  color: #0c2a2a;

}
.recognition-title .underline {
  display: block;
  width: 120px;
  height: 3px;
  background: #0c2a2a; /* red line */
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Collaborations section */
.alpha-global-v2 {
  padding: 80px 0;
  text-align: center;
}


.recognition-track {
  display: flex;
  gap: 30px;
  width: max-content;
  align-items: center;
}

.logo-card {
  min-width: 240px;
  height: 110px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  flex-shrink: 0;
}

.logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* international collaborations section */

.alpha-global-v2 {
  position: relative;
  padding: 100px 20px;
  background: url('your-bg-image.jpg') center/cover no-repeat;
  font-family: 'Poppins', sans-serif;
}



/* DARK OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.85);

}

/* CONTAINER */
.alpha-container {
  position: relative;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

/* LEFT */
.alpha-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.alpha-logo {
  width: 280px;
}

.alpha-sub {
  font-size: 13px;
  letter-spacing: 2px;
  color: #000000;
}

/* LOGOS */
.collab-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.collab-logos img {
  width: 90px;

}

.collab-logos img:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.1);
}

/* MOU COUNTER */
.mou {
  display: flex;
  align-items: center;
  gap: 10px;
}

.num {
  font-size: 90px;
  font-weight: 800;
  color: #2d4fa3;
}

.text {
  font-size: 60px;
  font-weight: 800;
  color: #0c2a2a;
}
.tex {
  font-size: 60px;
  font-weight: 800;
  color: #7d4900;
}

.mou-desc {
  font-size: 14px;
}

/* RIGHT */
.alpha-right h1 {
  font-size: 70px;
  font-weight: 800;
  line-height: 1.1;
}


/* TEXT */
.desc {
  margin: 25px 0;
  color: #444;
  max-width: 500px;
}

.uni-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  justify-items: center; /* centers smaller items */
}

.uni-grid img {
  width: 55%;
}


/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media(max-width: 900px) {
  .alpha-container {
    grid-template-columns: 1fr;
  }

  .alpha-right h1 {
    font-size: 42px;
  }

  .num {
    font-size: 60px;
  }

  .text {
    font-size: 40px;
  }

  .uni-grid {
    grid-template-columns: 1fr;
  }
}




.company-section{
padding:40px 0;
overflow:hidden;
}

.container{
width:92%;
max-width:1300px;
margin:auto;
}

/* slider rows */

.slider-row{
position:relative;
overflow:hidden;
margin:35px 0;
}

/* gradient edges */

.slider-row::before,
.slider-row::after{
content:"";
position:absolute;
top:0;
height:100%;
width:120px;
z-index:2;
pointer-events:none;
}

.slider-row::before{
left:0;
background:linear-gradient(to right,#fff,transparent);
}

.slider-row::after{
right:0;
background:linear-gradient(to left,#fff,transparent);
}

/* track */

.slider-track{
display:flex;
gap:50px;
align-items:center;
will-change:transform;
}

/* logo card */

.logo-slide{
flex-shrink:0;
width:130px;
height:70px;
display:flex;
align-items:center;
justify-content:center;
}

.logo-slide img{
max-width:120px;
max-height:60px;
object-fit:contain;

transition:0.3s;
}

/* responsive */

@media(max-width:900px){
.logo-slide{
width:100px;
}
}

@media(max-width:600px){
.logo-slide{
width:80px;
}
}



/* ===============================
   PROGRAM SECTION (FINAL FIXED)
================================ */

.eng-programs{
  padding:80px 6%;
  background:#f5f6fb;
  font-family:'Poppins',sans-serif;
}

.program-title{
  font-size:40px;
  font-weight:700;
  color:#0c2a2a;
  margin-bottom:40px;
  text-align:center;
}

/* ===============================
   LAYOUT
================================ */

.program-layout{
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:40px;
  margin-top: 0px;
  align-items:flex-start;
}

/* ===============================
   LEFT SIDE
================================ */

.program-left{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.program-item{
  padding:18px;
  background:#fff;
  border-radius:10px;
  cursor:pointer;
  transition:0.3s;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

/* HOVER */
.program-item:hover{
  transform:translateX(6px);
}

/* ACTIVE */
.program-item.active{
  background:#7d4900;
  color:#fff;
}

.program-item span{
  color:#eca036;
}

.program-item p{
  font-size:14px;
  color:#555;
}

.program-item.active p{
  color:#eee;
}

/* ===============================
   RIGHT PANEL
================================ */

.program-right{
  position:relative;
}

/* BASE PANEL */
.program-detail{
  display:none;
  background: radial-gradient(circle at top, #0c2a2a, #051616);
  color:#fff;
  padding:35px;
  border-radius:12px;
  box-shadow:0 15px 40px rgba(0,0,0,0.2);

  animation:fadeIn 0.4s ease;
}

/* ACTIVE PANEL */
.program-detail.active{
  display:block;
}

/* TEXT */

.program-detail h2{
  font-size:26px;
  margin-bottom:10px;
}

.program-detail h3{
  margin-top:18px;
  font-size:18px;
}

.program-detail p{
  font-size:14px;
  line-height:1.6;
  color:#ddd;
}

/* BUTTON */

.program-detail button{
  margin-top:20px;
  padding:10px 25px;
  border:none;
  background:#fff;
  color: radial-gradient(circle at top, #0c2a2a, #051616);
  border-radius:6px;
  cursor:pointer;
}

/* ===============================
   ANIMATION
================================ */

@keyframes fadeIn{
  from{
    opacity:0;
    transform:translateY(15px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width:900px){

  .program-layout{
    grid-template-columns:1fr;
  }

}

@media(max-width:500px){

  .program-title{
    font-size:26px;
  }

  .program-item h3{
    font-size:16px;
  }

}

/* Admission section */

.admission-section {
  max-width: 1500px;
  margin: auto;
  background: #f4f8fb;
  font-family: sans-serif;
padding: 10px 10px;
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 24px;
  color: #666;
  margin-bottom: 25px;
}

.admission-section h2 {
  font-size: 44px;
  font-weight: 400;
  color: #1f2937;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.subtitle {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 70px;
}

.track-wrapper {
  position: relative;
  width: 100%;
  height: 360px;
}

.track {
  width: 100%;
  height: 200px;
}

.step {
  position: absolute;
  width: 240px;
  text-align: center;
}

.step span {
  font-size: 14px;
  color: #888;
}

.step h4 {
  font-size: 20px;
  margin: 10px 0;
  color: #1f2937;
}

.step p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.5;
}

.icon {
  width: 60px;
  height: 60px;
  background: #0c2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  margin: 0 auto 10px;
}
.ico {
  width: 60px;
  height: 60px;
  background: #18b58a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  color: white;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 10px;
}
.ic {
  width: 60px;
  height: 60px;
  background: #f19048;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  margin: 0 auto 10px;
}
.i {
  width: 60px;
  height: 60px;
  background: #00b2b2;
  border-radius: 50%;
  display: flex;
  color: white;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 10px;
}

.step1 {
  left: 2%;
  top: 55px;
}

.step2 {
  left: 30%;
  top: 95px;
}

.step3 {
  left: 58%;
  top: 80px;
}

.step4 {
  left: 82%;
  top: 80px;
}

.apply-btn {
  margin-top: 40px;
  background: #7d4900;
  color: #fff;
  border: none;
  padding: 16px 40px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.apply-btn:hover {
  background: #ae6909bb;
}
/* ===============================
   ADMISSION STEPS
================================ */
@media (max-width: 900px) {
  .track-wrapper {
    height: auto;
  }

  .step {
    position: static;
    width: 100%;
    margin-bottom: 36px;
  }
}

/* ---- Banner ------- */

.admission-banner {
  position: relative;
  height: 550px;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.banner-image {
  position: absolute;
  inset: 0;
  background: 
    url('img/BU-CTA-design.webp'); /* replace */
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* CONTENT LEFT SIDE */
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 148px 60px;
  margin-left: 70px;
  font-family: sans-serif;
  color: #ffffff;
}

/* BADGE */
.ad-badge {
  display: inline-block;
  background: #d9d9d9a6;
  color: #000;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

/* HEADING */
.banner-content h1 {
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 600;
}

/* SUBTEXT */
.ad-sub {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 15px;
  margin-bottom: 25px;
}

/* BUTTON */
.ad-btn {
  display: inline-block;
  background: #a86800;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.ad-btn:hover {
  background: #c27a00;
  transform: translateY(-2px);
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .banner-content{
    display: none;
  }
  .banner-image{
    display:none;
  }
  .admission-banner{
    display: none;
  }
}



/*-----footer---------*/

.rbpu-footer {
  background: #2f3a3d;
  color: #d6d6d6;
  font-family: Arial, sans-serif;
}

.footer-top {
  padding: 60px 80px;
  display: grid;
  margin-top: 50px;
  grid-template-columns: 1fr;
  gap: 60px;
  background:  radial-gradient(circle at top, #0c2a2a, #051616);
  color: #ffffff;
}

.footer-about {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  max-width: 800px;
}

.footer-logo {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
}
.footer-logo img{
  padding-right: 0px;
  position: relative;
  top: -23px;
    width: 200px;
    left: 5px;
}


/* ALIGN BOTH TOGETHER HERE */
.footer-about-text {
  display: flex;
  flex-direction: column;
  margin-left: 25%;
  margin-top: -7%;
}

/* DESCRIPTION */
.footer-desc {
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 20px;
  color: #d6e2ea;
}

/* CONTACT */
.footer-contact {
  display: flex;
  gap: 40px;
  font-size: 14px;
  color: #c8d7df;
}

.footer-contact span {
  display: flex;
  align-items: end;
  gap: 40px;
}


@media (max-width: 640px) {
  .footer-top {
    padding: 58px 18px;
  }

  .footer-about {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-about-text {
    margin: 0;
  }
  .footer-logo {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
}
.footer-logo img{
  padding-right: 0px;
  position: relative;
        top: -43px;
        width: 120px;
        left: 6px;
}


  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ----our star alumni-------*/

.star-alumni-section {
  padding: 80px 10px;
  color: #072222;
  font-family: sans-serif;
  background: #ffffff;
  overflow: hidden;
}

/* HEADER */
.star-alumni-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.star-alumni-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

.star-alumni-header p {
  max-width: 700px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
}

/* NAV BUTTONS */
.nav-buttons {
  display: flex;
  gap: 12px;
}

.nav-buttons button {
  width: 46px;
  height: 46px;
  background: #7d4900;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 20px;
  cursor: pointer;
}

/* CAROUSEL */
.carousel-wrapper {
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 30px;
  pointer-events: none;
  cursor: grab;
}

.alumni-card {
  width: 480px;
  height: 350px;
  border-radius: 0px;
  overflow: hidden;
  flex: 0 0 auto;
}

.alumni-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   STAR ALUMNI
================================ */
@media (max-width: 768px) {

  .star-alumni-header {
    flex-direction: column;
    gap: 20px;
  }

  .carousel-track{
    gap: 0; /* remove spacing */
  }

  .alumni-card {
    width: 100%;          /* full screen width */
    height: 350px;
    flex: 0 0 100%;       /* IMPORTANT */
  }

}




.rb-uni-sec {
  background: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Georgia', serif;
}

.rb-uni-wrap {
  max-width: 1200px;
  margin: auto;
}

/* TAGLINE */
.rb-uni-tag {
  letter-spacing: 3px;
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  display: inline-block;
  padding-bottom: 10px;
}

/* HEADING */
.rb-uni-heading {
  font-size: 42px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
  margin-bottom: 60px;
}

.rb-green {
  color: #0b5d2a;
}

.rb-red {
  color: #7d4900;
}

.rb-sub {
  font-size: 20px;
  color: #333;
  letter-spacing: 2px;
}

/* FLEX */
.rb-uni-flex {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* CARD */
.rb-card {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

/* BADGE */
.rb-badge {
  width: 140px;
  height: 140px;
  border: 3px solid #0b5d2a;
  border-radius: 50%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #0b5d2a;
  transition: 0.3s;
}

.rb-badge h3 {
  font-size: 40px;
  margin: 0;
  color: #7d4900;
}

.rb-small {
  font-size: 14px;
  color: #333;
}

/* CENTER SPECIAL */
.rb-center .rb-badge {
  border-color: #7d4900;
  color: #7d4900;
}

.rb-center h4 {
  font-size: 18px;
  margin: 0;
}

.rb-center span {
  font-size: 14px;
}

/* TEXT */
.rb-card p {
  margin-top: 20px;
  font-size: 16px;
  color: #222;
  line-height: 1.6;
}

/* HOVER */
.rb-badge:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .rb-uni-heading {
    font-size: 28px;
  }

  .rb-uni-flex {
    flex-direction: column;
    gap: 30px;
  }
}
