@font-face {
  font-family: SolaimanLipi;
  src: local("SolaimanLipi"), url("../fonts/solaimanlipi.woff") format("woff"),
    url("../fonts/solaimanlipi.woff2") format("woff2");
}
/* CSS Custom Properties for Primary Color */
:root {
  --primary-color: #1e5f99;
  --primary-light: #2a7bc4;
  --primary-dark: #164a7a;
  --secondary-color: #f8f9fa;
  --accent-color: #28a745;
  --text-dark: #333;
  --text-light: #666;
  --white: #ffffff;
  --yellow: #ffc107;
  --light-blue: #e3f2fd;
  --font-family: "Merriweather", "SolaimanLipi", "Arial", sans-serif;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-dark);
  background: url("../images/background.png") repeat !important;
}

.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

/* Common Styles */
/* Intro Section Styling */
.intro-section {
  background-color: var(--primary-dark); /* Dark Blue Background */
  color: white;
  padding: 40px 0;
  text-align: center;
  position: relative;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.intro-section .container {
  width: 80%;
  margin: 0 auto;
}

.intro-section h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumbs {
  font-size: 1rem;
  font-weight: 400;
  color: #e1e1e1;
}

.breadcrumbs a {
  color: #e1e1e1;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* Arrow separator */
.breadcrumbs a + span {
  color: #e1e1e1;
}

/* Bottom triangle */
.intro-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid var(--primary-dark);
}

/* Header Styles */
.header {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
}

.top-bar {
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 0;
  font-size: 14px;
}

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

.contact-info a,
.contact-info span {
  margin-right: 20px;
}

.contact-info i {
  margin-right: 5px;
}

.language-selector select {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 3px;
}

.logo-bar {
  height: 200px;
  background-color: var(--primary-light);
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-bar-logo {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.navbar {
  background: var(--primary-color);
  transition: all 0.3s ease;
  color: var(--white);
}

.navbar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.logo {
  height: 50px;
  transition: height 0.3s ease;
}

.navbar.sticky .logo {
  height: 40px;
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-list a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-list li {
  padding: 7px 15px;
  border-left: 1px solid var(--primary-dark);
}

.nav-list li:hover {
  background: var(--primary-light);
  cursor: pointer;
}

/* Dropdown Styles - Fixed Version */
.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  transition: color 0.3s;
}

.dropdown-arrow {
  font-size: 0.8rem;
}

/* Dropdown menu styling */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary-color);
  min-width: 220px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
  list-style: none;
  padding: 5px 0;
  margin: 0;
  pointer-events: none;
}

/* Show dropdown on hover */
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Dropdown menu items */
.dropdown-menu li {
  padding: 0;
  border: none;
  background: none;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  border-radius: 0;
}

.dropdown-menu a:hover {
  background: var(--primary-dark);
  color: var(--white);
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--primary-dark);
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
  }

  .has-dropdown.active .dropdown-menu {
    max-height: 300px;
    padding: 10px 0;
  }

  .dropdown-menu a {
    padding: 10px 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
  }

  .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding-left: 35px;
  }

  .dropdown-arrow {
    margin-left: auto;
  }

  .has-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }

  /* Mobile nav adjustments */
  .nav-menu .nav-list a {
    justify-content: space-between;
  }

  .nav-list li {
    padding: 0 7px;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  margin: 3px 0;
  transition: 0.3s;
}

.marquee-wrapper {
  display: flex;
  align-items: center;
  background: var(--white); /* or your choice */
  color: var(--text-dark);
  overflow: hidden;
  padding: 0.5rem 1rem;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* static “Updates” badge */
.update-label {
  flex: 0 0 auto;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  margin-right: 1rem;
  display: flex;
  align-items: center;
}
.update-label i {
  margin-right: 0.4rem;
}

/* scrolling area */
.marquee {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
}

/* the inner track that slides */
.marquee__inner {
  display: inline-block;
  white-space: nowrap;
  cursor: pointer;
  /* start just off the right edge */
  transform: translateX(100%);
  animation: marquee-scroll 30s linear infinite;
}

.marquee__inner a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

/* separator style */
.sep {
  cursor: default;
  margin: 0 1rem;
  opacity: 0.6;
}

/* pause on hover (optional) */
.marquee:hover .marquee__inner {
  animation-play-state: paused;
}

/* keyframes */
@keyframes marquee-scroll {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Carousel Base */
.slider {
  position: relative;
  width: 100%;
  height: 350px; /* adjust to your desired height */
  overflow: hidden;
  border-radius: 10px;
}
.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}
.slide {
  flex: 0 0 100%;
  height: 100%;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.2rem 0.6rem;
  cursor: pointer;
  border-radius: 3px;
  z-index: 10;
}
.slider-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}
.slider-btn.prev {
  left: 1rem;
}
.slider-btn.next {
  right: 1rem;
}

/* Directors Section */
.directors {
  padding: 80px 15px;
}

.directors .container {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
}

.section-header h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 30px;
  border-bottom: 2px solid #e1e1e1;
}

/* grid */
.directors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

/* card base */
.director-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  text-align: center;
}
.director-card:hover {
  transform: translateY(-5px);
}

/* header bar */
.director-header {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.6rem;
  font-weight: 500;
  font-size: 1.1rem;
}

/* image */
.director-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* body */
.director-body {
  padding: 20px;
}
.director-name {
  margin-bottom: 10px;
  color: var(--text-dark);
  font-size: 1.2rem;
}

/* 1) Layout wrapper */
.body-layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin: 60px auto;
}

.body-sidebar,
.body-content {
  background: var(--white);
  border-radius: 10px;
  width: 100%;
}

/* 2) Sidebar cards (unchanged) */
/* — Sidebar Cards — */
.sidebar-list {
  list-style: none;
  margin: 0;
  padding: 10px;
}

.sidebar-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: transform 0.3s;
  text-align: center;
}

.sidebar-card-header {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.6rem;
  font-weight: 500;
}

.sidebar-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.sidebar-card-body {
  padding: 15px;
}
.sidebar-card-body h3 {
  margin-bottom: 10px;
  color: var(--text-dark);
  font-size: 1.1rem;
}

.btn-sm {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--primary-dark);
  color: var(--white);
  border-radius: 4px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-sm:hover {
  background: var(--primary-color);
}

.info-sidebar {
  background: var(--secondary-color);
  color: var(--text-dark);
  padding: 30px;
  border-radius: 10px;
  height: fit-content;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-sidebar h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.info-sidebar ul {
  list-style: none;
}

.info-sidebar li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* 3) Content panels (unchanged) */
.director-detail {
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}
.detail-title {
  margin-bottom: 15px;
  color: var(--primary-color);
  font-size: 1.5rem;
}
.director-detail p {
  line-height: 1.7;
  color: var(--text-dark);
  text-align: justify;
}
.director-detail a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

@media (min-width: 768px) {
  .body-sidebar {
    flex: 0 0 280px;
    width: 280px;
  }
  .body-content {
    flex: 1 1 auto;
    width: auto;
  }
}

/* ===== Small-screen tweaks ===== */
@media (max-width: 767px) {
  .body-layout {
    flex-direction: column; /* stack vertically */
  }
  .body-sidebar,
  .body-content {
    width: 100%; /* each takes full width */
  }
}

@media (max-width: 480px) {
  .sidebar-card-header {
    font-size: 1rem;
    padding: 0.5rem;
  }
  .detail-title {
    font-size: 1.3rem;
  }
  .sidebar-card-image img {
    height: auto;
  }
  .sidebar-card {
    margin-bottom: 20px;
  }
}

/* Stats Section */
.stats {
  padding: 60px 0;
  background: var(--primary-color);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  opacity: 0.8;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

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

/* Info Section */
.info-section {
  padding: 80px 0;
}

.info-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.info-text {
  background: var(--primary-color);
  padding: 10px;
  border-radius: 10px;
}

.info-text h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--primary-dark);
}

.info-text p {
  color: var(--white);
  line-height: 1.8;
  text-align: justify;
}

/* Notice Board */
.notice-board {
  background: var(--secondary-color);
  color: var(--text-dark);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.notice-board-header {
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  text-align: center;
}
.notice-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.notice-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.notice-item:last-child {
  border-bottom: none;
}
.notice-item i {
  flex: 0 0 auto;
  font-size: 1rem;
  color: var(--accent-color);
}
.notice-item a {
  flex: 1;
  margin-left: 0.75rem;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 400;
  transition: color 0.2s;
}
.notice-item a:hover {
  color: var(--primary-color);
}
.notice-date {
  flex: 0 0 auto;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-left: 1rem;
}

/* Team Section */
.team {
  padding: 20px 0;
}

.team .container {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-image {
  background: var(--primary-dark);
  padding: 10px;
}

.team-image img {
  height: 220px;
  width: 100%;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

.team-info {
  padding: 10px;
  background: var(--primary-color);
  color: var(--white);
}

.team-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.team-info p {
  opacity: 0.9;
}

/* student Section */
.student {
  padding: 20px 0;
}

.student .container {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
}

.student-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.student-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.student-card:hover {
  transform: translateY(-5px);
}

.student-image {
  background: var(--primary-dark);
  padding: 10px;
}

.student-image img {
  height: 220px;
  width: 100%;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

.student-info {
  padding: 10px;
  background: var(--primary-color);
  color: var(--white);
}

.student-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.student-info p {
  opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
}

.testimonials .container {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: rgb(241, 241, 241);
  padding: 30px;
  border-radius: 15px;
  position: relative;
}

.quote-icon {
  text-align: center;
  font-size: 3rem;
  color: var(--primary-color);
  font-family: serif;
}

.testimonial-card p {
  margin: 20px 0;
  color: var(--text-light);
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.testimonial-author img {
  width: 73px;
  height: 73px;
  border-radius: 25px;
  border: 4px solid var(--primary-dark);
  object-fit: cover;
}

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

.author-info h5 {
  color: var(--primary-color);
  margin-bottom: 3px;
}

.author-info span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Statistics Section */
.statistics {
  margin: 20px 0;
}

.statistics .container {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
}

.stats-numbers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-number-item {
  background-color: rgb(243, 243, 243);
  padding: 20px;
  border-radius: 15px;
  color: var(--primary-color);
}

.stat-number-item:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transition: background-color 0.3s ease;
}

.stat-number-item:hover .label {
  color: var(--white);
}

.stat-number-item .number {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.stat-number-item .label {
  color: var(--text-light);
  font-size: 1rem;
}

/* Gallery Section */
.gallery {
  padding: 80px 0;
  background: var(--primary-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  padding: 30px 20px 20px;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section {
  background: var(--primary-color);
  border-radius: 10px;
  padding: 20px;
}

.footer-section h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-section ul {
  list-style: none;
}

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

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--white);
  text-decoration: underline;
}

.contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: background 0.3s;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 15px 10px 10px 15px;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo-bar {
    padding: 10px;
  }

  .navbar {
    padding: 15px 0;
  }

  .navbar .container {
    justify-content: flex-start;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px; /* drawer width */
    height: 100vh;
    background: var(--primary-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 2000;
    padding-top: 60px; /* adjust for your header height */
    overflow-y: auto;
  }

  /*  Vertical list */
  .nav-menu .nav-list {
    display: flex;
    flex-direction: column;
    gap: 0; /* you’ll add spacing in the links */
    list-style: none;
    margin: 0;
    padding: 0;
  }

  /* Full-width, padded links */
  .nav-menu .nav-list li {
    width: 100%;
  }

  .nav-menu .nav-list a {
    display: block;
    width: 100%;
    padding: 15px 20px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.2s;
  }

  /* when open */
  .nav-menu.active {
    transform: translateX(0);
  }

  /* -- overlay styles -- */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 900;
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  /* make sure your toggle button stays on top */
  .nav-toggle {
    position: relative;
    z-index: 1000;
    display: flex;
  }

  .director-image img {
    height: 200px;
  }

  .directors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .info-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stats-numbers {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .team,
  .student,
  .testimonials,
  .statistics,
  .gallery {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }

  .stats-grid,
  .stats-numbers {
    grid-template-columns: 1fr;
  }

  .top-bar .container {
    flex-direction: row;
    gap: 10px;
    text-align: center;
  }

  .contact-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .contact-info span {
    margin-right: 0;
  }

  .top-bar .contact-info a {
    font-size: 0;
    margin: 0 0.75rem;
  }

  .top-bar .contact-info a i {
    font-size: 1rem;
    line-height: 1;
    color: var(--white);
  }

  .footer-section .contact-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-card,
.student-card,
.testimonial-card,
.gallery-item {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}
