/* style.scss */
:root {
  --theme-color: #737172;
  --theme-hover1:#df0707;
  --white-color:white;
  --theme-hover:#000;
  --theme-dark:#000;
  --heading-font: "Manrope", sans-serif;
  --theme-font: "Manrope", sans-serif;
  --nav-font: "Manrope", sans-serif;
  --theme-light-gray: #f8f9fa; /* A subtle, light background color */
  --border-light: #e0e0e0; /* A light border color */
  --navbar-height: 80px; /* **IMPORTANT: Adjust this value to your fixed navbar's actual height** */
}

body {
  font-family: "Roboto", sans-serif;
  color: #4F4F4F;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #a22d35;
  margin-bottom: 0.75rem;
}

a {
  color: #F7931E;
  text-decoration: none;
}
a:hover {
  color: #da7908;
}

.btn-custom-primary {
  background-color: #a22d35;
  border-color: #a22d35;
  color: #fff;
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-custom-primary:hover {
  background-color: #7a2228;
  border-color: #7a2228;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-custom-accent {
  background-color: #F7931E;
  border-color: #F7931E;
  color: #fff;
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-custom-accent:hover {
  background-color: #da7908;
  border-color: #da7908;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline-custom-primary {
  color: #a22d35;
  border-color: #a22d35;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  transition: all 0.3s ease;
}
.btn-outline-custom-primary:hover {
  background-color: #a22d35;
  color: #fff;
}

.section-title-current {
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  font-size: 2.25rem;
}
.section-title-current::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #F7931E;
}

.bg-custom-primary-subtle {
  background-color: #e6f0ff !important;
}

.text-custom-primary-emphasis {
  color: #a22d35 !important;
}

.text-custom-primary {
  color: #a22d35 !important;
}

.text-custom-accent {
  color: #F7931E !important;
}

.top-bar-custom {
  font-size: 0.8rem;
}
.top-bar-custom .top-bar-accreditations span {
  font-weight: 500;
}
.top-bar-custom .top-bar-accreditations span i {
  margin-right: 0.3rem;
}
.top-bar-custom .top-bar-links a.small {
  transition: color 0.3s ease;
}
.top-bar-custom .top-bar-links a.small:hover {
  color: #a22d35 !important;
}

.top-bar-new {
  background-color: #f9f9f9;
  border-bottom: 1px solid #dee2e6;
  font-size: 0.85rem;
}
.top-bar-new .top-bar-contact-new {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.top-bar-new .top-bar-contact-new .top-bar-link {
  color: #4F4F4F;
  transition: color 0.3s ease;
  text-decoration: none;
}
.top-bar-new .top-bar-contact-new .top-bar-link i {
  color: #a22d35;
}
.top-bar-new .top-bar-contact-new .top-bar-link:hover {
  color: #a22d35;
  text-decoration: underline;
}

.main-navbar-new {
  padding: 0.5rem 0;
}
.main-navbar-new .navbar-brand img.default-logo {
  max-height: 50px;
  transition: opacity 0.3s ease;
}
.main-navbar-new .navbar-brand img.default-logo:hover {
  opacity: 0.8;
}
.main-navbar-new .custom-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}
.main-navbar-new .custom-toggler:focus {
  box-shadow: none;
}
.main-navbar-new .custom-toggler .navbar-toggler-icon-line {
  display: block;
  background-color: #a22d35;
  height: 2px;
  width: 22px;
  margin: 4px 0;
  transition: all 0.3s ease-in-out;
}
.main-navbar-new .custom-toggler[aria-expanded=true] .navbar-toggler-icon-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.main-navbar-new .custom-toggler[aria-expanded=true] .navbar-toggler-icon-line:nth-child(2) {
  opacity: 0;
}
.main-navbar-new .custom-toggler[aria-expanded=true] .navbar-toggler-icon-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.main-navbar-new .nav-item {
  margin: 0 0.2rem;
}
.main-navbar-new .nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #4F4F4F;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.75rem 0.8rem;
  position: relative;
  overflow: hidden;
}
.main-navbar-new .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background-color: #F7931E;
  transition: left 0.3s ease-in-out;
}
.main-navbar-new .nav-link:hover::after, .main-navbar-new .nav-link.active::after {
  left: 0;
}
.main-navbar-new .nav-link:hover, .main-navbar-new .nav-link.active {
  color: #a22d35;
}
.main-navbar-new .nav-link.dropdown-toggle::after {
  margin-left: 0.4em;
  vertical-align: 0.15em;
  border-top-width: 0.4em;
  border-right-width: 0.4em;
  border-left-width: 0.4em;
}
.main-navbar-new .dropdown-menu {
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  border-top: 3px solid #F7931E;
  border-radius: 0 0 0.25rem 0.25rem;
  padding: 0.5rem 0;
  margin-top: 0.125rem;
  min-width: 220px;
  font-size: 0.85rem;
}
.main-navbar-new .dropdown-menu .dropdown-item {
  padding: 0.5rem 1.25rem;
  color: #4F4F4F;
  transition: background-color 0.2s ease, color 0.2s ease;
  position: relative;
}
.main-navbar-new .dropdown-menu .dropdown-item::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: -100%;
  width: calc(100% - 2.5rem);
  margin-left: 1.25rem;
  height: 1px;
  background-color: #F7931E;
  transition: left 0.3s ease-in-out;
}
.main-navbar-new .dropdown-menu .dropdown-item:hover, .main-navbar-new .dropdown-menu .dropdown-item:focus {
  background-color: #e6f0ff;
  color: #a22d35;
}
.main-navbar-new .dropdown-menu .dropdown-item:hover::after, .main-navbar-new .dropdown-menu .dropdown-item:focus::after {
  left: 0;
}
.main-navbar-new .dropdown-menu .dropdown-item.active {
  background-color: #a22d35;
  color: #fff;
}
.main-navbar-new .dropdown-menu .dropdown-item.active::after {
  background-color: #fff;
  left: 0;
}
.main-navbar-new .nav-actions-new .btn-custom-primary {
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
}

@media (max-width: 991.98px) {
  .main-navbar-new .navbar-nav {
    margin-top: 0.75rem;
  }
  .main-navbar-new .nav-link {
    padding: 0.6rem 1rem;
  }
  .main-navbar-new .nav-link::after {
    display: none;
  }
  .main-navbar-new .dropdown-menu {
    background-color: #fff;
    border-top: 1px solid #eee;
    box-shadow: none;
  }
  .main-navbar-new .dropdown-menu .dropdown-item::after {
    display: none;
  }
  .main-navbar-new .nav-actions-new {
    margin-top: 0.75rem;
    margin-left: 0 !important;
    width: 100%;
  }
  .main-navbar-new .nav-actions-new .btn-custom-primary {
    display: block;
    width: 100%;
    text-align: center;
  }
}
.hero-section-current .item {
  height: 80vh;
  min-height: 550px;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.hero-section-current .hero-overlay-current {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 30, 60, 0.75) 0%, rgba(0, 80, 158, 0.55) 45%, rgba(0, 0, 0, 0.1) 100%);
}
.hero-section-current .container {
  position: relative;
  z-index: 2;
}
.hero-section-current h1 {
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #fff;
}
.hero-section-current p.lead {
  font-size: 1.25rem;
  color: #f0f0f0;
  max-width: 80%;
}
.hero-section-current .owl-nav button.owl-prev, .hero-section-current .owl-nav button.owl-next {
  color: #fff !important;
  background: rgba(0, 0, 0, 0.25) !important;
  margin: 0 15px !important;
  padding: 8px 18px !important;
  border-radius: 0.25rem !important;
  font-size: 22px !important;
  transition: background 0.3s ease;
}
.hero-section-current .owl-nav button.owl-prev:hover, .hero-section-current .owl-nav button.owl-next:hover {
  background: #F7931E !important;
}
.hero-section-current .owl-dots .owl-dot span {
  background: #fff !important;
  opacity: 0.6;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  border-radius: 50%;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}
.hero-section-current .owl-dots .owl-dot.active span, .hero-section-current .owl-dots .owl-dot:hover span {
  background: #F7931E !important;
  opacity: 1;
}

#announcement-ticker .marquee-container-current {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}
#announcement-ticker .marquee-container-current span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee-animation-current 30s linear infinite;
  font-size: 0.9rem;
}
#announcement-ticker .marquee-container-current span a {
  font-weight: bold;
}

@keyframes marquee-animation-current {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
#welcome-dpu .img-box {
  height: 100%;
  overflow: hidden;
}
#welcome-dpu .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#welcome-dpu .welcome-highlights i {
  color: #F7931E;
}
#welcome-dpu .welcome-highlights strong {
  font-size: 1.05rem;
  color: #a22d35;
}
#welcome-dpu .welcome-highlights small {
  color: #6c757d;
}
#welcome-dpu .text-justify {
  text-align: justify;
}

#programmes-offered .faculty-card-current {
  transition: all 0.3s ease;
  border: 1px solid #eee;
  border-radius: 0.5rem;
  overflow: hidden;
}
#programmes-offered .faculty-card-current:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12) !important;
}
#programmes-offered .faculty-card-current .card-icon-top {
  padding: 1.5rem 0 1rem;
}
#programmes-offered .faculty-card-current .card-icon-top i {
  transition: transform 0.3s ease;
}
#programmes-offered .faculty-card-current:hover .card-icon-top i {
  transform: scale(1.1);
}
#programmes-offered .faculty-card-current .card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

#research-innovation .section-title-current::after {
  left: 0;
  transform: translateX(0);
}
#research-innovation .research-highlights li {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}
#research-innovation .research-highlights li .fa-li {
  font-size: 1.2rem;
}
#research-innovation .research-highlights li .fa-li i {
  color: #F7931E;
}
#research-innovation .text-justify {
  text-align: justify;
}

#rankings-recognitions .item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-direction: column;
}
#rankings-recognitions .ranking-logo-current {
  filter: grayscale(50%);
  opacity: 0.8;
  transition: all 0.3s ease;
  max-width: 120px;
}
#rankings-recognitions .ranking-logo-current:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

#dpu-highlights .highlight-card-current {
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  padding: 1.5rem;
}
#dpu-highlights .highlight-card-current:hover {
  background-color: #e6f0ff;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(162, 45, 53, 0.1) !important;
}
#dpu-highlights .highlight-card-current:hover i {
  color: #f38709;
}
#dpu-highlights .highlight-card-current i {
  color: #F7931E;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}
#dpu-highlights .highlight-card-current h5 {
  font-size: 1.1rem;
  color: #a22d35;
}

#testimonials-current .testimonial-item-current {
  border-top: 4px solid #F7931E;
  border-radius: 0.5rem;
  max-width: 700px;
}
#testimonials-current .testimonial-item-current img {
  width: 90px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #fff;
}
#testimonials-current .testimonial-item-current h6 {
  color: #a22d35;
}

#recruiters-current .item {
  display: flex;
  height: 120px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#recruiters-current .recruiter-logo-current {
  max-width: 100px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}
#recruiters-current .recruiter-logo-current:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.footer {
  background: #1b1b1b;
  color: #d4d4d4;
  font-family: "Segoe UI", sans-serif;
}
.footer .footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}
@media (max-width: 768px) {
  .footer .footer-container {
    padding: 2.5rem 1.25rem;
  }
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer .footer-column h4 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
}
.footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-column ul li {
  margin-bottom: 0.6rem;
}
.footer .footer-column ul li a {
  color: #d4d4d4;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.footer .footer-column ul li a:hover {
  color: #d9232d;
  padding-left: 5px;
}
.footer .footer-column p {
  font-size: 0.95rem;
  color: #999;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}
.footer .footer-socials {
  margin-top: 1rem;
  display: flex;
  gap: 10px;
}
.footer .footer-socials a {
  width: 38px;
  height: 38px;
  background: #ffffff;
  color: #1b1b1b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: 0.3s ease;
}
.footer .footer-socials a:hover {
  background: #d9232d;
  color: #ffffff;
}
.footer .footer-bottom {
  border-top: 1px solid #333;
  margin-top: 3rem;
  padding-top: 1.2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #999;
}

.owl-carousel:not(#hero-carousel-main) .owl-nav button.owl-prev, .owl-carousel:not(#hero-carousel-main) .owl-nav button.owl-next {
  color: #a22d35 !important;
  background: rgba(0, 0, 0, 0.05) !important;
  margin: 0 8px !important;
  padding: 5px 12px !important;
  border-radius: 0.25rem !important;
  font-size: 18px !important;
  transition: all 0.3s ease;
}
.owl-carousel:not(#hero-carousel-main) .owl-nav button.owl-prev:hover, .owl-carousel:not(#hero-carousel-main) .owl-nav button.owl-next:hover {
  background: #a22d35 !important;
  color: #fff !important;
}
.owl-carousel:not(#hero-carousel-main) .owl-dots .owl-dot span {
  background: #ccc !important;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.owl-carousel:not(#hero-carousel-main) .owl-dots .owl-dot.active span, .owl-carousel:not(#hero-carousel-main) .owl-dots .owl-dot:hover span {
  background: #a22d35 !important;
}

@media (max-width: 991.98px) {
  .main-navbar .nav-link {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
  }
  .main-navbar .navbar-nav {
    align-items: center;
  }
  .main-navbar .btn-custom-primary.d-none.d-lg-inline-block {
    margin-top: 10px;
    display: block !important;
    width: auto;
    text-align: center;
  }
  .hero-section-current h1 {
    font-size: 2.8rem;
  }
  .hero-section-current p.lead {
    max-width: 90%;
  }
}
@media (max-width: 767.98px) {
  .section-title-current {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .section-title-current::after {
    width: 60px;
    height: 3px;
  }
  .hero-section-current .item {
    height: 70vh;
    min-height: 450px;
  }
  .hero-section-current h1 {
    font-size: 2.2rem;
  }
  .hero-section-current p.lead {
    font-size: 1rem;
    max-width: 100%;
  }
  .top-bar-custom .row > div {
    text-align: center !important;
    margin-bottom: 0.5rem;
  }
  .top-bar-custom .row > div:last-child {
    margin-bottom: 0;
  }
  .top-bar-custom .top-bar-accreditations span {
    display: block;
    margin-bottom: 5px;
    margin-right: 0 !important;
  }
  #announcement-ticker .marquee-container-current span {
    animation-duration: 20s;
  }
  #programmes-offered .faculty-card-current,
  #dpu-highlights .highlight-card-current {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .hero-section-current h1 {
    font-size: 1.8rem;
  }
  .hero-section-current p.lead {
    font-size: 0.9rem;
  }
  .hero-section-current .btn {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
  }
  .main-footer {
    text-align: center;
  }
  .main-footer .col-lg-2, .main-footer .col-lg-3, .main-footer .col-md-3, .main-footer .col-md-6 {
    margin-bottom: 1.5rem;
  }
  .main-footer .social-icons-footer {
    margin-bottom: 1rem;
  }
}
#hero-video-section {
  position: relative;
  height: 90vh;
  overflow: hidden;
}
#hero-video-section video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
#hero-video-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
#hero-video-section .hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  top: 50%;
  transform: translateY(-50%);
}

.header-with-topbar .top-bar {
  font-size: 0.875rem;
  background-color: #f8f9fa;
}
.header-with-topbar .top-bar a {
  color: #555;
  text-decoration: none;
}
.header-with-topbar .top-bar a:hover {
  color: #d9232d;
}
.header-with-topbar .main-navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.header-with-topbar .main-navbar .nav-link {
  font-weight: 500;
  color: #333;
  text-decoration: none !important;
  position: relative;
  transition: color 0.3s ease;
}
.header-with-topbar .main-navbar .nav-link:hover {
  color: #d9232d;
}
.header-with-topbar .main-navbar .dropdown-menu {
  border: none;
  border-radius: 0;
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}
.header-with-topbar .main-navbar .dropdown:hover > .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-with-topbar .main-navbar .dropdown-item {
  padding: 0.5rem 1.4rem;
  font-size: 0.95rem;
  color: #333;
  transition: background 0.2s, padding-left 0.2s;
}
.header-with-topbar .main-navbar .dropdown-item:hover {
  background-color: #f8f9fa;
  padding-left: 1.5rem;
  color: #d9232d;
}

.program-section {
  background-color: #f8f9fa;
  padding: 5rem 0;
}
.program-section h2 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}
.program-section .program-tabs .nav-link {
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  color: #333;
  border: 2px solid transparent;
  border-radius: 50px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.program-section .program-tabs .nav-link.active, .program-section .program-tabs .nav-link:hover {
  background-color: #d9232d;
  color: #fff;
  border-color: #d9232d;
}
.program-section .tab-content {
  margin-top: 2rem;
}
.program-section .tab-content .program-card {
  background: linear-gradient(145deg, #ffffff, #f2f2f2);
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.program-section .tab-content .program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}
.program-section .tab-content .program-card .icon {
  color: #d9232d;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.program-section .tab-content .program-card p {
  margin: 0;
  font-weight: 500;
}
.program-section .tab-content .program-card small {
  color: #666;
  font-size: 0.875rem;
}

.campus-life-tabs-section {
  background-color: #f9f9f9;
}
.campus-life-tabs-section .section-title-current {
  color: #a22d35;
}
.campus-life-tabs-section .section-title-current::after {
  background-color: #F7931E;
}
.campus-life-tabs-section ul.nav {
  gap: 10px;
}

.program-tabs .nav-link {
  background-color: #fff;
  color: #4F4F4F;
  border: 2px solid #e6f0ff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.program-tabs .nav-link.active, .program-tabs .nav-link:hover {
  background-color: #a22d35;
  color: #fff;
  border-color: #a22d35;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.campus-item-card {
  background-color: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.campus-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.campus-item-card img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.campus-item-card .card-body p.card-text {
  color: #4F4F4F;
  font-family: "Roboto", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.text-custom-primary {
  color: #a22d35 !important;
}

.text-custom-secondary {
  color: #4F4F4F !important;
}

@media (max-width: 767.98px) {
  .program-tabs {
    flex-direction: column;
  }
  .program-tabs .nav-item {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .program-tabs .nav-link {
    text-align: center;
  }
}
.leadership-section {
  background-color: var(--white-color);
  padding: 5rem 0;
}
.leadership-section .common-heading {
  color: var(--theme-dark);
  text-align: center;
  margin-bottom: 3rem;
}

.leadership-card {
  background-color: var(--white-color);
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  padding: 2.5rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.leadership-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}
.leadership-card .leader-image-wrapper {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--theme-hover1);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}
.leadership-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.leadership-card .leader-name {
  font-family: var(--heading-font);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--theme-dark);
  margin-bottom: 0.5rem;
}
.leadership-card .leader-designation {
  font-family: var(--theme-font);
  font-size: 1rem;
  color: var(--theme-hover1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.leadership-card .leader-bio {
  font-family: var(--theme-font);
  font-size: 0.95rem;
  color: var(--theme-color);
  line-height: 1.6;
  min-height: 70px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.leadership-card .leader-socials {
  margin-top: 1rem;
}
.leadership-card .leader-socials .social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--white-color);
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
  font-size: 1.1rem;
  margin: 0 5px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.leadership-card .leader-socials .social-icon:hover {
  background-color: var(--theme-hover1);
  border-color: var(--theme-hover1);
  color: var(--white-color);
  transform: translateY(-3px);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.bredcrumb {
  padding-top: 4.5rem;
  background-color: #a22d35;
  padding-bottom: 2.5rem;
  text-align: center;
}
.bredcrumb h1 {
  color: #fff;
  font-size: 46px;
}
.bredcrumb ul {
  padding-left: 0;
}
.bredcrumb ul li {
  display: inline;
  padding-right: 20px;
  color: #fff;
  position: relative;
  margin-right: 10px;
}
.bredcrumb ul li a {
  color: #fff;
}
.bredcrumb ul li::after {
  content: "\f105";
  font-family: "fontawesome";
  color: #fff;
  right: 0;
  position: absolute;
}
.bredcrumb ul li:last-child {
  margin-right: 0px;
  padding-right: 0px;
}
.bredcrumb ul li:last-child::after {
  display: none;
}

.contact-us-section {
  background-color: var(--white-color);
  padding: 5rem 0;
}
.contact-us-section .common-heading {
  color: var(--theme-dark);
}
.contact-us-section .contact-info,
.contact-us-section .contact-form-wrapper {
  background-color: var(--white-color);
  border: 1px solid rgba(var(--theme-color-rgb), 0.1);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 0.25rem 0.75rem rgba(var(--theme-dark-rgb), 0.05);
  height: 100%;
}
.contact-us-section .contact-info .contact-info-heading {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  color: var(--theme-dark);
}
.contact-us-section .contact-info ul li {
  font-family: var(--theme-font);
  font-size: 1rem;
  color: var(--theme-color);
}
.contact-us-section .contact-info .text-theme-hover1 {
  color: var(--theme-hover1) !important;
}
.contact-us-section .contact-info .text-theme-color {
  color: var(--theme-color) !important;
}
.contact-us-section .contact-info .contact-socials {
  margin-top: 2rem;
}
.contact-us-section .contact-info .contact-socials .social-icon-contact {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(var(--theme-color-rgb), 0.1);
  color: var(--theme-color);
  font-size: 1.2rem;
  margin-right: 10px;
  transition: all 0.3s ease;
}
.contact-us-section .contact-info .contact-socials .social-icon-contact:hover {
  background-color: var(--theme-hover1);
  color: var(--white-color);
  transform: translateY(-3px);
}
.contact-us-section .contact-info {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.contact-us-section .contact-form-wrapper {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.contact-us-section .contact-form-wrapper .contact-form-heading {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  color: var(--theme-dark);
}
.contact-us-section .contact-form-wrapper .form-control {
  border: 1px solid #666;
  padding: 0.8rem 1rem;
  font-family: var(--theme-font);
  color: var(--theme-dark);
}
.contact-us-section .contact-form-wrapper .form-control:focus {
  border-color: var(--theme-hover1);
  box-shadow: 0 0 0 0.25rem rgba(var(--theme-hover1-rgb), 0.25);
}
.contact-us-section .contact-form-wrapper .form-control::-moz-placeholder {
  color: rgba(var(--theme-color-rgb), 0.6);
}
.contact-us-section .contact-form-wrapper .form-control::placeholder {
  color: rgba(var(--theme-color-rgb), 0.6);
}
.contact-us-section .contact-form-wrapper .btn-primary-theme {
  background-color: var(--theme-hover1);
  color: var(--white-color);
  border: 1px solid var(--theme-hover1);
  padding: 0.8rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--border-radius-base);
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.contact-us-section .contact-form-wrapper .btn-primary-theme:hover {
  color: var(--white-color);
}
.contact-us-section .map-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 0.25rem 0.75rem rgba(var(--theme-dark-rgb), 0.05);
}
.contact-us-section .map-container iframe {
  display: block;
  border-radius: var(--border-radius-lg);
}

.common-space {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.result-p .form-box {
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.result-p h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--theme-color);
}
.result-p label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.4rem;
}
.result-p select, .result-p input {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.result-p input:focus {
  border-color: var(--theme-color);
  outline: none;
}
.result-p button {
  width: auto;
  padding: 0.75rem;
  background-color: var(--theme-color);
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.result-p button:hover {
  background-color: #005dc1;
}

.compus .campus-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.compus .campus-gallery .gall-item {
  width: 100%;
  height: 350px;
  overflow: hidden;
}
.compus .campus-gallery .gall-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.compus .campus-gallery .gall-item:hover img {
  transform: scale(1.05);
}

/* Multilevel Dropdown */
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: 0;
  margin-left: 0;
  display: none;
  position: absolute;
  z-index: 1000;
  border-radius: 0.25rem;
}
.dropdown-submenu:hover > .dropdown-menu {
  display: block !important;
  opacity: 1;
  visibility: visible;
}
.dropdown-submenu > .dropdown-toggle::after {
  content: "";
  float: right;
  margin-left: 5px;
  font-size: 16px;
  right: 10px;
  top: 50%;
  position: absolute;
}

/* Optional: animate dropdowns */
.dropdown-menu {
  transition: all 0.2s ease-in-out;
}

@media (max-width: 576px) {
  .compus .campus-gallery {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
/* Choose DYPU Section Styling */
.choose-dypu-section {
  padding: 5rem 0;
  background-color: #f8f9fa; /* Light gray background */
}
.choose-dypu-section .common-heading {
  color: var(--theme-dark);
}
.choose-dypu-section .choose-card {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.choose-dypu-section .choose-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-md);
}
.choose-dypu-section .choose-card.bg-primary-themed {
  background-color: var(--theme-hover1); /* Using your red accent for the primary card */
}
.choose-dypu-section .choose-card .card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.choose-dypu-section .choose-card .card-title {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--theme-dark); /* Default for bordered cards */
  /* Specific styling for the primary card */
}
.choose-card.bg-primary-themed .choose-dypu-section .choose-card .card-title {
  color: var(--white-color);
  margin-bottom: 1.5rem;
}
.choose-dypu-section .choose-card .choose-list li {
  font-family: var(--theme-font);
  color: var(--white-color);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.choose-dypu-section .choose-card i {
  color: var(--theme-hover1); /* Red for icons */
  margin-bottom: 1rem;
}/*# sourceMappingURL=style.css.map */