/* GENERAL STYLE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

body {
  overflow-x: hidden;
}

:root {
  --primary1: #132361;
  --primary2: #3498db;
  --secondary1: #ff2d34;
  --secondary2: #ea3136;
  --white: white;
  --black: #000;
  --bg-color: #dddddd;
  --gray: #f5f5f5;
}

.hero-offset {
  padding-top: 100px !important;
}

.divider {
  width: 80px;
  height: 2px !important;
  background-color: var(--secondary2);
  margin: 10px auto 30px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* --------------------- ANIMATIONS --------------------- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  height: 60px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.8);
  z-index: 996;
}

#topbar.topbar-scrolled {
  top: -60px;
}

#topbar .contact-info a {
  line-height: 0;
  color: var(--secondary1);
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  text-decoration: underline;
}

#topbar .contact-info i {
  color: var(--secondary2);
  line-height: 0;
  margin-right: 5px;
}

#topbar .contact-info .phone-icon {
  margin-left: 15px;
}

#topbar .cta {
  background: transparent;
}

#topbar .cta a {
  color: #fff;
  background: var(--secondary1);
  padding: 6px 24px 8px 24px;
  display: inline-block;
  transition: 0.3s;
  border-radius: 50px;
}

#topbar .cta a:hover {
  background: var(--white);
  color: var(--primary1);
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
  /* background: rgba(0, 0, 0, 0.1); */
  background: rgba(0, 0, 128, 0.9);
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
  top: 60px;
}

#header.header-scrolled {
  background: rgba(0, 0, 128, 0.9);
  top: 0;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 70px;
}

.header-inner-pages {
  background: rgba(5, 87, 158, 0.9) !important;
}

.topbar-inner-pages {
  background: rgba(6, 98, 178, 0.9) !important;
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation 
  */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--secondary1);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 8px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #032e54;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: var(--primary1);
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

#signin {
  color: var(--secondary1);
  font-weight: bolder;
  display: inline-block;
  transition: 0.3s;
  margin-left: 3rem;
  text-wrap: nowrap;
}

#signin:hover {
  transform: scale(1.1);
  transition: all ease-in-out 0.4s;
}

#applynow {
  color: #fff;
  background: var(--secondary1);
  padding: 6px 24px 8px 24px;
  display: inline-block;
  transition: 0.3s;
  border-radius: 50px;
  margin-left: 1rem;
  text-wrap: nowrap;
}

#applynow:hover {
  transform: scale(1.1);
  transition: all ease-in-out 0.4s;
  background: white !important;
  color: var(--primary1) !important;
  border: 1px solid var(--primary1);
}

/**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: var(--secondary2);
}

@media (max-width: 1100px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 128, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0665b7;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--secondary1);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #f6b024;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/* Hero Section */
.hero {
  /* background: linear-gradient(to right, #3498db, #000080); */
  background: linear-gradient(to right, #ffffff, #ececec);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  overflow: hidden; /* Prevents horizontal scrolling */
  width: 100%;
  box-sizing: border-box;
}

/* Content Area */
.hero .content {
  max-width: 600px;
  width: 100%;
}

/* Headings & Text */
.hero h1 {
  color: var(--secondary1);
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 20px;
  line-height: 1.6;
  color: black;
}

/* Hero Buttons */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* About Us Button */
.btn-about {
  background: var(--secondary1);
  color: white;
  box-shadow: 0 4px 10px rgba(241, 196, 15, 0.3);
  text-wrap: nowrap;
  transition: background 0.4s ease-in-out, transform 0.3s ease,
    opacity 0.3s ease;
}

.btn-about:hover {
  background: var(--primary1);
  color: white;
  transform: scale(1.05);
  opacity: 0.7;
}

/* Get Started Button */
.btn-start {
  background: var(--white);
  color: var(--primary1);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
  text-wrap: nowrap;
  border: solid var(--primary1) 1px;
  transition: background 0.4s ease, color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-start:hover {
  background: var(--bg-color);
  transform: scale(1.05);
  color: var(--black);
}

/* Font Awesome Icons */
.btn i {
  font-size: 1.2rem;
}

/* Hero Image */
.hero img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  transform: scale(1);
  transition: transform 0.5s ease-in-out;
}

.hero img:hover {
  transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
  }

  .hero .content {
    max-width: 100%;
    padding: 0;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
  }

  .hero img {
    margin-top: 30px;
    max-width: 80%;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    gap: 10px;
  }

  .hero img {
    max-width: 100%;
  }
}

/* HOME CARDS SECTION */
.wrapper {
  background-color: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
  overflow: hidden;
}

.wrapper .containerx {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  flex-wrap: wrap; /* Ensure cards wrap properly */
  height: auto;
  width: 100%;
  max-width: 1200px;
  gap: 10px;
  padding: 0 10px; /* Added padding to prevent overflow */
  box-sizing: border-box;
}

/* Default Card Styling */
.wrapper .card {
  flex: 1;
  min-width: 25%;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: flex 0.5s ease-in-out, transform 0.3s ease-in-out;
  box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.8);
  position: relative;
  padding: 20px;
  box-sizing: border-box; /* Prevents extra width issues */
  min-height: 330px;
}

/* On hover, expand the card while others shrink */
.wrapper .containerx:hover .card {
  flex: 1;
}

.wrapper .card:hover {
  flex: 3;
}

/* Ensure row content is centered */
.wrapper .card > .row {
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

/* Icon Styling */
.wrapper .card .icon {
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--white);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease-in-out;
}

.wrapper .card .icon i {
  font-size: 2rem; /* Adjust size */
  color: var(--secondary1);
}

/* Description Box - Hidden by Default */
.wrapper .card .description {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

/* Show Description on Hover */
.wrapper .card:hover .description {
  opacity: 1;
  height: auto;
  padding-top: 10px;
}

/* Background Images with Overlay */
.wrapper .card:nth-child(1) {
  background: linear-gradient(rgba(0, 0, 128, 0.4), rgba(0, 0, 128, 0.4)),
    url(../img/onyinyechi-Nwachi.webp);
  background-size: cover;
  background-position: top;
}

.wrapper .card:nth-child(2) {
  background: linear-gradient(rgba(0, 0, 128, 0.4), rgba(0, 0, 128, 0.4)),
    url(../img/kessy.webp);
  background-size: cover;
  background-position: top;
}

.wrapper .card:nth-child(3) {
  background: linear-gradient(rgba(0, 0, 128, 0.4), rgba(0, 0, 128, 0.4)),
    url(../img/Happiness-Okwuchi.webp);
  background-size: cover;
  background-position: top;
}

/* .wrapper .card:nth-child(4) {
  background: linear-gradient(rgba(0, 0, 128, 0.4), rgba(0, 0, 128, 0.4)),
    url(../img/img4.jpg);
  background-size: cover;
  background-position: center;
} */

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .wrapper .containerx {
    grid-template-columns: 1fr 1fr;
  }

  .wrapper .card {
    height: auto;
  }
}

@media (max-width: 768px) {
  .wrapper .containerx {
    grid-template-columns: 1fr;
  }

  .wrapper .card {
    width: 100%;
    min-height: 300px;
    background-position: top;
  }

  /* On hover, cards expand fully */
  .wrapper .containerx:hover .card {
    flex: none;
    width: 100%;
  }

  .wrapper .card:hover {
    width: 100%;
  }
}

/*******************************************************************************************
    HERO FOR OTHER PAGES WITH HERO IMAGE
*********************************************************************************************/

.secondary-hero {
  padding: 80px 0; /* 80% of the original padding */
  background: linear-gradient(to bottom, #fff, #000080);
  color: white;
  min-height: 400px; /* Adjust based on original height */
  display: flex;
  align-items: center;
}

.secondary-hero .content h1 {
  font-size: 3rem; /* Slightly smaller than the main hero */
  font-weight: bold;
  color: var(--secondary1);
  margin-top: 5rem;
}

.secondary-hero .content p {
  font-size: 1.5rem;
  line-height: 2rem;
}

/* About Section */
.about-section {
  /* background: linear-gradient(rgba(0, 0, 128, 0.8), rgba(0, 0, 128, 0.8)),
    url("../img/about-bg.jpg"); */
  background: linear-gradient(to right, #ffffff, #ececec);
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* color: white; */
}

.about-section .container {
  max-width: 1100px;
  width: 100%;
}

.about-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--secondary1);
}

.about-section h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Read More Button */
.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* Space between text and icon */
  background-color: var(--secondary1); /* Navy Blue */
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 5px;
  transition: background 0.3s ease, transform 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

/* Button Hover Effect */
.btn-read-more:hover {
  background-color: var(--white); /* Darker navy */
  transform: translateY(-3px); /* Slight lift effect */
  color: var(--secondary2);
  border: 1px solid var(--secondary2);
}

/* Icon Animation */
.btn-read-more i {
  transition: transform 0.3s ease-in-out;
}

/* Move the arrow when hovering */
.btn-read-more:hover i {
  transform: translateX(5px); /* Move right */
}

/* Button Click Effect */
.btn-read-more:active {
  transform: scale(0.95);
}

/* Responsive */
@media (max-width: 768px) {
  .about-section h2 {
    font-size: 2rem;
  }
  .about-section h3 {
    font-size: 1.5rem;
  }
  .about-section p {
    font-size: 1rem;
  }
}

/* Programs Section */
.prog-section {
  padding: 20px;
  text-align: center;
}

.prog-section .prog-title {
  font-size: 2rem;
  color: var(--primary1);
  margin-bottom: 20px;
}

/* Cards */
.prog-section .prog-card {
  background: #fff;

  border-radius: 5px;
  /* width: 300px; */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.prog-section .prog-card:hover {
  transform: translateY(-5px);
}

/* Image Container */
.prog-section .prog-img-container {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--secondary1);
}

.prog-section .prog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}

.prog-section .prog-card:hover .prog-image {
  transform: scale(1.1);
}

/* Overlay for Hover Effect */
.prog-section .prog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 128, 0.7), rgba(0, 0, 128, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.prog-section .prog-card:hover .prog-overlay {
  opacity: 1;
}

.prog-section .prog-description {
  color: white;
  font-size: 1rem;
  padding: 10px;
}

/* Text Container */
.prog-section .prog-text-container {
  padding: 10px;
  text-align: left;
  min-height: 80px;
}

.prog-section .prog-card-title {
  font-size: 1.1rem;
  color: var(--brand-pink1);
  margin: 10px 0;
}

/* Start Date */
.prog-section .prog-btn-section {
  background-color: var(--primary1);
  border-top: 1px solid #ccc;
  padding: 10px 5px;
  display: flex;
  justify-content: end;
}

/* CALL TO ACTION SECTION */
.cta-section {
  position: relative;
  background: linear-gradient(
      to right,
      rgba(255, 45, 52, 0.7),
      rgba(255, 255, 255, 0.7)
    ),
    url("../img/call-to-action2.jpg") no-repeat center center/cover;

  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}

.cta-text {
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-title {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.3;
}

.cta-subtitle {
  font-size: 18px;
  margin-bottom: 20px;
}

.cta-list {
  list-style: none;
  padding: 0;
}

.cta-list li {
  font-size: 18px;
  margin-bottom: 10px;
}

.cta-list i {
  color: white;
  margin-right: 8px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}

.form-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.form-control {
  border-radius: 5px;
  border: 1px solid #ccc;
}

.btn-primary {
  background: var(--primary1);
  border: none;
  font-size: 18px;
  padding: 12px;
  transition: 0.3s ease-in-out;
}

.btn-primary:hover {
  background: var(--secondary1);
}

/* Animation */
.cta-text,
.contact-form {
  opacity: 1;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;
}

.cta-section.show .cta-text,
.cta-section.show .contact-form {
  opacity: 1;
  transform: translateY(0);
}

.address-contact-info {
  padding: 50px;
  background-color: #f3f6f9;
  border-radius: 10px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 1.2s ease-in-out;
}

.address-contact-header {
  text-align: center;
  margin-bottom: 30px;
}

.address-contact-header h2 {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: slideInFromTop 1s ease-out;
}

.address-contact-header p {
  font-size: 16px;
  color: #777;
}

.address-contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.address-contact-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.address-contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.address-contact-icon {
  font-size: 24px;
  color: #007bff;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.address-contact-item:hover .address-contact-icon {
  color: #0056b3;
}

.address-contact-text {
  font-size: 18px;
  color: #333;
}

.address-contact-text span {
  font-weight: 500;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInFromTop {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.program-counter {
  font-size: 70px;
}

/* news section */
.news-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.news-section h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--primary1) !important;
  margin-bottom: 30px;
}

.news-section .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.news-section .news-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  border-top: 3px solid var(--secondary2);
  border-bottom: 3px solid var(--secondary2);
}

.news-section .news-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.news-section .news-item h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: black;
}

.news-section .news-item p {
  font-size: 1rem;
  color: #666;
}

.news-section .news-item:hover {
  transform: translateY(-5px);
}

.testimonials {
  background-color: #f9f9f9;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary1);
}

.testimonial-card h3 {
  font-size: 1.1rem;
  color: var(--primary1);
  margin-bottom: 0.8rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

/* FOOTER SECTION */
.university-footer {
  background: linear-gradient(
    to right,
    #002147,
    #004080
  ); /* Deep blue gradient */
  color: white;
  padding: 50px 0;
  overflow-x: hidden;
}

.footer-logo {
  width: 200px;
  margin-bottom: 15px;
  cursor: pointer;
}

.footer-about p {
  font-size: 14px;
  opacity: 0.8;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--secondary1); /* Gold underline */
  display: inline-block;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.footer-links ul li a:hover {
  color: var(--secondary1); /* Gold color on hover */
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--secondary1);
}

.footer-social .social-icons a {
  display: inline-block;
  font-size: 18px;
  color: white;
  margin: 0 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social .social-icons a:hover {
  color: var(--secondary1);
  transform: scale(1.2);
}

.footer-newsletter h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-newsletter form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer-newsletter input {
  width: 250px;
  padding: 8px;
  border-radius: 5px;
  border: none;
}

.footer-newsletter button {
  background: var(--secondary1);
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  color: #002147;
  font-weight: bold;
  transition: background 0.3s ease-in-out;
}

.footer-newsletter button:hover {
  background: var(--secondary2);
}

.footer-bottom {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
}

/************************************************************************


ABOUT SECTION MAIN STARTS



*******************************************************************************/

.who-we-are {
  padding: 60px 20px;
  background: #f9f9f9;
}

.who-we-are .section-title {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary1);
  margin-bottom: 10px;
}

.who-we-are .section-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #444;
  margin-bottom: 20px;
}

.who-we-are .section-subtitle span {
  color: var(--secondary2);
}

.who-we-are .who-we-are-content {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch; /* Key for equal height columns */
  justify-content: space-between;
  gap: 20px;
}

.who-we-are .text-content {
  flex: 1;
  min-width: 300px;
}

.who-we-are .text-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.who-we-are .image-content {
  flex: 1;
  min-width: 300px;
  min-height: 400px;
  background-image: url("../img/Dr-and-Mrs-Abana.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

/* .who-we-are .image-content img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
} */

/* Mission Section */
.mission-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.mission-section .section-title {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary1);
  margin-bottom: 15px;
}

.mission-section .mission-text {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.mission-section .section-subtitle {
  font-size: 26px;
  font-weight: 600;
  color: var(--secondary2);
  margin-bottom: 20px;
}

/* Objectives List */
.mission-section .objectives-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

/* List Items */
.mission-section .objectives-list li {
  font-size: 18px;
  color: #444;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* Icon Styling */
.mission-section .objectives-list li i {
  color: var(--secondary2);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 5px; /* Aligns icon with title */
}

/* Ensure title and description appear as separate lines on small screens */
.mission-section .objectives-list li strong {
  display: block; /* Moves bold text to its own line */
  font-size: 18px;
  font-weight: bold;
  color: #222;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .mission-section {
    padding: 40px 15px;
  }

  .mission-section .section-title {
    font-size: 28px;
  }

  .mission-section .mission-text {
    font-size: 16px;
  }

  .mission-section .objectives-list {
    max-width: 100%;
  }

  .mission-section .objectives-list li {
    font-size: 16px;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .mission-section .objectives-list li strong {
    font-size: 16px;
  }
}

.what-we-provide {
  padding: 60px 20px;
  background: linear-gradient(rgba(0, 0, 128, 0.8), rgba(0, 0, 128, 0.8));
  text-align: center;
}

.what-we-provide .section-title {
  font-size: 32px;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 15px;
}

.what-we-provide .section-subtitle {
  font-size: 26px;
  font-weight: 600;
  color: var(--secondary1);
  margin-bottom: 20px;
}

.what-we-provide .provide-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.what-we-provide .provide-list li {
  font-size: 18px;
  color: white;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.what-we-provide .provide-list li i {
  color: var(--secondary1);
  margin-right: 10px;
  font-size: 20px;
}

/* facilities */

.our-facilities {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.our-facilities .section-title {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary1);
  margin-bottom: 20px;
}

.our-facilities .facility-description {
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.our-facilities .facility-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.our-facilities .facility-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.our-facilities .sub-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--secondary2);
  margin-bottom: 10px;
}

.our-facilities .facility-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.our-facilities .facility-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.our-facilities .facility-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* LEtter form Director */

.about-section-main {
  background-color: #f8f9fa; /* Light background for readability */
  padding: 80px 20px;
  color: #333;
}

.about-section-main .section-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  color: var(--primary1);
}

.about-section-main .subtitle {
  font-size: 1.2rem;
  color: var(--secondary2);
  margin-bottom: 20px;
  text-align: center;
}

.about-section-main .content {
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}

.about-section-main .highlight-box {
  background: #fff;
  border-left: 5px solid var(--primary1);
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-section-main .highlight-box ul {
  list-style: none;
  padding: 0;
}

.about-section-main .highlight-box li {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 10px;
}

.about-section-main .highlight-box li i {
  color: var(--secondary2, --primary1); /* Use CSS variable with fallback */
  margin-right: 8px;
  font-size: 1.2rem;
}

.about-section-main .text-center {
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
}

/******************************************************************************************************************************





* FACULTY AND STAFF STARTS 




*********************************************************************************************************************************/

.staff-section {
  text-align: center;
  padding: 80px 0;
}
.staff-section .section-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary1);
  text-transform: uppercase;
}
.staff-section .section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 50px;
}
.staff-section .staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  /* justify-content: center; */
  padding: 20px;
  /* max-width: 900px; */
  margin: auto;
}
.staff-section .staff-card {
  background: var(--primary2);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out,
    background 0.4s ease-in-out, color 0.4s ease-in-out;
  text-align: center;
  color: white;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  min-height: 180px;
  width: 100%;
}
.staff-section .staff-card h4 {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 10px;
}
.staff-section .staff-card p {
  font-size: 1rem;
  color: var(--secondary1);
}
.staff-section .staff-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--secondary1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

.staff-section .staff-card:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background: var(--white);
  color: var(--primary1);
}
.staff-section .staff-card:hover h4,
.staff-section .staff-card:hover p {
  color: var(--primary1);
}
.staff-section .staff-card:hover::after {
  transform: scaleX(1);
}

/* Centered 3-2 Layout */
.staff-section .staff-grid .staff-card:nth-child(4),
.staff-section .staff-grid .staff-card:nth-child(5) {
  grid-column: span 1;
  justify-self: center;
}
@media (max-width: 768px) {
  .staff-section .staff-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*********************************************************************************************




REGISTRATION PROCESS




*****************************************************************************************************/
/* Admissions Section */
.admissions {
  padding: 80px 20px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  text-align: center;
  color: white;
  overflow: hidden;
  border-top: 2px solid white;
}

.admissions-container {
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-in-out;
}

/* Title & Subtitle */
.admissions .admissions-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.admissions .admissions-title span {
  display: block;
  font-size: 22px;
  font-weight: 400;
  color: #f0f0f0;
}

.admissions .admissions-subtitle {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffd700;
}

/* Admissions Content */
.admissions .admissions-content {
  text-align: left;
}

.admissions .admissions-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Admissions Heading */
.admissions .admissions-heading {
  font-size: 22px;
  margin-top: 30px;
  color: #ffd700;
}

/* List Styling */
.admissions .admissions-list {
  list-style: none;
  padding-left: 0;
}

.admissions .admissions-list li {
  font-size: 18px;
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease-in-out;
}

.admissions .admissions-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: #ffd700;
  font-size: 20px;
}

/* Apply Button */
.admissions .admissions-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 30px;
  font-size: 18px;
  background: var(--secondary1);
  color: var(--white);
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  position: relative;
}

.admissions .admissions-btn:hover {
  background: var(--white);
  transform: translateY(-3px);
  color: var(--secondary1);
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 1s forwards ease-in-out;
}

.fade-in.delay-1 {
  animation-delay: 0.3s;
}

.fade-in.delay-2 {
  animation-delay: 0.6s;
}

/* Slide-in Animation for List Items */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in {
  animation: slideIn 0.8s forwards ease-in-out;
}

.slide-in.delay-1 {
  animation-delay: 0.2s;
}
.slide-in.delay-2 {
  animation-delay: 0.4s;
}
.slide-in.delay-3 {
  animation-delay: 0.6s;
}
.slide-in.delay-4 {
  animation-delay: 0.8s;
}
.slide-in.delay-5 {
  animation-delay: 1s;
}

/* Bounce Animation for Button */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.bounce {
  animation: bounce 1s infinite ease-in-out;
}

/* Responsibility & Acceptance Section */
.responsibility-acceptance {
  padding: 80px 20px;
  background: whitesmoke;
  color: white;
  text-align: center;
}

.responsibility-acceptance .container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

/* Card Styles */
.responsibility-acceptance .card {
  flex: 1;
  min-width: 45%;
  background: white;
  color: black;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease-in-out;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards ease-in-out;
}

/* Hover Effect */
.responsibility-acceptance .card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
}

/* Titles */
.responsibility-acceptance .section-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary2);
  margin-bottom: 15px;
}

.responsibility-acceptance .sub-title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
  color: var(--secondary2);
}

/* Text */
.responsibility-acceptance .card p {
  font-size: 18px;
  line-height: 1.6;
}

/* List Styling */
.responsibility-acceptance .requirements-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.responsibility-acceptance .requirements-list li {
  font-size: 18px;
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease-in-out;
}

.responsibility-acceptance .requirements-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: #ff9900;
  font-size: 20px;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.responsibility-acceptance .fade-in {
  animation: fadeInUp 1s forwards ease-in-out;
}

.responsibility-acceptance .fade-in.delay-1 {
  animation-delay: 0.3s;
}

.responsibility-acceptance .slide-in {
  animation: slideIn 0.8s forwards ease-in-out;
}

.responsibility-acceptance .slide-in.delay-1 {
  animation-delay: 0.2s;
}
.responsibility-acceptance .slide-in.delay-2 {
  animation-delay: 0.4s;
}
.responsibility-acceptance .slide-in.delay-3 {
  animation-delay: 0.6s;
}
.responsibility-acceptance .slide-in.delay-4 {
  animation-delay: 0.8s;
}
.responsibility-acceptance .slide-in.delay-5 {
  animation-delay: 1s;
}
.responsibility-acceptance .slide-in.delay-6 {
  animation-delay: 1.2s;
}

/* Responsive */
@media (max-width: 768px) {
  .responsibility-acceptance .container {
    flex-direction: column;
  }

  .responsibility-acceptance .card {
    min-width: 100%;
  }
}

/* students orientation */

.student-orientation {
  padding: 80px 20px;
  background: whitesmoke;
  color: var(--primary1);
  text-align: center;
  overflow: hidden;
}

.student-orientation .section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  animation: fadeInUp 1s ease-in-out;
  color: var(--secondary2);
}

.student-orientation .section-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.8;
  animation: fadeInUp 1.2s ease-in-out;
}

.orientation-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  padding: 20px;
  animation: fadeIn 1.5s ease-in-out;
}

.orientation-content2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  padding: 20px;
  animation: fadeIn 1.5s ease-in-out;
}

.orientation-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
}

.orientation-box:hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

.orientation-box .icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: var(--secondary2);
  animation: bounce 1.5s infinite;
}

.orientation-box h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.orientation-box p {
  font-size: 16px;
  opacity: 0.9;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .student-orientation {
    padding: 60px 10px;
  }

  .orientation-content {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/*********************************************************************************************************************

registration process

******************************************************************************************************************/

.reg-process {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 50px 20px;
}

.reg-process .section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary1);
}

.reg-process .section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

/* Registration Requirements */
.reg-process .reg-requirements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.reg-process .requirement-card {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.reg-process .requirement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.reg-process .requirement-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

.reg-process .requirement-card:hover::after {
  transform: scaleX(1);
}

.reg-process .requirement-card i {
  font-size: 2rem;
  color: var(--secondary1);
  margin-bottom: 10px;
}

/* CTA Button */
.reg-process .cta-btn {
  display: inline-block;
  background: var(--primary1);
  color: var(--white);
  padding: 12px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.3s ease-in-out;
}

.reg-process .cta-btn:hover {
  background: var(--secondary1);
  color: var(--primary1);
}

/* TABE Score Table */
.reg-process .tabe-table {
  width: 100%;
  max-width: 600px;
  margin: auto;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.reg-process .tabe-table table {
  width: 100%;
  border-collapse: collapse;
}

.reg-process.tabe-table th,
.reg-process .tabe-table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.reg-process .tabe-table th {
  background: var(--primary1);
  color: var(--white);
  font-size: 1.2rem;
}

.reg-process .tabe-table tr:nth-child(even) {
  background: var(--gray);
}

.reg-process .highlight {
  background: var(--secondary1);
  color: var(--primary1);
  font-weight: bold;
}

@media (max-width: 768px) {
  .reg-process .reg-requirements {
    grid-template-columns: 1fr;
  }
}

/************************************************************************************************



                                        TUITION FEES 



**********************************************************************************************************/

.fees-section {
  text-align: center;
  padding: 80px 0;
}

.fees-section .section-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary1);
  text-transform: uppercase;
}

.fees-section .section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 50px;
}

.fees-section .fees-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
  max-width: 1000px;
  margin: auto;
}

.fees-section .fee-card {
  background: var(--primary1);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out,
    background 0.4s ease-in-out, color 0.4s ease-in-out;
  text-align: center;
  color: white;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  min-height: 180px;
  width: 100%;
}

.fees-section .fee-card h4 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffd700; /* Yellow */
}

.fees-section .fee-card p {
  font-size: 1rem;
  color: #f1f1f1;
}

.fees-section .fee-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ffd700;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

.fees-section .fee-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background: white;
  color: var(--primary1);
}

.fees-section .fee-card:hover h4 {
  color: var(--primary1);
}

.fees-section .fee-card:hover p {
  color: #555;
}

.fees-section .fee-card:hover::after {
  transform: scaleX(1);
}

/* Responsive */
@media (max-width: 768px) {
  .fees-section .fees-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/**************************************************************************************




CONTACT US PAGE




********************************************************************************************/

.containerc {
  margin: auto;
  padding: 20px;
}

.contact-box {
  background: white;
  padding: 30px;
  border-radius: 10px;

  text-align: center;
}

.contact-box h2 {
  color: var(--primary1);
}

.form-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.input-group {
  flex: 1 1 calc(50% - 20px); /* Each takes 50% width with spacing */
  min-width: 300px; /* Prevents them from getting too small */
  text-align: left;
  margin-bottom: 20px;
}

.input-group label {
  font-weight: bold;
  display: block;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid var(--primary1);
  border-radius: 5px;
  font-size: 1rem;
}

.submit-btn {
  background: var(--primary1);
  color: white;
  padding: 12px 40px;
  font-size: 1.2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  min-width: 300px;
  box-shadow: 0 0 1px 1px #ccc;
}

.submit-btn:hover {
  background: var(--secondary1);
  /* color: black; */
}

/* continueing education section */

.continuing-education {
  padding: 60px 20px;
  background: #f8f9fa;
  text-align: center;
}

.continuing-education .section-title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.continuing-education .section-title span {
  color: var(--secondary2);
}

.continuing-education .section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.continuing-education .seminars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.continuing-education .seminar-item {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

.continuing-education .seminar-item:hover {
  transform: translateY(-5px);
}

.continuing-education .seminar-item i {
  font-size: 40px;
  color: var(--secondary2);
  margin-bottom: 10px;
}

.continuing-education .seminar-item h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.continuing-education .seminar-item p {
  font-size: 16px;
  color: #666;
}

/***********************************************************************************************

Adminssion requirments 

**************************************************************************************************/

.graduation-requirements {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease-in-out;
}

.graduation-requirements .container {
  max-width: 1100px;
  margin: 0 auto;
}

.graduation-requirements .section-title {
  font-size: 2.5rem;
  color: var(--primary1);
  margin-bottom: 20px;
  text-align: center;
  animation: slideUp 1s ease-in-out;
}

.graduation-requirements .content {
  margin-top: 30px;
}

.graduation-requirements .requirements,
.graduation-requirements .certification,
.graduation-requirements .completion {
  margin-bottom: 30px;
}

.graduation-requirements h2 {
  font-size: 1.5rem;
  color: var(--primary1);
  border-bottom: 3px solid var(--secondary2);
  padding-bottom: 5px;
  margin-bottom: 10px;
  animation: fadeInUp 1s ease-in-out;
}

.graduation-requirements ul {
  list-style: none;
  padding-left: 20px;
}

.graduation-requirements ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.6;
  animation: fadeInUp 1s ease-in-out;
}

.graduation-requirements ul li i {
  color: var(--secondary2);
}

.graduation-requirements ul li:nth-child(odd) {
  animation-delay: 0.5s;
}

.graduation-requirements ul li:nth-child(even) {
  animation-delay: 1s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*************************************************************************************************


Student services 


******************************************************************************************************/

/* --------------------- GUIDANCE SERVICES --------------------- */
.guidance-services {
  background-color: var(--white);
  padding: 40px;

  animation: fadeIn 1s ease-in-out;
}

.guidance-services .section-title {
  font-size: 2.5rem;
  color: var(--primary1);
  margin-bottom: 20px;
  text-align: center;
  animation: slideUp 1s ease-in-out;
}

.guidance-services .intro {
  font-size: 1.1rem;
  color: var(--black);
  text-align: center;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-in-out;
}

.guidance-services .service {
  margin-bottom: 40px;
}

.guidance-services .service h2 {
  font-size: 1.8rem;
  color: var(--primary1);
  border-bottom: 3px solid var(--secondary2);
  padding-bottom: 5px;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease-in-out;
}

.guidance-services ul {
  list-style: none;
  padding-left: 20px;
}

.guidance-services ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.6;
  animation: fadeInUp 1s ease-in-out;
}

.guidance-services ul li:nth-child(odd) {
  animation-delay: 0.5s;
}

.guidance-services ul li:nth-child(even) {
  animation-delay: 1s;
}

/* --------------------- COOPERATIVE EDUCATION --------------------- */
.cooperative-education {
  background-color: var(--white);
  padding: 40px;

  animation: fadeIn 1s ease-in-out;
}

.cooperative-education .section-title {
  font-size: 2.5rem;
  color: var(--primary1);
  margin-bottom: 20px;
  text-align: center;
  animation: slideUp 1s ease-in-out;
}

.cooperative-education .intro {
  font-size: 1.1rem;
  color: var(--black);
  text-align: center;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-in-out;
}

.cooperative-education .service h2 {
  font-size: 1.8rem;
  color: var(--primary1);
  border-bottom: 3px solid var(--secondary2);
  padding-bottom: 5px;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease-in-out;
}

/* --------------------- JOB PLACEMENT ASSISTANCE --------------------- */
.job-placement-assistance {
  background-color: var(--white);
  padding: 40px;

  animation: fadeIn 1s ease-in-out;
}

.job-placement-assistance .section-title {
  font-size: 2.5rem;
  color: var(--primary1);
  margin-bottom: 20px;
  text-align: center;
  animation: slideUp 1s ease-in-out;
}

.job-placement-assistance .intro {
  font-size: 1.1rem;
  color: var(--black);
  text-align: center;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-in-out;
}

.job-placement-assistance .service h2 {
  font-size: 1.8rem;
  color: var(--primary1);
  border-bottom: 3px solid var(--secondary2);
  padding-bottom: 5px;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease-in-out;
}

.job-placement-assistance ul {
  list-style: none;
  padding-left: 20px;
}

.job-placement-assistance ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.6;
  animation: fadeInUp 1s ease-in-out;
}

.job-placement-assistance ul li:nth-child(odd) {
  animation-delay: 0.5s;
}

.job-placement-assistance ul li:nth-child(even) {
  animation-delay: 1s;
}

.fas.fa-check {
  color: var(--secondary2);
  margin-right: 10px;
  font-size: 1.2rem;
}

/************************************************************************************************************************




ACADEMIC CALENDER 



************************************************************************************************************************/

/* General Styles */
/* body {
    font-family: 'Poppins', sans-serif;
    background: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
} */

/* Container with flex and wrap */
/* Base styling for all image-divs */
.treasure.facilities .image-div {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  margin-bottom: 15px;
}

/* Unique backgrounds */
.classroom-img {
  background-image: url("../img/Dr-and-Mrs-Abana.jpg");
}

.science-lab-img {
  background-image: url("../img/Dr-and-Mrs-Abana.jpg");
}

.ict-lab-img {
  background-image: url("../img/Dr-and-Mrs-Abana.jpg");
}

/* Section Styling */

/* Headers */
.hours-of-operation h2,
.start-dates h2,
.individual-schedules h2,
.program-end h2,
.holidays-observed h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary1);

  margin: 3rem auto;
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeInUp 1s forwards 0.3s;
}

/* Hours of Operation */
.hours-info {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.hours-item {
  flex: 1;
  min-width: 300px;
  background: #e3f2fd;
  padding: 5px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-20px);
  animation: slideUp 1s forwards 0.8s;
  border-bottom: 2px solid var(--secondary2);
}

/* Individual Class Schedules */
.schedule-list {
  list-style: none;
  padding: 0;
}

.schedule-list li {
  font-size: 1.2rem;
  padding: 10px;
  background: #f1f1f1;
  margin-bottom: 10px;
  border-left: 5px solid var(--primary1);
  transform: translateX(-50px);
  animation: slideIn 1s forwards 1s;
}

.checkmark {
  color: green;
  font-weight: bold;
}

/* Table Styling */
.holiday-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.holiday-table th,
.holiday-table td {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

.holiday-table th {
  background: #0056b3;
  color: #fff;
}

/* PDF Buttons */
.pdf-section {
  text-align: center;
  padding: 40px 0;
}

.pdf-btn {
  display: inline-block;
  background: #0056b3;
  color: #fff;
  padding: 15px 25px;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
  transition: background 0.3s, transform 0.2s;
  margin: 10px;
}

.pdf-btn:hover {
  background: var(--secondary2);
  color: black;
  transform: scale(1.05);
}

/****************************************************************************************************************************



COURSES UNDER PROGRAMS




*****************************************************************************************************************************/

/* General Styles for Course Details Page */

/* Course Introduction */
.course-details .course-intro .container {
  padding: 40px 0;
}

.course-details .course-intro .text-content {
  padding: 20px;
  color: #555;
}

.course-details .course-intro .text-content h2 {
  font-size: 2rem;
  color: var(--primary1);
  margin-bottom: 15px;
}

.course-details .course-intro .text-content p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.course-details .course-intro .course-image {
  /* background image incerted in html */
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  background-repeat: no-repeat;
}

/* Fallback for invalid path */
.course-details .course-intro .course-image {
  background-color: #f4f4f4; /* Fallback color */
}

.course-details .course-details .course-intro .row {
  display: flex;
  align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .course-details .course-intro .row {
    flex-direction: column;
    text-align: center;
  }

  .course-details .course-intro .course-image {
    height: 300px; /* Adjust height as needed for smaller screens */
  }
}

/* Program Objectives */
.course-details .program-objectives {
  background: #e3f2fd;
  padding: 40px 5%;
  text-align: center;
}

.course-details .program-objectives h2 {
  color: var(--primary1);
  font-size: 2rem;
  margin-bottom: 20px;
}

.course-details .program-objectives ul {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: auto;
  text-align: left;
}

.course-details .program-objectives li {
  font-size: 1.2rem;
  padding: 10px 0;
  color: #333;
  display: flex;
  align-items: center;
}

.course-details .program-objectives li i {
  color: var(--secondary2);
  margin-right: 10px;
  font-size: 1.3rem;
}

/* Program Details */
.course-details .program-details {
  background: #fff;
  padding: 50px 5%;
  text-align: center;
}

.course-details .program-details h2 {
  color: var(--primary1);
  font-size: 2rem;
  margin-bottom: 20px;
}

.course-details .details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: auto;
}

.course-details .detail-box {
  background: #f1faff;
  padding: 15px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Call to Action (CTA) Section */
.course-details .cta-section {
  background: #0056b3;
  color: white;
  text-align: center;
  padding: 40px 10%;
}

.course-details .cta-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.course-details .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.course-details .cta-btn {
  background: white;
  color: #0056b3;
  padding: 12px 20px;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
  border: 2px solid white;
}

.course-details .cta-btn:hover {
  background: #003f7f;
  color: white;
  border: 2px solid white;
}

/* Responsive Design */
@media (max-width: 900px) {
  .course-details .course-intro {
    flex-direction: column;
    text-align: center;
  }

  .course-details .course-intro img {
    width: 80%;
  }

  .course-details .text-content {
    width: 100%;
  }

  .course-details .cta-buttons {
    flex-direction: column;
  }
}

/*************************************************************************************************




LOGIN PAGE 




******************************************************************************************************/

/* Background Styling */
.login-page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #0000a3, #a6b9f7);
  overflow: hidden;
  position: relative;
  overflow-x: hidden;
  display: flex;
  place-items: center;

  padding-top: 30vh;
  padding-left: 5px;
  padding-right: 5px;
}

/* Glassmorphic Login Box */
.login-page .login-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 10px;
  width: 100%; /* Allows it to be responsive */
  max-width: 600px !important; /* Ensures it never exceeds 600px */
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1s ease-in-out;
}

.login-page h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.login-page .input-group {
  margin-bottom: 1rem;
  position: relative;
}

.login-page input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 6px;
  outline: none;
  font-size: 1rem;
}

.login-page .login-btn {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 6px;
  background: var(--primary1);
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  animation: slideIn 1s ease-in-out;
}

.login-page .login-btn:hover {
  background: var(--secondary2);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/************************************************************************************************************


Student Grievance 



****************************************************************************************************************/

.student-grievance {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  text-align: center;
  max-width: 800px;
  margin: 40px auto;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}

.student-grievance h2 {
  font-size: 28px;
  color: #1a237e;
  font-weight: 700;
  margin-bottom: 15px;
}

.student-grievance p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsibility and Externs */
.externs-container {
  /* background: linear-gradient(to bottom, #c8ccdd, #6f90fa); */
  padding: 40px;
  border-radius: 10px;
  max-width: 1200px;
  margin: 20px auto;
}
.externs-header {
  text-align: center;
  margin-bottom: 20px;
}
.externs-title {
  font-size: 24px;
  color: var(--primary1);
  font-weight: bold;
}
.externs-content {
  /* background: rgba(255, 255, 255, 0.9); */
  padding: 20px;
  border-radius: 8px;
}
.externs-list {
  list-style-type: none;
  padding: 0;
}
.externs-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.externs-item i {
  font-size: 18px; /* Adjust as needed */
  margin-right: 10px;
  color: var(--secondary2);
}

/* FOR THE SUBSCRIBE */
/* Slide-in animation */
@keyframes slideInFromBottom {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Alert positioning */
#alert-container {
  position: fixed;
  bottom: 50px; /* Adjust this value as needed */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1050; /* Ensure it's above other content */
}

/* Apply animation */
.alert.slide-in {
  animation: slideInFromBottom 0.5s ease-out;
}

/* LOADING SCREEN */
#global-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Segoe UI", sans-serif;
}

.typing-loader {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--primary1);
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.cursor {
  display: inline-block;
  width: 2px;
  background: var(--secondary1);
  animation: blink 0.7s steps(1) infinite;
  margin-left: 5px;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

/* Unique styles for the stats section */
.stats-section {
  background: linear-gradient(
    to right,
    var(--primary1),
    #9333ea,
    var(--secondary1)
  );
  padding: 4rem 0;
  color: #fff;
}

/* Target all counters within the stats-section */
.stats-section .counter {
  animation: statsCounterAnimation 1s ease-in-out forwards;
  display: inline-block;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
}

/* Add % only to counters that have data-percent */
.stats-section .counter[data-percent="true"]::after {
  content: "%";
  font-size: 1.2rem;
  position: absolute;
  top: 0;
  right: -20px;
}

/* Customize subtitle text */
.stats-section .lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Optional: icons spacing */
.stats-section i {
  margin-bottom: 0.5rem;
}

/* 
OTHERS ADDED */

.school-departments {
  background: linear-gradient(to right, #f0f4ff, #fef8ff);
}

.school-departments .section-title {
  font-size: 2.5rem;
  color: var(--primary1);
  animation: fadeUp 1s ease-in-out;
}

.dept-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 1s ease-in-out;
  min-height: 250px;
}

.dept-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.dept-card h4 {
  color: var(--primary1);
  margin-bottom: 10px;
  font-weight: bold;
}

.dept-card p {
  color: #333;
  font-size: 0.95rem;
}

.functional-dept {
  border: 1px solid #ddd;
  margin: 5px;
  border-radius: 8px;
  background: #fff;
  font-weight: 500;
  animation: fadeUp 1s ease-in-out;
}

/* FAQ SECTION */
.faq-section {
  background: linear-gradient(to right, #f8fafc, #eef2ff);
  border-top: 5px solid #6366f1;
  border-radius: 10px;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary1);
  animation: fadeUp 1s ease forwards;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in.delay-1 {
  animation-delay: 0.2s;
}
.fade-in.delay-2 {
  animation-delay: 0.4s;
}
.fade-in.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.accordion-button {
  background-color: #ffffff;
  color: #1e293b;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  color: #4338ca;
  background-color: #e0e7ff;
}

.accordion-body {
  background: #ffffff;
  border-top: 1px solid #cbd5e1;
  padding: 1rem;
}

/* 
EVENTS  */

.events-section .card-body .card-title {
  color: var(--primary1) !important;
}

/* Gallery */

.gallery-card {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-card:hover {
  transform: scale(1.02);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.gallery-card:hover .gallery-caption {
  background: rgba(0, 0, 0, 0.7);
}

.gallery-img {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-img:hover {
  transform: scale(1.05);
}

.modal-content {
  border-radius: 10px;
  overflow: hidden;
  animation: zoomIn 0.4s ease-in-out;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-prev,
.modal-next {
  background: rgba(0, 0, 0, 0.4);
  border: none;
  padding: 10px 15px;
  font-size: 1.5rem;
  color: #fff;
  z-index: 1051;
}
.modal-prev:hover,
.modal-next:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* ARTS VIDEO */

.video-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 ratio */
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-wrapper:hover {
  transform: scale(1.02);
}

/* STYLES FOR ADMIN LOGIN */

.dashboard-header {
  background-color: #343a40;
  color: #fff;
  padding: 1rem;
  margin-bottom: 2rem;
}

.card-icon {
  font-size: 1.5rem;
}

.card-img-top {
  object-fit: cover;
  height: 180px;
}

.card h6 {
  font-size: 0.95rem;
  color: #6c757d;
}

.no-news {
  margin-top: 2rem;
}

.delete-icon {
  cursor: pointer;
  color: #dc3545;
}

.date-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 2px 6px;
  font-size: 0.75rem;
  border-radius: 4px;
}

.delete-icon {
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.edit-icon {
  color: #0dcaf0;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.delete-icon:hover {
  background-color: #f8d7da;
  color: #dc3545;
  transform: scale(1.1);
}

.edit-icon:hover {
  background-color: #d1ecf1;
  color: #0dcaf0;
  transform: scale(1.1);
}

.delete-icon i {
  font-size: 1rem;
}

.edit-icon i {
  font-size: 1rem;
}
