/* style.css */

  @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');

/* General styles */
body {
  /* font-family: 'Roboto', sans-serif; */
  font-family: Nunito,sans-serif;
  color: #3b3b3b;
  line-height: 1.6;
}

a {
  color: #0b8fcd;
  text-decoration: none;
}

a:hover {
  color: #d63a3e;
}
@keyframes blink {
  0% {
      opacity: 1;
  }
  50% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

.blink-text {
  animation: blink 3s infinite;
}


/* Set background color of header */
/* Set background color of header */
header {
  background-color: #f8f9fa;
  padding: 10px 0;
  border-top: 5px solid #d63a3e;
  border-bottom: 5px solid #007bff;
}

/* Style the navbar brand logo */
.navbar-brand img {
  height: 70px;
  width: auto;
}
/* Custom CSS for Enquiry Button */
/* Custom CSS for Enquiry Button */
.navbar-nav .nav-item .btn-enquiry {
  background-color: #007bff;
  color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  margin: 0; /* Adjust the margin to align with other items */
  padding: 10px 20px; /* Add padding to match the other nav items */
  position: relative; /* Position relative for absolute positioning of pseudo-element */
}

.navbar-nav .nav-item .btn-enquiry:hover {
  background-color: #007bff;
  color: #fff !important;
  transform: scale(1.05);
  box-shadow: 0 0 1px rgba(255, 0, 0, 0.5), 0 0 5px rgba(255, 0, 0, 0.3), 0 0 10px rgba(255, 0, 0, 0.2);
}

/* Create a pseudo-element for the glowing effect */
.navbar-nav .nav-item .btn-enquiry::before {
  content: "";
  position: absolute;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
  border: 2px solid rgba(255, 0, 0, 0.5);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.navbar-nav .nav-item .btn-enquiry:hover::before {
  opacity: 1;
}




.navbar-nav .nav-item .btn-enquiry {
  transition: transform 0.3s ease-in-out;
}

.navbar-nav .nav-item .btn-enquiry:hover {
  transform: scale(1.05);
}




/* Set font styles for nav links */
.navbar-nav .nav-link {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
  transition: color 0.3s ease-in-out;
  margin-right: 10px;
  line-height: 1.5;
}

/* Add hover and active styles to nav links */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #007bff;
}

/* Set font styles for collapsed navbar */
.collapse.navbar-collapse {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
  margin-top: 10px;
  line-height: 1.5;
}

/* Add hover and active styles to collapsed navbar links */
.collapse.navbar-collapse a:hover,
.collapse.navbar-collapse .active {
  color: #007bff !important;
}









.slider {
  margin-top: 0px;
}

.slider-title {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.slider-desc {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #fff;
}

.slider-btn {
  background-color: #d63a3e;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 30px;
}





/* About us section */
.about-us {
  padding: 80px 0;
}

.about-us .title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #d63a3e;
}

.about-us .subtitle {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #0b8fcd;
}

.about-us .description {
  font-size: 16px;
  margin-bottom: 20px;
}
.about-us li
{
  list-style: none;
}
.about-us li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  margin-right: 10px;
  color: #d63a3e;
}
/* Buttons */
.btn {
  display: inline-block;
  background-color: #d63a3e;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #0b8fcd;
}



/* Why */
.why-career-hut {
  background-color: #f1f1f1;
  padding: 80px 0;
}

.why-career-hut .title {
  font-size: 32px;
  color: #3b3b3b;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.why-career-hut .reasons {
  list-style-type: none;
  padding: 0;
  font-size: 18px;
  color: #0b8fcd;
}

.why-career-hut .reasons li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 30px;
}

.why-career-hut .reasons li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  background-color: #d63a3e;
  transform: translateY(-50%);
}





.why-career-hut .icon {
  font-size: 3rem;
  color: #d63a3e;
  margin-bottom: 15px;
}

.why-career-hut .subtitle {
  font-size: 1.25rem;
  color: #0b8fcd;
  font-weight: bold;
  margin-bottom: 10px;
}

.why-career-hut p {
  color: #3b3b3b;
}


/* Courses */
.programs-courses {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.programs-courses.bg-blue {
  background: #002147 none repeat scroll 0 0;
}

.programs-courses .fixed-bg1 {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0.07;
  background-attachment: fixed;
  z-index: -1;
}

.programs-courses .title {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}

.course-card {
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
  border-radius: 5px;
  height: 100%;
}

.course-card img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
}

.course-card .course-title {
  font-size: 24px;
  font-weight: bold;
  color: #3b3b3b;
  margin-bottom: 10px;
}

.course-card .course-description {
  font-size: 16px;
  color: #3b3b3b;
  line-height: 1.5;
}

.btn {
  display: inline-block;
  background-color: #d63a3e;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
}

.btn:hover {
  background-color: #c52f32;
  color: #ffffff;
  text-decoration: none;
}






.facilities {
  background-color: #ffffff;
  padding: 80px 0;
}

.facilities .title {
  font-size: 36px;
  font-weight: bold;
  color: #3b3b3b;
  text-align: center;
  margin-bottom: 30px;
}

.facilities-list {
  list-style-type: disc;
  padding-left: 1.5em;
  font-size: 18px;
  color: #3b3b3b;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .facilities-list {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}



.facilities {
  padding: 80px 0;
  background-color: #fff;
}

.facilities .title {
  text-align: center;
  color: #d63a3e;
  margin-bottom: 50px;
}

.facilities p {
  font-size: 18px;
  color: #3b3b3b;
  line-height: 30px;
}

.facilities img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.facilities .facilities-list li {
  font-size: 16px;
  color: #3b3b3b;
  line-height: 40px;
  list-style: none;
}

.facilities .facilities-list li:before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  margin-right: 10px;
  color: #d63a3e;
}


/* Home Testimonial */
.testimonial-carousel{
  padding: 80px 0;
  background-color: #cdcdcd;
}
.testimonial-text {
  font-style: italic;
  font-size: 1.2rem;
  margin: 15px 0;
}

.testimonial-name {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 10px;
}




/* Partner */

#partnerLogos {
  padding: 80px 0;
  background-color: #007bff;
}

.partner-logos-container {
  display: flex;
  overflow: hidden;
}

.partner-logo {
  margin-right: 20px; /* Set your preferred margin between logos */
  animation: scrollPartnerLogos 20s linear infinite;
}

@keyframes scrollPartnerLogos {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-100%);
  }
}

.partner-logo img {
  max-width: 100%;
  height: auto;
}





/* Verify */

#verifyRecord {
  background-color: #d63a3e;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

#verifyRecord h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

#verifyRecord .form-containerX {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

#verifyRecord .form-container label {
  font-weight: bold;
  white-space: nowrap; /* Ensure the label stays in a single line */
}

#verifyRecord .btn-verify {
  background-color: #ffc107;
  border: none;
  padding: 5px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2em;
  margin: 0;
}









.academic-courses .card-img-top
{
  height: 200px;
}
/* Styles for the entire academic-sidebar */
.academic-sidebar .col-lg-4 {
  background-color: #f8f9fa; /* Light gray background */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add a subtle box shadow for depth */
}

/* Styles for each block within the academic-sidebar */
.academic-sidebar .mb-4,
.academic-sidebar h2 {
  margin-bottom: 20px;
}

/* Styles for the block-title */
.academic-sidebar .block-title {
  background-color: #007bff; /* Blue background for block titles */
  color: #fff; /* White text color */
  padding: 10px; /* Add padding for better visual appeal */
  border-radius: 4px; /* Add a slight border radius for a rounded look */
}

/* Styles for the rules and regulations list within the academic-sidebar */
.academic-sidebar ul {
  list-style-type: none;
  padding: 0;
}

.academic-sidebar ul li {
  margin-bottom: 10px;
  line-height: 1.5;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  /* list-style: inside; */
}
.academic-sidebar ul li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  margin-right: 10px;
  color: #d63a3e;
}
/* Style the background color for specific list items within the academic-sidebar */
.academic-sidebar ul li:nth-child(even) {
  background-color: #fff; /* Light gray background for even items */
}

/* Apply padding and border radius to the last list item within the academic-sidebar */
.academic-sidebar ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
  border-radius: 0 0 8px 8px;
}






/* Footer */

.footer {
  background-color: #212529;
  color: #fff;
  padding: 80px 0;
}

.footer-heading {
  color: #d63a3e;
  font-size: 24px;
  margin-bottom: 20px;
}

.social-icons {
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-icons li {
  display: inline-block;
  margin-right: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 18px;
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 36px;
  background-color: #d63a3e;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.social-icons a:hover {
  transform: translateY(-5px);
}

.social-icons a i {
  vertical-align: middle;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.footer-links a:hover {
  color: #d63a3e;
}

.contact-info {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-info li {
  margin-bottom: 10px;
}

.contact-info i {
  margin-right: 10px;
}

.subscribe-form {
  margin-top: 20px;
}

.subscribe-form input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  margin-bottom: 10px;
}

.subscribe-form button {
  background-color: #d63a3e;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.subscribe-form button:hover {
  background-color: #fff;
  color: #d63a3e;
  cursor: pointer;
}

.social-icons li a i {
  line-height: 2;
}

@media (max-width: 767.98px) {
  .footer {
    text-align: center;
  }

  .footer-heading {
    text-align: left;
    margin-bottom: 20px;
  }

  .footer-links li,
  .contact-info li {
    text-align: center;
  }

  .subscribe-form button {
    width: 100%;
  }
}



/** scroll-to-top **/
/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #d63a3e;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}






/* Set background color of slider */
.slider {
  background-color: #222;
}

/* Add opacity to slider images */
.slider .carousel-item img {
  opacity: 0.5;
}

/* Add dark layer to slider images */
.slider .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Set font styles for slider text */
.slider-title {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.slider-desc {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 30px;
}

.slider-btn {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  background-color: #007bff;
  border-radius: 30px;
  padding: 15px 30px;
  transition: background-color 0.2s ease-in-out;
}
@media (max-width: 768px) {
  .slider-btn {
    font-size: 14px;
    padding: 2px 30px;
    border-radius: 20px;
  }
}
/* Add hover style to slider button */
.slider-btn:hover {
  background-color: #0056b3;
}





#page-title {
  position: relative;
  background: url('images/page-title.jpg') center center/cover no-repeat;
  color: #fff; /* Text color */
  text-align: center;
  padding: 80px 0; /* Adjust padding as needed */
  z-index: 1
}

#page-title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark color with opacity */
  z-index: -1;
}

.breadcrumb {
  font-size: 18px;
}
.breadcrumb-item.active {
  color: #d63a3e;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #d63a3e;
}
.breadcrumb-item a {
  color: #d63a3e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #fff;
}

.display-4 {
  font-weight: 700;
}

.lead {
  font-size: 22px;
  line-height: 1.5;
  margin-top: 30px;
}