/* ===== VARIABLES ===== */
:root {
  --red: #ff0100;
  --red-hover: #cc0000;
  --red-light: rgba(255, 1, 0, 0.06);
  --dark: #111111;
  --gray: #545454; 
  --gray-light: #888888;
  --bg: #ffffff;
  --bg-alt: #f7f7f7;
  --border: #e5e7eb;
  --radius: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.2s ease;
  --max-w: 82%;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.text-center { text-align: center; }
.text-red { color: var(--red); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-hover); border-color: var(--red-hover); }

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover { background: var(--bg-alt); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline-white:hover { background: #fff; color: var(--dark); }

.btn-lg { padding: 0.9rem 2rem; font-size: 1.05rem; height: 3.5rem; }
.btn-full { width: 100%; }

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay { transition-delay: 0.2s; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  gap: 1.5rem;
}
.navbar-logo img {
    height: auto;
    transition: opacity var(--transition);
    max-width: 300px;
}
.navbar {
    padding: 15px 0;
}
.navbar-logo:hover img { opacity: 0.85; }
.navbar-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.navbar-links button {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  font-family: var(--font-body);
  transition: color var(--transition);
}
.navbar-links button:hover { color: var(--red); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.25rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  gap: 0.75rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav button, .mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  font-family: var(--font-body);
  padding: 0.5rem 0;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.mobile-nav button:last-child, .mobile-nav a:last-child { border-bottom: none; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--bg);
  padding: 5rem 0 7rem;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.admission-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--red);
  background: var(--red-light);
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  font-family: var(--font-head);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.hero-title span {
  display: block;
  margin-top: 0.25rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
}
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark);
}
.check-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--red);
  flex-shrink: 0;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-blob {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: var(--red-light);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* Lead Form */
.lead-form-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  padding: 2.5rem;
  position: relative;
  z-index: 1;
}
.form-header { text-align: center; margin-bottom: 1.75rem; }
.form-header h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
}
.form-header h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.form-header p { color: var(--gray); margin-top: 0.35rem; }
.lead-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
}
input, select, textarea {
  height: 3rem;
  padding: 0 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--dark);
  background: #fff;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
form.footer-form {
    display: none;
}
input::placeholder, select::option:first-child { color: #aaa; }
input:focus, select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255,1,0,0.08);
}
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

/* ===== ACCREDITATION ===== */
.accreditation {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.accreditation-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem 3rem;
}
.accred-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
}
.accred-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--red);
  flex-shrink: 0;
}

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.section-header p { font-size: 1.1rem; color: var(--gray); }

/* ===== PROGRAMS ===== */
.programs {
  padding: 6rem 0;
  background: var(--bg);
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
}
.program-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2.5px solid var(--red);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
.program-heading h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red);
}
.apply-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
  transition: color var(--transition);
  white-space: nowrap;
}
.apply-link:hover { color: var(--red-hover); }
.program-col ul { display: flex; flex-direction: column; gap: 1rem; }
.program-col ul li {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark);
}

/* ===== WHY CHOOSE ===== */
.why-choose {
  padding: 6rem 0;
  background: var(--bg-alt);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}
.why-desc { font-size: 1.05rem; color: var(--gray); margin-bottom: 2.5rem; line-height: 1.8; }
.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.why-list li {
  display: flex; 
  align-items: start;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
}
.high-cnt ul {
    margin: 2rem;
}
.high-cnt ul li {
    display: flex;
    gap: 8px;
    margin-bottom: 1rem;
    justify-content: center;
	 align-items: center;
}
.high-cnt ul {
    margin: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.footer-left {
    max-width: 300px;
}

.high-cnt ul li span {
    background: #ffffff;
    color: #f00;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.red-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
      margin-top: 7px;
	  display: block;
}
strong.d-block {
    display: block;
}
.campus-life p {
    margin-bottom: 1.3rem;
}
.high-cnt {
    color: #ffffff;
    margin-bottom: 1.5rem;
}
.campus-img {
  width: 100%;
   /* aspect-ratio: 4/3; */
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
}

/* ===== PLACEMENTS ===== */
.placements {
  padding: 6rem 0;
  background: var(--bg);
}
.placements h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3.5rem;
}
.recruiters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3.5rem;
  margin-bottom: 4rem;
  opacity: 0.55;
  filter: grayscale(1);
}
.recruiters span {
    font-family: var(--font-head);
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--gray);
    opacity: 0.6;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 3.5rem;
}
.stat-item { padding: 1.5rem 1rem; }
.stat-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.stat-item p { font-size: 1.05rem; font-weight: 500; color: var(--dark); }

/* ===== CAMPUS LIFE ===== */
.campus-life {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
  background: url(campus-panorama.png);
}
.campus-bg {
  position: absolute;
  inset: 0;
  background-image: url('campus-panorama.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}
.campus-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
  z-index: 1;
}
.campus-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.campus-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
}

/* ===== ADMISSION PROCESS ===== */
.admission-process {
  padding: 6rem 0;
  background: var(--bg);
}
.admission-process .section-header h2 {
  font-family: var(--font-head);
}
.steps-wrapper { max-width: 900px; margin: 0 auto; position: relative; }
.steps-line {
  display: none;
  position: absolute;
  top: 2rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step { display: flex; flex-direction: column; align-items: center; }
.step-num {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(255,1,0,0.3);
  flex-shrink: 0;
}
.step h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.9rem; color: var(--gray); }

/* ===== URGENCY BANNER ===== */
.urgency {
  background: var(--red);
  padding: 4rem 0;
}
.urgency h2 {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.4;
}

/* ===== FOOTER FORM ===== */
.footer-form-section {
  padding: 6rem 0;
  background: var(--bg-alt);
}
.footer-form-card {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  padding: 3rem 3.5rem;
}
.footer-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 3rem 0 5rem;
}
@media (min-width: 768px) {
  .site-footer { padding-bottom: 3rem; }
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: center;
  }
}
.footer-left { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 768px) { .footer-left { align-items: flex-start; } }
.footer-logo {
  height: 3rem;
  background: #ffffff;
  padding : 20px;
  border-radius: 12px;
}
.footer-left p { color: #9ca3af; max-width: 320px; font-size: 0.9rem; line-height: 1.7; }
.footer-copy { color: #6b7280; font-size: 0.875rem; }

/* ===== FLOATING CTAs ===== */
.floating-ctas {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  flex-direction: column;
  gap: 1rem;
  z-index: 200;
}
@media (min-width: 768px) { .floating-ctas { display: flex; } }
.fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.fab:hover { transform: scale(1.05); box-shadow: 0 6px 24px rgba(0,0,0,0.3); }
.fab svg { width: 1.1rem; height: 1.1rem; }
.fab-red { background: var(--red); }
.fab-red:hover { background: var(--red-hover); }
.fab-dark { background: var(--dark); }
.fab-dark:hover { background: #222; }
.fab-green { background: #25D366; }
.fab-green:hover { background: #20bd5a; }

/* Mobile Sticky Bottom Bar */
.mobile-bottom-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 0.5rem;
  gap: 0.5rem;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
}
@media (min-width: 768px) { .mobile-bottom-bar { display: none; } }
.mbb-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity var(--transition);
}
.mbb-btn:active { opacity: 0.85; }
.mbb-btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.mbb-red { background: var(--red); }
.mbb-dark { background: var(--dark); }
.mbb-green { background: #25D366; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-xl);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 320px;
  transform: translateX(120%);
  transition: transform 0.35s ease;
}
.toast.show { transform: translateX(0); }
.toast strong { font-size: 0.95rem; font-weight: 700; color: var(--dark); }
.toast span { font-size: 0.85rem; color: var(--gray); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero { padding: 3rem 0 5rem; }
  .hero-right { max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-blob { display: none; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .programs-grid { grid-template-columns: 1fr; gap: 2.5rem; max-width: 480px; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-form-card { padding: 2rem 1.5rem; }
  .footer-form-grid { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
  .campus-bg { background-attachment: scroll; }
	.navbar-logo img {
    max-width: 170px;
}
.container {
    max-width: 95%;
}
.navbar {
    padding: 0px;
}
}
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-title { font-size: 2rem; }
  .recruiters span { font-size: 1.1rem; }
  .stat-number { font-size: 2.2rem; }
}
@media (max-width: 420px) {
  .steps-grid { grid-template-columns: 1fr; }
  .accreditation-inner { gap: 0.75rem 1.5rem; }
}

/* Line between steps on desktop */
@media (min-width: 768px) {
  .steps-line { display: block; }
}
/* custom css */
button.btn.btn-primary.header-button {
    padding: 14px 29px;
    border-radius: 0;
}
.lead-form-card {
    max-width: 550px;
    margin-left: auto;
}
section.students-hero {
    width: 100%;
}

section.students-hero img {
    width: 100%;
    height: auto;
}