.hero-slider .item {
  height: 100%;
  position: relative;
}

.hero-slider {
  margin: 140px 0 0;
}

.hero-slider .item img {
  width: 100%;
  object-fit: cover;
}

.hero-slider .item .cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(0 0 0 / 14%);
  display: flex;
  align-items: center;
}

.hero-slider .item .cover .slider-content {
  position: relative;
  padding: 56px;
  overflow: hidden;
  text-align: center;
}

.hero-slider .item .cover .slider-content .line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  border: 9px solid #fff;
  -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}

.hero-slider .item .cover .slider-content h2 {
  font-weight: 300;
  font-size: 35px;
  color: #fff;
}

.hero-slider .item .cover .slider-content h1 {
  font-size: 66px;
  font-weight: 600;
  margin: 5px 0 20px;
  word-spacing: 3px;
  color: #fff;
}

.hero-slider .item .cover .slider-content h4 {
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  color: #fff;
}

.hero-slider .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

.hero-slider .owl-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

.hero-slider .owl-item.active h4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}

.hero-slider .owl-item.active .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}

.hero-slider .owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}

.hero-slider .owl-nav .owl-prev span {
  font-size: 1.6875rem;
  color: #fff;
}

.hero-slider .owl-nav .owl-prev:focus {
  outline: 0;
}

.hero-slider .owl-nav .owl-prev:hover {
  background: #000 !important;
}

.hero-slider .owl-nav .owl-next {
  position: absolute;
  right: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}

.hero-slider .owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #fff;
}

.hero-slider .owl-nav .owl-next:focus {
  outline: 0;
}

.hero-slider .owl-nav .owl-next:hover {
  background: #000 !important;
}

.slider:hover .owl-prev {
  left: 0px;
  opacity: 1;
}

.slider:hover .owl-next {
  right: 0px;
  opacity: 1;
}

.slick-prev,
.slick-next {
  width: 50px;
  height: 50px;
  border: 2px solid #f0ce00;
  background: #fff;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.slick-prev:before,
.slick-next:before {
  color: #f0ce00;
  opacity: 1;
}

.slick-prev:hover,
.slick-next:hover {
  background: #f0ce00;
}

.slick-prev:hover:before,
.slick-next:hover:before {
  color: #fff;
}


@keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}

.rainbow {
  position: relative;
  z-index: 0;
  border-radius: 10px;
  overflow: hidden;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  font-weight: bold;

  &::before {
    content: '';
    position: absolute;
    z-index: -2;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background-color: #399953;
    background-repeat: no-repeat;
    background-size: 50% 50%, 50% 50%;
    background-position: 0 0, 100% 0, 100% 100%, 0 100%;
    background-image: linear-gradient(#399953, #399953), linear-gradient(#fbb300, #fbb300), linear-gradient(#d53e33, #d53e33), linear-gradient(#377af5, #377af5);
    animation: rotate 4s linear infinite;
  }

  &::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 6px;
    top: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    background: white;
    border-radius: 5px;
  }
}

.principal-section {
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

/* MAIN WRAPPER CARD */
.principal-wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
  max-width: 1300px;
  margin: auto;
  padding: 50px;
  background: linear-gradient(135deg, #f8f9ff, #ffffff);
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* ANIMATED ROYAL BORDER */
.principal-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: 25px;
  background: linear-gradient(270deg,
      #b8860b,
      #ffd700,
      #1e4db7,
      #ffd700,
      #b8860b);
  background-size: 400% 400%;
  animation: borderGlow 6s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* BORDER ANIMATION */
@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 400% 50%;
  }
}

.principal-content {
  flex: 1;
  color: #222;
  animation: fadeSlideLeft 1s ease forwards;
}

.principal-content h3 {
  font-size: 18px;
  margin: 25px 0 0;
}

.section-heading::after {
  background: #ffd700;
}

.principal-name span {
  color: #b8860b;
}

.closing-line {
  color: #1e4db7;
  margin-bottom: 0;
}

.executive-section {
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

/* MAIN CARD */
.executive-wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
  max-width: 1300px;
  margin: auto;
  padding: 50px;
  background: linear-gradient(135deg, #f9faff, #ffffff);
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* ROYAL BORDER ANIMATION */
.executive-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: 25px;
  background: linear-gradient(270deg,
      #1e4db7,
      #ffd700,
      #b8860b,
      #ffd700,
      #1e4db7);
  background-size: 400% 400%;
  animation: borderGlow 6s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* CONTENT */
.executive-content {
  flex: 1;
  color: #222;
  animation: fadeUp 1s ease forwards;
}

.section-heading {
  font-size: 36px;
  color: #1e4db7;
  margin-bottom: 18px;
}

.section-heading::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #ffd700;
  display: block;
  margin-top: 8px;
}

.executive-names {
  font-size: 18px;
  font-weight: 600;
  color: #b8860b;
  margin-bottom: 6px;
}

.executive-designation {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
}

.executive-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.closing-line {
  font-weight: 600;
  color: #1e4db7;
  margin-top: 20px;
}

/* IMAGE */
.executive-image {
  flex: 0 0 360px;
  animation: fadeUp 1.2s ease forwards;
}

.executive-image img {
  width: 100%;
  border-radius: 18px;
  border: 6px solid #1e4db7;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* IMAGE HOVER */
.executive-image:hover img {
  transform: scale(1.05);
  box-shadow: 0 30px 60px rgba(30, 77, 183, 0.35);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 400% 50%;
  }
}

/* Wrapper with fade-in animation */
.royal-wrapper {
  max-width: 800px;
  margin: 50px auto;
  padding: 40px;
  background: rgb(13 48 53);
  border: 3px solid #d4af37;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(217, 216, 213, 0.7);
  animation: fadeIn 2s ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect on wrapper */
.royal-wrapper:hover {
  transform: scale(1.02);
}

.royal-title {
  text-align: center;
  font-size: 2.5em;
  color: #d4af37;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: slideDown 1.5s ease;
}

.gold-divider {
  width: 100px;
  height: 3px;
  background: #d4af37;
  margin: 0 auto 30px auto;
  animation: glowLine 3s infinite alternate;
}

.royal-details {
  font-size: 1.2em;
  line-height: 1.8;
  text-align: center;
  color: #fff;
}

.royal-details a {
  color: #f5e6c4;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Hover glow effect on links */
.royal-details a:hover {
  color: #d4af37;
  text-shadow: 0 0 10px #d4af37;
}

.royal-footer {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: #cbb67c;
  animation: fadeInUp 2s ease;
}

/* Keyframes for animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowLine {
  from {
    box-shadow: 0 0 5px #d4af37;
  }

  to {
    box-shadow: 0 0 20px #d4af37;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.royal-phone {
  color: #f5e6c4;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}

.royal-phone:hover {
  color: #d4af37;
  text-shadow: 0 0 10px #d4af37;
  transform: scale(1.05);
}

.chairman-section {
  max-width: 1300px;
  margin: 50px auto;
  padding: 40px;
  background: rgb(13 48 53);
  border: 3px solid #d4af37;
  border-radius: 15px;
  animation: fadeIn 2s ease-in-out;
}

.chairman-photo {
  display: block;
  margin: 0 auto 20px auto;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.chairman-title {
  text-align: center;
  font-size: 2em;
  color: #d4af37;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: slideDown 1.5s ease;
}

.chairman-name {
  text-align: center;
  font-size: 1.3em;
  font-style: italic;
  margin-bottom: 30px;
  color: #cbb67c;
}

.chairman-message {
  font-size: 16px;
  line-height: 29px;
  text-align: justify;
  animation: fadeInUp 2s ease;
  color: #fff;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 3px solid #d4af37;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
  animation: fadeIn 2s ease-in-out;
}

.message-title {
  font-size: 2em;
  color: #d4af37;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: slideDown 1.5s ease;
}

.message-name {
  font-size: 1.3em;
  font-style: italic;
  margin-bottom: 20px;
  color: #cbb67c;
}

.message-text {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: justify;
  animation: fadeInUp 2s ease;
}

.message-photo {
  width: 100%;
  max-width: 280px;
  border-radius: 50%;
  border: 3px solid #d4af37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.message-photo:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 0 40px rgba(212, 175, 55, 1);
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* RESPONSIVE */
@media (max-width: 900px) {
  .executive-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .executive-image {
    max-width: 300px;
  }

  .section-heading::after {
    margin-left: auto;
    margin-right: auto;
  }
}



.message-section {
  max-width: 1300px;
  margin: 50px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 3px solid #d4af37;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
  animation: fadeIn 2s ease-in-out;
}

.message-title {
  font-size: 2em;
  color: #d4af37;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: slideDown 1.5s ease;
}

.message-name {
  font-size: 1.3em;
  font-style: italic;
  margin-bottom: 20px;
  color: #cbb67c;
}

.message-text {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: justify;
  animation: fadeInUp 2s ease;
}

.message-photo {
  width: 100%;
  max-width: 280px;
  border-radius: 50%;
  border: 3px solid #d4af37;
  box-shadow: 0 0 50px rgba(227, 227, 226, 0.7);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.message-photo:hover {
  transform: scale(0.08) rotate(1deg);
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.leader-message {
  max-width: 1300px;
  margin: 50px auto;
  padding: 40px;
  background: rgb(13 48 53);
  border: 3px solid #d4af37;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
  animation: fadeIn 2s ease-in-out;
}

.leader-heading {
  font-size: 2em;
  color: #d4af37;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: slideDown 1.5s ease;
}

.leader-signature {
  font-size: 1.3em;
  font-style: italic;
  margin-bottom: 20px;
  color: #cbb67c;
}

.leader-content {
  font-size: 16px;
  line-height: 28px;
  text-align: justify;
  animation: fadeInUp 2s ease;
  color: #fff;
}

.leader-photo {
  width: 100%;
  max-width: 280px;
  border-radius: 50%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.leader-heading {
  font-size: 2em;
  color: #d4af37;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: slideDown 1.5s ease;
}

.leader-signature {
  font-size: 1.3em;
  font-style: italic;
  margin-bottom: 20px;
  color: #cbb67c;
}

.leader-content {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: justify;
  animation: fadeInUp 2s ease;
}

.leader-photo {
  width: 100%;
  max-width: 280px;
  border-radius: 50%;
  border: 3px solid #d4af37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.committee-section {
  max-width: 1320px;
  margin: 50px auto;
  padding: 40px;
  background: rgb(14 49 43);
  border: 3px solid #d4af37;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
}


.committee-heading {
  font-size: 2em;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-align: center;
}

.committee-block {
  margin-bottom: 50px;
}

.committee-title {
  font-size: 1.4em;
  color: #cbb67c;
  margin-bottom: 15px;
}

.committee-content {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: justify;
  color: #ffffff;
}

.committee-photo {
  width: 100%;
  max-width: 220px;
  border-radius: 10px;
  border: 2px solid #d4af37;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 10px;
}

.committee-photo:hover {
  transform: scale(1.00);
  box-shadow: 0 0 10px rgb(253, 253, 252);
}

ul.committee-list {
  margin-top: 10px;
}

ul.committee-list li {
  margin-bottom: 8px;
  color: #ffffff;
  transition: color 0.3s ease, transform 0.3s ease;
}

ul.committee-list li:hover {
  color: #d4af37;
  transform: translateX(5px);
}

.admission-section {
  max-width: 1320px;
  margin: 50px auto;
  padding: 40px;
  background-color: rgb(14 49 43);
  background-image: url(../img/bg/main-bg2.png);
  background-size: 300px;
  border: 3px solid #d4af37;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
}

.admission-heading {
  font-size: 2em;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-align: center;
}

.admission-section .row.align-items-center {
  margin-top: 25px;
}

.admission-subheading {
  font-size: 25px;
  line-height: 35px;
  color: #f9d061;
  margin-top: 10px;
  margin-bottom: 25px;
}

.admission-subheading p {
  color: #ffffff;
}

.admission-section p {
  color: #ffffff;
}

.admission-content {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: justify;
  color: #ffffff;
}

ul.admission-list {
  margin-top: 10px;
}

ul.admission-list li {
  margin-bottom: 8px;
  transition: color 0.3s ease, transform 0.3s ease;
  color: #ffffff;
}

ul.admission-list li:hover {
  color: #d4af37;
  transform: translateX(5px);
}

.highlight-box {
  background: #ededed;
  border-left: 4px solid #d4af37;
  padding: 15px;
  margin: 15px 0;
  border-radius: 8px;
}

.bba-container {
  max-width: 1320px;
  margin: 50px auto;
  padding: 40px;
  background-color: rgb(13 48 53);
  background-image: url(../img/bg/bg1.png);
  border: 3px solid #d4af37;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
}

.bba-title {
  font-size: 2em;
  color: #d4af37;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.bba-subtitle {
  text-align: center;
  font-size: 1.2em;
  color: #cbb67c;
  margin-bottom: 30px;
}

.bba-block {
  margin-bottom: 50px;
}

.bba-heading {
  font-size: 1.5em;
  color: #cbb67c;
  margin-bottom: 15px;
  border-left: 4px solid #d4af37;
  padding-left: 10px;
}

.bba-block p {
  color: #ffffff;
}

.bba-content {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: justify;
  color: #ffffff;
}

.bba-list {
  list-style: none;
  padding-left: 0;
}

.bba-list li {
  margin-bottom: 10px;
  padding: 8px 12px;
  background: #ffffff;
  border-radius: 6px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.bba-list li:hover {
  transform: translateX(5px);
  color: #d4af37;
}

.bba-photo {
  width: 100%;
  max-width: 250px;
  border-radius: 10px;
  border: 2px solid #d4af37;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bba-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(212, 175, 55, 1);
}

.bcom-container {
  background-color: rgb(13 48 53);
  background-image: url(../img/bg/main-bg2.png);
  background-size: 200px;
  max-width: 1300px;
  margin: 50px auto;
  padding: 25px 0;
  border: 3px solid #d4af37;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
}

.bcom-container p {
  color: #ffffff;
}

.bcom-title {
  font-size: 2em;
  color: #d4af37;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.bcom-subtitle {
  text-align: center;
  font-size: 1.2em;
  color: #cbb67c;
  margin-bottom: 30px;
}

.bcom-block {
  margin-bottom: 50px;
}

.bcom-heading {
  font-size: 1.5em;
  color: #cbb67c;
  margin-bottom: 15px;
  border-left: 4px solid #d4af37;
  padding-left: 10px;
}

.bcom-content {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: justify;
}

.bcom-list {
  list-style: none;
  padding-left: 0;
}

.bcom-list li {
  margin-bottom: 10px;
  padding: 8px 12px;
  background: rgb(255, 255, 255);
  border-radius: 6px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.bcom-list li:hover {
  transform: translateX(5px);
  color: #d4af37;
}

.bcom-photo {
  width: 100%;
  max-width: 250px;
  border-radius: 10px;
  border: 2px solid #d4af37;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bcom-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(212, 175, 55, 1);
}

.bsc-container {
  background-color: rgb(13 48 53);
  background-image: url(../img/bg/main-bg2.png);
  background-size: 200px;
  max-width: 1320px;
  margin: 50px auto;
  padding: 40px;
  border: 3px solid #d4af37;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
}

.bsc-container p {
  color: #ffffff;
}

.bsc-title {
  font-size: 2em;
  color: #d4af37;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.bsc-subtitle {
  text-align: center;
  font-size: 1.2em;
  color: #cbb67c;
  margin-bottom: 30px;
}

.bsc-block {
  margin-bottom: 50px;
}

.bsc-heading {
  font-size: 1.5em;
  color: #cbb67c;
  margin-bottom: 15px;
  border-left: 4px solid #d4af37;
  padding-left: 10px;
}

.bsc-content {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: justify;
}

.bsc-list {
  list-style: none;
  padding-left: 0;
}

.bsc-list li {
  margin-bottom: 10px;
  padding: 8px 12px;
  background: #ffffff;
  border-radius: 6px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.bsc-list li:hover {
  transform: translateX(5px);
  color: #d4af37;
}

.bsc-photo {
  width: 100%;
  max-width: 250px;
  border-radius: 10px;
  border: 2px solid #d4af37;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bsc-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(212, 175, 55, 1);
}

.bcomcs-container {
  background-color: rgb(13 48 53);
  background-image: url(../img/bg/main-bg2.png);
  background-size: 200px;
  max-width: 1320px;
  margin: 50px auto;
  padding: 40px;
  border: 3px solid #d4af37;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
}

.bcomcs-title {
  font-size: 2em;
  color: #d4af37;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.bcomcs-subtitle {
  text-align: center;
  font-size: 1.2em;
  color: #cbb67c;
  margin-bottom: 30px;
}

.bcomcs-block {
  margin-bottom: 50px;
}

.bcomcs-heading {
  font-size: 1.5em;
  color: #cbb67c;
  margin-bottom: 15px;
  border-left: 4px solid #d4af37;
  padding-left: 10px;
}

.bcomcs-content {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: justify;
  color: #ffffff;
}

.bcomcs-container p {
  color: #ffffff;
}

.bcomcs-list {
  list-style: none;
  padding-left: 0;
}

.bcomcs-list li {
  margin-bottom: 10px;
  padding: 8px 12px;
  background: rgb(255, 255, 255);
  border-radius: 6px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.bcomcs-list li:hover {
  transform: translateX(5px);
  color: #d4af37;
}

.bcomcs-photo {
  width: 100%;
  max-width: 250px;
  border-radius: 10px;
  border: 2px solid #d4af37;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bcomcs-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(212, 175, 55, 1);
}

.bcomaf-container {
  background-color: rgb(13 48 53);
  background-image: url(../img/bg/main-bg2.png);
  background-size: 200px;
  max-width: 1320px;
  margin: 50px auto;
  padding: 40px;
  border: 3px solid #d4af37;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
}
.bcomaf-container p {
color: #ffffff;
}

.bcomaf-title {
  font-size: 2em;
  color: #d4af37;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.bcomaf-subtitle {
  text-align: center;
  font-size: 1.2em;
  color: #cbb67c;
  margin-bottom: 30px;
}

.bcomaf-block {
  margin-bottom: 50px;
}

.bcomaf-heading {
  font-size: 1.5em;
  color: #cbb67c;
  margin-bottom: 15px;
  border-left: 4px solid #d4af37;
  padding-left: 10px;
}

.bcomaf-content {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: justify;
}

.bcomaf-list {
  list-style: none;
  padding-left: 0;
}

.bcomaf-list li {
  margin-bottom: 10px;
  padding: 8px 12px;
  background: rgb(255, 255, 255);
  border-radius: 6px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.bcomaf-list li:hover {
  transform: translateX(5px);
  color: #d4af37;
}

.bcomaf-photo {
  width: 100%;
  max-width: 250px;
  border-radius: 10px;
  border: 2px solid #d4af37;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bcomaf-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(212, 175, 55, 1);
}
.application-area {
    position: relative;
    background-color: #f6f6f6;
}
.campus_life .col-lg-4, .campus_life .col-lg-6 {
    margin-top: 30px;
}
.single-application-card .content h3 span {
    margin-right: 4px;
    color: #e4ba3b;
}
.single-application-card .content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1d5951;
}
.single-programs-card {
  background-color: #ffffff; /* light background */
  border-radius: 14px;
  padding: 30px;
  margin-top: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.newsletter-form {
    padding: 50px;
    margin-bottom: 25px;
    background-color: #ffe082;
}
.newsletter-content .title {
    margin-bottom: 35px;
}
.newsletter-content ul li {
    color: #000;
    padding-bottom: 12px;
    font-size: 16px;
}
.program-details-left-sidebar .biochemistry .program-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}
.single-pages-widget.tags ul li a.default-btn {
    color: #12443d !important;
    font-weight: 500;
    background-color: #ffe082;
}
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
}
.tag {
    background: linear-gradient(135deg, #ffe082, #d8b64c);
    color: #000000;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 400;
}
.box-white {
    background: #fff;
    padding: 40px;
    border-radius: 0;
    margin-bottom: 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
}
.section-header h2 {
    font-size: 30px;
}
.section-header h3 {
    font-size: 30px;
}
.program-details-left-sidebar .biochemistry .program-card {
    margin-bottom: 25px;
}
.program-details-left-sidebar .biochemistry .program-card.box_highlight.option_two {
    background: #f1eeff;
}
.program-details-left-sidebar .biochemistry p {
    font-size: 16px;
    text-align: justify;
}
.program-details-left-sidebar h2 {
    color: #fec624;
    font-size: 26px;
}
.program-details-left-sidebar h5 {
    color: #15363b;
    font-size: 22px;
}
.programme-item p {
    color: #15363b;
    font-size: 26px;
}
.programme-item li {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 0;
}
.program-details-left-sidebar img {
    margin-bottom: 15px;
    height: 390px;
    object-fit: cover;
}
/* HOVER EFFECT */
.single-programs-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}
.single-programs-card .content h3 {
    font-size: 20px;
    margin: 20px 0 0px;
    font-weight: 700;
    color: #1d5951;
    text-align: center;
}
.single-pages-widget.tags.style-2 ul li a:hover {
    background-color: #ffe082;
    color: #000;
}
.single-pages-widget.tags ul li {
    margin-right: 10px;
    margin-bottom: 10px;
}
.single-pages-widget.tags ul li a:hover {
    color: #ffffff;
    background-color: #000000;
}
.single-pages-widget.tags ul li a {
    font-size: 16px;
    padding: 12px 13px;
    color: #000000;
    background-color: #f6f6f6;
    width: 100%;
    display: block;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.program-details-right-sidebar {
    margin-left: 0;
    position: sticky;
    top: 140px;
}
.single-pages-widget:last-child {
    margin-bottom: 0;
    display: block;
}
.single-pages-widget.tags ul  {
    margin-right: 0;
}
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
}
.programmes-section {
    margin: 15px 0;
    max-width: 100%;
}

.programmes-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.programmes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.programme-item {
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 6px;
  font-size: 16px;
  display: block;
  gap: 8px;
  font-family: Arial, sans-serif;
}

/* Distinct look for each course */
.programme-item.general {
  background: #fff3e0;
  color: #e65100;
}

.programme-item.af {
  color: #2e7d32;
}

.programme-item.cs {
  color: #0277bd;
}

.degree {
  font-weight: bold;
}

.course {
  opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 767.98px) {

  .hero-slider .item .cover .slider-content h1 {
    font-size: 26px;
  }

  .hero-slider .item .cover .slider-content h4 {
    font-size: 16px;
    line-height: 23px;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width:575.98px) {

  .hero-slider .item .cover .slider-content h1 {
    font-size: 24px;
  }

  .hero-slider .item .cover .slider-content h4 {
    font-size: 15px;
    line-height: 20px;
  }

  .listing-header__logo-style2 img {
    width: 220px;
  }
}