/* ============================================================
   FIX: Smooth scroll — added so anchor links scroll smoothly
   instead of jumping instantly to the target section
============================================================ */
html {
  scroll-behavior: smooth;
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Arsenal', sans-serif;
  color: #000;
  line-height: 1.5;
}

a {
  color: #bb2a27;
  text-decoration: none;
}

.right-logo-width{
    width:5rem;
}
.menu-right-section{
        display: flex;
    align-items: center;
    gap: 24px;
}
/* ============================================================
   UTILITY
   ============================================================ */
.red-light {
  color: #FFAAAC !important;
}

.border-left {
  border-left: 3px solid #bb2a27;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ============================================================
   HEADER / TOPBAR
   ============================================================ */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 40px 10px;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: #b01823;
  line-height: 1.1;
}

.top-right {
  text-align: right;
}

.top-right p {
  color: #b01823;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.btn {
  background: #bb2a27;
  color: #fff;
  padding: 12px 22px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  border-radius: 3px;
}

.btn:hover {
  background: #000;
  color: #fff;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement {
  background: #bb2a27;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 700px;
}

.hero-left {
  padding: 60px 50px;
  background: url('assets/image/hero-banner-img.jpg') center top / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-tag {
  display: inline-block;
  background: #bb2a27;
  color: #fff;
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  border-radius: 3px;
}

.hero-left h1 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 800;
}

.hero-left h1 span {
  color: #bb2a27;
}

.hero-left p {
  font-size: 24px;
  color: #000;
  margin-bottom: 35px;
  font-weight: 700;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.feature-tags span {
  background: #bb2a27;
  color: #fff;
  padding: 12px 18px;
  font-size: 14px;
  border-radius: 4px;
  font-weight: 600;
}

.hero-form {
  background: #fafafa;
  border-left: 1px solid #e5e5e5;
}

/* ============================================================
   STATS / COUNTER SECTION
   ============================================================ */
.counter-section {
  background: #bb2a27;
  color: #fff;
  text-align: center;
  padding: 10px 0px 2px;
  text-transform: uppercase;
  font-size: 12px;
}

.counter-title {
  padding: 2px;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 30px 20px;
}

.stat h3 {
  font-size: 34px;
  margin-bottom: 6px;
}

.stat p {
  color: #fff;
}

@media (min-width: 992px) {
  .stat {
    border-right: 1px solid #C9474C;
  }
}

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.section {
  padding: 40px 50px;
}

.section-title-small {
  color: #b01823;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title-small::before {
  content: "";
  width: 18px;
  height: 1px;
  background: #d71920;
}

.section h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.section h2 span {
  color: #bb2a27;
  font-style: italic;
}

.section-desc {
  max-width: 100%;
  width: 100%;
  color: #666;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* ============================================================
   WHY SYMBIOSIS — align description width to heading
   ============================================================ */
.why-section-inner {
  max-width: 1060px;
}

.why-section-inner .section-desc {
  max-width: 100%;
  width: 100%;
}

/* ============================================================
   CARD
   ============================================================ */
.card {
  border: 1px solid #ececec;
  padding: 35px;
  border-radius: 10px;
  transition: 0.3s;
  background: #fff;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #b01823;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-section {
  width: 100%;
  background: #ffffff;
  padding: 0 70px 40px 70px;
}

.top-bar {
  width: 100%;
  height: 20px;
  background: #e3e3e3;
  margin-bottom: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d8d8d8;
}

.feature-card {
  min-height: 155px;
  padding: 28px 36px;
  border-right: 1px solid #d8d8d8;
}

.feature-card:nth-child(3n) {
  border-right: none;
}

.feature-card:nth-child(n + 4) {
  border-top: 1px solid #d8d8d8;
}

.feature-icon {
  color: #bb2a27;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 10px;
}

.feature-card p {
  color: #696969;
  margin: 0;
}

/* ============================================================
   FOUNDER QUOTE SECTION
============================================================ */

.founder-quote-wrapper {
  padding: 0;
  overflow: visible;
}

.founder-quote-section {
  width: 100%;
  min-height: 250px !important;
  background: #7A1418;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: visible;
}

.founder-quote-content {
  width: 68%;
  padding: 70px 40px 70px 90px;
  position: relative;
  z-index: 2;
}

.quote-mark {
  position: absolute;
  top: 10px;
  left: 55px;
  font-size: 150px;
  line-height: 1;
  color: rgba(255,255,255,0.12);
  font-family: Georgia, serif;
  pointer-events: none;
}

.founder-quote-content blockquote {
  color: #fff;
  font-size: 30px;
  line-height: 1.8;
  font-style: italic;
  font-weight: 400;
  margin: 0;
  max-width: 1150px;
  position: relative;
  z-index: 2;
}

.founder-right {
  width: 32%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-right: 40px;
  padding-bottom: 35px;
  position: relative;
  z-index: 3;
}

.founder-photo-block {
  width: 360px;
  margin-top: -80px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.founder-photo-block img {
  width: 100%;
  height: auto;
  display: block;
}

.founder-attribution {
  margin-top: 12px;
  padding-top: 14px;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
}

.founder-attribution strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.founder-attribution span {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  max-width: 320px;
  margin: 0 auto;
}

/* ============================================================
   CURRICULUM NOTE
   ============================================================ */
.curriculum-note {
  background: #FEF4F4;
  border-left: 5px solid #d71920;
  padding: 28px 34px;
  max-width: 1240px;
  font-family: Arial, sans-serif;
}

.curriculum-note h3 {
  margin: 0 0 14px;
  color: #bb2a27;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.curriculum-note p {
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

/* ============================================================
   SPLIT SECTION (Symbiosis Advantage)
   ============================================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  background: #F7F7F7;
}

.split-image {
  height: 450px;
  border-radius: 24px;
  background: url('assets/image/spotlight-img.jpg') center center / cover no-repeat;
}

/* ============================================================
   ADMISSIONS PROCESS
   ============================================================ */
.process {
  background: #bb2a27;
  color: #fff;
  text-align: center;
  padding: 90px 40px 70px;
  position: relative;
  overflow: hidden;
}

.process-label {
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.process-label::before {
  content: "";
  width: 18px;
  height: 1px;
  background: #fff;
}

.process h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
}

.process h2 span {
  color: #FFB3B5;
  font-style: italic;
}

.process-desc {
  font-size: 20px;
  opacity: 0.92;
  max-width: 900px;
  margin: auto auto 90px;
}

.timeline-wrapper {
  position: relative;
  margin-bottom: 80px;
}

.timeline-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 42px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
}

.steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.step {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.45);
  background: #9B1C21;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 25px 0;
  font-size: 32px;
  font-weight: 700;
}

.step h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}

.step p {
  color: #fff;
  font-size: 12px;
  line-height: 1.7;
  max-width: 240px;
  margin: 0;
  opacity: 0.92;
}

.process-cta {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 35px 0;
}

.process-cta-inner {
  width: 100%;
  max-width: 980px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
}

.process-cta h3 {
  font-size: 22px;
  line-height: 1.45;
  font-weight: 600;
  margin: 0;
  text-align: left;
  max-width: 700px;
  color: #fff;
}

.process-cta h3 span {
  white-space: nowrap;
}

.cta-btn {
  background: #fff;
  color: #b5121b;
  text-decoration: none;
  padding: 18px 34px;
  border-radius: 4px;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #111;
  color: #fff;
  padding: 40px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer small {
  color: #999;
}

/* Campus & Why section — desktop-specific padding via class */
.section--wide {
  padding: 40px 70px 5px;
}

@media (max-width: 1024px) {
  .section--wide {
    padding: 60px 25px 5px;
  }
}

/* Features grid — mobile left/right padding fix */
@media (max-width: 768px) {
  .features-section {
    padding-left: 25px;
    padding-right: 25px;
  }
}

/* ============================================================
   RESPONSIVE — 1200px and below
   ============================================================ */
@media (max-width: 1200px) {
  .founder-quote-content { width: 60%; }
  .founder-right { width: 40%; }
  .founder-quote-content blockquote { font-size: 24px; line-height: 1.7; }
  .founder-photo-block { width: 290px; }
}

/* ============================================================
   RESPONSIVE — 1024px and below
   ============================================================ */
@media (max-width: 1024px) {
  .container { width: 100%; margin: 0; }
  .topbar { display: block; }
  .topbar .logo { margin-bottom: 20px; }
  .hero,
  .split-section,
  .grid-3,
  .stats-bar { grid-template-columns: 1fr; }
  .hero-left h1,
  .section h2,
  .process h2 { font-size: 38px; }
  .section,
  .process { padding: 60px 25px; }
  .footer { flex-direction: column; gap: 20px; text-align: center; }
}

/* ============================================================
   RESPONSIVE — 991px and below
   ============================================================ */
@media (max-width: 991px) {
  .founder-quote-section { flex-direction: column; text-align: center; align-items: center; }
  .founder-quote-content { width: 100%; padding: 50px 25px 30px; position: relative; }
  .quote-mark { left: 15px; top: -10px; font-size: 90px; line-height: 1; }
  .founder-quote-content blockquote { font-size: 22px; line-height: 1.7; margin: 0 auto; text-align: center; }
  .founder-right { width: 100%; padding: 0 20px 40px; text-align: center; }
  .founder-photo-block { width: 240px; margin: 0 auto; }
  .founder-photo-block img { width: 100%; height: auto; display: block; }
  .founder-attribution { text-align: center; margin-top: 20px; }
}

/* ============================================================
   RESPONSIVE — 900px and below
   ============================================================ */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(3n) { border-right: 1px solid #d8d8d8; }
  .feature-card:nth-child(2n) { border-right: none; }
  .feature-card:nth-child(n + 3) { border-top: 1px solid #d8d8d8; }

  .founder-quote-inner { flex-direction: column; }
  .founder-quote-content { padding: 40px 25px 20px; }
  .founder-quote-content::before { left: 20px; top: 18px; }
  .founder-photo-block {
    width: 100%;
    max-height: 260px;
    justify-content: center;
    margin-top: 0 !important;
    display: flex;
  }
  .founder-photo-block img {
    margin-top: 0px;
    padding-top: 50px;
    width: auto;
    height: 260px;
    object-fit: cover;
    object-position: top center;
  }
  .founder-attribution { flex-wrap: wrap; gap: 16px; }
  .why-section-inner { max-width: 100%; }
}

/* ============================================================
   RESPONSIVE — 768px and below
   ============================================================ */
@media (max-width: 768px) {

  .why-section-inner,
  .why-section-inner * {
    text-align: left !important;
  }
  .why-section-inner .section-title-small {
    justify-content: flex-start !important;
  }

  .section {
    text-align: left !important;
  }
  .section .section-title-small {
    justify-content: flex-start !important;
    text-align: left !important;
  }
  .section h2,
  .section p,
  .section .section-desc {
    text-align: left !important;
  }

  .process-cta {
    padding: 30px 20px !important;
  }
  .process-cta-inner {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 24px !important;
  }
  .process-cta h3 {
    text-align: center !important;
    font-size: 20px !important;
    line-height: 1.7 !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    width: 100% !important;
  }
  .cta-btn {
    display: block !important;
    text-align: center !important;
    padding: 16px 32px !important;
    width: auto !important;
    max-width: 240px !important;
    margin: 0 auto !important;
    white-space: normal !important;
  }

  .timeline-wrapper {
    margin-bottom: 40px;
  }
  .timeline-line {
    display: none;
  }
  .steps {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
  }
  .step {
    flex: unset !important;
    width: 100% !important;
    max-width: 320px !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding-bottom: 10px !important;
    position: relative;
  }
  .step:not(:last-child)::after {
    content: "";
    display: block;
    width: 2px;
    height: 36px;
    background: rgba(255, 255, 255, 0.35);
    margin: 8px auto 0;
  }
  .step-number {
    margin: 0 0 16px 0 !important;
  }
  .step h4 {
    font-size: 16px !important;
    margin-bottom: 10px !important;
  }
  .step p {
    font-size: 14px !important;
    max-width: 280px !important;
    margin: 0 auto !important;
  }
}

/* ============================================================
   RESPONSIVE — 576px and below
   ============================================================ */
@media (max-width: 576px) {
    .topbar{
        padding: 25px 12px 10px;
    }
    .sticky-right {
        display:none !important;
    }
    .feature-tags{
        gap:6px;
    }
    .feature-tags span{
        padding: 7px 12px;
        font-size:11px;
    }
    .hero-tag{
        font-size:11px;
    }
    .hero-left p {
        font-size: 16px;
    }
    .hero-left h1, .section h2, .process h2 {
        font-size: 27px;
    }
    .hero-left {
        padding: 14px 6px;
        min-height:690px;
    }
    .top-right {
        text-align: left;
    }
  .process { padding: 50px 15px 40px; }
  .process h2 { font-size: 32px; }
  .process-desc { font-size: 15px; line-height: 1.8; margin-bottom: 40px; }

  .process-cta-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 20px !important;
  }
  .process-cta h3 {
    width: 100% !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
    margin: 0 auto !important;
    text-align: center !important;
  }
  .cta-btn {
    display: block !important;
    margin: 0 auto !important;
    width: auto !important;
    max-width: 220px !important;
    text-align: center !important;
  }

  .founder-quote-section { flex-direction: column; text-align: center; padding: 30px 15px; overflow: hidden; }
  .founder-quote-content { width: 100%; padding: 30px 10px 20px; }
  .quote-mark { left: 5px; top: -10px; font-size: 60px; }
  .founder-quote-content blockquote { font-size: 15px; line-height: 1.8; text-align: center; max-width: 100%; }
  .founder-right { width: 100%; padding: 10px 10px 20px; }
  .founder-photo-block { width: 180px; margin-top: 0; margin-bottom: 10px; }
  .founder-photo-block img { width: 100%; height: auto; display: block; padding-top: 0 !important; }
  .founder-attribution { margin-top: 10px; padding-top: 12px; text-align: center; }
  .founder-attribution strong { font-size: 18px; line-height: 1.5; margin-bottom: 6px; }
  .founder-attribution span { font-size: 12px; line-height: 1.6; max-width: 100%; margin: 0 auto; }
}

/* ============================================================
   RESPONSIVE — 560px and below (features single col)
   ============================================================ */
@media (max-width: 560px) {
  .features-section { padding: 0 10px 30px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; border-top: 1px solid #d8d8d8; padding: 24px 18px; }
  .feature-card:first-child { border-top: none; }
}