/* General Styles */
:root {
  --primary-color: #09224c !important;
  --on-primary: #ffffff;
  --secondary-color: #6c757d;
  --success-color: #198754;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #0dcaf0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  background-color: #f8f9fa;
}

/* Carousel Styles */
.carousel-img {
  height: 450px;
  object-fit: cover;
}

.carousel-caption {
  background: rgba(9, 34, 76, 0.7);
  padding: 20px;
  border-radius: 10px;
}

.carousel-caption h3 {
  font-size: 2rem;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
  font-size: 1.1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Notification Box Styles */
.notification-box {
  background: white;
  height: 450px;
  display: flex;
  flex-direction: column;
}

.notification-header {
  background: var(--primary-color);
  color: var(--on-primary);
  padding: 15px;
  border-radius: 8px 8px 0 0;
}

.notification-header h5 {
  font-size: 1.1rem;
  font-weight: 600;
}

.notification-scroll-container {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.notification-scroll {
  animation: scrollUp 30s linear infinite;
  padding: 15px;
}

.notification-scroll:hover {
  animation-play-state: paused;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.notification-item {
  background: #f8f9fa;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.notification-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.notification-item h6 {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.notification-item p {
  color: #495057;
  margin-bottom: 8px;
  line-height: 1.4;
}

.notification-item .badge {
  font-size: 0.7rem;
  padding: 4px 8px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .carousel-img {
    height: 300px;
  }

  .notification-box {
    height: 350px;
    margin-top: 20px;
  }

  .carousel-caption h3 {
    font-size: 1.5rem;
  }

  .carousel-caption p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .carousel-img {
    height: 250px;
  }

  .carousel-caption {
    padding: 10px;
  }

  .carousel-caption h3 {
    font-size: 1.2rem;
  }

  .carousel-caption p {
    font-size: 0.8rem;
  }

  .notification-item h6 {
    font-size: 0.85rem;
  }

  .notification-item p {
    font-size: 0.8rem;
  }
}

/* Welcome message  */
.welcome-box {
  background-color: #ffffff;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.welcome-box h1 {
  color: #09224c;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 2rem;
}

.welcome-box p {
  color: #09224c;
  font-weight: 600;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Welcome message Close */

/* About Section  */
.about-section {
  background-color: #09224c;
  color: #ffffff;
  padding: 80px 0;
}

.about-section h2 {
  color: #ffffff;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 20px;
  border-left: 5px solid #ffffff;
  padding-left: 15px;
  text-transform: uppercase;
}

.about-section p {
  color: #f0f0f0;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-section .lead {
  font-weight: 600;
  color: #ffffff;
}

.about-section img {
  border: 5px solid #ffffff;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.about-section img:hover {
  transform: scale(1.03);
}

.btn-learn {
  background-color: #ffffff !important;
  color: #09224c;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-learn:hover {
  background-color: transparent;
  color: #09224c !important;
  border: 2px solid #ffffff;
}

/* About Section Close */

/*  Hospital Facilities */
/* Hospital Facilities Section */
.hospital-facilities {
  background-color: #ffffff;
  color: #09224c;
  overflow: hidden;
}

.hospital-facilities .section-title {
  color: #09224c;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Facility Slider Container */
.facility-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.facility-track {
  display: flex;
  gap: 50px;
  animation: slideLeft 25s linear infinite;
}

.facility-item {
  flex: 0 0 auto;
  text-align: center;
}

.facility-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  border: 6px solid #09224c;
  box-shadow: 0 6px 18px rgba(9, 34, 76, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.facility-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.facility-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(9, 34, 76, 0.4);
}

.facility-circle:hover img {
  transform: scale(1.2);
}

.facility-item h5 {
  font-weight: 600;
  color: #09224c;
  font-size: 1rem;
}

/* Infinite Scroll Animation */
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .facility-circle {
    width: 100px;
    height: 100px;
  }
  .facility-track {
    gap: 30px;
    animation-duration: 20s;
  }
  .facility-item h5 {
    font-size: 0.9rem;
  }
}
/*  Hospital Facilities Close*/

/* Infrastructure & Campus Life Section */
.campus-section {
  background-color: #ffffff;
  color: #09224c;
  overflow: hidden;
}

.campus-section .section-title {
  color: #09224c;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Slider setup */
.campus-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.campus-track {
  display: flex;
  gap: 50px;
  animation: slideRight 25s linear infinite;
}

.campus-item {
  flex: 0 0 auto;
  text-align: center;
}

.facility-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  border: 6px solid #09224c;
  box-shadow: 0 6px 18px rgba(9, 34, 76, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.facility-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.facility-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(9, 34, 76, 0.4);
}

.facility-circle:hover img {
  transform: scale(1.2);
}

.campus-item h5 {
  font-weight: 600;
  color: #09224c;
  font-size: 1rem;
}

/* Move left → right */
@keyframes slideRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .facility-circle {
    width: 100px;
    height: 100px;
  }
  .campus-track {
    gap: 30px;
    animation-duration: 20s;
  }
  .campus-item h5 {
    font-size: 0.9rem;
  }
}

/* Principal & Chairman Message */
.leadership-section {
  background-color: #09224c; /* Deep navy background */
  color: #ffffff;
}

.leadership-section h4 {
  font-weight: 700;
  color: #ffffff;
}

.leadership-section blockquote {
  border-color: #ffc107; /* Keep Bootstrap's warning yellow for contrast */
}

.leadership-section p,
.leadership-section .lead {
  color: #f8f9fa;
}

/* Testimonials */
/* ===== Testimonial Section ===== */
.testimonial-section {
  background: #ffffff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  color: #09224c;
  font-weight: 800;
  font-size: 2.8rem;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}
.testimonial-card {
  background: #09224c !important;
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 30px rgba(9, 34, 76, 0.3);
  height: 100%;
  transition: all 0.4s ease;
  color: #ffffff;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(9, 34, 76, 0.4);
}

/* Student image (circle) */
.student-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Quote icon */
.quote-icon {
  font-size: 3rem;
  color: #ffffff;
  opacity: 0.15;
  position: absolute;
  top: 15px;
  left: 20px;
}

/* Text & Name Styling */
.testimonial-text {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.7;
  padding: 15px 20px;
  min-height: 100px;
}

.student-name {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 15px 0 5px;
}

.student-batch {
  color: #dcdcdc;
  font-size: 0.95rem;
}

.stars {
  color: #ffcc00;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .section-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 70px 0;
  }
  .testimonial-card {
    margin-bottom: 20px;
  }
  .testimonial-text {
    font-size: 1rem;
  }
}

/* About Page Section */
/* Hero Section */
.about-hero {
  background: linear-gradient(
      135deg,
      rgba(9, 34, 76, 0.95) 0%,
      rgba(26, 77, 143, 0.95) 100%
    ),
    url("footer.phpimages/img/Carousel1.jpeg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
    no-repeat bottom;
  background-size: 100% auto;
  opacity: 0.3;
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  color: #ffffff !important;
}

.about-hero .lead {
  font-size: 1.3rem;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

/* Overriding Section Title for About Page */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--on-primary); /* Default to white for dark backgrounds */
  border-radius: 2px;
}

/* Center the 'after' element for any centered section title */
.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Change underline to white for titles on dark backgrounds (e.g., primary color sections) */
.text-white .section-title::after {
  background: var(--on-primary);
}

.section-subtitle {
  color: #09224c;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

/* Cards */
.info-card {
  background: white;
  border-radius: 15px;
  padding: 35px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

[data-aos] .info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.info-card .icon-box,
.value-icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.info-card:hover .icon-box {
  transform: scale(1.1) rotate(-10deg);
}

.info-card .icon-box i,
.value-icon-box i {
  font-size: 2rem;
  color: white;
}

.info-card-dark {
  background: #09224c;
  color: #ffffff;
}

.info-card-dark h4 {
  color: #ffffff !important;
}

.info-card-dark p {
  color: #f0f0f0 !important;
}

.info-card-dark .icon-box i,
.info-card-dark .value-icon-box i {
  color: #09224c;
}

/* Core Value Icon Colors */
.value-compassion {
  background: linear-gradient(135deg, #dc3545, #c82333) !important;
}
.value-excellence {
  background: linear-gradient(135deg, #ffc107, #e0a800) !important;
}
.value-integrity {
  background: linear-gradient(135deg, var(--primary-color), #1a4d8f) !important;
}
.value-innovation {
  background: linear-gradient(135deg, #17a2b8, #138496) !important;
}
.value-collaboration {
  background: linear-gradient(135deg, #28a745, #218838) !important;
}
.value-service {
  background: linear-gradient(135deg, #6f42c1, #5a32a3) !important;
}

.info-card:hover .value-compassion {
  box-shadow: 0 0 20px #dc3545;
}
.info-card:hover .value-excellence {
  box-shadow: 0 0 20px #ffc107;
}
.info-card:hover .value-innovation {
  box-shadow: 0 0 20px #17a2b8;
}

.info-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 50px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 50%;
  padding-right: 40px;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 50%;
  padding-left: 40px;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border: 4px solid white;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px var(--secondary-color);
  z-index: 1;
}

.timeline-content {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.timeline-year {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d8f 100%);
  color: white;
  padding: 80px 0;
  position: relative;
}

.stat-box {
  text-align: center;
  padding: 30px 15px;
}

.stat-box .stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--warning-color);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-box .stat-label {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* Department Grid */
.department-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
}

.department-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.department-card > i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.department-card h5 {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.department-card-dark {
  background: #09224c;
  color: #ffffff;
}

.department-card-dark:hover {
  border-color: var(--warning-color);
}

.department-card-dark > i {
  color: #ffffff;
}

.department-card-dark h5,
.department-card-dark p {
  color: #ffffff !important;
}

.department-card-danger {
  background-color: #f8d7da; /* A light red color */
  border-color: #f5c6cb;
}

.department-card-danger:hover {
  border-color: var(--danger-color);
}

/* Infrastructure Slider */
.infrastructure-slider {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
}

.infrastructure-track {
  display: flex;
  gap: 30px;
  animation: slideInfinite 30s linear infinite;
}

.infrastructure-item {
  flex: 0 0 300px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.infrastructure-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.infrastructure-item .content {
  padding: 20px;
}

.infrastructure-item h5 {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

@keyframes slideInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Service Features */
.service-feature {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  border-left: 4px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.service-feature:hover {
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.service-feature > i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-right: 15px;
}

.service-feature h5 {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}

/* Accreditation Badges */
.accreditation-badge {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid var(--bg-light);
}

.accreditation-badge:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.accreditation-badge > i {
  font-size: 4rem;
  margin-bottom: 20px;
}

.accreditation-badge img {
  max-height: 80px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 15px;
}

/* Community Impact Cards */
.impact-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.impact-card .card-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-color)
  );
  color: white;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Move the pseudo-element to the header title (h5) to avoid collisions
       with other global heading pseudo-elements and ensure every card
       title shows a single underline effect. */
.impact-card .card-header h5 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 6px; /* space for the underline */
}

.impact-card .card-header h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 50px;
  height: 3px;
  background-color: var(--warning-color);
  border-radius: 2px;
  transition: transform 0.28s ease-out;
}

.impact-card .card-header > i {
  font-size: 3rem;
  margin-bottom: 10px;
}

.impact-card .card-body ul {
  padding: 25px;
}

/* Hover/focus state: animate the title underline */
.impact-card:hover .card-header h5::after,
.impact-card:focus-within .card-header h5::after {
  transform: translateX(-50%) scaleX(1);
}

/* Responsive */
@media (max-width: 992px) {
  .about-hero h1 {
    font-size: 2.5rem;
    color: #ffffff !important;
  }
  .section-title {
    font-size: 2rem;
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin: 0;
    padding-left: 60px;
    text-align: left;
  }
  .timeline-dot {
    left: 20px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 60px 0 40px;
  }
  .about-hero h1 {
    font-size: 2rem;
    color: #ffffff !important;
  }
  .stat-box .stat-number {
    font-size: 2.5rem;
  }
  .infrastructure-track {
    animation-duration: 20s;
  }
}

/* Academics page section  */
.page-header {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 80px 0 60px;
  color: white;
  margin-bottom: 50px;
}
.section-title {
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: #2a5298;
}

.program-card {
  background-color: #09224c !important;
  color: #ffffff;
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.program-card i {
  color: #ffffff !important;
}
.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.program-card .card-title {
  color: #ffffff;
}
.program-card .card-text {
  color: #f0f0f0;
}
.program-card .btn {
  background-color: #ffffff;
  color: #09224c;
  border-color: #ffffff;
}
.program-card .btn:hover {
  background-color: #f0f0f0;
  color: #09224c;
}
.program-icon {
  font-size: 3rem;
  color: #09224c;
  margin-bottom: 20px;
}

.program-card h3 {
  color: #ffffff !important;
}

.program-card h4 {
  color: #ffffff !important;
}

.course-list {
  color: #ffffff !important;
}

.fw-bold {
  color: #09224c !important;
}

#Admission {
  color: #09224c !important;
}

#card-body {
  background-color: #09224c !important;
  color: #ffffff !important;
}

#card-body h5 {
  color: #ffffff !important;
}

#card-body p {
  color: #ffffff !important;
}

#card-body a {
  background-color: #ffffff !important;
  color: #09224c !important;
}

.dept-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid #2a5298;
  transition: all 0.3s ease;
}
.dept-card:hover {
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dept-card p {
  color: #09224c !important;
}

#Pedagogy p {
  color: #09224c !important;
}

.admission-step {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}
.admission-step .step-number {
  width: 60px;
  height: 60px;
  background: #2a5298;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 20px;
}
.feature-box {
  background: linear-gradient(135deg, #09224c 0%, #09224c 100%);
  color: white;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  height: 100%;
}
.feature-box h5 {
  color: #ffffff !important;
}

.feature-box p {
  color: #f0f0f0;
}

.course-list {
  list-style: none;
  padding: 0;
}
.course-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}
.course-list li i {
  color: #ffffff !important;
  margin-right: 10px;
  font-size: 20px;
}
.stats-box {
  text-align: center;
  padding: 30px;
  background: #09224c;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.stats-box h3 {
  color: #ffffff !important;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.stats-box p {
  color: #ffffff !important;
  font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
  background-color: #09224c;
  color: white;
}
.tab-content {
  padding: 30px;
  background: white;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.nav-pills .nav-link.active {
  background-color: #2a5298;
}

#Library h4 {
  color: #09224c !important;
}

#Library p {
  color: #09224c !important;
}

#PlacementStatistics {
  background-color: #09224c !important;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-title {
  color: #09224c;
  font-weight: 700;
  font-size: 2.5rem;
}

.nav-pills .nav-link {
  color: #ffffff;
  border: 2px solid #09224c;
  background-color: #09224c;
  margin: 0 5px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.nav-pills .nav-link:hover {
  opacity: 0.8;
}

.nav-pills .nav-link.active {
  background-color: #09224c;
  color: #ffffff;
  border-color: #09224c;
  opacity: 1;
}

.table thead {
  background-color: #09224c;
  color: #ffffff;
}

.table-hover tbody tr:hover {
  background-color: rgba(9, 34, 76, 0.1);
}

.alert-info {
  background-color: rgba(9, 34, 76, 0.1);
  border-color: #09224c;
  color: #09224c;
}

.badge.bg-primary {
  background-color: #09224c !important;
}

.badge.bg-success {
  background-color: #0a5c3d !important;
}

.badge.bg-danger {
  background-color: #c41e3a !important;
}

.badge.bg-warning {
  background-color: #f39c12 !important;
}

.btn-primary {
  background-color: #09224c;
  border-color: #09224c;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #051534;
  border-color: #051534;
}

.list-group-item {
  border-color: rgba(9, 34, 76, 0.2);
}

.list-group-item h6 {
  color: #09224c;
}

h5.fw-bold {
  color: #09224c;
}

.table td strong {
  color: #09224c;
}

/* Bootstrap Icons (if not already included) */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/font/bootstrap-icons.css");
