* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand-primary: #363a76;
  --brand-secondary: #4e54b5;
  --brand-light: #6c72d9;
  --brand-soft: #f0f1fa;
  --brand-accent: #ff9f4b;
  --text-dark: #2d2d4a;
  --text-soft: #5a5a7a;
  --text-light: #76768c;
  --bg-light: #ffffff;
  --bg-soft: #f8f9ff;
  --border-light: #e8e9f2;
  --shadow-sm: 0 4px 12px rgba(54, 58, 118, 0.08);
  --shadow-md: 0 6px 18px rgba(54, 58, 118, 0.12);
}

.nav-top-area {
  background: var(--bg-light);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.nav-top-area .logo {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}

.nav-top-area .logo img {
  max-height: 70px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav-top-area .logo:hover img {
  transform: scale(1.02);
}

.nav-top-area .logo .logo-text {
  color: var(--brand-primary);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  border-left: 3px solid var(--brand-primary);
  padding-left: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-top-area .logo .logo-text br {
  display: none;
}

@media (min-width: 768px) {
  .nav-top-area .logo .logo-text br {
    display: block;
  }
}

.contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 25px;
}

.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icons a {
  color: var(--brand-primary);
  font-size: 18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--brand-primary);
  color: white;
  transform: translateY(-2px);
}

.helpdesk-phone {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--bg-soft);
  border-radius: 40px;
  transition: all 0.3s ease;
}

.helpdesk-phone i {
  color: var(--brand-primary);
  font-size: 16px;
}

.helpdesk-phone:hover {
  background: var(--brand-primary);
  color: white;
}

.helpdesk-phone:hover i {
  color: white;
}

.btn-admission {
  background: var(--brand-primary);
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.4;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.btn-admission:hover {
  background: var(--brand-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-text-top {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.95;
}

.btn-text-bottom {
  font-size: 16px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

/* Header/Navbar Styles */
.header-wrapper {
  background: #2d4063;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-top: 1px solid var(--border-light);
}

.navbar {
  padding: 0;
}

/* Mobile Brand */
.mobile-brand {
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 10px 0;
  display: flex;
}

.mobile-brand .brand-icon {
  max-height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
}

.mobile-brand .brand-text-mobile {
  color: var(--bg-light);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.navbar-nav {
  gap: 2px;
}

.nav-item .nav-link {
  color: #ffff !important;
  font-weight: 500;
  padding: 20px 14px !important;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-item .nav-link:hover::after {
  width: 80%;
}

.dropdown-hover {
  position: relative;
}

.dropdown-hover:hover > .dropdown-menu {
  display: block;
  animation: slideDown 0.3s ease;
}

.dropdown-hover .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  padding: 8px 0;
  margin: 0;
  background: var(--bg-light);
  box-shadow: var(--shadow-md);
  display: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  padding: 10px 20px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: normal;
}

.dropdown-item:hover {
  background: var(--brand-soft);
  color: var(--brand-primary);
  padding-left: 28px;
}

/* Offcanvas Styles */
.offcanvas {
  background: var(--bg-light);
}

.offcanvas-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-light);
}

.offcanvas-title {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.offcanvas-icon {
  max-height: 40px;
  width: auto;
}

.offcanvas-logo-text {
  color: var(--brand-primary);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.offcanvas .nav-link {
  padding: 15px 20px;
  color: var(--text-dark);
}

.offcanvas .dropdown-menu {
  position: static;
  box-shadow: none;
  border: none;
  padding-left: 20px;
  background: var(--bg-soft);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
  display: none;
  padding: 20px;
  border-top: 1px solid var(--border-light);
  margin-top: 20px;
}

.mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.btn-mobile-admission {
  background: var(--brand-primary);
  color: white;
  padding: 14px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.4;
  font-weight: 500;
}

.btn-mobile-admission .apply-text {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mobile-phone {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  background: var(--bg-soft);
  border-radius: 8px;
}

.mobile-phone i {
  color: var(--brand-primary);
}

.mobile-social {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.mobile-social .social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.mobile-social .social-link.facebook {
  background: #3b5998;
}

.mobile-social .social-link.instagram {
  background: #e4405f;
}

.mobile-social .social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .nav-top-area .logo .logo-text {
    font-size: 18px;
  }

  .nav-top-area .logo img {
    max-height: 55px;
  }

  .contact-wrapper {
    gap: 20px;
  }

  .social-icons a {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .helpdesk-phone {
    padding: 6px 12px;
    font-size: 14px;
  }

  .btn-admission {
    padding: 8px 18px;
  }

  .btn-text-top {
    font-size: 13px;
  }

  .btn-text-bottom {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .nav-top-area {
    display: none;
  }

  .mobile-brand {
    display: flex;
  }

  .navbar-toggler {
    border: none;
    padding: 8px 12px;
    background: var(--brand-soft);
    border-radius: 8px;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .offcanvas-body {
    padding: 0;
  }

  .navbar-nav {
    padding: 10px 0;
  }

  .dropdown-hover:hover > .dropdown-menu {
    display: none;
  }

  .dropdown-hover .dropdown-menu {
    display: none;
  }

  .dropdown-hover .dropdown-menu.show {
    display: block;
  }

  .mobile-menu-footer {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .nav-top-area .col-lg-5 {
    width: 40%;
  }

  .nav-top-area .col-lg-7 {
    width: 60%;
  }
}

@media (min-width: 992px) {
  .mobile-menu-footer {
    display: none;
  }
}

/* =========================================
   PU HERO SECTION
========================================= */

.pu-hero-section {
  position: relative;
  height: 80vh;
  min-height: 480px;
  overflow: hidden;
}

.pu-hero-carousel,
.pu-hero-carousel .owl-stage-outer,
.pu-hero-carousel .owl-stage,
.pu-hero-carousel .owl-item,
.pu-slide {
  height: 100%;
}

.pu-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Placeholder colors when images are absent */
.pu-slide:nth-child(1) {
  background-color: #1a1e4e;
  background-image: url("assets/images/home/banners/banner-1.webp");
}
.pu-slide:nth-child(2) {
  background-color: #2c3057;
  background-image: url("assets/images/home/banners/banner-2.webp");
}
.pu-slide:nth-child(3) {
  background-color: #232659;
  background-image: url("assets/images/home/banners/banner-3.webp");
}
.pu-slide:nth-child(4) {
  background-color: #1e224f;
  background-image: url("assets/images/home/banners/banner-4.webp");
}

.pu-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 91%,
    rgba(0, 0, 0, 0.6) 136%,
    rgba(0, 0, 0, 0.85) 141%
  );
  z-index: 1;
  pointer-events: none;
}

.pu-content {
  position: absolute;
  bottom: clamp(40px, 14vh, 90px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: #fff;
  width: min(850px, 90%);
  padding: 0 16px;
}

.pu-content h1 {
  font-size: clamp(22px, 5vw, 44px);
  font-weight: 700;
  margin-bottom: clamp(12px, 2vh, 20px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.2;
}

.pu-content p {
  font-size: clamp(13px, 2vw, 16px);
  margin-bottom: clamp(18px, 3vh, 28px);
  line-height: 1.6;
  opacity: 0.92;
}

.pu-btn-group {
  display: flex;
  gap: clamp(10px, 2vw, 15px);
  justify-content: center;
  flex-wrap: wrap;
}

.pu-btn {
  padding: clamp(9px, 1.5vw, 11px) clamp(20px, 4vw, 32px);
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  white-space: nowrap;
}

.pu-btn-primary {
  background: #ffffff;
  color: #363a76;
}
.pu-btn-primary:hover {
  background: #363a76;
  color: #ffffff;
  transform: translateY(-3px);
}

.pu-btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}
.pu-btn-outline:hover {
  background: #ffffff;
  color: #363a76;
  transform: translateY(-3px);
}

.owl-theme .owl-dots {
  position: absolute !important;
  top: auto !important;
  bottom: -40px !important;
  right: 50% !important;
  transform: translateX(50%) !important;
  display: flex !important;
  gap: 8px;
  justify-content: center;
  width: 100% !important;
  padding: 0;
}

.owl-theme .owl-dots .owl-dot span {
  background: #fff !important;
  opacity: 1 !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 !important;
  border: 1px solid #363a76;
  border-radius: 50%;
  display: block;
  transition: background 0.2s;
}

.owl-theme .owl-dots .owl-dot.active span {
  background: #363a76 !important;
  border-color: #363a76 !important;
}

.pu-programs-section {
  padding: clamp(36px, 6vw, 60px) 0;
  background: #f5f7fb;
}

@media (max-width: 992px) {
  .pu-hero-section {
    height: 85vh;
  }
}

@media (max-width: 768px) {
  .pu-hero-section {
    height: 90vh;
    min-height: 420px;
  }

  .pu-content {
    position: absolute;
    bottom: clamp(40px, 9vh, 90px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: #fff;
    width: min(850px, 90%);
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .pu-hero-section {
    height: 73svh;
    min-height: 380px;
  }

  .pu-content {
    width: 92%;
    padding: 0 12px;
  }

  .pu-btn-group {
    flex-direction: column;
    align-items: center;
  }

  .pu-btn {
    width: 100%;
    max-width: 220px;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .pu-content h1 {
    font-size: 20px;
  }
  .pu-content p {
    font-size: 13px;
  }
}

.demo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
  user-select: none;
}

.pu-programs-section {
  padding: 60px 0;
  background: #f5f7fb;
}

/* ===============================
   HEADING
=================================*/

.pu-programs-heading {
  text-align: center;
  margin-bottom: 50px;
}

.pu-programs-heading h2 {
  font-size: 38px;
  font-weight: 700;
  color: #363a76;
  margin-bottom: 12px;
}

.pu-programs-heading p {
  font-size: 18px;
  color: #555a7a;
  max-width: 600px;
  margin: 0 auto;
}

/* ===============================
   CARD DESIGN
=================================*/

.pu-programs-section .pu-program-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pu-programs-section .pu-program-card:hover {
  transform: translateY(-6px);
}

.pu-programs-section .pu-program-img {
  height: 210px;
  overflow: hidden;
}

.pu-programs-section .pu-program-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pu-programs-section .pu-card-content {
  padding: 28px 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.pu-programs-section .pu-card-content h3 {
  font-size: 22px;
  font-weight: 650;
  color: #363a76;
  margin-bottom: 12px;
}

.pu-programs-section .pu-card-content p {
  color: #4c516e;
  margin-bottom: 25px;
  text-align: center;
}

.pu-programs-section .pu-card-buttons {
  margin-top: auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pu-programs-section .pu-btn {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.25s ease;
  display: inline-block;
  border: 1.5px solid transparent;
}

.pu-programs-section .pu-btn-primary {
  background: #363a76;
  color: #fff;
  border-color: #363a76;
}

.pu-programs-section .pu-btn-primary:hover {
  background: #262a57;
  border-color: #262a57;
}

.pu-programs-section .pu-btn-outline {
  background: transparent;
  border-color: #363a76;
  color: #363a76;
}

.pu-programs-section .pu-btn-outline:hover {
  background: #363a76;
  color: #fff;
}

/* ===============================
   OWL CAROUSEL
=================================*/

.pu-programs-carousel {
  position: relative;
}

.pu-programs-carousel .owl-stage {
  display: flex;
}

.pu-programs-carousel .owl-item {
  display: flex;
}

/* ===============================
   NAVIGATION ARROWS
=================================*/

.pu-programs-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}

.pu-programs-carousel .owl-nav button {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff !important;
  border: none;
  box-shadow: 0 12px 30px rgba(54, 58, 118, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  font-size: 0;
  transition: 0.3s ease;
}

.pu-programs-carousel .owl-nav button:hover {
  transform: scale(1.1);
  background: #eef0ff !important;
}

.pu-programs-carousel .owl-nav .owl-prev {
  left: -70px;
}

.pu-programs-carousel .owl-nav .owl-next {
  right: -70px;
}

.pu-programs-carousel .owl-nav button span {
  display: none;
}

.pu-programs-carousel .owl-nav .owl-prev::before,
.pu-programs-carousel .owl-nav .owl-next::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 24px;
  color: #363a76;
}

.pu-programs-carousel .owl-nav .owl-prev::before {
  content: "\f053";
}

.pu-programs-carousel .owl-nav .owl-next::before {
  content: "\f054";
}

/* ===============================
   RESPONSIVE
=================================*/

@media (max-width: 992px) {
  .pu-programs-carousel .owl-nav .owl-prev {
    left: -15px;
  }
  .pu-programs-carousel .owl-nav .owl-next {
    right: -15px;
  }
}

/* ===== Arunodhya PU College Facilities Section ===== */

.apu-facilities-section {
  background-color: #f8f9fc;
}

.apu-title {
  font-size: 38px;
  font-weight: 700;
  color: #363a76;
  margin-bottom: 12px;
}

.apu-title span {
  color: #363a76;
}

.apu-description {
  font-size: 18px;
  color: #555a7a;
  max-width: 600px;
  margin: 0 auto;
}

.apu-single-service {
  margin-top: 30px;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.apu-single-service:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.apu-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.apu-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.apu-single-service:hover .apu-image-wrapper img {
  transform: scale(1.05);
}

.apu-part-2 {
  padding: 25px 25px 30px;
}

.apu-part-2 h3 {
  font-size: 20px;
  font-weight: 650;
  text-transform: uppercase;
  color: #363a76;
  margin-bottom: 12px;
}

.apu-service-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.apu-service-description {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.apu-read-more {
  font-size: 14px;
  font-weight: 600;
  color: #363a76;
  text-decoration: none;
  transition: 0.3s;
}

.apu-read-more:hover {
  color: #000;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .apu-title {
    font-size: 26px;
  }
}

/* ===============================
   Our Placement Section
=================================*/

.our-placement {
  padding: 80px 0;
  background: #f8f9fc;
}

.our-placement .text-placement h2 {
  font-size: 38px;
  font-weight: 700;
  color: #363a76;
  margin-bottom: 12px;
}

.our-placement .text-placement p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 0;
}

.our-placement img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.our-placement .placement-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 30px;
  background: #363a76;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.our-placement .placement-btn:hover {
  background: #2b2f63;
  color: #fff;
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 40px;
}

.logo-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll-left 28s linear infinite;
}

.img-wish-logo {
  width: 180px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  flex-shrink: 0;
}

.img-wish-logo img {
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
}

/* Smooth infinite animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .dull-clr-title-clients {
    font-size: 28px;
  }

  .clients-text {
    text-align: center;
    padding-right: 0;
  }

  .logo-track {
    gap: 25px;
  }
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* ================================
   EVENTS
================================ */

.event-marquee {
  width: 100%;
  overflow: hidden;
  padding: 20px 0px 60px 0px;
  cursor: auto;
  background: #f8f9fc;
}

.event-marquee:active {
  cursor: grabbing;
}

.event-marquee__wrapper {
  width: 100%;
  overflow: hidden;
}

.event-marquee__track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: eventMarqueeScroll 60s linear infinite;
  will-change: transform;
}

.event-marquee__wrapper:hover .event-marquee__track,
.event-marquee.is-dragging .event-marquee__track {
  animation-play-state: paused;
}

.event-marquee__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-marquee__item img {
  height: 260px;
  width: auto;
  max-width: 1000px;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  user-select: none;
  pointer-events: none;
  transition: transform 0.4s ease;
}

.event-marquee__item img:hover {
  transform: scale(1.03);
}

/* Infinite animation */
@keyframes eventMarqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .event-marquee__item img {
    height: 210px;
  }
}

@media (max-width: 768px) {
  .event-marquee {
    padding: 40px 0;
  }

  .event-marquee__track {
    gap: 40px;
  }

  .event-marquee__item img {
    height: 160px;
    max-width: 600px;
  }
}

.title-ea {
  display: flex;
  align-items: center;
  text-align: center;
  background: #f8f9fc;
  padding: 90px 0px 0px 0px;
}

.title-ea h3 {
  font-size: 38px;
  font-weight: 700;
  color: #363a76;
  margin-bottom: 12px;
}

.title-ea p {
  font-size: 18px;
  color: #555a7a;
  max-width: 900px;
  margin: 0 auto;
}

/* ----------------------------------- */
/* ------------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-contact a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer-contact a:hover {
  color: #f0c14b;
}

.footer-map-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  margin-top: 12px;
  background: #f0c14b;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

/* ---------------------------------- */
/* ----------Aboutus---------------- */
/* -------------------------------- */

.apu-about-page {
  padding: 40px 0px;
}

.apu-section {
  background: #fff;
}

.apu-title {
  font-size: 38px;
  font-weight: 700;
  color: #363a76;
  margin-bottom: 12px;
}

.apu-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: 0.3s;
}

.apu-card:hover {
  transform: translateY(-6px);
}

.apu-card img {
  border-radius: 8px;
}

.apu-card h5 {
  color: #363a76;
  font-weight: 600;
}

/* Commitment */
.apu-commitment {
  background: #363a76;
  color: #fff;
  padding: 70px 20px;
}

.apu-commitment h2 {
  font-weight: 600;
}

/* Trust Section */
.apu-trust h3 {
  color: #363a76;
  font-weight: 600;
}

.apu-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 28px;
  background: #363a76;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.apu-btn:hover {
  background: #2b2f61;
  color: #fff;
}

/* --------------------------------- */
/* -----------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: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%;
  background: url("../images/management/default.webp") center/cover no-repeat;
  border: 5px solid #eef1f6;
  transition: 0.4s;
}

.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;
}

/* ===============================
   CEBA
=================================*/
/* ===========================
   COURSE PAGE
=========================== */

.bcom-course-page {
  background: #fff;
}

/* ===========================
   HEADING
=========================== */

.bcom-heading {
  margin-bottom: 70px;
}

.course-tag,
.career-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(248, 165, 2, 0.12);
  color: #f8a502;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.bcom-heading h2 {
  color: #2d4063;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}

.bcom-heading p {
  color: #666;
  font-size: 17px;
  line-height: 1.8;
}

/* ===========================
   ROW LAYOUT
=========================== */

.bcom-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.bcom-row.reverse {
  flex-direction: row-reverse;
}

/* ===========================
   IMAGE
=========================== */

.bcom-image {
  flex: 1;
}

.bcom-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
}

.bcom-image img:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ===========================
   CONTENT
=========================== */
.bcom-content {
  flex: 1;
}

.bcom-content h3 {
  color: #2d4063;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 25px;
}

.bcom-content p {
  color: #555;
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 20px;
}

/* ===========================
   LISTS
=========================== */

.bcom-content ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 30px;
}

.bcom-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #555;
  font-size: 16px;
}

.bcom-content ul li::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: #f8a502;

  font-weight: 700;
}

/* ===========================
   HIGHLIGHTS
=========================== */

.bcom-highlights {
  margin-top: 80px;
}

.bcom-highlights h3 {
  color: #2d4063;
  font-weight: 700;
  font-size: 25px;
}

.bcom-card {
  background: #fff;

  padding: 35px;

  border-radius: 20px;

  height: 100%;

  text-align: center;

  border: 1px solid #f1f1f1;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

  transition: 0.35s;
}

.bcom-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
  font-size: 36px;

  margin-bottom: 20px;
}

.bcom-card h5 {
  color: #2d4063;

  font-weight: 700;

  margin-bottom: 15px;

  font-size: 22px;
}

.bcom-card p {
  color: #666;

  line-height: 1.8;

  margin: 0;
}

/* ===========================
   CTA SECTION
=========================== */

.bcom-cta {
  margin-top: 90px;

  background: linear-gradient(135deg, #f8f9fc, #eef3fb);

  padding: 60px;

  border-radius: 25px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.bcom-cta h3 {
  color: #2d4063;

  font-size: 28px;

  font-weight: 700;

  margin-bottom: 20px;
}

.bcom-cta p {
  color: #666;

  margin-bottom: 10px;
}

/* ===========================
   BUTTON
=========================== */

.bcom-apply-btn {
  display: inline-block;

  background: linear-gradient(135deg, #094b92, #2d4063);

  color: #fff;

  padding: 14px 36px;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.bcom-apply-btn:hover {
  background: #f8a502;

  color: #fff;

  transform: translateY(-4px);

  box-shadow: 0 10px 20px rgba(248, 165, 2, 0.25);
}

/* ===========================
   CONTACT
=========================== */

.bcom-contact {
  margin-top: 15px;
}
.bcom-contact a {
  color: #2d4063;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.bcom-contact a:hover {
  color: #f8a502;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 991px) {
  .bcom-row,
  .bcom-row.reverse {
    flex-direction: column;

    gap: 40px;

    text-align: center;
  }

  .bcom-heading h2 {
    font-size: 34px;
  }

  .bcom-content h3 {
    font-size: 28px;
  }

  .bcom-cta {
    padding: 40px 25px;
  }

  .bcom-cta h3 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .bcom-heading h2 {
    font-size: 28px;
  }

  .bcom-content h3 {
    font-size: 24px;
  }

  .bcom-card {
    padding: 28px;
  }

  .bcom-apply-btn {
    padding: 12px 30px;

    font-size: 15px;
  }

  .bcom-cta h3 {
    font-size: 24px;
  }

  .bcom-content p {
    font-size: 15px;
  }
}
/* ==========================
   BASCS COURSE PAGE
========================== */

.bascs-course-page {
  background: #fff;
}

/* Heading */
.bascs-heading {
  margin-bottom: 70px;
}

.bascs-heading h2 {
  font-size: 42px;
  font-weight: 700;
  color: #2d4063;
  margin-bottom: 15px;
}

.bascs-heading p {
  font-size: 18px;
  color: #2c2f63;
  font-weight: 600;
  margin-bottom: 10px;
}

.bascs-heading span {
  color: #666;
  font-size: 16px;
}

/* Row Layout */
.bascs-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.bascs-row.reverse {
  flex-direction: row-reverse;
}

/* Image */
.bascs-image {
  flex: 1;
}

.bascs-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.bascs-image img:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Content */
.bascs-content {
  flex: 1;
}

.bascs-content h3 {
  font-size: 32px;
  color: #2d4063;
  font-weight: 700;
  margin-bottom: 20px;
}

.bascs-content p {
  color: #555;
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 20px;
}

/* Highlights */
.bascs-highlights {
  margin-top: 70px;
}

.bascs-highlights h3 {
  color: #2d4063;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

.bascs-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  border: 1px solid #f1f1f1;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: 0.35s;
}

.bascs-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.bascs-card h5 {
  color: #2c2f63;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.bascs-card p {
  color: #666;
  line-height: 1.8;
}

/* List */
.bascs-content ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 25px;
}

.bascs-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #555;
  line-height: 1.8;
}

.bascs-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0d8b6f;
  font-weight: 700;
}

/* CTA */
.bascs-cta {
  background: linear-gradient(135deg, #2d4063, #17304d);
  padding: 60px;
  border-radius: 25px;
  margin-top: 80px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.bascs-cta h4 {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 25px;
}

.bascs-cta p {
  color: #ddd;
}

/* Button */
.bascs-apply-btn {
  display: inline-block;
  background: #f8a502;
  color: #fff;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.bascs-apply-btn:hover {
  background: #0d8b6f;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(13, 139, 111, 0.25);
}

/* Contact */
.bascs-contact {
  margin-top: 15px;
}

.bascs-contact a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.bascs-contact a:hover {
  color: #f8a502;
}

/* Responsive */
@media (max-width: 991px) {
  .bascs-row,
  .bascs-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .bascs-heading h2 {
    font-size: 34px;
  }

  .bascs-content h3 {
    font-size: 28px;
  }

  .bascs-cta {
    padding: 40px 25px;
  }

  .bascs-cta h4 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .bascs-heading h2 {
    font-size: 28px;
  }

  .bascs-content h3 {
    font-size: 24px;
  }

  .bascs-card {
    padding: 28px;
  }

  .bascs-apply-btn {
    padding: 12px 30px;
    font-size: 15px;
  }

  .bascs-cta h4 {
    font-size: 24px;
  }

  .bascs-content p {
    font-size: 15px;
  }
}
/* ==========================
   SEBA COURSE PAGE
========================== */

.seba-course-page {
  background: #fff;
}

/* Heading */
.seba-heading {
  margin-bottom: 70px;
}

.seba-heading h2 {
  font-size: 42px;
  font-weight: 700;
  color: #2d4063;
  margin-bottom: 15px;
}

.seba-heading p {
  font-size: 18px;
  color: #0182d7;
  font-weight: 600;
  margin-bottom: 10px;
}

.seba-heading span {
  color: #666;
  font-size: 16px;
}

/* Row Layout */
.seba-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.seba-row.reverse {
  flex-direction: row-reverse;
}

/* Image */
.seba-image {
  flex: 1;
}

.seba-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.seba-image img:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Content */
.seba-content {
  flex: 1;
}

.seba-content h3 {
  font-size: 32px;
  color: #2d4063;
  font-weight: 700;
  margin-bottom: 20px;
}

.seba-content p {
  color: #555;
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 20px;
}

/* Highlights */
.seba-highlights {
  margin-top: 70px;
}

.seba-highlights h3 {
  color: #2d4063;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

.seba-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  border: 1px solid #f1f1f1;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: 0.35s;
}

.seba-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.seba-card h5 {
  color: #0182d7;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.seba-card p {
  color: #666;
  line-height: 1.8;
}

/* List */
.seba-content ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 25px;
}

.seba-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #555;
  line-height: 1.8;
}

.seba-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0182d7;
  font-weight: 700;
}

/* CTA */
.seba-cta {
  background: linear-gradient(135deg, #2d4063, #1d2e48);
  padding: 60px;
  border-radius: 25px;
  margin-top: 80px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.seba-cta h4 {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 25px;
}

.seba-cta p {
  color: #ddd;
}

/* Button */
.seba-apply-btn {
  display: inline-block;
  background: #f4c430;
  color: #000;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.seba-apply-btn:hover {
  background: #0182d7;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(1, 130, 215, 0.25);
}

/* Contact */
.seba-contact {
  margin-top: 15px;
}

.seba-contact a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.seba-contact a:hover {
  color: #f4c430;
}

/* Responsive */
@media (max-width: 991px) {
  .seba-row,
  .seba-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .seba-heading h2 {
    font-size: 34px;
  }

  .seba-content h3 {
    font-size: 28px;
  }

  .seba-cta {
    padding: 40px 25px;
  }

  .seba-cta h4 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .seba-heading h2 {
    font-size: 28px;
  }

  .seba-content h3 {
    font-size: 24px;
  }

  .seba-card {
    padding: 28px;
  }

  .seba-apply-btn {
    padding: 12px 30px;
    font-size: 15px;
  }

  .seba-cta h4 {
    font-size: 24px;
  }

  .seba-content p {
    font-size: 15px;
  }
}

/* ===============================
   Arunodaya Facilities Section
================================*/
.arunodaya-facilities {
  background: #f8f9fc;
  overflow: hidden;
}

/* Heading */
.facility-main-heading span {
  color: #c79a39;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.facility-main-heading h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1e2f4f;
  margin: 10px 0;
}

.facility-main-heading p {
  max-width: 650px;
  margin: auto;
  color: #666;
}

/* Facility Row */
.facility-item {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.facility-item.reverse {
  flex-direction: row-reverse;
}

/* Image */
.facility-image {
  flex: 1;
  position: relative;
}

.facility-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 25px;
  transition: 0.5s;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.facility-item:hover img {
  transform: scale(1.04);
}

/* Content */
.facility-content {
  flex: 1;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  position: relative;
}

.facility-content::before {
  content: "";
  width: 60px;
  height: 4px;
  background: #c79a39;
  position: absolute;
  top: 0;
  left: 40px;
}

.facility-content h3 {
  font-size: 30px;
  color: #1e2f4f;
  margin-bottom: 20px;
}

.facility-content p {
  color: #666;
  line-height: 1.9;
  margin: 0;
}

/* Responsive */

@media (max-width: 991px) {
  .facility-item,
  .facility-item.reverse {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
  }

  .facility-image img {
    height: 240px;
  }

  .facility-content {
    padding: 25px;
  }

  .facility-main-heading h2 {
    font-size: 32px;
  }

  .facility-content h3 {
    font-size: 24px;
  }
}
/* ===============================
   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__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;
  }
}

/* ===== Parent Wrapper ===== */
.ar-contact-wrapper {
  background: #f7f9fc;
}

/* ===== Section Spacing ===== */
.ar-contact-container {
  padding: 80px 0;
}

/* ===== Titles ===== */
.ar-contact-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #2d4063;
}

/* ===== Contact Info Card ===== */
.ar-contact-info {
  background: #ffffff;
  padding: 40px;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.ar-info-box {
  margin-bottom: 22px;
}

.ar-info-box span {
  display: block;
  font-weight: 600;
  color: #2d4063;
  margin-bottom: 6px;
}

.ar-info-box p,
.ar-info-box a {
  color: #555;
  text-decoration: none;
  line-height: 1.6;
}

/* ===== Form Card ===== */
.ar-contact-form {
  background: #ffffff;
  padding: 45px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

/* ===== Inputs ===== */
.ar-input {
  height: 52px;
  border-radius: 6px;
  border: 1px solid #dcdcdc;
}

textarea.ar-input {
  height: auto;
}

.ar-input:focus {
  border-color: #2d4063;
  box-shadow: none;
}

/* ===== Button ===== */
.ar-submit-btn {
  background: #2d4063;
  color: #fff;
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s;
}

.ar-submit-btn:hover {
  background: #1f2e49;
}

/* ===== Map ===== */
.ar-contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.footer-institutions {
  margin: 50px 0 35px;
  text-align: center;
}

.footer-institutions h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.footer-institutions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-institutions ul li {
  display: inline-block;
  margin: 0 15px;
  position: relative;
}

.footer-institutions ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-institutions ul li a:hover {
  color: #d4af37;
}

.footer-institutions ul li a.active-footer {
  color: #d4af37 !important;
  font-weight: 600;
}

.footer-institutions ul li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -18px;
  color: #fff;
}

.at-link {
  color: #2d4063;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 12px;
}

/* ------------------------------- */
/* -------------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;
}

/* -------------------------------------------- */
/* ---------------Principle-message----------- */
/* ------------------------------------------ */

.epm {
  padding: 80px 0;
  background: #f9fafc;
  position: relative;
}

.epm .epm-circle-shape-img {
  width: 100%;
  max-width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 6px solid #ffffff;
}

.epm .epm-text {
  padding-left: 30px;
}

.epm .epm-text h5 {
  font-size: 28px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 20px;
  position: relative;
}

.epm .epm-text h5::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #363b74;
  display: block;
  margin-top: 10px;
}

.epm .epm-text p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.epm .epm-text h6 {
  font-size: 16px;
  font-weight: 600;
  color: #363b74;
  margin-top: 25px;
  margin-bottom: 8px;
}

.epm .epm-text p:last-child {
  font-weight: 500;
  color: #222;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .epm {
    padding: 60px 0;
    text-align: center;
  }

  .epm .epm-text {
    padding-left: 0;
    margin-top: 30px;
  }

  .epm .epm-text h5::after {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .epm .epm-circle-shape-img {
    max-width: 250px;
    height: 250px;
  }

  .epm .epm-text h5 {
    font-size: 24px;
  }

  .epm .epm-text p {
    font-size: 14.5px;
  }
}

/* -------------------------------- */
/* ------- Management Section ----- */
/* -------------------------------- */

.management-section {
  background: #f8f9fb;
}

.management-heading h2 {
  font-size: 38px;
  font-weight: 700;
  color: #012a5b;
  margin-bottom: 10px;
}

.management-heading p {
  color: #666;
  font-size: 17px;
  margin-bottom: 0;
}

.management-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  height: 100%;
}

.management-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.management-img {
  width: 180px;
  height: 180px;
  margin: auto;
  overflow: hidden;
  border-radius: 50%;
  border: 5px solid #f2f2f2;
  margin-bottom: 20px;
}

.management-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.management-card h5 {
  font-size: 22px;
  font-weight: 700;
  color: #012a5b;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.management-card small {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 6px;
}

.management-card span {
  display: inline-block;
  background: #012a5b;
  color: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin: 12px 0;
}

/* Responsive */

@media (max-width: 768px) {
  .management-heading h2 {
    font-size: 30px;
  }

  .management-img {
    width: 150px;
    height: 150px;
  }

  .management-card {
    padding: 25px 20px;
  }

  .management-card h5 {
    font-size: 20px;
  }
}

/* -------------------------------- */
/* -------- News & Media ---------- */
/* -------------------------------- */

.news-heading h2 {
  font-size: 40px;
  font-weight: 700;
  color: #012a5b;
}

.news-heading p {
  color: #666;
  font-size: 16px;
}

.news-media {
  padding: 80px 0;
  background: #f8f9fc;
}

.news-media .row {
  align-items: center;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.news-media .row:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Image */

.image-news {
  height: 100%;
  overflow: hidden;
}

.image-news img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Text Content */

.text-about-news {
  padding: 40px;
}

.text-about-news h3 {
  font-size: 30px;
  font-weight: 700;
  color: #012a5b;
  margin-bottom: 18px;
  line-height: 1.4;
}

.text-about-news p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 0;
}

.text-about-news a {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #012a5b;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s;
}

.text-about-news a:hover {
  background: #f7a600;
  color: #fff;
}

/* Responsive */

@media (max-width: 991px) {
  .image-news img {
    height: 250px;
  }

  .text-about-news {
    padding: 25px;
  }

  .text-about-news h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .news-media {
    padding: 60px 0;
  }

  .image-news img {
    height: 220px;
  }

  .text-about-news {
    padding: 20px;
  }

  .text-about-news h3 {
    font-size: 22px;
  }

  .text-about-news p {
    font-size: 15px;
  }
}
