/* Vedam School of Technology Styles */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;

  color: #39324A;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Header Styles */
.header {
  display: flex;
  align-items: center;
  height: 100px;
  padding: 0px;
  border-bottom: 1px solid #E5E5E5;
  background: #fff;
  justify-content: center;

  
}

.header-content {
  width: 1300px;
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 0px 10px; */
  padding: 0px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  width: 200px;
  height: 200px;
  
}

.logo img {
  /* width: 199px;
  height: 80px; */
 
  width: 199px;
  height: 70px;
  object-fit: contain;
  display: block;
}


.login-btn {
  width: 187px;
  height: 56px;
  border-radius: 14px;
  background: #8A18FF;
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(154, 56, 219, 0.12);
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: #7A14E0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(154, 56, 219, 0.2);
}

/* Main Content */
main { 
  padding: 0 20px; 
  max-width: 1320px; 
  margin: 0 auto; 
  background-color:white ;
}

/* Hero Section */
.hero-section {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  flex-wrap: wrap;
  gap: 20px;

}

.hero-content {
  flex: 1;
  min-width: 350px;
}

.hero-heading-block { 
  width: 684px; 
  min-height: 257px; 
  margin-top: 20px; 
  margin-left: 0; 
  margin-right: auto; 
}

.hero-heading-block h1 {
  width: 565px;
  min-height: 154px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 24px 0;
}

.h1-orange {
  background: linear-gradient(90deg, #F97D03 0%, #8A18FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.h1-purple {
  background: linear-gradient(90deg, #F97D03 0%, #8A18FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.h1-purple img {
  width: 28.73px;
  height: 60.32px;
  transform: rotate(20deg);
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
  margin-bottom: 0px;
}

.hero-subdesc {
  margin-top: 20px;
}

.subhead {
  
  color: #636272;
  font-size: 1rem;
  margin-bottom: 2px;
  display: block;
}

.program {
  font-weight: bold;
  font-size: 1.15rem;
  display: block;
  margin-right: 10px;
}

/* Info Cards */
.info-cards { 
  width: 100%; 
  display: flex; 
  gap: 28px; 
  align-items: stretch; 
  justify-content: space-between; 
  margin-top: 40px;
}

.info-card { 
  flex: 1 1 0;
  background: linear-gradient(0deg, #E4C7FF 0%, #d5c0eb 20%, #f4f3f6 100%);
  border-radius: 22px;
  box-shadow: 0 6px 28px 0 rgba(198, 86, 237, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 42px 20px 30px 20px;
  min-width: 190px;
  height: 520px; /* âœ… force taller cards */
  justify-content: flex-start;
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px 0 rgba(198, 86, 237, 0.15);
}

.info-card-orange {
  background: linear-gradient(0deg, #FFD6A3 0%, #FFE9CF 45%, #FFFFFF 100%);
  
}

.info-card-top-icon {
  
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: transparent; /* make it invisible */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible; /* so the glow shows outside */
  z-index: 1;
}


/* subtle radial glow ring - perimeter-focused */
.info-card-top-icon::before {
   content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138,24,255,0.25) 0%, rgba(138,24,255,0.05) 60%, transparent 100%);
  filter: blur(10px);
  z-index: -1;
}

/* very subtle downward halo */
.info-card-top-icon::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 70px;
  left: 50%;
  transform: translateX(-50%);
  top: 66px;
  border-radius: 70px 70px 0 0;
  background: radial-gradient(60% 100% at 50% 0%, rgba(138,24,255,0.12) 0%, rgba(138,24,255,0.00) 65%);
  filter: blur(8px);
  z-index: -2;
}

/* orange variants - ring removed */
.info-card-orange .info-card-top-icon { box-shadow: none; }
.info-card-orange .info-card-top-icon::before { 
  background: radial-gradient(circle at center, rgba(249,125,3,0.16) 0%, rgba(249,125,3,0.06) 35%, rgba(249,125,3,0.00) 60%); 
}
.info-card-orange .info-card-top-icon::after { 
  background: radial-gradient(60% 100% at 50% 0%, rgba(249,125,3,0.10) 0%, rgba(249,125,3,0.00) 65%); 
}

/* icon size inside the circle */
.info-card-top-icon img {
    width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 50%;
}

.info-title {
  font-size: 1.45rem;
  font-weight: 700;
  margin-top: 52px;
  margin-bottom: 8px;
  text-align: center;
  color: #39324A;
}

.info-card-divider {
  width: 100%;
  height: 2px;
  border: none;
  background: radial-gradient(circle, rgba(138,24,255,0.5) 0%, rgba(138,24,255,0.1) 60%, transparent 100%);
  box-shadow: 0 0 8px rgba(138,24,255,0.2);
  margin: 30px 0;
}

.info-card-divider-orange {
background: radial-gradient(circle, rgba(255,138,0,0.6) 0%, rgba(255,138,0,0.1) 60%, transparent 100%);
}

.info-detail {
  color: #4A4B68;
  font-size: 1.2rem;
  text-align: center;
  flex: 1 1 auto;
  margin-bottom: 28px;
  margin-top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}

.info-card-btn {
  width: 120px;
  height: 45px;
  border-radius: 50px;
  background: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 3px 0 #8A18FF; /* Purple bottom border effect */
  pointer-events: none; /* makes it non-clickable */
}

.info-card-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f2fc 100%);
  z-index: -1;
}

.info-card-btn img {
  width: 60px;
  height: 30px;
  border-radius: 50%;
}

.info-card-btn-orange { background: #ffe2c5;

}

/* === Registration Form - Exact Figma Match === */
.registration-form-card {
  margin-top: 89px;
  width: 476px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 0 32px rgba(198, 86, 237, 0.14);
  padding: 0px 36px 0 36px;
  position: relative;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
  border: 1.5px solid #E8D1FF;
  background-image: linear-gradient(#fff, #fff),
    linear-gradient(90deg, #8A18FF 0%, #00A3FF 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* === Top Curved Alert === */
.top-alert {
  position: absolute;
  top: -20px;
  right: 0px;
  background: linear-gradient(90deg, #fff 60%, #FFD6AD 100%);
  border: 1px solid #E8D1FF;
  border-radius: 50px;
  padding: 8px 8px;
  font-size: 14px;
  color: #020101;
  font-weight: 100;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.alert-date {
  font-weight: 700;
  font-size: 14px;
  color: #F97D03;
}

/* === Heading === */
.registration-form-card h2 {
  font-size: 1.45rem;
  color: #8A18FF;
  font-weight: 800;
  margin-bottom: 5px;
  margin-top: 29px;
  /* padding: 0 95px; */
}

.sub-text {
  font-size: 0.95rem;
  color: #6C667A;
  margin-bottom: 18px;
  margin-top: 1px;
  /* padding: 0 111px; */
}

/* === Form === */
#registration-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#registration-form label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #2E2C34;
  margin-bottom: 4px;
}

#registration-form input,
#registration-form select {
  /* width: 100%; */
  padding: 7px 7px 7px 7px;
  border-radius: 10px;
  border: 1.5px solid #E2D0F4;
  background: #F7F3FC;
  font-size: 1rem;
  color: #333;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}

#registration-form input:focus,
#registration-form select:focus {
  outline: none;
  border-color: #8A18FF;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(138, 24, 255, 0.15);
}

/* === Phone fields === */
.phone-fields {
  display: flex;
  gap: 10px;
  width: 100%;
}

.phone-fields select {
  flex: 0 0 80px; /* âœ… Fixed narrow width */
  max-width: 90px; /* prevent growing */
  text-align: center;
  border: 1.5px solid #E2D0F4;
  border-radius: 10px;
  background: #F7F3FC;
  font-size: 1rem;
  color: #333;
  height: 48px;
}

.phone-fields input {
  flex: 1; /* âœ… Take the remaining space */
  border: 1.5px solid #E2D0F4;
  border-radius: 10px;
  background: #F7F3FC;
  font-size: 1rem;
  color: #333;
  height: 48px;
}


/* === Button === */
.panel.dynamic_theme_block .btn-npf,
button#registerBtn,
#otpSubmitBtn{
  background: linear-gradient(90deg, #FF8A00 0%, #C656ED 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 11px 0;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 187px;
  height: 44px;
  margin: 1rem auto;
  margin-top: 5px;
}

.get-started-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(198, 86, 237, 0.3);
}

/* === Responsive === */
@media (max-width: 600px) {
  .registration-form-card {
    width: 100%;
    padding: 28px 24px 38px;
  }
}

/* Intake Dates section */
.intake-dates-section {
  /* margin: 56px 0px 56px 0px; */
  width: 100%;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Intake Dates Bar */
.intake-dates-section {
  /* margin-top: 56px; */
  width: 100%;
  position: relative;
}

/* Full-width gradient bar */
/* Full-width gradient bar */
.intake-dates-bar {
  position: relative;
  width: 100vw; /* ensures it always fills the viewport */
  height: 54px;
  background: linear-gradient(90deg, #8A18FF 0%, #2B135C 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.28rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(138, 24, 255, 0.25);
  border-radius: 0;
  z-index: 1;
  overflow: hidden;
  margin-top: 30px;
  margin-left: calc(-50vw + 50%); /* fixes container padding */
}

/* Decorative white side lines */
.intake-dates-bar::before,
.intake-dates-bar::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;

  transform: translateY(-50%);
}

.intake-dates-bar::before {
  /* left: calc(50% - 200px); */
background: linear-gradient(90deg, #8A18FF 0%, #ffffff 100%);
}

.intake-dates-bar::after {
  right: calc(50% - 250px);
background: linear-gradient(90deg, #ffffff 0%, #2B135C 100%);
}

/* âœ… Mobile Fix */
@media (max-width: 768px) {
  .intake-dates-bar {
    font-size: 1rem;
    height: 48px;
    margin-top: 20px;
    width: 100vw; /* full viewport width */
    margin-left: calc(-50vw + 50%); /* ensures it aligns full-width even inside a container */
  }

  .intake-dates-bar::before,
  .intake-dates-bar::after {
    display: none; /* hide side lines on small screens if they look cramped */
  }
}


.intake-dates-bar::before {
  left: calc(50% - 220px);
}

.intake-dates-bar::after {
  right: calc(50% - 220px);
}

.intake-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  justify-content: center;
  /* margin-left: 0; */
  max-width: 100%;
  margin: 40px 10px 70px 10px;
 
}

.intake-step {
  /* width: 100%; */
  /* height: 132px; */
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 0 18px 1px rgba(138, 24, 255, 0.2);
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  padding:30px;
  font-size: 1rem;
  justify-content: space-between;
  /* position: relative; */
  /* margin-right: 0; */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intake-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px 2px rgba(138, 24, 255, 0.25);
}

.step-content {
  flex: 3;
  width: 218px;
  height: 66px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5em;
  color: #39324a;
}

.step-detail {
  color: #4a4b68;
  font-size: 1.25rem;
}

.step-badge {
  flex: 1;
  /* position: absolute; */
  /* top: 24px;
  left: 301px; */
  max-width: 75px;
  height: 75px;
  border-radius: 100px;
  box-shadow: none;
}
.step-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


/* Container: 3 cards side-by-side on large screens, spacing preserved */
.info-cards {
  width: 100%;
  margin-left: 0;
  display: flex;
  flex-wrap: nowrap;            /* keep sequence and prevent wrap on large screens */
  gap: 28px;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 40px;
  height: auto;                 /* let cards grow naturally */
  box-sizing: border-box;
}

/* Card: fixed 3-column layout on large screens */
.info-card {
  flex: 0 0 calc((100% - 56px) / 3);  /* three equal columns with gap accounted */
  background: linear-gradient(0deg, #E4C7FF 0%, #d5c0eb 20%, #f4f3f6 100%);
  border-radius: 22px;
  box-shadow: 0 6px 28px rgba(198, 86, 237, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 42px 20px 18px 20px;
  min-width: 190px;
  min-height: 358px;
  height: auto;     /* allow card to adapt if content grows */
  justify-content: flex-start;
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

/* Hover */
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(198, 86, 237, 0.15);
}

/* Orange variant retained */
.info-card-orange {
  background: linear-gradient(0deg, #FFD6A3 0%, #FFE9CF 45%, #FFFFFF 100%);
}

/* Top icon + glow (kept same but made responsive-friendly) */
.info-card-top-icon {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  z-index: 1;
}
.info-card-top-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138,24,255,0.25) 0%, rgba(138,24,255,0.05) 60%, transparent 100%);
  filter: blur(10px);
  z-index: -1;
}
.info-card-top-icon::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 70px;
  left: 50%;
  transform: translateX(-50%);
  top: 66px;
  border-radius: 70px 70px 0 0;
  background: radial-gradient(60% 100% at 50% 0%, rgba(138,24,255,0.12) 0%, rgba(138,24,255,0) 65%);
  filter: blur(8px);
  z-index: -2;
}
.info-card-orange .info-card-top-icon::before {
  background: radial-gradient(circle at center, rgba(249,125,3,0.16) 0%, rgba(249,125,3,0.06) 35%, rgba(249,125,3,0) 60%);
}
.info-card-top-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}



/* Laptop icon wrapper */
.laptop-icon {

  margin: 0 auto;
  box-shadow: 0 0 25px rgba(177, 33, 182, 0.3); /* soft orange glow like calendar */
  position: relative;
}
.laptop-icon{
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  z-index: 1;
}

/* Laptop image inside the circle */
.laptop-icon img {
  width: 35px; /* Adjust for proper size balance */
  height: 35px;
  object-fit: contain;
}







/* Titles, divider, details & button kept but responsive tuned */
.info-title { font-size: 1.45rem; font-weight:700; margin-top:52px; margin-bottom:8px; color:#39324A; text-align:center; }
.info-card-divider { width:100%; height:2px; border:none; background: radial-gradient(circle, rgba(138,24,255,0.5) 0%, rgba(138,24,255,0.1) 60%, transparent 100%); box-shadow:0 0 8px rgba(138,24,255,0.2); margin:30px 0; }
.info-card-divider-orange { background: radial-gradient(circle, rgba(255,138,0,0.6) 0%, rgba(255,138,0,0.1) 60%, transparent 100%); }
.info-detail { color:#4A4B68; font-size:1.2rem; text-align:center; flex:1 1 auto; margin-bottom:28px; display:flex; align-items:center; justify-content:center; line-height:1.5; }
.info-card-btn {
    width: 120px;
  height: 45px;
  border-radius: 50px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 0 #8A18FF; /* purple underline shadow */
  transition: all 0.3s ease;
  pointer-events: none;
  overflow: hidden;
}

.info-card-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(180deg, #fff 0%, #f5f2fc 100%); /* subtle purple tint */
  z-index: -1;
}
.info-card-btn-orange img{
  width: 100px;
  height: 40px;
}

.info-card-btn-checkmark img {
  width:80%;
  height: 80%;
  object-fit: contain;
}

/* ------------------ Breakpoints ------------------ */

/*  Hide mobile cards on desktop */
.mobile-info-cards {
  display: none;
}

/* Mobile view */
@media (max-width: 768px) {
  /* Hide the desktop info cards */
  .info-cards {
    display: none;
  }

  /* Show the new mobile cards */
  .mobile-info-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    margin-right: 20px;
  }

  .mobile-card {
    width: 100%;
    max-width: 340px;
    border-radius: 16px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  }
}

/* Laptop & mid-size screens (keep 3 columns identical to desktop display) */
@media (max-width: 1366px) and (min-width: 1025px) {
  .info-cards { flex-wrap: nowrap; gap: 28px; }
  .info-card { flex: 0 0 calc((100% - 56px) / 3); max-width: none; }
}

/* Tablet: 2 columns, preserve leftâ†’right order (first two on top row, third below centered) */
@media (max-width: 1024px) {
  .info-cards {
    flex-wrap: wrap;                 /* allow wrapping */
    justify-content: center;
    gap: 24px;
  }
  .info-card {
    flex: 0 0 calc(50% - 12px);      /* two per row */
    max-width: calc(50% - 12px);
    min-width: 300px;
  }
  /* Reduce top icon so it doesn't overlap awkwardly */
  .info-card-top-icon { width:64px; height:64px; top:-28px; }
  .info-title { font-size:1.35rem; margin-top:44px; }
  .info-card { padding:34px 16px 16px 16px; }
}

/* Mobile: single column stacked, centered, tuned spacing */
@media (max-width: 768px) {
  .info-cards {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 0 16px;
  }
  .info-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 520px;                /* limit card width for readability */
    padding: 28px 14px 14px 14px;
    border-radius: 16px;
    min-height: auto;
  }
  .info-card-top-icon { width:56px; height:56px; top:-22px; }
  .info-title { font-size:1.25rem; margin-top:40px; }
  .info-detail { font-size:1rem; padding:0 6px; }
  .info-card-btn { width:110px; height:40px; }
}

/* Very small phones */
@media (max-width: 420px) {
  .info-card { padding: 22px 12px 12px 12px; }
  .info-title { font-size:1.1rem; margin-top:36px; }
  .info-detail { font-size:0.95rem; }

  .hero-heading-block h1 {
     text-align: center;
     margin: 0 auto;
     margin-top: -30px;
  }
  .subhead {
  text-align: center;
  color: #636272;
  font-size: 1rem;
  margin-bottom: 2px;
  margin-right: 20px;
  display: block;
}

.program {
  text-align: center;
  font-weight: bold;
  font-size: 1.15rem;
  display: block;
  margin-right: 20px;
  }


}

/* Campus Section */
/* Campus â€” reduced gap between heading and images */
.campus-section {
   /* overall spacing above the whole section */
  /* padding: 0 5%; */
}

/* Make heading have zero bottom margin and a small gap */
.campus-heading {
  margin: 0 0 6px 0;    /* <--- small bottom margin to reduce gap */
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: left;
  width: 100%;
  /* max-width: 413px; */
  text-align: center;
}

/* Pull the campus container up close to the heading */
.campus-container {
  width: 100%;
  min-height: 400px;
  margin-top: 4px;      /* <--- tiny top margin so it sits just under heading */
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 4%;
}




.campus-heading span {
  background: linear-gradient(90deg, #f97d03 0%, #8a18ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


.campus-card {
  position: relative;
  flex: 1 1 calc(33.33% - 24px);
  max-width: 400px;
  display: flex;
  transition: transform 0.3s ease;
  justify-content: center;
}

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

.campus-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

/* Caption Box (University Name) */
.campus-caption {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -36px;
  width: 80%;
  max-width: 280px;
  height: 110px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f3e8ff 100%);
  border-bottom: 4px solid #8a18ff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 20px;
  color: #1f1b2d;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* âœ… Responsive Fixes */
@media (max-width: 1024px) {
  .campus-card {
    flex: 1 1 calc(50% - 24px);
  }

  .campus-caption {
    bottom: -28px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .campus-container {
    flex-direction: column;
    gap: 16px; /* smaller spacing between items */
  }

  .campus-card {
    flex: 1 1 100%;
    max-width: 90%;
  }

  .campus-image {
    height: 280px;
  }

  .campus-caption {
    bottom: -24px;
    height: auto;
    width: 85%;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .campus-heading {
    font-size: 1.6rem;
    text-align: center;
  }

  .campus-caption {
    font-size: 16px;
    width: 90%;
    bottom: -20px;
  }
}



/* Seniors Section */
.seniors-section { 
  margin-top: 0px; 
}

.seniors-heading {
  margin: 18px 0 0px 0;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.1;
  /* width: 413px; */
  text-align: center;
  height: 55px;
}

.seniors-heading span { 
  background: linear-gradient(90deg, #F97D03 0%, #8A18FF 100%); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  background-clip: text; 
  color: transparent; 
  display: inline-block; 
}

.seniors-container {
  width: 100%;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  padding: 4% !important;
}

.seniors-image { 
  flex: 0 0 calc((100% - 24px) / 2); 
  width: calc((100% - 24px) / 2); 
  height: auto; 
  border-radius: 16px; 
  box-shadow: 0 8px 28px rgba(0,0,0,0.10); 
  transition: transform 0.3s ease;
}

.seniors-image:hover {
  transform: translateY(-5px);
}

/* Approach Section */
.approach-section { 
  margin-top: 30px; 
}

.approach-heading { 
  margin: 0 0 40px 0; 
  font-size: 2.1rem; 
  font-weight: 700; 
  line-height: 1.1; 
  background: linear-gradient(90deg, #F97D03 0%, #8A18FF 100%); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  background-clip: text; 
  color: transparent; 
  display: inline-block;  
  white-space: wrap; 
  text-align: center;
}

.approach-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 4%;
}
.approach-grid-2 {
 display: none;
 
}

.approach-image { 
  width: 100%; 
  height: auto; 
  border-radius: 16px; 
  box-shadow: 0 8px 28px rgba(0,0,0,0.10); 
  transition: transform 0.3s ease;
}

.approach-image:hover {
  transform: translateY(-5px);
}

/* YouTube Section */
.youtube-section { 
  margin-top: 56px; 
}

.youtube-heading { 
  margin: 0 0 40px 0; 
  font-size: 2.1rem; 
  font-weight: 700; 
  line-height: 1.1; 
  background: linear-gradient(90deg, #F97D03 0%, #8A18FF 100%); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  background-clip: text; 
  color: transparent; 
  display: inline-block; 
  /* white-space: wrap; 
  text-align: center; */
}

.youtube-container { 
  width: 100%; 
  display: flex; 
  gap: 24px; 
  justify-content: space-between; 
  align-items: center; 
}

.youtube-container a{
  flex: 1;
}
.youtube-link { 
  flex: 0 0 calc((100% - 24px) / 2); 
  text-decoration: none; 
  display: block; 
}

.youtube-wrapper { 
  position: relative; 
  width: 100%; 
  border-radius: 16px; 
  overflow: hidden; 
  box-shadow: 0 8px 28px rgba(0,0,0,0.10); 
  transition: transform 0.3s ease; 
}

.youtube-wrapper:hover { 
  transform: scale(1.02); 
}

.youtube-thumbnail { 
  width: 100%; 
  height: auto; 
  display: block; 
}

.play-button { 
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  transition: transform 0.3s ease; 
}

.youtube-wrapper:hover .play-button { 
  transform: translate(-50%, -50%) scale(1.1); 
}

/* Apply Now Section */
.apply-now-section {
  
  margin-top: 56px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
 
}
.apply-img{
  /* background-color: white; */
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);

}

.apply-now-image {
  width: 100%;
  height: 100%;
  /* transition: transform 0.3s ease; */
}
.apply-btn{
  position: absolute;
  top: 153px;   /* where you want */
  left: 50px;  /* where you want */
   
  z-index: 10;
  padding: 21px 61px;
  background: linear-gradient(90deg, #7B2CBF 0%, #F25C05 100%);
  border: none;
  border-radius: 16px;
  color: white;
  font-size: 1.1rem;
  border: none;
  
  cursor: pointer;
}
.apply-now-image:hover {
  transform: translateY(0px);
}


/* Footer Styles */
.youtube-section {
  margin-top: 56px;
}

.youtube-heading {
  /* margin: 0 0 40px 0; */
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(90deg, #f97d03 0%, #8a18ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: block;
  /* white-space: nowrap; */
  text-align: center;
}

.youtube-container {
  width: 100%;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}

.youtube-link {
  flex: 0 0 calc((100% - 24px) / 2);
  text-decoration: none;
  display: block;
}

.youtube-wrapper {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.youtube-wrapper:hover {
  transform: scale(1.02);
}

.youtube-thumbnail {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.youtube-wrapper:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Apply Now Section */
.apply-now-section {
  
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
 
}
.apply-img{
  background-color: white;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
}

.apply-now-image {
  width: 100%;
  height: 100%;
  /* transition: transform 0.3s ease; */
}
.apply-btn{
  position: absolute;
  top: 153px;   /* where you want */
  left: 50px;  /* where you want */
   
  z-index: 10;
  padding: 21px 61px;
  background: linear-gradient(90deg, #7B2CBF 0%, #F25C05 100%);
  border: none;
  border-radius: 16px;
  color: white;
  font-size: 1.1rem;
  border: none;
  
  cursor: pointer;
}
.apply-now-image:hover {
  transform: translateY(0px);
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(90deg, #7B2CBF 0%, #F25C05 100%);
  color: #fff;
  padding: 30px 120px 30px 110px;
  margin-top: 37px;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 200px;
  margin: 0 auto;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: "Inter", Arial, sans-serif;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.social-links .icon {
  margin-right: 6px;
  font-size: 1.1rem;
  display: inline-block;
  width: 18px;
  text-align: center;
}

.footer-divider {
  height: 1px;
  background: #fff;
  opacity: 0.3;
  margin: 40px 0 24px 0;
}

.footer-copyright {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.9;
}
.footer-logoo{
    margin-right: 40px;
  }

/* Responsive Styles */
@media (max-width: 1400px){
  .apply-now-section {
    /* display: none; */
    width: 96%;
    margin: auto;
  }
.apply-btn{
  margin:-10px
}
}
@media (max-width: 1200px) {
  .header-content,
  main {
    max-width: 100%;
    padding: 0 20px;
  }

  .hero-heading-block {
    width: 100%;
    margin-top: 80px;
  }

  .hero-heading-block h1 {
    width: 100%;
    font-size: 54px;
  }

  .campus-container {
    flex-wrap: wrap;
    justify-content: center;
    min-height: auto;
  }

  .campus-card {
    flex: 1 1 300px;
    margin-bottom: 40px;
  }

  .campus-caption {
    width: 70%;
    height: auto;
    padding: 10px 14px;
    bottom: -20px;
    font-size: 18px;
  }

  .site-footer {
    padding: 25px 40px 25px 40px;
  }

  .footer-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    
  }
  
}

@media (max-width: 1070px) {
  .hero-section {
    flex-direction: column;
    align-items: stretch;
  }

  .registration-form-card {
    width: 100%;
    max-width: 476px;
    height: auto;
    /* margin: 24px auto 0 auto; */
  }

  main {
    padding: 0 18px;
  }

  .intake-dates-bar {
    width: 100%;
    padding: 15px 0;
    margin-left: 0;
  }

.intake-steps {
    
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    justify-content: space-between;
    /* margin: 40px 40px 50px 50px; */
  }

.intake-step {
    width: 90%;
    height: auto;
    min-height: 132px;
  } 

  .step-badge {
    /* left: auto;
    right: 12px;
    top: 12px; */
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 820px) {
  .hero-heading-block {
    width: 94vw;
    margin-left: 3vw;
    margin-top: 36px;
    min-height: 120px;
  }

  .hero-heading-block h1 {
    width: 92vw;
    font-size: 8vw;
    min-height: unset;
  }
}

@media (max-width: 800px) {
  .header {
    padding: 13px 6px;
  }

  .info-cards {
    width: 99vw;
    min-width: 0;
    height: auto;
    flex-direction: column;
    margin-left: 0;
    gap: 16px;
    padding: 40px;
    padding-left: 0px;
  }

  .info-card {
    min-height: 200px;
    margin-bottom: 28px;
    padding: 38px 6vw 18px 6vw;
  }

  .info-card-top-icon {
    width: 46px;
    height: 46px;
    top: -22px;
  }

  .info-card-top-icon img {
    width: 24px;
    height: 24px;
  }

  .info-card-btn {
    width: 34px;
    height: 24px;
  }

  .info-card-btn img {
    width: 14px;
    height: 14px;
  }

  .intake-steps {
    margin-right: 70px;
    gap: 14px;
    grid-template-columns: 1fr;
    flex-wrap: wrap;
  }

  .intake-step {
    min-width: 100%;
    height: auto;
    min-height: 132px;
  }
.campus-heading{
  margin-bottom: 30px;
}
  .campus-heading,
  .seniors-heading {
    font-size: 2.1rem;
    width: 100%;
    text-align: center;
  }

  .seniors-container {
    flex-direction: column;
  }

  .seniors-image {
    width: 100%;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    display: none;
  }
  .approach-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%; 
    gap: 24px; 
  }

  .youtube-container {
    flex-direction: column;
  }

  .youtube-link {
    width: 100%;
  }

  .apply-now-section {
    margin-top: 40px;
  }

  .apply-now-image {
    width: 100%;
  }

  .site-footer {
  padding: 40px 18px 20px 18px;
  margin-top: 40px;
  background-color: #000; /* optional */
  color: #fff;
}

.site-footer .footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px;
}

.site-footer .footer-section {
  flex: 1;
  min-width: 200px;
}

.site-footer .contact-cont {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer .footer-logoo {
  margin: 0 auto;
}

.site-footer .footer-divider {
  width: 100%;
  height: 1px;
  background: #fff;
  margin: 20px 0;
}

.site-footer .footer-copyright {
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
}
}
/* âœ… Mobile view â€” only affects footer */
@media (max-width: 768px) {
  .site-footer .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer .footer-section {
    min-width: 100%;
  }

  .site-footer .contact-cont {
    align-items: center;
  }

  .site-footer .footer-links {
    padding: 0;
  }

  .site-footer .footer-links li {
    list-style: none;
    margin: 4px 0;
  }

  .site-footer .footer-links a {
    color: #fff;
    text-decoration: none;
  }

  .site-footer .footer-logoo {
    margin-bottom: 20px;
  }
}

.site-footer .footer-cont {
  padding-left: 30px;
}


@media (max-width: 768px) {
.logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-weight: 700;
  font-size: 1.25rem;
  width: 150px;
  height: 50px;
  margin-left: 20px;
  
}

.logo img {
  /* width: 199px;
  height: 80px; */
 
  width: 120px;
  height: 60px;
  object-fit: contain;
  display: block;
}
.login-btn{
  width: 102px;
  height: 44px;
}
    .header {
      padding: 0;
      height: 80px;
    }
   
}

span.agree-condition {
    padding-left: 8px;
}
section.approach-section.fade-on-scroll.fade-in {
    text-align: center;
}

section.youtube-section.fade-on-scroll.fade-in div {
    padding:2%;
}

button#registerBtn .plane_img {
    display: none !important;
}