* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-family: "Roboto", sans-serif;

}

body {
  font-family: "Roboto", sans-serif;
  background: linear-gradient(
    135deg,
    rgba(244, 247, 249, 0.98),
    rgba(233, 241, 244, 0.98)
  );
  background-size: contain;
  background-repeat: repeat;
  
}

a {
  text-decoration: none !important;
}

/* ================= NAV TOP ================= */
.nav-top {
  background: #2d4063;
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 1001;
}

.nav-top::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(180deg, #2d4063 0%, rgba(45, 64, 99, 0.3) 100%);
}

.nav-top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.nav-top-left p {
  margin: 0;
  font-weight: 400;
}

.nav-top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.at-back {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.at-back i {
  font-size: 12px;
}

.help-desk:hover {
  opacity: 0.8;
  color: #fff;
}

.admission-btn {
  background: #fff;
  color: #2d4063;
  padding: 6px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.admission-btn:hover {
  background: #eaeaea;
  color: #2d4063;
}

/* ================= HEADER ================= */
.header-section {
  position: absolute;
  top: 42px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
}

.header-section.scrolled {
  position: fixed;
  top: 0;
  background-color: #212529;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.header-section.scrolled img {
  width: 100px;
}

.header-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: -42px;
  width: 100%;
  height: calc(100% + 42px);
  background: linear-gradient(
    to bottom,
    rgba(45, 64, 99, 1) 0%,
    rgba(45, 64, 99, 0.85) 30%,
    rgba(45, 64, 99, 0.5) 70%,
    rgba(45, 64, 99, 0) 100%
  );
  z-index: -1;
  pointer-events: none;
}

.navbar {
  padding: 20px 0 !important;
}

.logo-section img {
  width: 60px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo-title {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #fff;

  line-height: 1.1;
}

/* ================= NAVBAR LINKS ================= */
.navbar .nav-link {
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 13px;
  color: #ffffff !important;
  padding: 10px 10px !important;
}

.navbar .nav-link:hover {
  color: #fff !important;
}

.navbar .dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border: 1px solid #e4e6ef;
  border-radius: 12px;
  min-width: 240px;
  padding: 8px 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
  margin-top: 0;
}

.navbar .dropdown-item {
  color: #2d4063 !important;
  font-weight: 500;
  padding: 8px 20px !important;
  font-size: 13px;
  transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
  background-color: #eaf2fb !important;
  color: #4a3b12 !important;
}

@media screen and (min-width: 992px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
}

.offcanvas-header {
  background-color: #2d4063;
}

.offcanvas-header img {
  max-height: 40px;
  filter: brightness(0) invert(1);
}

.offcanvas-header .btn-close {
  filter: brightness(0) invert(1);
}

/* ================= BANNER + OWL CAROUSEL ================= */
.banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: none !important;
  padding: 0;
  margin-top: 0;
}

.banner-carousel,
.banner-carousel .owl-stage-outer,
.banner-carousel .owl-stage,
.banner-carousel .owl-item,
.banner-slide {
  height: 100vh;
}

.banner-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center 90%;
  background-repeat: no-repeat;
}

.slide-1 {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.65)),
    url("../images/home/banners/slider-1.webp");
}

.slide-2 {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.65)),
    url("../images/home/banners/slider-2.webp");
}

.slide-3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.65)),
    url("../images/home/banners/slider-3.webp");
}

.slide-4 {
  background-image: url("../images/home/banners/banner-3.webp");
}

.banner-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.banner-content {
  color: #ffffff;
  max-width: 678px;
  padding-top: 150px;
}

.banner-content h5 {
  font-size: 20px;
  letter-spacing: 3px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
  animation: fadeSlide 0.8s ease forwards;
}

.banner-content h1 {
  font-size: 33px;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 30px;
  line-height: 1.18;
  letter-spacing: -0.6px;
  color: #ffff;
  animation: fadeSlide 0.9s ease forwards;
  animation-delay: 0.2s;
}

/* CTA Button */
.banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff6d00, #ff9f1c);
  border-radius: 10px;
  border: none;
  opacity: 0;
  animation: fadeSlide 0.9s ease forwards;
  animation-delay: 0.6s;
  transition: all 0.3s ease;
  box-shadow: 0 10px 28px rgba(255, 109, 0, 0.35);
}

.banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(255, 109, 0, 0.45);
  color: #ffffff;
}

.banner-section .banner-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.banner-section .primary-btn {
  background: #2d4063;
  color: #fff;
}

.banner-section .secondary-btn {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.banner-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  opacity: 0.9;
}

.banner-location i {
  color: #2d4063;
  font-size: 14px;
}

/* Animation */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-section .owl-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  justify-content: center;
  gap: 10px;
  z-index: 999;
}

.banner-section .owl-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6) !important;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.banner-section .owl-dot.active {
  background: #2d4063 !important;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .header-section {
    position: relative;
    top: 0;
    background: #ffffff;
  }

  .header-section::before {
    display: none;
  }

  .navbar-brand img {
    filter: none;
  }

  .nav-link {
    color: #1961ad !important;
  }

  .dropdown-menu {
    opacity: 1 !important;
    transform: none !important;
    box-shadow: none;
  }

  .banner-content {
    padding-top: 120px;
  }
}

@media (max-width: 576px) {
  .nav-top-right {
    flex-direction: column;
    gap: 8px;
  }

  .help-desk,
  .admission-btn {
    width: 100%;
    text-align: center;
  }

  .banner-content h1 {
    font-size: 24px;
  }
}

/* --------------------------- */
/* -------cources------------ */
/* ------------------------- */

/* Section spacing */
.hotels-places {
  padding: 80px 0;
}

/* Heading */
.kerala-all-hotels {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 50px;
}

.kerala-all-hotels h3 {
  font-size: 32px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

/* Column spacing */
.hotels-places .row {
  row-gap: 35px;
}

/* Card wrapper */
.hotel-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Image container */
.hotel-image {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 15px;
}

.hotel-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hotel-image:hover img {
  transform: scale(1.05);
}

/* Badge */
.hotel-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.9);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* Description */
.hotel-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 18px;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 65px;
}

/* Apply button */
.hotel-card a {
  margin-top: auto;
  font-size: 14px;
  font-weight: 500;
  color: #363b74; /* BRAND COLOR */
  text-decoration: none;
  position: relative;
  width: fit-content;
}

/* underline hover */
.hotel-card a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background-color: #363b74;
  transition: width 0.3s ease;
}

.hotel-card a:hover::after {
  width: 100%;
}

/* ---------------------------------------- */
/* --------------Facilities--------------- */
/* -------------------------------------- */

.facilities-ms {
  background: var(--surface-light);
}

.facilities-ms h2 {
  font-size: 32px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.facilities-ms .facilities-intro {
  max-width: 750px;
  margin: auto;
  font-size: 17px;
  line-height: 1.8;
  color: var(--content-secondary);
}

.facilities-ms .infrastructure-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--surface-base);
  border: 1px solid var(--line-subtle);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  height: 320px;
}

.facilities-ms .infrastructure-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(45, 64, 99, 0.18);
}

.facilities-ms .infrastructure-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.facilities-ms .infrastructure-card:hover img {
  transform: scale(1.08);
}

.facilities-ms .card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* TOP TITLE GRADIENT */
.facilities-ms .title-section {
  background: linear-gradient(
    to bottom,
    rgba(45, 64, 99, 0.9),
    rgba(45, 64, 99, 0.45),
    transparent
  );
  padding: 18px 20px;
}

.facilities-ms .title-section h3 {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  color: #2d4063;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid #2d4063;
  box-shadow: 0 3px 10px rgba(45, 64, 99, 0.15);
}

/* OVERLAY */
.facilities-ms .overlay {
  background: linear-gradient(
    to top,
    rgba(45, 64, 99, 0.96),
    rgba(45, 64, 99, 0.75),
    transparent
  );
  padding: 30px 22px;
  color: var(--content-inverse);
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}

.facilities-ms .infrastructure-card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.facilities-ms .overlay p {
  font-size: 0.95rem;
  color: #eef2f8;
  margin-bottom: 18px;
  line-height: 1.6;
}

.facilities-ms .overlay a {
  display: inline-block;
  background: #ffffff;
  color: #2d4063;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.facilities-ms .overlay a:hover {
  background: #2d4063;
  color: #ffffff;
}

@media (max-width: 768px) {
  .facilities-ms .infrastructure-card {
    height: 280px;
  }
}

/* ============================= */
/* Placements Section */
/* ============================= */

.p-title {
  font-size: 32px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.placements {
  padding: 60px 0;
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 30px;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.img-wish-logo {
  width: 140px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.img-wish-logo img {
  max-width: 100%;
  max-height: 55px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: 0.3s ease;
}

.img-wish-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, #edf3f6, transparent);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, #edf3f6, transparent);
}

@media (max-width: 768px) {
  .logo-track {
    gap: 30px;
    animation-duration: 22s;
  }

  .img-wish-logo {
    width: 110px;
    height: 60px;
  }

  .img-wish-logo img {
    max-height: 45px;
  }
}

/* ---------------------------------- */
/* ----------Events-activities------ */
/* -------------------------------- */
.activities {
}

.activities-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.custom-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.bg-text-activities {
  background-color: #2d4063;
  padding: 60px;
}

.title_all_secondary {
  color: #ffff;
}

.bg-text-activities p {
  color: #ffffff;
}

.overlap-left {
  margin-top: 30px;
  margin-left: -30px;
}

.overlap-left .custom-nav button {
  border: none !important;
  background-color: #2d4063 !important;
}

.overlap-left .activities-carousel .item {
  position: relative;
  overflow: hidden;
}

.overlap-left .activities-carousel .item img {
  width: 100%;
  display: block;
}

.overlap-left .activities-carousel .item-text {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
  z-index: 2;
  width: 100%;
}

.overlap-left .btn-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2d4063;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(45, 64, 99, 0.35);
}

.overlap-left .btn-nav:hover {
  background-color: #1f2f4d;
}

/* ---------------------------------- */
/* -----------Footer---------------- */
/* -------------------------------- */

.footer-pu {
  background-color: #232323;
  color: #cccccc;
  padding: 60px 0 25px;
}

.footer-pu .container {
  max-width: 1200px;
}

.footer-pu .footer-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
}

.footer-pu .footer-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #f4c430;
  margin-top: 8px;
}

.footer-pu .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-pu .footer-links li {
  margin-bottom: 10px;
}

.footer-pu .footer-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-pu .footer-links a:hover {
  color: #f4c430;
  padding-left: 4px;
}

.footer-pu .footer-address {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #bbbbbb;
}

.footer-pu .footer-contact a {
  display: block;
  font-size: 14px;
  color: #cccccc;
  text-decoration: none;
  margin-bottom: 8px;
  transition: 0.3s ease;
}

.footer-pu .footer-contact a:hover {
  color: #f4c430;
}

.footer-pu .footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 15px;
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
}

.footer-pu .footer-bottom p {
  font-size: 13px;
  color: #aaaaaa;
  margin: 0;
}

.footer-bottom a {
  font-size: 13px;
  color: #aaaaaa;
  margin: 0;
  text-decoration: none;
}

.footer-bottom .ptb {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .footer-pu {
    padding: 45px 0 20px;
  }

  .footer-pu .footer-title {
    font-size: 17px;
  }

  .footer-pu .footer-links a,
  .footer-pu .footer-address,
  .footer-pu .footer-contact a {
    font-size: 13px;
  }

  .footer-pu .footer-bottom p {
    font-size: 12px;
  }
}

/* ===============================
   Footer Institutions
================================*/
.footer-institutions {
  margin: 50px 0 35px;
  text-align: center;
}

/* Heading */
.footer-institutions h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

/* List */
.footer-institutions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Items */
.footer-institutions ul li {
  display: inline-block;
  margin: 0 15px;
  position: relative;
}

/* Links */
.footer-institutions ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

/* Hover */
.footer-institutions ul li a:hover {
  color: #d4af37;
}

/* Active Institution */
.footer-institutions ul li a.active-footer {
  color: #d4af37 !important;
  font-weight: 600;
}

/* Separator Line */
.footer-institutions ul li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -18px;
  color: #fff;
}

.map-container iframe {
  width: 100%;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
@media (max-width: 992px) {
  .map-container iframe {
    height: 350px;
  }
}
@media (max-width: 576px) {
  .map-container iframe {
    height: 300px;
    border-radius: 8px;
  }
}

/* =========================
   ABOUT PAGE 
========================= */

.about-banner {
  background:
    linear-gradient(rgba(45, 64, 99, 0.85), rgba(45, 64, 99, 0.85)),
    url("../images/aboutus/banner.webp") center/cover no-repeat;
  padding: 150px 0px 50px 0px;
  text-align: center;
  color: #fff;
}

.about-banner h1 {
  font-size: 42px;
  color: #fff;
}

.about-banner p {
  font-size: 18px;
  color: #e4e9f2;
}

.about-page h1,
.about-page h2,
.about-page h3,
.about-page h4 {
  color: #2d4063;
  font-weight: 700;
}

.about-banner-content h1 {
  color: #fff;
  font-size: 25px;
}

.about-page p {
  color: #555;
  line-height: 1.7;
}

.about-intro {
  padding: 100px 0 80px;
}

/* Page Heading */
.section-heading h1 {
  font-size: 38px;
  color: #2d4063;
  font-weight: 700;
}

.section-heading p {
  color: #6b7280;
  font-size: 18px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

.about-academics {
  background: #f5f7fb;
  padding: 80px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
  border-top: 4px solid #2d4063;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.about-development {
  padding: 80px 0;
}

.vision-box {
  background: #2d4063;
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  margin-top: 30px;
}

.vision-box h2,
.vision-box p {
  color: #fff;
}

.about-trust {
  background: #f5f7fb;
  padding: 70px 0;
}

.trust-box {
  background: #fff;
  padding: 50px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.about-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;
  background: #2d4063;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  background: #1f2e49;
}

/* --------------------------------- */
/* -----------Group-magement------- */
/* ------------------------------- */

.management-section {
  padding: 80px 0px;
  background: #f5f7fb;
}

.management-heading h2 {
  color: #2d4063;
  font-weight: 700;
  font-size: 36px;
}

.management-heading p {
  color: #6b7280;
  font-size: 17px;
}

.management-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 12px;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.management-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #2d4063;
}

.management-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.management-img {
  width: 130px;
  height: 130px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #eef1f6;
  transition: 0.4s;
}

.management-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.management-card:hover .management-img {
  border-color: #2d4063;
}

.management-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #2d4063;
  margin-bottom: 5px;
}

.management-card span {
  font-size: 14px;
  color: #6b7280;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .management-heading h2 {
    font-size: 28px;
  }

  .management-img {
    width: 110px;
    height: 110px;
  }
}

/* =========================
   ANTI RAGGING SECTION
========================= */

.anti-ragging-section {
  background: #f6f8fc;
}

.ragging-heading h2 {
  color: #2d4063;
  font-weight: 700;
  font-size: 36px;
}

.ragging-heading p {
  color: #6b7280;
}

.ragging-wrapper {
  max-width: 950px;
  margin: auto;
}

.ragging-card {
  background: #fff;
  padding: 35px;
  border-left: 6px solid #2d4063;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}

.legal-notice {
  background: #2d4063;
  color: #fff;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.legal-notice h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.legal-notice p {
  color: #e6ecf5;
}

.ragging-definition {
  background: #fff;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}

.ragging-definition h4 {
  color: #2d4063;
  margin-bottom: 20px;
}

.ragging-definition ul {
  padding-left: 20px;
}

.ragging-definition li {
  margin-bottom: 10px;
  color: #555;
}

.complaint-panel {
  background: #eef2f8;
  padding: 30px;
  border-radius: 8px;
  border: 1px dashed #2d4063;
}

.complaint-panel h5 {
  color: #2d4063;
  margin-bottom: 10px;
}

/* =========================
   PRINCIPAL SECTION
========================= */

.principal-section {
  background: #f5f7fb;
}

.principal-section .principal-heading h2 {
  color: #2d4063;
  font-size: 36px;
  font-weight: 700;
}

.principal-section .principal-heading p {
  color: #6b7280;
}

.principal-section .principal-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: start;
}

.principal-section .principal-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.principal-section .principal-content h3 {
  color: #2d4063;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.principal-section .principal-content h6 {
  font-size: 15px;
  color: #555;
  margin-bottom: 5px;
}

.principal-section .designation {
  display: inline-block;
  color: #fff;
  background: #2d4063;
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 20px;
}

.principal-section .principal-message p {
  color: #444;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: justify;
}

.principal-section .principal-closing {
  font-weight: 500;
  color: #2d4063;
}

@media (max-width: 992px) {
  .principal-section .principal-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .principal-section .principal-message p {
    text-align: left;
  }
}

/* =========================
   BA COURSE PAGE
========================= */

.ba-course-page {
  background: #f5f7fb;
}

/* Heading */

.ba-course-page .ba-heading h2 {
  color: #2d4063;
  font-size: 38px;
  font-weight: 700;
}

.ba-course-page .ba-heading p {
  color: #6b7280;
}

/* =========================
   ROW LAYOUT
========================= */

.ba-course-page .ba-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.ba-course-page .ba-row.reverse {
  direction: rtl;
}

.ba-course-page .ba-row.reverse * {
  direction: ltr;
}

/* Image */

.ba-course-page .ba-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Content */

.ba-course-page .ba-content h3 {
  color: #2d4063;
  font-weight: 700;
  margin-bottom: 15px;
}

.ba-course-page .ba-content p {
  color: #444;
  line-height: 1.8;
}

.ba-course-page .ba-content ul {
  padding-left: 18px;
}

.ba-course-page .ba-content li {
  margin-bottom: 8px;
}

/* =========================
   HIGHLIGHTS
========================= */

.ba-course-page .ba-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.ba-course-page .ba-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: #2d4063;
}

.ba-course-page .ba-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.ba-course-page .ba-card h5 {
  color: #2d4063;
}

/* =========================
   CTA
========================= */

.ba-course-page .ba-cta {
  background: #2d4063;
  color: #fff;
  padding: 45px;
  border-radius: 12px;
}

.ba-course-page .ba-apply-btn {
  display: inline-block;
  margin-top: 15px;
  background: #fff;
  color: #2d4063;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.ba-course-page .ba-apply-btn:hover {
  background: #e5e7eb;
}

.ba-course-page .ba-contact {
  margin-top: 15px;
}

.ba-course-page .ba-contact a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .ba-course-page .ba-row {
    grid-template-columns: 1fr;
  }
}

/* =========================
   BCOM COURSE PAGE
========================= */

.bcom-course-page {
  background: #f5f7fb;
}

/* Heading */

.bcom-course-page .bcom-heading h2 {
  color: #2d4063;
  font-size: 38px;
  font-weight: 700;
}

.bcom-course-page .bcom-heading p {
  color: #6b7280;
}

/* Layout */

.bcom-course-page .bcom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.bcom-course-page .bcom-row.reverse {
  direction: rtl;
}

.bcom-course-page .bcom-row.reverse * {
  direction: ltr;
}

.bcom-course-page .bcom-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.bcom-course-page .bcom-content h3 {
  color: #2d4063;
  font-weight: 700;
  margin-bottom: 15px;
}

.bcom-course-page .bcom-content p {
  color: #444;
  line-height: 1.8;
}

.bcom-course-page .bcom-content ul {
  padding-left: 18px;
}

.bcom-course-page .bcom-content li {
  margin-bottom: 8px;
}

/* Cards */

.bcom-course-page .bcom-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.bcom-course-page .bcom-card::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 4px;
  background: #2d4063;
  left: 0;
}

.bcom-course-page .bcom-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.bcom-course-page .bcom-card h5 {
  color: #2d4063;
}

/* CTA */

.bcom-course-page .bcom-cta {
  background: #2d4063;
  color: #fff;
  padding: 45px;
  border-radius: 12px;
}

.bcom-course-page .bcom-apply-btn {
  display: inline-block;
  margin-top: 15px;
  background: #fff;
  color: #2d4063;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.bcom-course-page .bcom-contact {
  margin-top: 15px;
}

.bcom-course-page .bcom-contact a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

/* Responsive */

@media (max-width: 992px) {
  .bcom-course-page .bcom-row {
    grid-template-columns: 1fr;
  }
}

/* ===== BCA COURSE PAGE ===== */

.bca-course-page {
  background: #f9fbff;
}

.bca-course-page .bca-heading h2 {
  color: #2d4063;
  font-size: 38px;
  font-weight: 700;
}

.bca-course-page .bca-heading p {
  font-size: 16px;
  color: #666;
}

.bca-course-page .bca-img-box {
  overflow: hidden;
  border-radius: 12px;
}

.bca-course-page .bca-img-box img {
  width: 100%;
  border-radius: 12px;
  transition: 0.4s ease;
}

.bca-course-page .bca-img-box:hover img {
  transform: scale(1.05);
}

/* Content */
.bca-course-page .bca-content h4 {
  color: #2d4063;
  font-weight: 700;
  margin-bottom: 15px;
}

.bca-course-page .bca-content p {
  font-size: 15.5px;
  color: #444;
  line-height: 1.8;
}

.bca-course-page .bca-content ul {
  padding-left: 18px;
}

.bca-course-page .bca-content ul li {
  margin-bottom: 8px;
  color: #333;
  font-size: 15px;
}

/* CTA */
.bca-course-page .bca-cta {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.bca-course-page .bca-cta h4 {
  font-weight: 600;
  margin-bottom: 20px;
}

.bca-course-page .bca-apply-btn {
  display: inline-block;
  margin-top: 15px;
  background: #2d4063;
  color: #ffff;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.bca-course-page a {
  color: #1f2e49;
}

/* ============================= */
/* MCOM COURSE PAGE */
/* ============================= */

.mcom-course-page {
  background: #f7f9fc;
}

/* Heading */
.mcom-course-page .mcom-heading h2 {
  font-size: 34px;
  font-weight: 700;
  color: #2d4063;
}

.mcom-course-page .mcom-heading p {
  color: #6b7280;
  font-size: 16px;
}

/* Image */
.mcom-course-page .mcom-img-box {
  overflow: hidden;
  border-radius: 12px;
}

.mcom-course-page .mcom-img-box img {
  width: 100%;
  border-radius: 12px;
  transition: 0.4s ease;
}

.mcom-course-page .mcom-img-box:hover img {
  transform: scale(1.05);
}

/* Content */
.mcom-course-page .mcom-content h4 {
  color: #2d4063;
  font-weight: 600;
  margin-bottom: 15px;
}

.mcom-course-page .mcom-content p {
  color: #444;
  line-height: 1.8;
}

.mcom-course-page .mcom-content ul {
  padding-left: 18px;
}

.mcom-course-page .mcom-content ul li {
  margin-bottom: 8px;
  color: #333;
}

/* CTA */
.mcom-course-page .mcom-cta {
  background: #ffffff;
  padding: 45px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.mcom-course-page .mcom-cta h4 {
  color: #2d4063;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Apply Button */
.mcom-course-page .mcom-apply-btn {
  background: #2d4063;
  color: #fff;
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

/* Phone */
.mcom-course-page a {
  color: #2d4063;
  font-weight: 600;
  text-decoration: none;
}

/* ================================= */
/* ARUNODAYA FACILITIES PAGE */
/* ================================= */

.arunodaya-facilities-page {
  background: #f7f9fc;
}

.arunodaya-facilities-page .facilities-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2d4063;
}

.arunodaya-facilities-page .facilities-heading p {
  max-width: 750px;
  margin: auto;
  color: #555;
  line-height: 1.8;
}

.arunodaya-facilities-page .facility-block {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.07);
}

.arunodaya-facilities-page .facility-image {
  overflow: hidden;
  border-radius: 10px;
}

.arunodaya-facilities-page .facility-image img {
  width: 100%;
  border-radius: 10px;
  transition: 0.4s;
}

.arunodaya-facilities-page .facility-image:hover img {
  transform: scale(1.05);
}

.arunodaya-facilities-page .facility-content h3 {
  color: #2d4063;
  font-weight: 600;
  margin-bottom: 15px;
}

.arunodaya-facilities-page .facility-content p {
  color: #444;
  line-height: 1.9;
  font-size: 15.5px;
}

@media (max-width: 991px) {
  .arunodaya-facilities-page .facility-block {
    padding: 25px;
  }
}

#classroom,
#avroom,
#computerlab,
#library,
#sports {
  scroll-margin-top: 100px;
}

/* ===============================
   Admissions process
================================*/
.adc-admissions-section {
  padding: 80px 0;
  background: #f7f9fc;
}

.adc-admissions-header h2 {
  color: #2d4063;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.adc-admissions-header p {
  color: #666;
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
}

.adc-admissions-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.adc-admission-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #2d4063;
  transition: 0.3s ease;
}

.adc-admission-card:hover {
  transform: translateY(-5px);
}

.adc-admission-card h3 {
  color: #2d4063;
  margin-bottom: 20px;
  font-weight: 600;
}

.adc-admission-block h4,
.adc-admission-block h5 {
  color: #2d4063;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.adc-admission-block p {
  color: #555;
  line-height: 1.7;
}

.adc-admission-block ul {
  padding-left: 18px;
}

.adc-admission-block ul li {
  margin-bottom: 8px;
  color: #444;
  position: relative;
}

/* ===============================
   Placement Section
================================*/
.adc-placement-section {
  padding: 80px 0;
  background: #f7f9fc;
}

.adc-placement-header h2 {
  color: #2d4063;
  font-size: 36px;
  font-weight: 700;
}

.adc-placement-header p {
  max-width: 750px;
  margin: 15px auto 60px;
  color: #555;
}

.adc-placement-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}

.adc-placement-reverse {
  flex-direction: row-reverse;
}

.adc-placement-image {
  flex: 1;
}

.adc-placement-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.adc-placement-content {
  flex: 1;
}

.adc-placement-content h3 {
  color: #2d4063;
  margin-bottom: 15px;
}

.adc-placement-content p {
  color: #555;
  line-height: 1.7;
}

.adc-placement-content ul {
  margin-top: 15px;
  padding-left: 18px;
}

.adc-placement-content ul li {
  margin-bottom: 8px;
  color: #444;
}

/* ===============================
   Placement Process
================================*/
.adc-placement-process h3 {
  color: #2d4063;
  margin-bottom: 40px;
}

.adc-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.adc-process-step {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
}

.adc-process-step span {
  font-size: 26px;
  font-weight: 700;
  color: #2d4063;
  display: block;
  margin-bottom: 10px;
}

.adc-process-step p {
  color: #555;
}

/* ------------------------------------ */
/* ------------EVents-activities------ */
/* ---------------------------------- */

.ails-events {
  background: #f8f9fb;
}

.ails-events__banner h1 {
  color: #0b1f3a;
  font-size: 40px;
  font-weight: 700;
}

.ails-events__banner p {
  font-size: 16px;
  opacity: 0.9;
}

.ails-events .ails-event-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}

.ails-events .ails-event-card__image {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.ails-events .ails-event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.ails-events .ails-event-card__overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.ails-events .ails-event-card__overlay h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.ails-events .ails-event-card:hover img {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .ails-events__banner h1 {
    font-size: 28px;
  }

  .ails-events .ails-event-card__image {
    height: 220px;
  }
}

/* ===============================
   Contact Banner
================================*/
.adc-contact-banner {
  background: #2d4063;
  padding: 80px 0;
  color: #fff;
}

.adc-contact-banner h1 {
  font-size: 40px;
  font-weight: 700;
}

.adc-contact-banner p {
  opacity: 0.9;
}

/* ===============================
   Contact Area
================================*/
.adc-contact-area {
  padding: 80px 0;
  background: #f7f9fc;
}

/* Contact Card */
.adc-contact-card {
  background: #fff;
  padding: 35px;
  border-radius: 8px;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #2d4063;
}

.adc-contact-card h3 {
  color: #2d4063;
  margin-bottom: 25px;
}

.adc-contact-item {
  margin-bottom: 20px;
}

.adc-contact-item h6 {
  color: #2d4063;
  font-weight: 600;
  margin-bottom: 5px;
}

.adc-contact-item p,
.adc-contact-item a {
  color: #555;
  text-decoration: none;
}

/* ===============================
   Contact Form
================================*/
.adc-contact-form-card {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.adc-contact-form-card h3 {
  color: #2d4063;
  margin-bottom: 25px;
}

/* Inputs */
.adc-contact-form-card .form-control,
.adc-contact-form-card .form-select {
  height: 48px;
  border-radius: 5px;
}

.adc-contact-form-card textarea {
  height: auto;
}

/* Button */
.adc-contact-btn {
  background: #2d4063;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  transition: 0.3s;
}

.adc-contact-btn:hover {
  background: #1f2f4a;
}

/* ===============================
   Map
================================*/
.adc-contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* ------------------------------- */
/* -------------MODAL------------ */
/* ----------------------------- */

.custom-modal {
  border-radius: 16px;
  padding: 10px;
}

.custom-input {
  height: 50px;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 10px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.custom-input:focus {
  border-color: #363a76;
  box-shadow: 0 0 0 2px rgba(54, 58, 118, 0.1);
}

.custom-btn {
  background-color: #363a76;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  background-color: #2c2f63;
  transform: translateY(-1px);
}

.modal-title {
  color: #363a76;
}

.modal-body {
  padding: 10px 20px 20px;
}

/* ------------------------------ */
/* ----------Syllabus----------- */
/* ---------------------------- */

.ba-syllabus-section {
  padding: 30px 0;
  background: #f5f7fb;
}

.ba-syllabus-section .ba-syllabus-title {
  color: #2d4063;
  font-weight: 700;
  margin-bottom: 10px;
}

.ba-syllabus-section .ba-syllabus-subtitle {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 30px;
}

.ba-syllabus-section .ba-sem-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border-left: 5px solid #2d4063;
  height: 100%;
  transition: 0.3s;
}

.ba-syllabus-section .ba-sem-card:hover {
  transform: translateY(-4px);
}

.ba-syllabus-section .ba-sem-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.ba-syllabus-section .ba-sem-header h5 {
  margin: 0;
  font-weight: 600;
  color: #2d4063;
}

.ba-syllabus-section .ba-credits {
  font-size: 12px;
  background: #e8edf6;
  padding: 4px 10px;
  border-radius: 20px;
  color: #2d4063;
}

.ba-syllabus-section .ba-subject-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.ba-syllabus-section .ba-subject-list li {
  padding: 7px 0;
  border-bottom: 1px dashed #e1e6ef;
  font-size: 14px;
}

.ba-syllabus-section .ba-subject-list li:last-child {
  border-bottom: none;
}

.ba-syllabus-section .ba-subject-list strong {
  color: #2d4063;
}

/* --------------------------------------------- */

.bca-syllabus-section {
  padding: 60px 0;
  background: #f5f7fb;
}

.bca-syllabus-section .bca-syllabus-title {
  color: #2d4063;
  font-weight: 700;
  margin-bottom: 10px;
}

.bca-syllabus-section .bca-syllabus-subtitle {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 30px;
}

/* Card */
.bca-syllabus-section .bca-sem-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border-left: 5px solid #2d4063;
  height: 100%;
  transition: 0.3s;
}

.bca-syllabus-section .bca-sem-card:hover {
  transform: translateY(-4px);
}

/* Header */
.bca-syllabus-section .bca-sem-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.bca-syllabus-section .bca-sem-header h5 {
  margin: 0;
  font-weight: 600;
  color: #2d4063;
}

.bca-syllabus-section .bca-credits {
  font-size: 12px;
  background: #e8edf6;
  padding: 4px 10px;
  border-radius: 20px;
  color: #2d4063;
}

/* List */
.bca-syllabus-section .bca-subject-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.bca-syllabus-section .bca-subject-list li {
  padding: 7px 0;
  border-bottom: 1px dashed #e1e6ef;
  font-size: 14px;
}

.bca-syllabus-section .bca-subject-list li:last-child {
  border-bottom: none;
}

.bca-syllabus-section .bca-subject-list strong {
  color: #2d4063;
}

/* ------------------------------------------------- */

.mcom-syllabus-section {
  padding: 60px 0;
  background: #f5f7fb;
}

.mcom-syllabus-section .mcom-syllabus-title {
  color: #2d4063;
  font-weight: 700;
  margin-bottom: 10px;
}

.mcom-syllabus-section .mcom-syllabus-subtitle {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 30px;
}

.mcom-syllabus-section .mcom-sem-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border-left: 5px solid #2d4063;
  height: 100%;
  transition: 0.3s;
}

.mcom-syllabus-section .mcom-sem-card:hover {
  transform: translateY(-4px);
}

.mcom-syllabus-section .mcom-sem-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.mcom-syllabus-section .mcom-sem-header h5 {
  margin: 0;
  font-weight: 600;
  color: #2d4063;
}

.mcom-syllabus-section .mcom-tag {
  font-size: 12px;
  background: #e8edf6;
  padding: 4px 10px;
  border-radius: 20px;
  color: #2d4063;
}

.mcom-syllabus-section .mcom-subject-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.mcom-syllabus-section .mcom-subject-list li {
  padding: 7px 0;
  border-bottom: 1px dashed #e1e6ef;
  font-size: 14px;
}

.mcom-syllabus-section .mcom-subject-list li:last-child {
  border-bottom: none;
}

.mcom-syllabus-section .mcom-subject-list strong {
  color: #2d4063;
}

/* --------------------------------------------------- */

.bcom-syllabus-section {
  padding: 60px 0;
  background: #f5f7fb;
}

.bcom-syllabus-section .bcom-syllabus-title {
  color: #2d4063;
  font-weight: 700;
  margin-bottom: 10px;
}

.bcom-syllabus-section .bcom-syllabus-subtitle {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 30px;
}

/* Card */
.bcom-syllabus-section .bcom-sem-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border-left: 5px solid #2d4063;
  height: 100%;
  transition: 0.3s;
}

.bcom-syllabus-section .bcom-sem-card:hover {
  transform: translateY(-4px);
}

/* Header */
.bcom-syllabus-section .bcom-sem-header {
  margin-bottom: 15px;
}

.bcom-syllabus-section .bcom-sem-header h5 {
  margin: 0;
  font-weight: 600;
  color: #2d4063;
}

/* List */
.bcom-syllabus-section .bcom-subject-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.bcom-syllabus-section .bcom-subject-list li {
  padding: 7px 0;
  border-bottom: 1px dashed #e1e6ef;
  font-size: 14px;
}

.bcom-syllabus-section .bcom-subject-list li:last-child {
  border-bottom: none;
}

.bcom-syllabus-section .bcom-subject-list strong {
  color: #2d4063;
}

/* ----------------------------------- */
/* ------------Achivements----------- */
/* --------------------------------- */

.achievements-degree-clg {
  padding: 60px 0;
  background: #f8f9fb;
}

.achievement-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.achievement-content {
  padding: 20px;
}

.achievement-content h5 {
  font-size: 26px;
  font-weight: 700;
  color: #2d4063;
  margin-bottom: 20px;
  position: relative;
}

.achievement-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.achievement-content strong {
  color: #2d4063;
}

.achievement-note {
  margin-top: 15px;
  font-style: italic;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .achievement-content {
    padding-top: 20px;
  }

  .achievement-content h5 {
    font-size: 22px;
  }
}
