@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");

.head {
  font-family: "Source Sans 3", sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #B84110;
}

@media (max-width: 575.98px) {
  .head {
    font-size: 24px;
  }
}

.subhead {
  font-family: "Source Sans 3", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #034B9F;
}

@media (max-width: 575.98px) {
  .subhead {
    font-size: 18px;
  }
}

.text {
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #262626;
}

@media (max-width: 575.98px) {
  .text {
    font-size: 16px;
  }
}

.text-dark {
  color: #000000;
}

.btn.btn-blue {
  background-color: #034B9F;
  padding: 9px;
  box-shadow: 2px 0px 4.5px -1px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  transition: background-color 0.3s ease;
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  position: relative;
}

.btn.btn-blue::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -6px;
  width: 40px;
  height: 106%;
  z-index: -1;
  background: #EDB600;
  border-radius: 4px;
}

.btn.btn-blue:hover {
  background-color: #0c3d74;
  color: #FFFFFF;
}

.btn.btn-white {
  background-color: #FFFFFF;
  padding: 7px 9px;
  box-shadow: 2px 0px 4.5px -1px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #034B9F;
}

.btn.btn-white:hover {
  background-color: #f0f0f0;
  color: #034B9F;
}

.bg-blue {
  background: #034B9F;
}

.bg-cream {
  background: #FFF4EA;
}

.breadcrumb {
  background: url("../img/breadcrumb-bg.jpg");
  background-size: cover;
  padding: 100px;
}

.breadcrumb h1 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: #FFFFFF;
}

@media (max-width: 575.98px) {
  .breadcrumb h1 {
    font-size: 24px;
  }
}

@media (max-width: 575.98px) {
  .breadcrumb {
    padding: 40px 20px;
  }
}

.navbar {
  background: #FFFFFF;
  box-shadow: 0px 3px 22.5px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand {
  width: 95px;
}

@media (max-width: 575.98px) {
  .navbar .navbar-brand {
    width: 80px;
  }
}

.navbar .dropdown-toggle::after {
  display: none;
}

.navbar .dropdown-menu {
  background: #FFFFFF;
  border: none;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 12px 0;
  margin-top: 8px;
  min-width: 200px;
}

.navbar .dropdown-menu .dropdown-item {
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #262626;
  padding: 10px;
  transition: all 0.3s ease;
}

.navbar .dropdown-menu .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #034B9F;
  transform: translateX(2px);
}

.navbar .dropdown-menu .dropdown-item:focus {
  background-color: #f8f9fa;
  color: #034B9F;
}

@media (max-width: 767.98px) {
  .navbar .dropend .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none;
    padding-left: 20px;
    margin-top: 0;
    border-left: 2px solid #e9ecef;
    margin-left: 10px;
  }

  .navbar .dropend .dropdown-toggle::after {
    display: inline-block;
    margin-left: auto;
    vertical-align: middle;
    content: "›";
    border: none;
    font-size: 20px;
    font-weight: bold;
  }
}

@media (min-width: 768px) {
  .navbar .dropend .dropdown-menu {
    left: 100%;
    top: 0;
    margin-left: 0;
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .navbar .dropdown:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s ease;
  }

  .navbar .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    display: block !important;
  }

  .navbar .dropend:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

footer {
  background-image: url("../img/bg-footer.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top: 1px solid #772706;
}

footer h5 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #B84110;
  margin-bottom: 10px;
}

@media (max-width: 575.98px) {
  footer h5 {
    font-size: 20px;
  }
}

.bottom p {
  font-family: "Source Sans 3", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.text-container .title {
  font-family: "Source Sans 3", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #034B9F;
}

@media (max-width: 575.98px) {
  .text-container .title {
    font-size: 32px;
  }
}

.text-container p {
  font-family: "Source Sans 3", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #262626;
}

@media (max-width: 575.98px) {
  .text-container p {
    font-size: 20px;
  }
}

.text-container .btn-outline {
  padding: 6px 17px;
  background: #F9F5F3;
  border: 1px solid #B84110;
  border-radius: 4px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #B84110;
  transition: all 0.3s ease;
}

.text-container .btn-outline:hover {
  background-color: #B84110;
  color: #FFFFFF;
  text-decoration: none;
}

.text-container .btn-outline:hover img {
  filter: brightness(0) invert(1);
}

@media (max-width: 575.98px) {
  .text-container .btn-outline {
    font-size: 16px;
  }
}

.marquee {
  background: #B84110;
}

.stats {
  background-image: url("../img/bg-stats.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.stats .number {
  font-family: "Source Sans 3", sans-serif;
  font-size: 23px;
  font-weight: 600;
  color: #FFFFFF;
}

@media (max-width: 575.98px) {
  .stats .number {
    font-size: 17px;
  }
}

.stats .text {
  font-size: 16px;
}

@media (max-width: 575.98px) {
  .stats .text {
    font-size: 14px;
  }
}

.embody .btn-blue {
  margin-top: -20px;
  box-shadow: 0px 13px 4px -10px rgba(2, 78, 162, 0.38);
}

.embody .btn-blue::after {
  display: none;
}

.embody .embody-title {
  position: relative;
}

@media (max-width: 575.98px) {
  .embody .embody-title {
    padding-left: 30px;
  }
}

.embody .embody-title::before {
  content: url("../img/icons/tick.svg");
  position: absolute;
  left: -30px;
  top: 70%;
  transform: translateY(-50%);
  z-index: -1;
  opacity: 0.4;
}

@media (max-width: 575.98px) {
  .embody .embody-title::before {
    left: 0;
    top: 60%;
  }
}

@media (max-width: 575.98px) {
  .embody .col-border-small {
    border-right: none !important;
    border-bottom: 1px solid #EDB600 !important;
    padding-bottom: 20px;
  }
}

.building {
  margin-top: -100px;
}

@media (max-width: 991.98px) {
  .building {
    margin-top: auto;
  }
}

.courses .title {
  font-family: "Source Sans 3", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #034B9F;
}

.courses img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}


@media (max-width: 575.98px) {
  .courses .title {
    font-size: 28px;
  }
}

.courses .course-card {
  border: 1px solid #B84110 !important;
  border-radius: 4px !important;
  position: relative;
}

.courses .course-card::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 7px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4px;
  background: #B84110;
  border-radius: 125px;
}

.courses .course-card .card-header {
  background: #B84110;
  border-radius: 4px 4px 0 0 !important;
}

.courses .course-card .card-header {
  background: #B84110;
  border-radius: 4px 4px 0 0 !important;
}

/* Link styling for course titles */
.courses a {
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.courses a .subhead {
  color: #034B9F;
  transition: color 0.3s ease;
}

.courses a:hover .subhead {
  color: #B84110;
}


.marquee {
  background: #B84110;
  padding: 10px 0;
  overflow: hidden;
}

.marquee:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  width: fit-content;
  animation: marqueeSlide linear infinite;
}

.marquee-content p {
  margin: 0;
  padding: 0 20px;
  white-space: nowrap;
}

.marquee-content img {
  flex-shrink: 0;
}

@keyframes marqueeSlide {
  to {
    transform: translateX(-33.333%);
  }
}

@media (max-width: 575.98px) {
  .marquee p {
    font-size: 16px;
    padding: 0 10px;
  }

  .marquee img {
    width: 20px;
    margin: 0 10px;
  }
}

/* ===== Faculty Home Carousel ===== */

.faculty-home-wrapper {
  overflow: hidden;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.faculty-home-overflow {
  overflow: hidden;
}

.faculty-home-overflow:hover .faculty-home-slider {
  animation-play-state: paused;
}

.faculty-home-slider {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: facultyAutoScroll linear infinite;
}

@keyframes facultyAutoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.faculty-home-slide {
  flex: 0 0 260px;
  width: 260px;
  display: flex;
  flex-direction: column;
}

.faculty-home-card {
  background: #fff;
  border-radius: 8px;
  padding-bottom: 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faculty-home-img-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 20px auto 12px;
  background: #e8e8e8;
  flex-shrink: 0;
}

.faculty-home-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.faculty-home-name {
  font-family: "Source Sans 3", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0c3d74;
  margin: 0 10px 3px;
}

.faculty-home-desig {
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  color: #B84110;
  margin: 0 10px 3px;
}

.faculty-home-edu {
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  color: #000000;
  margin: 0 10px 0;
}

.faculty-home-name,
.faculty-home-desig,
.faculty-home-edu {
  width: 100%;
}

.faculty-scroll-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding: 0 10px;
}

.faculty-scroll-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c8c8c8;
  display: inline-block;
  transition: background 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.faculty-scroll-dot.active {
  background: #0c3d74;
  transform: scale(1.4);
}

/* ===== End Faculty Home Carousel ===== */

/*# sourceMappingURL=home.css.map */