
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', 'Plus Jakarta Sans', 'Inter', sans-serif; /* Set your desired font-family */
  /* background-color: #f4f4f4; */
  padding: 0px;
}

.remove-bg{
  background-position-x: right;
}

.bg-image {
  background-image: url('../images/header-bg.webp'); background-size: cover; background-position: center; height: 500px;
}

@media (max-width: 1023px) {
  .remove-bg{
    background-image: none !important;
  }
  .bg-image {
    background-image: url('../images/header-bg.webp'); background-size: cover; background-position: center; height: 500px;
  }
}

@keyframes slideX {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.animate-slide {
  display: flex;
  animation: slideX 10s linear infinite;
  width: calc(150px * 8 + 10px * 7); /* Total width of all images including gap */
}

.open .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.open .line:nth-child(2) {
  opacity: 0;
}

.open .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu ul {
  display: flex;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: #444444;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

/* Active and Hover State */
.nav-link.active::after,
.nav-link:hover::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px; /* Red bar thickness */
  background-color: #920405; /* Red bar color */
  position: absolute;
  bottom: -5px; /* Distance from text */
  left: 0;
}

/* Hover Effect */
.nav-link:hover {
  color: #333;
  text-decoration: none;
}


.custom-header {
  font-size: 22px;
  line-height: 33px;
  font-family: "Roboto", sans-serif;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.custome-para {
  font-family: Roboto;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.top-bar {
  height: 50px;
  background-color: #002147;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding: 0 37px;
}
.left-info :nth-child(1),
.left-info :nth-child(2),
.left-info :nth-child(3) {
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  color: #d0d6dd;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.left-info {
  display: flex;
  align-items: center;
}

.left-info span,
.right-info span {
  margin-right: 20px;
}

.left-info i,
.right-info i {
  margin-right: 5px;
  color: yellow;
}
.right-info {
  display: flex;
  align-items: center;
}
.right-info :first-child {
  color: #d0d6dd;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.social-icons {
  margin-top: 3px;
}
.social-icons i {
  margin-left: 10px;
  color: white;
  cursor: pointer;
}

.social-icons i:hover {
  color: yellow;
}

/* Navbar Section */
.navbar {
  display: flex;
  align-items: center;
  height: 91px;
  /* justify-content: space-between; */
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
  background: white;
}

.navbar .logo img {
  height: 40px;
}

.navbar .search-bar {
  /* flex-grow: 1; */
  margin: 0 15px;
}
.search-bar {
  position: relative;
  width: 45%;
}


.search-bar img {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #ccc;
  cursor: pointer;
}
.navbar .menu {
  margin-left: auto;
}

.navbar .menu ul {
  list-style: none;
  display: flex;
}

.navbar .menu ul li {
  margin-right: 25px;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  text-align: right;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.navbar .menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.navbar .menu ul li a:hover {
  color: #b22222;
}

.navbar .menu ul li.active a {
  color: #b22222;
}

.navbar .menu ul li.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #b22222;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.get-started-button-font {
  font-family: 'Inter', 'Roboto', 'Plus Jakarta Sans', sans-serif; /* Set your desired font-family */
  font-size: 18px;
  font-weight: 600;
}

/* Carousel sytle CSS starts */
.carousel-inner {
  padding: 1em;
}
.card {
  margin: 0 0.5em;
  box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
  border: none;
}
.carousel-control-prev,
.carousel-control-next {
  background-color: #e1e1e1;
  width: 6vh;
  height: 6vh;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .carousel-item {
    margin-right: 0;
    flex: 0 0 33.333333%;
    display: block;
  }
  .carousel-inner {
    display: flex;
  }
}
.card .img-wrapper {
    max-width: 100%;
    height: 13em;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card img {
    max-height: 100%;
}

/* Carousel sytle CSS ends */

.footer-divider {
  height: 2px;
  width: 30px;
  background-color: #1798CE;
}

.ft-copyright {
  font-family: Roboto, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#909DA4;
}

/*//////////////*/
/* Hamburger icon */
.navbar-toggler-icon {
  background-image: url("../images/hamburger-open.svg");
}

/* Close icon */
.navbar-toggler-icon.close-icon {
  background-image: url("../images/close-drawer.svg");
}
/*//////////////*/

.bg-secondary {
  opacity: 0.8;
  background-color: #002147 !important;
}

.bg-tertiary {
  opacity: 0.8;
  background-color: #EEEEEE !important;
}

.bg-wcoi {
  background-color: #F8F8F8 !important;
}

.plus-jakarta-sans-700 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: xxx-large !important;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.Inter-400 {
  font-family: Inter, sans-serif;
  font-size: small !important;
  font-weight: 400;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.Inter-400 span {
  font-weight: 700;
}

@media (max-width:991px) {
  .plus-jakarta-sans-700 {
    font-size: xx-large !important;
  }

  .Inter-400 {
    font-size: small !important;
  }  

  .ft-copyright {
    font-size: 13px;
  }
  .bg-image {
    background-image: url('../images/header-bg.webp'); background-size: cover; background-position: center; height: 300px;
  }
}

@media (max-width:767px) {
  .plus-jakarta-sans-700 {
    font-size: x-large !important;
  }

  .Inter-400 {
    font-size: small !important;
  } 

  .ft-copyright {
    font-size: 12px;
  }

  .card .img-wrapper {
    height: 17em;
  }
  
  .bg-image {
    background-image: url('../images/header-bg.webp'); background-size: cover; background-position: 70% 20%; height: 300px;
  }
}


button#prevBtnWOSS:hover {
  background-color: #b30000; /* Background color on hover */
}

/* Slider navigation button custom CSS */

/* Custom styles for the button */
.btn-custom {
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s, border-color 0.3s;
}

.btn-custom:hover {
  background-color: #ffc107; /* Change background color on hover */
  border-color: #ffc107 !important;    /* Change border color on hover */
}

/* Custom styles for the image inside the button */
.btn-custom .btn-icon {
  transition: transform 0.3s, opacity 0.3s;
}

.btn-custom:hover .btn-icon {
  transform: scale(1.2); /* Enlarge the image slightly */
  opacity: 0.8;         /* Make the image semi-transparent */
}

/*////////////*/

.bg-bar {
  background-color: #920405;
}

/* Navigation bar dropdown CSS starts */
/*
.dropdown-menu .dropdown-menu {
  left: 100%;
  top: 0;
  margin-top: 0;
}
.dropdown-menu .dropdown-menu .dropdown-menu {
  left: 100%;
  top: 0;
}
.dropdown-menu .dropdown-menu .dropdown-menu .dropdown-menu {
  left: 100%;
  top: 0;
}
*/
/* Ensure nested dropdowns are positioned correctly */
/* Style for nested dropdown menus */
.dropdown-menu {
  display: none; /* Hidden by default */
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  margin: 0;
  padding: 0.5rem 0;
  list-style: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item.active {
  --bs-dropdown-link-active-bg: #002147;
}

/* Display the first-level dropdown on hover */
.dropdown:hover > .dropdown-menu {
  display: block;
}

/* Style for deeper nested dropdown menus */
.dropdown-menu .dropdown-menu {
  display: none;
  left: 100%;
  top: 0;
  margin-top: 0;
}

/* Show nested menus on hover */
.dropdown-menu .dropdown:hover > .dropdown-menu {
  display: block;
}

/* Support for 4th and 5th levels */
.dropdown-menu .dropdown-menu .dropdown-menu:hover > .dropdown-menu {
  display: block;
}

/* Add smooth transitions */
.dropdown-menu,
.dropdown-menu .dropdown-menu {
  transition: all 0.3s ease-in-out;
}

/* Optional: Alignment fixes for deeper levels */
.dropdown-menu .dropdown-menu {
  left: 100%;
  top: 0;
}
/* Navigation bar dropdown CSS ends */
.justify{
  text-align: justify;
}
/* to make table corners round */
.rounded-table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0.3rem;
  overflow: hidden;
}

.faci_to_admision {
  color: #0086cb;
  font-size: 14px;
  font-weight: bold;
  margin-top: 15px;
  text-decoration: none;
}

.faci_to_admision:hover {
  color: #810000;
}

.close_img {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.text-bg-custom {
  color: #fff !important;
  background-color: #c00 !important;
}

.bgc-empty {
  background-color: ##b4c6e7 !important;
}

.dropdown-item:hover {
  color: #fff;
  background-color: #1798CE;
}
