/**
 * ===========================================================================
 * ABOUT PAGE STYLES
 * ===========================================================================
 * 
 * @file        about.css
 * @description Page-specific styles for the About Us page.
 *              Inherits global styles from style.css
 * 
 * Sections:
 * - About Hero (banner with centered text)
 * - Story Section (institutional history)
 * - Academic Ecosystem (program cards with icons)
 * - Vision & Mission Section
 *   
 * Dependencies:
 * - style.css (global styles, variables, utilities)
 * - Bootstrap 5.3.2
 * - Font Awesome 6.5.1
 * 
 * ===========================================================================
 */


/* --------------------------------------------------------------------------
 * BUTTON OVERRIDES
 * -------------------------------------------------------------------------- */

.btn-apply {
  background: #E8402A;
  color: #FFFFFF;
  padding: 10px 22px;
  border-radius: 30px;
}


/* --------------------------------------------------------------------------
 * ABOUT HERO SECTION
 * --------------------------------------------------------------------------
 * Full-viewport hero with centered text overlay.
 * Uses transparent header mode from style.css.
 * -------------------------------------------------------------------------- */

.about-hero {
  position: relative;
  height: auto;
  width: 100%;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: none;
}

.about-hero .banner-desktop {
  position: relative;
}

/* Centered banner text - positioned at center of viewport */
.about-hero .banner-text-centered {
  position: absolute;
  left: 12%;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  max-width: 700px;
  width: 90%;
  z-index: 2;
  color: #fff;
}

.about-hero .banner-text-centered h2 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 24px;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.6);
  line-height: 1.2;
}

/* Orange accent text in headings */
.about-hero .banner-text-centered h2 span {
  color: #F08C1C;
}

.about-hero .banner-text-centered p {
  font-size: 18px;
  max-width: 650px;
  margin: 0 0 28px 0;
  line-height: 1.7;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
  color: #fff;
}

/* Hero CTA Buttons - left aligned layout */
.about-hero .banner-text-centered .hero-cta-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.about-hero .banner-text-centered .btn-primary-cta {
  background: #F08C1C;
  color: #fff;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.about-hero .banner-text-centered .btn-primary-cta:hover {
  background: #d97a14;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  color: #fff;
}

/* Glass-effect secondary button */
.about-hero .banner-text-centered .btn-secondary-cta {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
  border: 2px solid rgba(255,255,255,0.7);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.about-hero .banner-text-centered .btn-secondary-cta:hover {
  background: #fff;
  color: #E8402A;
  border-color: #fff;
  transform: translateY(-2px);
}

/* Responsive - Tablet */
@media (max-width: 991px) {
  .about-hero .banner-text-centered h2 {
    font-size: 40px;
  }
  .about-hero .banner-text-centered p {
    font-size: 16px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .about-hero .banner-text-centered {
    display: none;
  }
}

.hero-overlay {
  display: none;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  animation: fadeInUp 1s ease-out;
}

.about-hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #000000;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.about-hero .hero-intro {
  font-size: 19px;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.about-hero .hero-description {
  font-size: 17px;
  color: #000000;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-badge {
  display: inline-block;
  background: #F7F6EC;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 28px;
  animation: fadeIn 1.2s ease-out 0.2s both;
}

.about-hero p {
  font-size: 18px;
  color: #000000;
  animation: fadeInUp 1s ease-out 0.5s both;
}

/* Keyframe animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: #000000;
  color: #FFFFFF;
  padding: 40px 0;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.footer-legal a {
  color: #FFFFFF;
  margin-left: 20px;
  text-decoration: none;
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {
  .about-hero {
    height: auto;
  }
  
  .about-hero h1 {
    font-size: 38px;
  }
  
  .about-hero .hero-intro {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: auto;
  }
  
  .about-hero h1 {
    font-size: 28px;
    margin-bottom: 16px;
  }
  
  .about-hero .hero-intro {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .about-hero .hero-description {
    font-size: 14px;
  }
  
  .hero-badge {
    font-size: 12px;
    padding: 6px 14px;
    margin-bottom: 16px;
  }

  .footer-bottom {
    flex-direction: column;
  }
  
  .top-bar {
    font-size: 12px;
  }
}


/* --------------------------------------------------------------------------
 * STORY SECTION - INSTITUTIONAL HISTORY
 * --------------------------------------------------------------------------
 * Timeline-based section showing institution's journey and milestones.
 * Two-column layout with text content and vertical timeline.
 * Background: Light (#F7F6EC)
 * -------------------------------------------------------------------------- */

.story-section {
  padding: 100px 0 80px;
  background: #F7F6EC;
  overflow: hidden;
}

/* Section eyebrow - uppercase accent label */
.story-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #E8402A;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.story-eyebrow i {
  font-size: 16px;
}

/* Section Title with accent color */
.story-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 28px;
  color: #1a1a1a;
}

.story-title span {
  color: #E8402A;
}

/* Body Text */
.story-text {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

.story-text strong {
  color: #E8402A;
  font-weight: 700;
}

/* Highlighted quote box */
.story-highlight {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 26px;
  padding: 20px 24px;
  background: #fff;
  border-left: 4px solid #E8402A;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

.story-highlight i {
  color: #E8402A;
  margin-right: 10px;
  font-size: 16px;
}

/* Vertical Timeline Component */
.story-timeline {
  position: relative;
  padding-left: 40px;
}

/* Timeline vertical line */
.story-timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #E8402A;
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  padding-bottom: 35px;
  padding-left: 30px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

/* Timeline node circle */
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 3px solid #E8402A;
  border-radius: 50%;
  z-index: 1;
}

/* Active timeline node with glow effect */
.timeline-item.active::before {
  background: #E8402A;
  box-shadow: 0 0 0 6px rgba(232, 64, 42, 0.2);
}

/* Year badge */
.timeline-year {
  display: inline-block;
  background: #E8402A;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.timeline-item.active .timeline-year {
  background: #E8402A;
}

/* Timeline content card */
.timeline-content {
  background: #fff;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.timeline-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Legacy image wrapper styles (backwards compatibility) */
.story-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  padding-left: 40px;
}

.story-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  overflow: hidden;
}

/* Floating stats badge */
.story-badge {
  position: absolute;
  bottom: 30px;
  left: 0;
  background: #E8402A;
  color: #ffffff;
  padding: 26px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.story-badge h3 {
  font-size: 34px;
  font-weight: 800;
  margin: 0;
}

.story-badge span {
  display: block;
  font-size: 13px;
  letter-spacing: 1.5px;
  opacity: 0.85;
  text-transform: uppercase;
}

/* Story Section - Responsive */
@media (max-width: 991px) {
  .story-section {
    padding: 70px 0 60px;
  }
  
  .story-title {
    font-size: 34px;
  }
  
  .story-timeline {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .story-section {
    padding: 60px 0 50px;
  }
  
  .story-title {
    font-size: 28px;
  }
  
  .story-text {
    font-size: 15px;
  }
  
  .story-highlight {
    font-size: 16px;
    padding: 16px 20px;
  }
  
  .story-timeline {
    padding-left: 30px;
    margin-top: 40px;
  }
  
  .story-timeline::before {
    left: 8px;
  }
  
  .timeline-item {
    padding-left: 24px;
  }
  
  .timeline-item::before {
    left: -28px;
    width: 14px;
    height: 14px;
  }
  
  .timeline-content {
    padding: 16px 18px;
  }
  
  .timeline-content h4 {
    font-size: 16px;
  }
  
  .timeline-content p {
    font-size: 13px;
  }
  
  .story-image-wrapper {
    padding-left: 20px;
  }

  .story-badge {
    left: 0;
    bottom: 16px;
    padding: 20px 22px;
  }

  .story-badge h3 {
    font-size: 26px;
  }
}

/* ===== VIJETHA 2.0 SECTION ===== */
.vijetha-2-section {
  padding: 120px 0;
  background: #000000;
  position: relative;
  overflow: hidden;
}

.vijetha-2-section::before {
  content: '2.0';
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  font-size: 400px;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}

.vijetha-2-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.v2-eyebrow {
  margin-bottom: 24px;
}

.v2-eyebrow span {
  display: inline-block;
  background: rgba(232, 64, 42, 0.15);
  color: #E8402A;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 10px 24px;
  border-radius: 30px;
  border: 1px solid rgba(232, 64, 42, 0.3);
}

.v2-headline {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 50px;
  line-height: 1.2;
}

.v2-headline span {
  background: #E8402A;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v2-body {
  margin-bottom: 50px;
}

.v2-body p {
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 16px;
}

.v2-body p strong {
  color: #F08C1C;
  font-weight: 600;
}

.v2-lead {
  font-size: 26px !important;
  font-weight: 600;
  color: #fff !important;
  margin-bottom: 24px !important;
}

.v2-statement {
  margin: 40px 0;
  padding: 30px 40px;
  background: rgba(232, 64, 42, 0.1);
  border-left: 4px solid #E8402A;
  border-radius: 0 12px 12px 0;
}

.v2-statement p {
  font-size: 24px !important;
  font-weight: 700;
  color: #fff !important;
  margin: 0 !important;
}

.v2-closing {
  font-size: 24px !important;
  margin-top: 40px !important;
  font-weight: 500;
}

.v2-closing span {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #E8402A;
  margin-top: 8px;
}

.v2-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #E8402A;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.v2-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.v2-cta i {
  transition: transform 0.3s ease;
}

.v2-cta:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
  .vijetha-2-section {
    padding: 80px 0;
  }
  
  .vijetha-2-section::before {
    font-size: 250px;
    right: -10%;
  }
  
  .v2-headline {
    font-size: 42px;
  }
  
  .v2-body p {
    font-size: 18px;
  }
  
  .v2-lead {
    font-size: 22px !important;
  }
  
  .v2-statement p {
    font-size: 20px !important;
  }
  
  .v2-closing {
    font-size: 20px !important;
  }
  
  .v2-closing span {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .vijetha-2-section {
    padding: 60px 0;
  }
  
  .vijetha-2-section::before {
    display: none;
  }
  
  .v2-headline {
    font-size: 32px;
    margin-bottom: 36px;
  }
  
  .v2-body p {
    font-size: 16px;
  }
  
  .v2-lead {
    font-size: 20px !important;
  }
  
  .v2-statement {
    padding: 20px 24px;
    margin: 30px 0;
  }
  
  .v2-statement p {
    font-size: 18px !important;
  }
  
  .v2-closing {
    font-size: 18px !important;
  }
  
  .v2-closing span {
    font-size: 20px;
  }
  
  .v2-cta {
    padding: 14px 28px;
    font-size: 14px;
  }
}


/* --------------------------------------------------------------------------
 * STATS SECTION
 * --------------------------------------------------------------------------
 * Grid of counter cards showcasing institutional metrics.
 * Animated numbers with hover effects.
 * Background: Light (#F7F6EC)
 * -------------------------------------------------------------------------- */

.stats-section {
  padding: 100px 0;
  background: #F7F6EC;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* Stats Card */
.stat-card {
  background: #fff;
  padding: 50px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Top border accent - animated on hover */
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #E8402A;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.1);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

/* Large counter number */
.stat-number {
  font-size: 72px;
  font-weight: 900;
  color: #E8402A;
  line-height: 1;
  display: inline-block;
}

.stat-plus {
  font-size: 48px;
  font-weight: 700;
  color: #E8402A;
  display: inline-block;
  vertical-align: top;
  margin-top: 10px;
  margin-left: -5px;
}

.stat-ratio {
  font-size: 72px;
  font-weight: 900;
  color: #E8402A;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  font-weight: 600;
  color: #444;
  margin-top: 16px;
  line-height: 1.4;
}

.stats-caption {
  text-align: center;
  font-size: 17px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

/* Stats - Responsive */
@media (max-width: 991px) {
  .stats-section {
    padding: 70px 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .stat-number,
  .stat-ratio {
    font-size: 56px;
  }
  
  .stat-plus {
    font-size: 36px;
  }
  
  .stat-card {
    padding: 40px 24px;
  }
}

@media (max-width: 576px) {
  .stats-section {
    padding: 50px 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-card {
    padding: 35px 24px;
  }
  
  .stat-number,
  .stat-ratio {
    font-size: 48px;
  }
  
  .stat-plus {
    font-size: 30px;
  }
  
  .stat-label {
    font-size: 15px;
  }
  
  .stats-caption {
    font-size: 15px;
  }
}


/* --------------------------------------------------------------------------
 * ACADEMIC ECOSYSTEM SECTION
 * --------------------------------------------------------------------------
 * Two-column layout showcasing Intermediate and Degree programs.
 * Program cards with icon badges representing each course.
 * Background: Cream (#F7F6EC)
 * 
 * Icons:
 * - MPC: calculator
 * - BiPC: DNA
 * - CEC: scale-balanced
 * - B.Com: chart-pie
 * - B.Sc: laptop-code
 * - BBA: briefcase
 * -------------------------------------------------------------------------- */

.ecosystem-section {
  padding: 100px 0;
  background: #F7F6EC;
  position: relative;
  overflow: hidden;
}

/* Subtle pattern overlay */
.ecosystem-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Section Header */
.ecosystem-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 2;
}

.eco-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #E8402A;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.eco-eyebrow i {
  font-size: 16px;
}

.eco-title {
  font-size: 52px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -1px;
}

.eco-title span {
  color: #E8402A;
}

.eco-intro {
  font-size: 20px;
  color: #555;
  line-height: 1.8;
}

/* Category Card - Intermediate/Degree container */
.eco-category {
  background: #ffffff;
  border-radius: 24px;
  padding: 45px;
  height: 100%;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Top accent bar */
.eco-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: #E8402A;
}

/* Degree variant - dark accent */
.eco-category.degree::before {
  background: #1a1a1a;
}

.eco-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.eco-category.degree:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Category header with icon */
.eco-category-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 2px solid #f0f0f0;
}

.eco-category-icon {
  width: 64px;
  height: 64px;
  background: #E8402A;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(232, 64, 42, 0.3);
}

.eco-category-icon.degree {
  background: #1a1a1a;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.eco-category-header h3 {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

/* Programs List */
.eco-programs {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Individual Program Card */
.eco-program-card {
  background: #F7F6EC;
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.eco-program-card:hover {
  background: #FAEBD7;
  border-color: #E8402A;
  transform: translateX(10px);
}

.eco-program-badge {
  min-width: 65px;
  width: 65px;
  height: 65px;
  background: #E8402A;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 8px 20px rgba(232, 64, 42, 0.25);
  flex-shrink: 0;
}

.eco-program-badge i {
  font-size: 26px;
}

.eco-program-badge.bipc {
  background: #E8402A;
}

.eco-program-badge.cec {
  background: #F08C1C;
  box-shadow: 0 8px 20px rgba(240, 140, 28, 0.25);
}

.eco-program-badge.bcom {
  background: #A70000;
  box-shadow: 0 8px 20px rgba(167, 0, 0, 0.25);
}

.eco-program-badge.bsc {
  background: #F08C1C;
  box-shadow: 0 8px 20px rgba(240, 140, 28, 0.25);
}

.eco-program-badge.bba {
  background: #1a1a1a;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.eco-program-content h4 {
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.eco-program-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

.eco-footer {
  text-align: center;
  margin-top: 70px;
  padding-top: 50px;
  border-top: 2px solid rgba(0,0,0,0.08);
  position: relative;
  z-index: 2;
}

.eco-footer p {
  font-size: 20px;
  color: #444;
  margin-bottom: 32px;
  line-height: 1.7;
}

.eco-footer p strong {
  color: #E8402A;
  font-weight: 700;
}

.eco-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1a1a1a;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 38px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.eco-cta:hover {
  background: #E8402A;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(232, 64, 42, 0.35);
}

.eco-cta i {
  transition: transform 0.3s ease;
}

.eco-cta:hover i {
  transform: translateX(6px);
}

/* Responsive */
@media (max-width: 991px) {
  .ecosystem-section {
    padding: 80px 0;
  }
  
  .eco-title {
    font-size: 38px;
  }
  
  .eco-intro {
    font-size: 17px;
  }
  
  .eco-category {
    padding: 35px;
    margin-bottom: 30px;
  }
  
  .eco-footer {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .ecosystem-section {
    padding: 60px 0;
  }
  
  .ecosystem-header {
    margin-bottom: 50px;
  }
  
  .eco-title {
    font-size: 32px;
  }
  
  .eco-intro {
    font-size: 16px;
  }
  
  .eco-category {
    padding: 28px;
    border-radius: 20px;
  }
  
  .eco-category-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
  }
  
  .eco-category-header h3 {
    font-size: 22px;
  }
  
  .eco-category-icon {
    width: 54px;
    height: 54px;
    font-size: 22px;
  }
  
  .eco-program-card {
    padding: 20px;
    gap: 16px;
  }
  
  .eco-program-badge {
    min-width: 50px;
    height: 50px;
    font-size: 12px;
  }
  
  .eco-program-content h4 {
    font-size: 16px;
  }
  
  .eco-program-content p {
    font-size: 13px;
  }
  
  .eco-footer p {
    font-size: 16px;
  }
  
  .eco-cta {
    padding: 14px 26px;
    font-size: 14px;
  }
}

/* ===== SMART CAMPUS SECTION ===== */
.campus-section {
  padding: 100px 0;
  background: #000000;
  position: relative;
  overflow: hidden;
}

.campus-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.campus-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.campus-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #F08C1C;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.campus-eyebrow i {
  font-size: 16px;
}

.campus-title {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.campus-title span {
  background: #E8402A;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.campus-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.campus-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.campus-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(232, 64, 42, 0.5);
  transform: translateY(-8px);
}

.campus-icon {
  width: 70px;
  height: 70px;
  background: #E8402A;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  color: #fff;
  transition: all 0.3s ease;
}

.campus-card:hover .campus-icon {
  transform: scale(1.1) rotate(5deg);
}

.campus-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}

.campus-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}

/* Campus Card - Image Variant */
.campus-card.has-image {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.campus-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.campus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.campus-card.has-image:hover .campus-image img {
  transform: scale(1.08);
}

.campus-content {
  padding: 20px;
  flex: 1;
}

.campus-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.campus-content p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
  .campus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .campus-section {
    padding: 70px 0;
  }
  
  .campus-title {
    font-size: 34px;
  }
  
  .campus-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .campus-card {
    padding: 30px 24px;
  }
  
  .campus-card.has-image {
    padding: 0;
  }
  
  .campus-image {
    height: 140px;
  }
}

@media (max-width: 576px) {
  .campus-section {
    padding: 50px 0;
  }
  
  .campus-title {
    font-size: 28px;
  }
  
  .campus-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .campus-card {
    padding: 28px 22px;
  }
  
  .campus-card.has-image {
    padding: 0;
  }
  
  .campus-image {
    height: 180px;
  }
  
  .campus-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .campus-card h4 {
    font-size: 16px;
  }
  
  .campus-card p {
    font-size: 13px;
  }
}

/* ===== MENTORSHIP SECTION ===== */
.mentorship-section {
  padding: 100px 0;
  background: #F7F6EC;
  position: relative;
  overflow: hidden;
}

.mentorship-content {
  padding-right: 40px;
}

.mentorship-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #E8402A;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.mentorship-eyebrow i {
  font-size: 16px;
}

.mentorship-title {
  font-size: 44px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 28px;
  line-height: 1.2;
}

.mentorship-title span {
  display: block;
  color: #E8402A;
}

.mentorship-text {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 18px;
}

.mentorship-text strong {
  color: #E8402A;
  font-weight: 700;
}

.mentorship-features {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mentorship-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}

.mentorship-feature i {
  color: #E8402A;
  font-size: 18px;
}

.mentorship-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #E8402A;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.mentorship-cta:hover {
  background: #c62828;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mentorship-cta i {
  transition: transform 0.3s ease;
}

.mentorship-cta:hover i {
  transform: translateX(5px);
}

.mentorship-image {
  position: relative;
  padding-left: 30px;
}

.mentorship-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.mentorship-badge {
  position: absolute;
  bottom: 30px;
  left: 0;
  background: #E8402A;
  color: #fff;
  padding: 24px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.mentorship-badge .badge-number {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.mentorship-badge .badge-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 991px) {
  .mentorship-section {
    padding: 70px 0;
  }
  
  .mentorship-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .mentorship-title {
    font-size: 34px;
  }
  
  .mentorship-image {
    padding-left: 20px;
  }
}

@media (max-width: 768px) {
  .mentorship-section {
    padding: 50px 0;
  }
  
  .mentorship-title {
    font-size: 28px;
  }
  
  .mentorship-title span {
    display: inline;
  }
  
  .mentorship-text {
    font-size: 15px;
  }
  
  .mentorship-feature {
    font-size: 14px;
  }
  
  .mentorship-cta {
    padding: 14px 26px;
    font-size: 14px;
  }
  
  .mentorship-image {
    padding-left: 15px;
  }
  
  .mentorship-badge {
    padding: 18px 24px;
    bottom: 20px;
  }
  
  .mentorship-badge .badge-number {
    font-size: 28px;
  }
  
  .mentorship-badge .badge-text {
    font-size: 11px;
  }
}

/* ===== VALUES SECTION ===== */
.values-section {
  padding: 70px 0 40px;
  background: #FFFFFF;
  overflow: hidden;
}

/* VISION / MISSION CARDS */
.vm-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border: 2px solid #F7F6EC;
  display: flex;
  flex-direction: column;
}

.vm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(232,64,42,0.15);
  border-color: #E8402A;
}

.vm-image-wrapper {
  position: relative;
  height: 321px;
  overflow: hidden;
}

.vm-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vm-card:hover .vm-image-wrapper img {
  transform: scale(1.1);
}

.vm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232,64,42,0.4);
}

.vm-content {
  padding: 40px 35px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.vm-icon-badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #E8402A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(232,64,42,0.25);
}

.vm-icon-badge i {
  font-size: 32px;
  color: #FFFFFF;
}

.vm-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #000000;
}

.vm-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 15px;
}

.vm-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vm-content ul li {
  font-size: 15px;
  line-height: 1.9;
  color: #000000;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.vm-content ul li i {
  color: #E8402A;
  font-size: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* PRINCIPLES HEADER */
.principles-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
}

.principles-header p {
  font-size: 15px;
  color: #000000;
}

/* PRINCIPLE CARDS */
.principle-card {
  background: #F7F6EC;
  border: 1px solid #F7F6EC;
  border-radius: 22px;
  padding: 30px;
  height: 100%;
}

.principle-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #FAEBD7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-bottom: 18px;
  color: #E8402A;
}

.principle-card h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.principle-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #000000;
}

/* MOBILE */
@media (max-width: 768px) {
  .values-section {
    padding: 60px 0;
  }
  
  .principles-header h2 {
    font-size: 28px;
  }
  
  .principle-card {
    padding: 25px 20px;
    text-align: center;
  }
  
  .principle-icon {
    margin-left: auto;
    margin-right: auto;
  }
  
  .principle-card p {
    text-align: left;
  }
}
/* ===== VIJETHA 2.0 SECTION ===== */
.vijetha2-section {
  padding: 70px 0 40px;
  background: #000000;
  color: #ffffff;
  overflow: hidden;
}

/* TITLE */
.v2-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
}

/* SUBTITLE */
.v2-subtitle {
  font-size: 16px;
  color: #FFFFFF;
  max-width: 720px;
  margin: 0 auto 40px;
}

/* CARD */
.v2-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  height: 100%;
}

/* ICON */
.v2-card i {
  font-size: 18px;
  color: #ffffff;
}

/* TEXT */
.v2-card span {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

/* MOBILE */
@media (max-width: 768px) {
  .vijetha2-section {
    padding: 60px 0;
  }
  
  .v2-title {
    font-size: 30px;
  }

  .v2-card {
    padding: 18px 20px;
  }
}
/* ===== SECTION 8: FINAL CTA ===== */
.cta-section {
  padding: 100px 0;
  background: #000000;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(232, 64, 42, 0.05);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-headline {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cta-body {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-cta-light {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-cta-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-cta-primary {
  background: #E8402A;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #000000;
  color: #FFFFFF;
  padding: 90px 0 40px;
}

/* BRAND */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 42px;
}

.footer-brand span {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

/* TEXT */
.footer-desc {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 26px;
}

/* SOCIALS */
.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
}

/* TITLES */
.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #FFFFFF;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  gap: 10px;
}

/* CONTACT */
.footer-contact {
  font-size: 14px;
  margin-bottom: 12px;
}

/* DIVIDER */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 50px 0 30px;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 22px;
}

.footer-legal a {
  color: #FFFFFF;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-section {
    padding: 50px 20px;
  }
  
  .cta-headline {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .cta-body {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-cta-light,
  .btn-cta-primary {
    padding: 14px 30px;
    width: 100%;
    max-width: 280px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --------------------------------------------------------------------------
 * ABOUT PAGE - MOBILE ENHANCEMENTS
 * -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Reduce all section padding on mobile */
  .story-section,
  .academic-ecosystem-section,
  .vision-mission-section,
  .campus-section,
  .smart-campus-section {
    padding: 50px 0 30px;
  }
  
  /* Images better visibility */
  .story-section img,
  .campus-section img,
  .smart-campus-section img {
    border-radius: 12px;
    margin-bottom: 20px;
  }
  
  /* Section headers */
  .section-label {
    font-size: 11px;
    margin-bottom: 8px;
  }
  
  /* Grid gap reduction */
  .gy-5 {
    --bs-gutter-y: 1.5rem;
  }
}

@media (max-width: 480px) {
  /* Further reduced padding on small mobile */
  .story-section,
  .academic-ecosystem-section,
  .vision-mission-section,
  .campus-section,
  .smart-campus-section {
    padding: 40px 0 25px;
  }
}
