/* ==========================================================================
   EduHome Connect - Clean Custom Homepage Stylesheet
   ========================================================================== */

:root {
  --home-navy: #062654;
  --home-navy-dark: #021633;
  --home-blue: #0059D9;
  --home-blue-light: #004AB5;
  --home-blue-soft: #ebf3ff;
  --home-gold: #FCC902;
  --home-gold-hover: #e5b600;
  --home-dark: #1e293b;
  --home-text: #475569;
  --home-muted: #64748b;
  --home-bg-light: #f8fafc;
  --home-white: #ffffff;
  --home-border: #e2e8f0;
  --home-border-subtle: #edf2f7;
  --home-shadow-sm: 0 2px 8px rgba(6, 38, 84, 0.04);
  --home-shadow-md: 0 10px 25px -5px rgba(6, 38, 84, 0.08);
  --home-shadow-lg: 0 20px 35px -10px rgba(6, 38, 84, 0.12);
  --home-shadow-glow: 0 10px 25px rgba(0, 89, 217, 0.25);
  --home-radius-sm: 6px;
  --home-radius-md: 12px;
  --home-radius-lg: 20px;
  --home-radius-full: 9999px;
  --home-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Container & Typography */
.home-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-section {
  padding: 80px 0;
  position: relative;
}

.home-section-sm {
  padding: 50px 0;
}

.text-center {
  text-align: center;
}

.section-header {
  margin-bottom: 50px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--home-blue-soft);
  color: var(--home-blue);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--home-radius-full);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading, 'Raleway', sans-serif);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--home-navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--home-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Custom Buttons */
.btn-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading, 'Raleway', sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--home-radius-sm);
  transition: var(--home-transition);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-home-primary {
  background: linear-gradient(135deg, var(--home-navy) 0%, var(--home-blue) 100%);
  color: var(--home-white) !important;
  box-shadow: 0 4px 15px rgba(0, 89, 217, 0.25);
}

.btn-home-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 89, 217, 0.35);
  background: linear-gradient(135deg, var(--home-blue) 0%, var(--home-navy) 100%);
  color: var(--home-white) !important;
}

.btn-home-gold {
  background: var(--home-gold);
  color: var(--home-navy) !important;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(252, 201, 2, 0.35);
}

.btn-home-gold:hover {
  background: var(--home-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(252, 201, 2, 0.45);
  color: var(--home-navy) !important;
}

.btn-home-outline {
  background: transparent;
  color: var(--home-navy) !important;
  border-color: var(--home-navy);
}

.btn-home-outline:hover {
  background: var(--home-navy);
  color: var(--home-white) !important;
  transform: translateY(-2px);
}

.btn-home-white {
  background: var(--home-white);
  color: var(--home-navy) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-home-white:hover {
  background: var(--home-gold);
  color: var(--home-navy) !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   1. HERO BANNER SLIDER SECTION
   ========================================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  background-color: var(--home-navy-dark);
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  line-height: 0;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1536 / 582;
  overflow: hidden;
  background-color: var(--home-navy);
}

.hero-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.02);
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.hero-slide-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  outline: none;
}

.hero-slide picture,
.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Slider Chevrons / Navigation Arrows */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 38, 84, 0.45);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-slider-arrow svg {
  display: block;
  stroke: #ffffff;
}

.hero-slider-arrow:hover {
  background: var(--home-blue);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 89, 217, 0.5);
}

.hero-slider-prev {
  left: 20px;
}

.hero-slider-next {
  right: 20px;
}

/* Slider Dots / Indicators */
.hero-slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  background: rgba(6, 38, 84, 0.55);
  padding: 6px 14px;
  border-radius: 30px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slider-dot:hover {
  background: #ffffff;
  transform: scale(1.2);
}

.hero-slider-dot.active {
  background: var(--home-gold);
  width: 26px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(252, 201, 2, 0.7);
}

@media (max-width: 991px) {
  .hero-slider-arrow {
    width: 38px;
    height: 38px;
  }
  .hero-slider-prev {
    left: 10px;
  }
  .hero-slider-next {
    right: 10px;
  }
  .hero-slider-dots {
    bottom: 10px;
    padding: 5px 12px;
    gap: 6px;
  }
}

@media (max-width: 768px) {
  .hero-slider-arrow {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .hero-slider-container {
    aspect-ratio: 1536 / 582;
    min-height: auto;
  }
  .hero-slider-dots {
    bottom: 6px;
    padding: 3px 8px;
    gap: 4px;
  }
  .hero-slider-dot {
    width: 6px;
    height: 6px;
  }
  .hero-slider-dot.active {
    width: 16px;
  }
}

/* ==========================================================================
   2. ABOUT / EMPOWERING SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img-frame {
  border-radius: var(--home-radius-lg);
  overflow: hidden;
  box-shadow: var(--home-shadow-lg);
  position: relative;
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-img-frame:hover img {
  transform: scale(1.03);
}

.about-floating-quote {
  position: absolute;
  bottom: 25px;
  right: -25px;
  background: var(--home-white);
  padding: 18px 22px;
  border-radius: var(--home-radius-md);
  box-shadow: var(--home-shadow-lg);
  border-left: 4px solid var(--home-blue);
  max-width: 280px;
}

.about-floating-quote p {
  font-size: 0.85rem;
  color: var(--home-navy);
  font-weight: 600;
  margin: 0;
  line-height: 1.45;
}

.about-content .section-eyebrow {
  margin-bottom: 12px;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--home-text);
  line-height: 1.7;
  margin-bottom: 28px;
}

.about-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin-bottom: 32px;
}

.about-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--home-bg-light);
  padding: 12px 16px;
  border-radius: var(--home-radius-sm);
  border: 1px solid var(--home-border-subtle);
  font-weight: 600;
  color: var(--home-navy);
  font-size: 0.92rem;
  transition: var(--home-transition);
}

.about-check-item:hover {
  background: var(--home-blue-soft);
  color: var(--home-blue);
  border-color: rgba(0, 89, 217, 0.2);
  transform: translateX(3px);
}

.about-check-item i {
  color: var(--home-gold);
  background: var(--home-navy);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* ==========================================================================
   3. VISION, MISSION, VALUE CARDS
   ========================================================================== */
.vmv-section {
  background: linear-gradient(180deg, var(--home-bg-light) 0%, #ffffff 100%);
}

.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.vmv-card {
  background: var(--home-white);
  border-radius: var(--home-radius-md);
  padding: 36px 30px;
  box-shadow: var(--home-shadow-sm);
  border: 1px solid var(--home-border);
  transition: var(--home-transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.vmv-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--home-border);
  border-radius: var(--home-radius-md) var(--home-radius-md) 0 0;
  transition: var(--home-transition);
}

.vmv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--home-shadow-md);
  border-color: rgba(0, 89, 217, 0.3);
}

.vmv-card.vision:hover::after { background: var(--home-blue); }
.vmv-card.mission:hover::after { background: var(--home-navy); }
.vmv-card.value:hover::after { background: var(--home-gold); }

.vmv-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--home-radius-md);
  background: var(--home-blue-soft);
  color: var(--home-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: var(--home-transition);
}

.vmv-card:hover .vmv-icon {
  background: var(--home-navy);
  color: var(--home-gold);
  transform: scale(1.05);
}

.vmv-title {
  font-family: var(--font-heading, 'Raleway', sans-serif);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--home-navy);
  margin-bottom: 14px;
}

.vmv-text {
  font-size: 0.98rem;
  color: var(--home-text);
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   4. QUOTE / HIGHLIGHT BANNER
   ========================================================================== */
.quote-banner {
  background: radial-gradient(ellipse at center, #0a3674 0%, #062654 100%);
  color: var(--home-white);
  padding: 60px 0;
  position: relative;
  text-align: center;
}

.quote-banner::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9rem;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}

.quote-banner-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.quote-banner h2 {
  font-family: var(--font-heading, 'Raleway', sans-serif);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--home-gold);
  margin-bottom: 16px;
  line-height: 1.3;
}

.quote-banner p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* ==========================================================================
   5. FACULTY & MENTORS SECTION
   ========================================================================== */
.faculty-section {
  background: var(--home-white);
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.faculty-card {
  background: var(--home-bg-light);
  border-radius: var(--home-radius-md);
  border: 1px solid var(--home-border);
  overflow: hidden;
  transition: var(--home-transition);
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.faculty-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--home-shadow-lg);
  border-color: var(--home-blue);
  background: var(--home-white);
}

.faculty-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eef2f6;
  position: relative;
}

.faculty-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.faculty-card:hover .faculty-img-wrap img {
  transform: scale(1.08);
}

.faculty-info {
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.faculty-name {
  font-family: var(--font-heading, 'Raleway', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--home-navy);
  margin-bottom: 6px;
  transition: color 0.2s ease;
}

.faculty-card:hover .faculty-name {
  color: var(--home-blue);
}

.faculty-designation {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--home-muted);
  line-height: 1.4;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.faculty-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--home-border-subtle);
}

.faculty-social-link {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--home-white);
  border: 1px solid var(--home-border);
  color: var(--home-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--home-transition);
}

.faculty-social-link:hover {
  background: var(--home-blue);
  color: var(--home-white) !important;
  border-color: var(--home-blue);
  transform: translateY(-2px);
}

/* ==========================================================================
   6. NUMBERS / STATS SECTION
   ========================================================================== */
.stats-section {
  background: radial-gradient(circle at 10% 20%, #062654 0%, #041838 90%);
  color: var(--home-white);
  padding: 85px 0;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.stats-map-wrap {
  text-align: center;
  position: relative;
}

.stats-map-wrap img {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

.stats-content .section-eyebrow {
  background: rgba(252, 201, 2, 0.15);
  color: var(--home-gold);
}

.stats-content .section-title {
  color: var(--home-white);
  text-align: left;
  font-size: 2.15rem;
}

.stats-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 35px;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.counter-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--home-radius-md);
  padding: 24px 18px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--home-transition);
}

.counter-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  border-color: var(--home-gold);
}

.counter-number {
  font-family: var(--font-heading, 'Raleway', sans-serif);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--home-gold);
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
  margin: 0;
  font-weight: 500;
}

/* ==========================================================================
   7. WHY CHOOSE SECTION (9 FEATURES)
   ========================================================================== */
.features-section {
  background: var(--home-bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-box {
  background: var(--home-white);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-md);
  padding: 30px 24px;
  box-shadow: var(--home-shadow-sm);
  transition: var(--home-transition);
  display: flex;
  flex-direction: column;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--home-shadow-md);
  border-color: var(--home-blue);
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--home-radius-sm);
  background: var(--home-blue-soft);
  color: var(--home-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
  transition: var(--home-transition);
}

.feature-box:hover .feature-icon-wrap {
  background: var(--home-blue);
  color: var(--home-white);
}

.feature-title {
  font-family: var(--font-heading, 'Raleway', sans-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--home-navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.feature-text {
  font-size: 0.94rem;
  color: var(--home-text);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   8. FAQ ACCORDION SECTION
   ========================================================================== */
.faq-section {
  background: var(--home-white);
}

.faq-accordion-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--home-border) !important;
  border-radius: var(--home-radius-md) !important;
  margin-bottom: 16px;
  background: #ffffff !important;
  transition: var(--home-transition);
  overflow: hidden;
}

.faq-item.active {
  border-color: var(--home-blue) !important;
  box-shadow: 0 6px 20px rgba(0, 89, 217, 0.08) !important;
}

.faq-header,
button.faq-header,
.faq-header:focus,
.faq-header:active,
.faq-item.active .faq-header,
.faq-item.active .faq-header:focus {
  width: 100% !important;
  padding: 20px 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading, 'Raleway', sans-serif);
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--home-navy) !important;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.faq-header span {
  color: var(--home-navy) !important;
  transition: color 0.2s ease;
}

.faq-header:hover span,
.faq-item.active .faq-header span {
  color: var(--home-blue) !important;
}

.faq-chevron {
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  background: #f1f5f9 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.85rem !important;
  color: var(--home-navy) !important;
  flex-shrink: 0;
  transition: var(--home-transition);
}

.faq-chevron i {
  color: var(--home-navy) !important;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-chevron {
  background: var(--home-blue) !important;
  transform: rotate(180deg);
}

.faq-item.active .faq-chevron i {
  color: #ffffff !important;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff !important;
}

.faq-body-inner {
  padding: 0 24px 22px !important;
  font-size: 0.98rem !important;
  color: var(--home-text) !important;
  line-height: 1.7 !important;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px !important;
}

/* ==========================================================================
   9. PRE-FOOTER CTA SECTION
   ========================================================================== */
.prefooter-cta {
  background: linear-gradient(135deg, var(--home-navy) 0%, #03152d 100%);
  color: var(--home-white);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.prefooter-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(252, 201, 2, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-box h2 {
  font-family: var(--font-heading, 'Raleway', sans-serif);
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 16px;
  line-height: 1.25;
}

.cta-box p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* ==========================================================================
   10. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.35rem;
  }
  .faculty-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .counters-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    order: -1;
    max-width: 580px;
    margin: 0 auto;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-content {
    order: 1;
  }
  .about-image-wrap {
    order: 2;
  }
  .about-floating-quote {
    right: 15px;
    bottom: -15px;
  }
  .vmv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .stats-content .section-title {
    text-align: center;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .home-section {
    padding: 60px 0;
  }
  .hero-title {
    font-size: 1.95rem;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .faculty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .counters-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-checklist-grid {
    grid-template-columns: 1fr;
  }
  .cta-box h2 {
    font-size: 1.85rem;
  }
  .hero-badge-float {
    position: static;
    margin-top: 15px;
    max-width: 100%;
  }
  .about-floating-quote {
    position: static;
    margin-top: 15px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .faculty-grid {
    grid-template-columns: 1fr;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn-home {
    width: 100%;
  }
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-actions .btn-home {
    width: 100%;
  }
}
