/* ===== CSS Variables ===== */
:root {
  --primary: #0B1F3A;
  --primary-dark: #081528;
  --primary-light: #152d4a;
  --accent: #F59E0B;
  --accent-dark: #d97706;
  --accent-light: #fbbf24;
  --bg-white: #F8FAFC;
  --bg-light: #ffffff;
  --text-dark: #1F2937;
  --text-medium: #4B5563;
  --text-light: #6B7280;
  --border: #E5E7EB;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ===== Utility Classes ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

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

.section-header h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--accent);
  color: var(--primary-dark);
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
  background-color: var(--bg-white);
  color: var(--primary);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background-color: var(--accent);
  color: var(--primary-dark);
}

/* ===== Top Bar ===== */
.top-bar {
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 8px 0;
  font-size: 0.875rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-contact {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-contact span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-contact a {
  color: var(--bg-white);
}

.top-bar-contact a:hover {
  color: var(--accent-light);
}

.top-bar-social {
  display: flex;
  gap: 12px;
}

.top-bar-social a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.top-bar-social a:hover {
  background-color: var(--accent);
  color: var(--primary-dark);
}

/* ===== Main Header ===== */
.main-header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.5rem;
}

.logo-text h1 {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 700;
}

.logo-text span {
  font-size: 0.75rem;
  color: var(--text-medium);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  margin-left: auto;
  white-space: nowrap;
}

.nav-links a {
  padding: 9px 8px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background-color: rgba(11, 31, 58, 0.05);
}

.nav-links a.active {
  color: var(--accent-dark);
  font-weight: 600;
}

.mobile-toggle-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
  padding: 5px;
}

@media (max-width: 1100px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 20px 30px;
    gap: 0;
    margin-left: 0;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.4);
    transition: right 0.3s ease;
    z-index: 9999 !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 15px;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 9999;
  }

  .mobile-toggle-btn {
    display: block;
    position: relative;
    z-index: 99999 !important;
  }

  .mobile-toggle-btn .fa-times {
    display: none;
  }

  .mobile-toggle-btn.active .fa-bars {
    display: none;
  }

  .mobile-toggle-btn.active .fa-times {
    display: block;
  }

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
  }

  body.menu-open .main-header {
    z-index: 10000;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-color: var(--primary);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/campus-images/school-38.jpg') center center / cover no-repeat;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.3) 0%, rgba(11, 31, 58, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: var(--bg-white);
}

.hero-content h2 {
  font-size: 3.2rem;
  color: var(--bg-white);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

/* ===== Leadership Section ===== */
.leadership {
  background-color: var(--bg-white);
}

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

.leader-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.leader-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: var(--primary-light);
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-info {
  padding: 25px 20px;
}

.leader-info h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.leader-info p {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Quick Highlights ===== */
.highlights {
  background-color: var(--bg-white);
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.highlight-card {
  background-color: var(--bg-white);
  padding: 30px 25px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background-color: rgba(245, 158, 11, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
}

.highlight-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 0.875rem;
  color: var(--text-medium);
}

@media (max-width: 1024px) {
  .highlights {
    margin-top: 0;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== About Preview ===== */
.about-preview {
  background-color: var(--bg-white);
}

.about-preview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-preview-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--primary-light);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview-image::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: -15px;
  bottom: -15px;
  border: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-preview-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.about-preview-text p {
  color: var(--text-medium);
  margin-bottom: 25px;
}

/* ===== Courses Preview ===== */
.courses-preview {
  background-color: var(--bg-white);
}

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

.course-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 25px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
  transition: var(--transition);
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.course-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.course-card p {
  font-size: 0.9rem;
  color: var(--text-medium);
}

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

@media (max-width: 1024px) {
  .about-preview-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Admissions Callout ===== */
.admissions-callout {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--bg-white);
  text-align: center;
}

.admissions-callout h2 {
  color: var(--bg-white);
  font-size: 2rem;
  margin-bottom: 15px;
}

.admissions-callout p {
  max-width: 600px;
  margin: 0 auto 25px;
  opacity: 0.9;
}

/* ===== Facilities Preview ===== */
.facilities-preview {
  background-color: var(--bg-white);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.facility-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.facility-image {
  height: 120px;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 2rem;
}

.facility-content {
  padding: 15px;
}

.facility-content h3 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.facility-content p {
  font-size: 0.85rem;
  color: var(--text-medium);
}

@media (max-width: 1024px) {
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .facilities-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Placements Preview ===== */
.placements-preview {
  background-color: var(--bg-white);
}

.placements-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.stat-card {
  text-align: center;
  padding: 25px;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Poppins', sans-serif;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-top: 5px;
}

.recruiter-logos {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.recruiter-logo {
  width: 120px;
  height: 60px;
  background-color: var(--bg-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  color: var(--text-light);
  font-size: 0.75rem;
  text-align: center;
}

@media (max-width: 768px) {
  .placements-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .placements-stats {
    grid-template-columns: 1fr;
  }
}

/* ===== Gallery Preview ===== */
.gallery-preview {
  background-color: var(--bg-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-item {
  aspect-ratio: 1;
  background-color: var(--primary-light);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 2rem;
  transition: var(--transition);
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/* ===== Contact CTA ===== */
.contact-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--bg-white);
  text-align: center;
}

.contact-cta h2 {
  color: var(--bg-white);
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-cta p {
  max-width: 600px;
  margin: 0 auto 25px;
  opacity: 0.9;
}

.contact-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Page Banner ===== */
.page-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 80px 0 60px;
  text-align: center;
  color: var(--bg-white);
}

.page-banner h1 {
  color: var(--bg-white);
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.page-banner p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  font-size: 0.9rem;
}

.breadcrumb a:hover {
  color: var(--accent-light);
}

.breadcrumb span {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .page-banner {
    padding: 60px 0 40px;
  }

  .page-banner h1 {
    font-size: 1.8rem;
  }
}

/* ===== Footer ===== */
.main-footer {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-about h3 {
  color: var(--bg-white);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.footer-about p {
  opacity: 0.8;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--accent);
  color: var(--primary-dark);
}

.footer-section h4 {
  color: var(--bg-white);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

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

.footer-section ul li a {
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer-section ul li a:hover {
  opacity: 1;
  color: var(--accent-light);
}

.footer-section p {
  opacity: 0.8;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item span:first-child {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Page Sections ===== */
.page-section {
  padding: 60px 0;
}

.page-section:nth-child(even) {
  background-color: var(--bg-white);
}

/* ===== About Page Styles ===== */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mv-card {
  background-color: var(--bg-white);
  padding: 35px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.mv-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mv-card h3 span {
  color: var(--accent);
}

.mv-card p {
  color: var(--text-medium);
}

.principal-message {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  align-items: start;
}

.principal-photo {
  width: 200px;
  height: 230px;
  background-color: var(--primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 3rem;
}

.principal-content blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-medium);
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}

.principal-content h4 {
  color: var(--primary);
  margin-bottom: 5px;
}

.principal-content p {
  color: var(--text-light);
}

@media (max-width: 768px) {
  .mission-vision,
  .principal-message {
    grid-template-columns: 1fr;
  }

  .principal-photo {
    margin: 0 auto;
  }
}

/* ===== Why Choose Section ===== */
.why-choose {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.why-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background-color: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.why-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: rgba(245, 158, 11, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.why-item h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--text-medium);
}

@media (max-width: 768px) {
  .why-choose {
    grid-template-columns: 1fr;
  }
}

/* ===== Stats Section ===== */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--bg-white);
}

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

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

.stat-item .stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Poppins', sans-serif;
}

.stat-item .stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Courses Page Styles ===== */
.filter-section {
  background-color: var(--bg-white);
  padding: 30px 0;
  position: sticky;
  top: 85px;
  z-index: 100;
  box-shadow: var(--shadow);
}

.filter-controls {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.search-box {
  flex: 1;
  min-width: 250px;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  background-color: var(--bg-white);
}

.search-box input:focus {
  outline: none;
  border-color: var(--accent);
}

.search-box::before {
  content: '\f002';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

.filter-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border: 1px solid var(--border);
  background-color: var(--bg-white);
  border-radius: var(--radius);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}

.courses-section {
  padding: 60px 0;
}

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

.department-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.department-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.department-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 25px;
  color: var(--bg-white);
}

.department-header h3 {
  color: var(--bg-white);
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.department-header span {
  opacity: 0.8;
  font-size: 0.9rem;
}

.department-info {
  padding: 25px;
}

.department-info p {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.department-info ul {
  margin-bottom: 15px;
}

.department-info ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
}

.department-info ul li:last-child {
  border-bottom: none;
}

.department-info ul li span:last-child {
  color: var(--text-light);
}

@media (max-width: 1024px) {
  .departments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .departments-grid {
    grid-template-columns: 1fr;
  }

  .filter-controls {
    flex-direction: column;
  }

  .search-box {
    width: 100%;
  }
}

/* ===== Admissions Page Styles ===== */
.admission-process {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 25px;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 55px;
  width: 2px;
  height: calc(100% + 10px);
  background-color: var(--border);
}

.step-number {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: var(--accent);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.step-content {
  padding-bottom: 30px;
  flex: 1;
}

.step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.step-content p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

.eligibility-documents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.eligibility-box,
.documents-box {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.eligibility-box h3,
.documents-box h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eligibility-box h3 span,
.documents-box h3 span {
  color: var(--accent);
}

.documents-box ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.documents-box ul li:last-child {
  border-bottom: none;
}

.documents-box ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--accent);
  font-size: 0.85rem;
}

.download-section {
  text-align: center;
  padding: 40px;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.admission-contact {
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.admission-contact h3 {
  color: var(--bg-white);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.admission-contact p {
  opacity: 0.9;
}

.admission-form-section {
  background-color: var(--bg-white);
}

.inquiry-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  color: #dc2626;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #dc2626;
}

.form-group.error .form-error {
  display: block;
}

.form-success {
  background-color: #d1fae5;
  color: #065f46;
  padding: 15px;
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: 20px;
  display: none;
}

.form-success.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 768px) {
  .eligibility-documents {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .admission-contact {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== Faculty Page Styles ===== */
.faculty-section {
  padding: 60px 0;
}

.department-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

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

.faculty-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.faculty-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.faculty-photo {
  width: 100%;
  aspect-ratio: 1;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.faculty-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faculty-info {
  padding: 20px;
  text-align: center;
}

.faculty-info h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--primary);
}

.faculty-info .department {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.faculty-info p {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin-bottom: 5px;
}

@media (max-width: 1024px) {
  .faculty-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .faculty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .faculty-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Campus Life Page Styles ===== */
.facilities-section {
  padding: 60px 0;
}

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

.facility-item {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.facility-item-image {
  height: 180px;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.facility-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-item-content {
  padding: 25px;
}

.facility-item-content h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.facility-item-content p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

.clubs-section {
  background-color: var(--bg-white);
}

.clubs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.club-card {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.club-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.club-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background-color: rgba(245, 158, 11, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.5rem;
}

.club-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.club-card p {
  font-size: 0.85rem;
  color: var(--text-medium);
}

.support-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.support-item {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.support-item h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.support-item h3 span {
  color: var(--accent);
}

.support-item p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .facilities-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .clubs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .facilities-list,
  .clubs-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Placements Page Styles ===== */
.tpo-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.tpo-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.tpo-content p {
  color: var(--text-medium);
  margin-bottom: 20px;
}

.tpo-image {
  background-color: var(--primary-light);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 4rem;
}

.training-process {
  background-color: var(--bg-white);
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.training-step {
  text-align: center;
  padding: 25px;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.training-step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background-color: rgba(245, 158, 11, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.5rem;
}

.training-step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.training-step p {
  font-size: 0.85rem;
  color: var(--text-medium);
}

.placement-stats-section {
  background-color: var(--bg-white);
}

.placement-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.placement-stat-card {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
}

.placement-stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Poppins', sans-serif;
}

.placement-stat-card .stat-label {
  font-size: 1rem;
  color: var(--text-medium);
}

.recruiters-section {
  padding: 60px 0;
}

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

.recruiter-card {
  background-color: var(--bg-white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  color: var(--text-light);
  font-size: 0.8rem;
  text-align: center;
  transition: var(--transition);
}

.recruiter-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.stories-section {
  background-color: var(--bg-white);
}

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

.story-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.story-photo {
  width: 80px;
  height: 80px;
  margin: 20px auto 0;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 2rem;
}

.story-content {
  padding: 25px;
  text-align: center;
}

.story-content blockquote {
  font-style: italic;
  color: var(--text-medium);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.story-content h4 {
  color: var(--primary);
  font-size: 1rem;
}

.story-content p {
  color: var(--accent);
  font-size: 0.85rem;
}

.placement-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--bg-white);
  text-align: center;
  padding: 50px 0;
}

.placement-cta h2 {
  color: var(--bg-white);
  margin-bottom: 15px;
}

.placement-cta p {
  max-width: 600px;
  margin: 0 auto 25px;
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .tpo-overview {
    grid-template-columns: 1fr;
  }

  .training-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .placement-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .recruiter-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .training-grid,
  .stories-grid {
    grid-template-columns: 1fr;
  }

  .recruiter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .placement-stat-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Gallery Page Styles ===== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-section {
  padding: 60px 0;
}

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

.gallery-full-item {
  aspect-ratio: 4/3;
  background-color: var(--primary-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.gallery-full-item:hover {
  transform: scale(1.02);
}

.gallery-full-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.gallery-full-item i {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.gallery-full-item span {
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,0.6);
  padding: 5px 15px;
  border-radius: 20px;
  color: white;
}

.gallery-full-item.campus {}
.gallery-full-item.classrooms {}
.gallery-full-item.labs {}
.gallery-full-item.sports {}

.gallery-full-item.cultural {
  background: linear-gradient(135deg, #4a1a5f 0%, #7a2d9a 100%);
}

.gallery-full-item.hidden {
  display: none;
}

@media (max-width: 768px) {
  .gallery-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-full-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Contact Page Styles ===== */
.contact-main {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  background-color: var(--bg-white);
  padding: 25px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-card h3 span {
  color: var(--accent);
}

.contact-detail {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-detail:last-child {
  margin-bottom: 0;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background-color: rgba(245, 158, 11, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.contact-detail-text h4 {
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.contact-detail-text p {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.map-container {
  background-color: var(--primary-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 3rem;
  min-height: 250px;
}

.contact-form-section {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form-section h2 {
  color: var(--primary);
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.contact-form .form-row {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-section {
    padding: 25px;
  }
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* ===== Teacher List Table Styles ===== */
.teacher-list-section {
  padding: 60px 0;
  background-color: var(--bg-white);
}

.teacher-list-section .container {
  max-width: 1400px;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--bg-white);
}

.teacher-table {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
}

.teacher-table thead {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.teacher-table th {
  padding: 15px 12px;
  text-align: left;
  color: var(--bg-white);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.teacher-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.teacher-table tbody tr:nth-child(even) {
  background-color: rgba(245, 158, 11, 0.05);
}

.teacher-table tbody tr:hover {
  background-color: rgba(245, 158, 11, 0.1);
}

.teacher-table td {
  padding: 12px;
  font-size: 0.9rem;
  color: var(--text-dark);
  white-space: nowrap;
}

.teacher-table td:first-child {
  font-weight: 600;
  color: var(--accent);
}

.teacher-table tbody tr:nth-child(1) td {
  font-weight: 600;
}

/* Mobile Responsive Table */
@media (max-width: 768px) {
  .table-wrapper {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .teacher-table {
    min-width: 800px;
  }

  .teacher-table th,
  .teacher-table td {
    padding: 10px 8px;
    font-size: 0.8rem;
  }

  .teacher-table th {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .teacher-table {
    min-width: 700px;
  }

  .teacher-table th,
  .teacher-table td {
    padding: 8px 6px;
    font-size: 0.75rem;
  }
}

/* ===== No Results Message ===== */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-medium);
  display: none;
}

.no-results.show {
  display: block;
}

.no-results i {
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

/* ===== Tag Styles ===== */
.tag-proposed {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-left: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* ===== Presentation Page Styles ===== */
.presentation-pages {
  width: 100%;
  min-height: 100vh;
  padding: 0 0 24px;
  background-color: #eef2f7;
}

.presentation-page {
  display: block;
  width: min(100%, 1280px);
  margin: 0 auto;
  background-color: #fff;
}

.presentation-page canvas {
  display: block;
  width: 100%;
  height: auto;
}

.presentation-page + .presentation-page {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .presentation-pages {
    padding-bottom: 14px;
  }

  .presentation-page + .presentation-page {
    margin-top: 14px;
  }
}
