@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Kumbh+Sans:wght@100..900&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: "Josefin Sans", sans-serif;
  background-color: #fff;
}

h1, h2 {
  font-family: "Kumbh Sans", sans-serif;
}

.Enroll_btn {
  background-color: #FA4A12;
  color: #fff;
  border: none;
  padding: 10px 35px;
}
.Enroll_btn:hover {
  background-color: #01534D;
}

.Expert_btn {
  background-color: #FA4A12;
  color: #fff;
  border: none;
  padding: 9px 50px;
  margin-top: 15px;
}

.Title_Heading {
  font-weight: 700;
  font-size: 35px;
  color: #01534D;
}

.Section_heading h2 {
  margin-bottom: 1.5rem;
  font-size: 40px;
  color: #01534D;
  font-weight: 700;
}
.Section_heading p {
  width: 80%;
}

.View_btn {
  background-color: transparent;
  color: #01534D;
  text-decoration: underline;
  border: none;
}
.View_btn:hover {
  background: none;
  color: #01534D;
  font-weight: 700;
}

.breadcrumb-section {
  position: relative;
  background: url("../images/Diploma_breadcrumd.png") no-repeat center center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: -1;
}
.breadcrumb-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 83, 77, 0.368627451);
  z-index: 1;
}
.breadcrumb-section .breadcrumb-container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.breadcrumb-section .breadcrumb-container .breadcrumb-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.breadcrumb-section .breadcrumb-container .breadcrumb-content .breadcrumb {
  display: inline-flex;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 1rem;
}
.breadcrumb-section .breadcrumb-container .breadcrumb-content .breadcrumb .breadcrumb-item {
  color: #d9d9d9;
}
.breadcrumb-section .breadcrumb-container .breadcrumb-content .breadcrumb .breadcrumb-item:not(:last-child)::after {
  content: ">";
  margin: 0 8px;
  color: #a0d468;
}
.breadcrumb-section .breadcrumb-container .breadcrumb-content .breadcrumb .breadcrumb-item a {
  text-decoration: none;
  color: #a0d468;
  transition: color 0.3s ease;
}
.breadcrumb-section .breadcrumb-container .breadcrumb-content .breadcrumb .breadcrumb-item a:hover {
  color: #ffffff;
}
.breadcrumb-section .breadcrumb-container .breadcrumb-content .breadcrumb .breadcrumb-item.active {
  color: white;
  font-weight: bold;
}
@media (max-width: 768px) {
  .breadcrumb-section {
    height: 200px;
  }
  .breadcrumb-section .breadcrumb-container .breadcrumb-content h1 {
    font-size: 1.8rem;
  }
  .breadcrumb-section .breadcrumb-container .breadcrumb-content .breadcrumb {
    font-size: 0.9rem;
  }
}

header {
  z-index: 1;
  position: relative;
}

.header-top {
  background-color: #0d3d34;
  color: #fff;
  font-size: 14px;
}
.header-top .navbar-nav .dropdown-menu {
  z-index: 1;
}
.header-top a {
  color: #fff;
  text-decoration: none;
  margin-right: 20px;
}
.header-top a:hover {
  color: #f16521;
}
.header-top .contact-info {
  display: flex;
  align-items: center;
}
.header-top .contact-info .icon {
  margin-right: 5px;
}

.main-header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.main-header .logo {
  font-size: 20px;
  font-weight: bold;
  color: #0d3d34;
}
.main-header .logo span {
  font-size: 12px;
  color: #1a1a1a;
}
.main-header .navbar-nav {
  position: relative;
  text-align: center;
}
.main-header .navbar-nav .nav-link {
  color: #1a1a1a;
  padding: 10px 15px;
}
.main-header .navbar-nav .nav-link:hover {
  color: #f16521;
}
.main-header .contact-now {
  background-color: #f16521;
  color: #fff;
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none;
}
.main-header .contact-now:hover {
  background-color: #d24d0d;
}

.banner-section {
  position: relative;
  padding: 60px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  overflow: hidden; /* Prevent the pseudo-element from spilling out */
  /* Adjust image section */
  /* Adjust form section */
  /* Form Heading */
}
.banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.93);
}
.banner-section .banner-image {
  position: absolute; /* Ensure image stays within bounds of its parent container */
  bottom: 0; /* Align the image to the bottom of the section */
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* Ensures the image fills the container without distorting */
}
.banner-section .banner-image img {
  width: 45%;
}
.banner-section .banner-form {
  border: 2px solid #28a745;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  position: relative; /* Allows the form to stay above the image */
}
.banner-section h1 {
  font-weight: bold;
  color: #333;
}
.banner-section .icons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.banner-section .form-control {
  border-radius: 30px;
}
.banner-section .btn-primary {
  background-color: #ff5722;
  border: none;
  padding: 10px 30px;
  border-radius: 30px;
}
.banner-section .btn-primary:hover {
  background-color: #ee3900;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
  .banner-section {
    padding: 40px 0;
  }
  .banner-image {
    height: 100%; /* Set a fixed height for the image */
  }
  .banner-form {
    padding: 15px;
    width: 100%;
  }
  /* Adjust column layout for mobile */
  .banner-section .row {
    flex-direction: column-reverse; /* Stack the image and form on top of each other */
  }
  .col-lg-6 {
    width: 100%;
  }
  .col-md-12 {
    width: 100%;
  }
}
.custom-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Align items to the top */
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden; /* Prevent overflow issues */
  transition: transform 0.3s, box-shadow 0.3s;
}
.custom-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.custom-card .content {
  flex: 1;
  padding: 40px;
}
.custom-card .content .heading {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
}
.custom-card .content .description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}
.custom-card .content .btn {
  background-color: #ff5722;
  color: #fff;
  font-weight: bold;
}
.custom-card .content .btn:hover {
  background-color: #e64a19;
}
.custom-card .image {
  position: relative; /* Ensure no absolute positioning */
  bottom: 0; /* Align image with the bottom of the card */
  display: flex; /* Center image */
  justify-content: flex-end;
  align-items: flex-end;
}
.custom-card .image img {
  width: 100%; /* Adjust size dynamically */
  max-width: 273px; /* Maintain the aspect ratio */
  height: auto;
  margin: 0; /* Remove any margin */
  -o-object-fit: contain;
     object-fit: contain; /* Prevent image clipping */
}

@media (max-width: 768px) {
  .custom-card {
    flex-direction: column;
    text-align: center;
  }
  .custom-card .image {
    margin-top: 10px;
    justify-content: center;
  }
}
.popular-category-section {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 70px 50px;
}
.popular-category-section .header {
  margin-bottom: 20px;
}
.popular-category-section .header .title {
  font-size: 2rem;
  font-weight: bold;
  color: #054d3c;
}
.popular-category-section .header .subtitle {
  color: #666;
  margin-top: 5px;
}
.popular-category-section .header .view-all {
  font-size: 1rem;
  color: #054d3c;
  text-decoration: underline;
}
.popular-category-section .header .view-all:hover {
  text-decoration: none;
}
.popular-category-section .slider-wrapper {
  overflow-x: clip; /* Prevent content overflow */
  position: relative;
}
.popular-category-section .slider-wrapper .slider {
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease-in-out;
  animation: slide 10s linear infinite;
}
.popular-category-section .slider-wrapper .slider:hover {
  animation-play-state: paused; /* Pause on hover */
}
.popular-category-section .slider-wrapper .slider .card {
  flex: 0 0 300px; /* Set card width */
  background-color: #ff5722;
  border-radius: 15px;
  padding: 20px;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1; /* Ensure default stacking order */
}
.popular-category-section .slider-wrapper .slider .card:hover {
  transform: translateY(-10px); /* Slight lift on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  z-index: 3; /* Ensure the hovered card is above others */
}
.popular-category-section .slider-wrapper .slider .card .card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.popular-category-section .slider-wrapper .slider .card .card-description {
  font-size: 1rem;
  margin-bottom: 20px;
}
.popular-category-section .slider-wrapper .slider .card .card-link {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f4b400;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 4; /* Ensure the button is always on top */
}
.popular-category-section .slider-wrapper .slider .card .card-link:hover {
  background-color: #e59400;
  transform: scale(1.1); /* Slight zoom on hover */
}
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-300px); /* Adjust based on card width */
  }
  50% {
    transform: translateX(-600px);
  }
  75% {
    transform: translateX(-900px);
  }
  100% {
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .popular-category-section .slider-wrapper .slider {
    flex-wrap: nowrap;
  }
  .popular-category-section .slider-wrapper .slider .card {
    flex: 0 0 250px; /* Smaller card width for mobile */
  }
}

.courses-section {
  background-color: #fef2f2;
  padding: 40px 20px;
}
.courses-section .header {
  margin-bottom: 20px;
}
.courses-section .header .title {
  font-size: 2rem;
  font-weight: bold;
  color: #054d3c;
}
.courses-section .header .subtitle {
  color: #666;
  margin-top: 5px;
}
.courses-section .header .view-all {
  font-size: 1rem;
  color: #054d3c;
  text-decoration: underline;
}
.courses-section .header .view-all:hover {
  text-decoration: none;
}
.courses-section .courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.courses-section .course-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0; /* Initially hidden */
  transform: translateY(50px); /* Positioned below */
  transition: opacity 0.6s ease, transform 0.6s ease; /* Smooth animation */
}
.courses-section .course-card.slide-in {
  opacity: 1;
  transform: translateY(0); /* Move to visible position */
}
.courses-section .course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.courses-section .course-card .card-header {
  position: relative;
}
.courses-section .course-card .card-header img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
.courses-section .course-card .card-header .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #f4b400;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 20px;
}
.courses-section .course-card .card-header .badge.bestseller {
  background: #ff5722;
}
.courses-section .course-card .card-header .badge.popular {
  background: #007bff;
}
.courses-section .course-card .school-name {
  font-size: 1rem;
  font-weight: 500;
  background: #ff5722;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #ffffff;
  padding: 12px;
  text-align: center;
}
.courses-section .course-card .card-body {
  padding: 15px;
}
.courses-section .course-card .card-body .course-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin: 5px 0;
  line-height: 1.4;
}
.courses-section .course-card .card-body .course-details {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}
.courses-section .course-card .card-body .course-details li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.courses-section .course-card .card-body .course-details li:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
}
.courses-section .course-card .card-body .course-details li:nth-child(1):before {
  background-image: url("../images/icons/collage_icon1.png");
}
.courses-section .course-card .card-body .course-details li:nth-child(2):before {
  background-image: url("../images/icons/collage_icon2.png");
}
.courses-section .course-card .card-body .course-details li:nth-child(3):before {
  background-image: url("../images/icons/collage_icon3.png");
}
.courses-section .course-card .card-footer {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  background: #7d010d;
}
.courses-section .course-card .card-footer .btn {
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.courses-section .course-card .card-footer .btn.view-course {
  background: #ff5722;
  color: white;
}
.courses-section .course-card .card-footer .btn.view-course a {
  text-decoration: none;
  color: #ffffff;
}
.courses-section .course-card .card-footer .btn.view-course:hover {
  background: #e64a19;
}
.courses-section .course-card .card-footer .btn.syllabus {
  background: #f4b400;
  color: white;
}
.courses-section .course-card .card-footer .btn.syllabus:hover {
  background: #d89e00;
}

.Partners_form {
  background-color: aliceblue;
}

.note {
  color: #c40d1e;
  font-weight: 500;
  font-size: 0.9rem;
}

.partner_form_card {
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.17);
}
.partner_form_card .row .col-md-6 {
  margin-bottom: 12px;
}
.partner_form_card .form-container {
  width: 60%;
  margin: 20px auto;
  background-color: #f9f9f9;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.partner_form_card .form-container h2 {
  text-align: center;
  color: #333;
}
.partner_form_card .form-container .form-group {
  margin-bottom: 15px;
}
.partner_form_card .form-container .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}
.partner_form_card .form-container .form-group input, .partner_form_card .form-container .form-group textarea, .partner_form_card .form-container .form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}
.partner_form_card .form-container .form-group textarea {
  resize: vertical;
}
.partner_form_card .form-container .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.partner_form_card .form-container .checkbox-group input {
  margin-right: 5px;
}
.partner_form_card .form-container button {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.partner_form_card .form-container button:hover {
  background-color: #0056b3;
}

.student-journey-section {
  padding: 129px 20px;
  background: url("../images/Banner_back.png") no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.student-journey-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 61, 52, 0.92);
  border-radius: 0px 0px 215px 0px;
  z-index: -1;
}
.student-journey-section .header {
  margin-bottom: 30px;
}
.student-journey-section .header .title {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
}
.student-journey-section .header .subtitle {
  font-size: 1rem;
  color: #d9d9d9;
  margin-top: 10px;
}
.student-journey-section .slider {
  position: relative;
  overflow: hidden;
}
.student-journey-section .slider .slide {
  display: none;
  flex-direction: column;
  align-items: center;
}
.student-journey-section .slider .slide.active {
  display: flex;
}
.student-journey-section .slider .slide .journey {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.student-journey-section .slider .slide .journey .journey-left,
.student-journey-section .slider .slide .journey .journey-right {
  position: relative;
}
.student-journey-section .slider .slide .journey .journey-left .badge,
.student-journey-section .slider .slide .journey .journey-right .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #a0d468;
  color: white;
  padding: 10px 25px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}
.student-journey-section .slider .slide .journey .journey-left .journey-box,
.student-journey-section .slider .slide .journey .journey-right .journey-box {
  border: 2px solid #a0d468;
  border-radius: 15px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.student-journey-section .slider .slide .journey .journey-left .journey-box .company-logo img,
.student-journey-section .slider .slide .journey .journey-right .journey-box .company-logo img {
  max-width: 100px;
  margin-bottom: 10px;
}
.student-journey-section .slider .slide .journey .journey-left .journey-box h3,
.student-journey-section .slider .slide .journey .journey-right .journey-box h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}
.student-journey-section .slider .slide .journey .journey-center {
  position: relative;
}
.student-journey-section .slider .slide .journey .journey-center .student-image {
  position: relative;
}
.student-journey-section .slider .slide .journey .journey-center .student-image img {
  width: 225px;
  height: 270px;
}
.student-journey-section .slider .slide .journey .journey-center .student-image .hike {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #54a663;
  color: white;
  padding: 5px 15px;
  font-size: 0.9rem;
  border-radius: 20px;
}
.student-journey-section .slider .slide .journey .journey-arrow {
  flex: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.student-journey-section .slider .slide .journey .journey-arrow img {
  max-width: 50px;
}
.student-journey-section .slider .slide .student-info {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 20px;
}
.student-journey-section .slider .slide .student-info h4 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
}
.student-journey-section .slider .slide .student-info p {
  font-size: 1rem;
  color: #d9d9d9;
}
.student-journey-section .slider .slide .student-info .nav-button {
  background: #a0d468;
  color: white;
  border: none;
  padding: 11px 20px;
  font-size: 1.2rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.student-journey-section .slider .slide .student-info .nav-button:hover {
  background-color: #e64a19;
}
.student-journey-section .cta {
  margin-top: 30px;
}
.student-journey-section .cta .cta-button {
  background: #ff5722;
  color: white;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.student-journey-section .cta .cta-button:hover {
  background-color: #e64a19;
}
@media (max-width: 768px) {
  .student-journey-section .journey {
    flex-direction: column;
  }
  .student-journey-section .journey .journey-left,
  .student-journey-section .journey .journey-right {
    margin-bottom: 10px;
  }
  .student-journey-section .journey .journey-arrow img {
    transform: rotate(90deg); /* Rotate arrow for vertical alignment */
  }
  .student-journey-section .student-info {
    flex-direction: column;
    gap: 10px;
  }
  .student-journey-section .student-info .nav-button {
    margin-top: 10px;
  }
}

.career-goals-section {
  padding: 60px 20px;
  background-color: #e1efea;
  border-radius: 0px 0px 215px 215px;
}
.career-goals-section .header {
  margin-bottom: 40px;
  text-align: center;
}
.career-goals-section .header .title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #054d3c;
}
.career-goals-section .header .subtitle {
  font-size: 1rem;
  color: #666;
  margin-top: 10px;
}
.career-goals-section .tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}
.career-goals-section .tabs .tab {
  background: none;
  border: none;
  color: #666;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}
.career-goals-section .tabs .tab.active {
  color: #54a663;
  border-bottom: 3px solid #54a663;
}
.career-goals-section .tabs .tab:hover {
  color: #54a663;
}
.career-goals-section .tab-content .tab-panel {
  display: none;
}
.career-goals-section .tab-content .tab-panel.active {
  display: block;
}
.career-goals-section .row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.career-goals-section .row .col-md-5 {
  flex: 1;
}
.career-goals-section .row .col-md-5 .student-image {
  max-width: 110%;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.career-goals-section .row .col-md-7 {
  flex: 2;
}
.career-goals-section .row .col-md-7 .steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.career-goals-section .row .col-md-7 .steps .step {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  border: 2px solid #54a663;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  width: 60%;
}
.career-goals-section .row .col-md-7 .steps .step:nth-child(2) {
  border-color: #ff5722;
  margin-left: 100px;
}
.career-goals-section .row .col-md-7 .steps .step:nth-child(3) {
  border-color: #54a663;
}
.career-goals-section .row .col-md-7 .steps .step .step-number {
  position: absolute;
  top: -20px;
  left: 20px;
  background: #54a663;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #fff;
}
.career-goals-section .row .col-md-7 .steps .step .step-number:nth-child(2) {
  background: #ff5722;
}
.career-goals-section .row .col-md-7 .steps .step .step-number:nth-child(3) {
  background: #007bff;
}
.career-goals-section .row .col-md-7 .steps .step .content {
  margin-left: 60px; /* Adjust for step number spacing */
}
.career-goals-section .row .col-md-7 .steps .step .content h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}
.career-goals-section .row .col-md-7 .steps .step .content p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}
@media (max-width: 768px) {
  .career-goals-section .row {
    flex-direction: column;
  }
  .career-goals-section .row .col-md-5 {
    margin-bottom: 20px;
  }
  .career-goals-section .tabs {
    flex-direction: row;
    gap: 15px;
  }
  .career-goals-section .steps .step {
    width: 85% !important;
  }
  .career-goals-section .steps .step:nth-child(2) {
    margin-left: 0px !important;
  }
  .career-goals-section .steps .step .step-number {
    top: -10px; /* Adjust for smaller screens */
    left: 10px;
  }
  .career-goals-section .steps .step .content {
    margin-left: 50px;
  }
}

.testimonial-section {
  padding: 60px 20px;
  background-color: #ffffff;
  border-radius: 20px;
}
.testimonial-section .header {
  margin-bottom: 40px;
  text-align: center;
}
.testimonial-section .header .title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #054d3c;
}
.testimonial-section .header .subtitle {
  font-size: 1rem;
  color: #666;
  margin-top: 10px;
}
.testimonial-section .carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
  position: relative;
}
.testimonial-section .carousel .carousel-images {
  display: flex;
  gap: 15px;
  overflow-x: clip;
  width: 32%;
  padding: 10px 20px;
}
.testimonial-section .carousel .carousel-images .carousel-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid transparent;
  transition: all 0.3s ease-in-out;
}
.testimonial-section .carousel .carousel-images .carousel-image.active {
  border-color: #54a663;
  transform: scale(1.3);
}
.testimonial-section .carousel .carousel-nav {
  background: none;
  border: 2px solid #54a663;
  color: #54a663;
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  padding: 10px 18px;
  transition: background-color 0.3s, color 0.3s;
}
.testimonial-section .carousel .carousel-nav:hover {
  background: #54a663;
  color: white;
}
.testimonial-section .student-profile {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 20px;
}
.testimonial-section .student-profile .profile-details {
  background: #f7faf9;
  padding: 30px 25px;
  border: 2px solid #54a663;
  border-radius: 10px;
  width: 45%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.testimonial-section .student-profile .profile-details h4 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #054d3c;
  margin-bottom: 15px;
}
.testimonial-section .student-profile .profile-details a.linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0077b5;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}
.testimonial-section .student-profile .profile-details a.linkedin i {
  font-size: 1.2rem;
}
.testimonial-section .student-profile .profile-details a.linkedin:hover {
  text-decoration: underline;
}
.testimonial-section .student-profile .profile-details .details-list {
  margin-top: 15px;
  padding: 0;
  list-style: none;
}
.testimonial-section .student-profile .profile-details .details-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #666;
  margin-bottom: 10px;
}
.testimonial-section .student-profile .profile-details .details-list li i {
  font-size: 1.2rem;
  color: #ff5722;
}
.testimonial-section .student-profile .profile-image {
  flex: 0 0 auto;
}
.testimonial-section .student-profile .profile-image img {
  width: 234px;
  height: 256px;
}
.testimonial-section .student-profile .profile-details h4 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}
.testimonial-section .student-profile .profile-details a.linkedin {
  color: #0077b5;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}
.testimonial-section .student-profile .profile-details a.linkedin:hover {
  text-decoration: underline;
}
.testimonial-section .student-profile .profile-details .details-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}
.testimonial-section .student-profile .profile-details .details-list li {
  font-size: 1rem;
  color: #666;
  margin-bottom: 5px;
}
.testimonial-section .student-profile .profile-details .details-list li:first-child {
  font-weight: bold;
}
.testimonial-section .testimonial-content {
  margin-top: 10px;
  padding: 30px;
  border: 2px solid #54a663;
  border-radius: 15px;
  background: #f7faf9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 75%;
  margin-left: 15%;
}
.testimonial-section .testimonial-content blockquote {
  font-size: 1.5rem;
  font-style: italic;
  color: #054d3c;
  margin-bottom: 15px;
}
.testimonial-section .testimonial-content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 10px;
}
.testimonial-section .testimonial-content .read-more {
  color: #54a663;
  font-weight: bold;
  text-decoration: none;
}
.testimonial-section .testimonial-content .read-more:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .testimonial-section .student-profile {
    flex-direction: column;
    text-align: center;
  }
  .testimonial-section .student-profile .profile-details {
    text-align: center;
  }
  .testimonial-section .student-profile .profile-details .details-list {
    margin: 10px auto;
  }
  .testimonial-section .carousel-images {
    gap: 10px;
  }
  .testimonial-section .carousel-images .carousel-image {
    width: 50px;
    height: 50px;
  }
  .testimonial-section .testimonial-content {
    width: 90% !important;
    margin-left: 4% !important;
  }
  .testimonial-section .profile-details {
    width: 95% !important;
  }
}

.healthcare-section {
  padding: 60px 20px;
}
.healthcare-section .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.healthcare-section .container .image-section {
  position: relative;
}
.healthcare-section .container .image-section .main-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.healthcare-section .container .image-section .sub-image {
  position: absolute;
  bottom: -20px;
  left: 20px;
}
.healthcare-section .container .image-section .sub-image img {
  width: 40%;
  border-radius: 10px;
  border: 5px solid white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.healthcare-section .container .content-section h5 {
  color: #198754;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}
.healthcare-section .container .content-section h2 {
  font-size: 2rem;
  color: #01534d;
  margin-bottom: 15px;
  font-weight: bold;
}
.healthcare-section .container .content-section p {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 20px;
}
.healthcare-section .container .content-section .services {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.healthcare-section .container .content-section .services .service {
  flex: 0 0 48%;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.healthcare-section .container .content-section .services .service i {
  font-size: 2rem;
  color: #a0d468;
}
.healthcare-section .container .content-section .services .service h4 {
  font-size: 1rem;
  color: #212529;
  font-weight: bold;
}
.healthcare-section .container .content-section .services .service p {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 5px 0 0;
}
.healthcare-section .container .content-section .features {
  margin-top: 20px;
  padding: 0;
  list-style: none;
}
.healthcare-section .container .content-section .features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #6c757d;
}
.healthcare-section .container .content-section .features li i {
  color: #a0d468;
}
.healthcare-section .container .content-section .cta-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #ff5722;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.healthcare-section .container .content-section .cta-button:hover {
  background-color: #f3420c;
}
@media (max-width: 768px) {
  .healthcare-section .container {
    flex-direction: column;
  }
  .healthcare-section .container .image-section .sub-image img {
    width: 60%;
    left: auto;
    bottom: -15px;
    right: 20px;
  }
  .healthcare-section .container .content-section {
    margin-top: 30px;
  }
  .healthcare-section .container .content-section h2 {
    font-size: 1.5rem;
  }
  .healthcare-section .container .content-section .services .service {
    flex: 0 0 100%;
  }
}

.healthcare-services-section {
  padding: 70px 20px;
  background-color: #e1f0eb;
}
.healthcare-services-section .header {
  margin-bottom: 30px;
}
.healthcare-services-section .header h2 {
  font-size: 2rem;
  color: #01534d;
  font-weight: bold;
}
.healthcare-services-section .header p {
  font-size: 1rem;
  color: #6c757d;
}
.healthcare-services-section .services-content {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.healthcare-services-section .services-content .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex: 1 1 65%;
}
.healthcare-services-section .services-content .service-cards .service-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  flex: 0 0 48%;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s;
}
.healthcare-services-section .services-content .service-cards .service-card:hover {
  background: #f3ffe6;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  border: 2px solid #a0d468;
}
.healthcare-services-section .services-content .service-cards .service-card .icon-container {
  background: #a0d468;
  border-radius: 10px;
  padding: 10px;
  color: white;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 60px;
  min-height: 60px;
}
.healthcare-services-section .services-content .service-cards .service-card .text-container h4 {
  font-size: 1.2rem;
  color: #212529;
  font-weight: bold;
  margin-bottom: 10px;
}
.healthcare-services-section .services-content .service-cards .service-card .text-container p {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 0;
}
.healthcare-services-section .services-content .opening-hours {
  flex: 0 0 30%;
  background: linear-gradient(135deg, #198754, #a0d468);
  color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.healthcare-services-section .services-content .opening-hours h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.healthcare-services-section .services-content .opening-hours p {
  font-size: 1rem;
  margin-bottom: 20px;
}
.healthcare-services-section .services-content .opening-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}
.healthcare-services-section .services-content .opening-hours ul li {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.healthcare-services-section .services-content .opening-hours ul li i {
  margin-right: 10px;
}
.healthcare-services-section .services-content .opening-hours ul li span {
  font-weight: bold;
}
.healthcare-services-section .services-content .opening-hours .appointment-button {
  background: #ff5722;
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}
.healthcare-services-section .services-content .opening-hours .appointment-button:hover {
  background-color: #198754;
  color: #ffffff;
}
.healthcare-services-section .services-content .opening-hours .appointment-button i {
  margin-right: 8px;
}
@media (max-width: 768px) {
  .healthcare-services-section .services-content {
    flex-direction: column;
  }
  .healthcare-services-section .services-content .service-cards {
    flex: 1 1 100%;
  }
  .healthcare-services-section .services-content .opening-hours {
    margin-top: 20px;
    flex: 1 1 100%;
  }
  .healthcare-services-section .services-content .service-card {
    flex: auto !important;
  }
}

.medical-services {
  padding: 70px 20px;
  background-color: #ffffff;
}
.medical-services .header {
  text-align: center;
  margin-bottom: 30px;
}
.medical-services .header .department-title {
  font-size: 1.2rem;
  color: #54a663;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.medical-services .header .title {
  font-size: 2rem;
  font-weight: bold;
  color: #01534d;
}
.medical-services .header .subtitle {
  font-size: 1rem;
  color: #6c757d;
  margin-top: 10px;
}
.medical-services .icons-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}
.medical-services .icons-wrapper .icon-box {
  width: 70px;
  height: 70px;
  background: #ffffff;
  border: 2px solid #ff5722;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative; /* For tooltip positioning */
  transition: all 0.3s ease;
  cursor: pointer;
}
.medical-services .icons-wrapper .icon-box i {
  font-size: 1.8rem;
  color: #ff5722;
  transition: color 0.3s ease;
}
.medical-services .icons-wrapper .icon-box.active {
  background: #ff5722;
  border-color: #ffc107;
}
.medical-services .icons-wrapper .icon-box.active i {
  color: #ffffff;
}
.medical-services .icons-wrapper .icon-box:hover {
  transform: scale(1.1);
  border-color: #ff5722;
  background: #f4fffb;
  /* Tooltip Styling */
}
.medical-services .icons-wrapper .icon-box:hover i {
  color: #ff5722;
}
.medical-services .icons-wrapper .icon-box:hover::after {
  content: attr(data-tooltip); /* Tooltip text from the data attribute */
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: #f16521;
  color: #ffffff;
  font-size: 0.85rem;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.medical-services .icons-wrapper .icon-box:hover::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #f16521 transparent transparent transparent;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.medical-services .icons-wrapper .icon-box:hover::after, .medical-services .icons-wrapper .icon-box:hover::before {
  opacity: 1;
  visibility: visible;
}
.medical-services .department-details {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  padding: 45px 40px;
}
.medical-services .department-details .department-image {
  flex: 1;
}
.medical-services .department-details .department-image img {
  width: 100%;
  border-radius: 10px;
}
.medical-services .department-details .department-info {
  flex: 1;
}
.medical-services .department-details .department-info h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #01534d;
  margin-bottom: 15px;
}
.medical-services .department-details .department-info p {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 15px;
}
.medical-services .department-details .department-info .services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.medical-services .department-details .department-info .services-list li {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}
.medical-services .department-details .department-info .services-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  color: #a0d468;
}
.medical-services .department-details .department-info .know-more {
  padding: 10px 20px;
  font-size: 1rem;
  color: #ffffff;
  background: #f16521;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.medical-services .department-details .department-info .know-more:hover {
  background: #fa4a12;
}
@media (max-width: 768px) {
  .medical-services .department-details {
    flex-direction: column;
  }
  .medical-services .department-details .department-info {
    text-align: center;
  }
  .medical-services .department-details .department-info .services-list {
    text-align: left;
  }
  .medical-services .icons-wrapper {
    flex-wrap: wrap;
    gap: 15px;
  }
  .medical-services .icons-wrapper .icon-box {
    width: 60px;
    height: 60px;
  }
  .medical-services .icons-wrapper .icon-box i {
    font-size: 1.6rem;
  }
  .medical-services .icons-wrapper .icon-box::after {
    font-size: 0.75rem;
    bottom: -30px;
  }
}

.contact-section {
  padding: 50px 20px;
  background-color: #f8f9fa;
}
.contact-section .contact-wrapper {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact-section .contact-wrapper .contact-form {
  flex: 1;
  min-width: 55%;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.contact-section .contact-wrapper .contact-form h2 {
  font-size: 1.8rem;
  color: #343a40;
  margin-bottom: 10px;
}
.contact-section .contact-wrapper .contact-form p {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 20px;
}
.contact-section .contact-wrapper .contact-form form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}
.contact-section .contact-wrapper .contact-form form .form-row input,
.contact-section .contact-wrapper .contact-form form .form-row select {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.contact-section .contact-wrapper .contact-form form .form-row input:focus,
.contact-section .contact-wrapper .contact-form form .form-row select:focus {
  border-color: #0056b3;
}
.contact-section .contact-wrapper .contact-form form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  resize: none;
  min-height: 100px;
  margin-bottom: 15px;
}
.contact-section .contact-wrapper .contact-form form textarea:focus {
  border-color: #0056b3;
}
.contact-section .contact-wrapper .contact-form form .btn {
  background-color: #f16521;
  color: #ffffff;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact-section .contact-wrapper .contact-form form .btn:hover {
  background-color: #ff5722;
}
.contact-section .contact-wrapper .contact-info {
  background-color: #054d3c;
  padding: 20px 30px;
  border-radius: 10px;
  color: #ffffff;
}
.contact-section .contact-wrapper .contact-info h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.contact-section .contact-wrapper .contact-info .info-box {
  background: #003632;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}
.contact-section .contact-wrapper .contact-info .info-box .info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.contact-section .contact-wrapper .contact-info .info-box .info-item i {
  font-size: 1.5rem;
  color: #a0d468;
}
.contact-section .contact-wrapper .contact-info .info-box .info-item p {
  margin: 0;
  font-size: 1rem;
}
.contact-section .contact-wrapper .contact-info .info-box .info-item p strong {
  font-weight: bold;
}
.contact-section .contact-wrapper .contact-info h4 {
  margin-top: 20px;
  font-size: 1.3rem;
}
.contact-section .contact-wrapper .contact-info .social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.contact-section .contact-wrapper .contact-info .social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #f16521;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s;
  text-decoration: none;
}
.contact-section .contact-wrapper .contact-info .social-links a:hover {
  background: #a0d468;
  color: #ffffff;
}
@media (max-width: 768px) {
  .contact-section .contact-wrapper {
    flex-direction: column;
  }
  .contact-section .contact-wrapper .contact-form {
    min-width: 100%;
  }
  .contact-section .contact-wrapper .contact-info {
    min-width: 100%;
    margin-top: 20px;
  }
}

.course-details-container {
  display: flex;
  gap: 20px;
  padding: 20px;
}
.course-details-container .sidebar {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 100%;
}
.course-details-container .sidebar h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}
.course-details-container .sidebar .course-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.course-details-container .sidebar .course-list li {
  margin-bottom: 10px;
  background: #f9f9f9;
  padding: 10px 15px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.course-details-container .sidebar .course-list li.active {
  background: linear-gradient(45deg, #ff6600, #ff9966);
  color: #fff;
}
.course-details-container .sidebar .course-list li.active a {
  color: #fff;
}
.course-details-container .sidebar .course-list li a {
  text-decoration: none;
  font-size: 1rem;
  color: #333;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.course-details-container .sidebar .course-list li a i {
  font-size: 0.8rem;
}
.course-details-container .sidebar .course-list li:hover {
  background: linear-gradient(45deg, #ff6600, #ff9966);
}
.course-details-container .sidebar .course-list li:hover a {
  color: #fff;
}
.course-details-container .sidebar .contact-box {
  background: linear-gradient(45deg, #ff6600, #ff9966);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
.course-details-container .sidebar .contact-box h4 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.course-details-container .sidebar .contact-box p {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.course-details-container .sidebar .contact-box p i {
  margin-right: 10px;
}
.course-details-container .sidebar .contact-box .download-btn {
  background: #fff;
  color: #ff6600;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.course-details-container .sidebar .contact-box .download-btn:hover {
  background: #ff6600;
  color: #fff;
}
@media (max-width: 768px) {
  .course-details-container .sidebar {
    padding: 15px;
  }
  .course-details-container .sidebar .course-list li {
    flex-direction: column;
    align-items: flex-start;
  }
  .course-details-container .sidebar .contact-box {
    margin-top: 20px;
  }
}
.course-details-container .content {
  padding: 20px;
  background-color: #fff;
}
.course-details-container .content .featured-image {
  text-align: center;
  margin-bottom: 30px;
}
.course-details-container .content .featured-image img {
  width: 100%;
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.course-details-container .content .service-overview,
.course-details-container .content .service-center {
  margin-bottom: 40px;
}
.course-details-container .content .service-overview h2,
.course-details-container .content .service-center h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}
.course-details-container .content .service-overview p,
.course-details-container .content .service-center p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}
.course-details-container .content .service-center .service-images {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.course-details-container .content .service-center .service-images .image-box {
  flex: 1 1 calc(50% - 20px);
  text-align: center;
}
.course-details-container .content .service-center .service-images .image-box img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}
.course-details-container .content .service-center .service-images .image-box p {
  font-size: 0.9rem;
  color: #666;
}
@media (max-width: 768px) {
  .course-details-container .content .service-images {
    flex-direction: column;
  }
  .course-details-container .content .service-images .image-box {
    flex: 1 1 100%;
  }
}
.course-details-container .faq-section {
  padding: 40px 20px;
  background-color: #f8f8f8;
  border-top: 1px solid #e0e0e0;
}
.course-details-container .faq-section h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
.course-details-container .faq-section p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}
.course-details-container .faq-section .faq-list .faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}
.course-details-container .faq-section .faq-list .faq-item:last-child {
  border-bottom: none;
}
.course-details-container .faq-section .faq-list .faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  transition: color 0.3s;
}
.course-details-container .faq-section .faq-list .faq-item .faq-question:hover {
  color: #ff5722;
}
.course-details-container .faq-section .faq-list .faq-item .faq-question i {
  font-size: 1.2rem;
  color: #ff5722;
}
.course-details-container .faq-section .faq-list .faq-item .faq-answer {
  display: none;
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
  line-height: 1.5;
}
.course-details-container .faq-section .faq-list .faq-item .faq-answer.active {
  display: block;
}
.course-details-container .faq-section .faq-list .faq-item.active .faq-answer {
  display: block;
}
@media (max-width: 768px) {
  .course-details-container {
    flex-direction: column;
  }
  .course-details-container .sidebar {
    width: 100%;
    margin-bottom: 20px;
  }
  .course-details-container .content {
    width: 100%;
  }
}

.footer-section {
  background-color: #073642;
  padding: 40px 20px;
  color: #ffffff;
  padding-bottom: 2px;
}
.footer-section .footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-section .footer-content .footer-column {
  flex: 1;
  margin: 0 15px;
  max-width: 33%;
}
.footer-section .footer-content .footer-column a {
  text-decoration: none;
  color: #ffffff;
}
.footer-section .footer-content .footer-column a:hover {
  color: #a0d468;
}
.footer-section .footer-content .footer-column h4 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #a0d468;
  margin-bottom: 15px;
}
.footer-section .footer-content .footer-column p {
  font-size: 0.9rem;
  color: #d9d9d9;
  margin-bottom: 10px;
}
.footer-section .footer-content .footer-column p strong {
  color: #a0d468;
}
.footer-section .footer-content .footer-column .footer-links {
  list-style: none;
  padding: 0;
}
.footer-section .footer-content .footer-column .footer-links li {
  font-size: 0.9rem;
  color: #d9d9d9;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.footer-section .footer-content .footer-column .footer-links li a {
  text-decoration: none;
  color: #ffffff;
}
.footer-section .footer-content .footer-column .footer-links li a:hover {
  color: #a0d468;
}
.footer-section .footer-content .footer-column .footer-links li i {
  color: #a0d468;
  margin-right: 8px;
  transition: transform 0.3s ease-in-out;
}
.footer-section .footer-content .footer-column .footer-links li:hover {
  color: #a0d468;
  transform: translateX(5px);
}
.footer-section .footer-content .footer-column .footer-links li:hover i {
  transform: scale(1.2);
}
.footer-section .footer-bottom {
  margin-top: 20px;
  border-top: 1px solid rgba(217, 217, 217, 0.1294117647);
  padding-top: 15px;
}
.footer-section .footer-bottom p {
  font-size: 0.8rem;
  color: #d9d9d9;
}
.footer-section .footer-bottom p .highlight {
  color: #a0d468;
}
@media (max-width: 768px) {
  .footer-section .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-section .footer-content .footer-column {
    max-width: 100%;
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=style.css.map */