/********** Template CSS **********/
:root {
  --primary: #06bbcc;
  --light: #f0fbfc;
  --dark: #181d38;
}

.fw-medium {
  font-weight: 600 !important;
}

.fw-semi-bold {
  font-weight: 700 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 0px;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar-light .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
  height: 75px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
}

.navbar-light.sticky-top {
  top: -100px;
  transition: 0.5s;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .dropdown-menu.fade-down {
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header carousel ***/
@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
    position: relative;
    min-height: 500px;
  }

  .header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.header-carousel .owl-nav {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  margin: 7px 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
  font-size: 22px;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.page-header {
  background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)),
    url(../img/carousel-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header-inner {
  background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.section-title::before {
  position: absolute;
  content: "";
  width: calc(100% + 80px);
  height: 2px;
  top: 4px;
  left: -40px;
  background: var(--primary);
  z-index: -1;
}

.section-title::after {
  position: absolute;
  content: "";
  width: calc(100% + 120px);
  height: 2px;
  bottom: 5px;
  left: -60px;
  background: var(--primary);
  z-index: -1;
}

.section-title.text-start::before {
  width: calc(100% + 40px);
  left: 0;
}

.section-title.text-start::after {
  width: calc(100% + 60px);
  left: 0;
}

/*** Service ***/
.service-item {
  background: var(--light);
  transition: 0.5s;
}

.service-item:hover {
  margin-top: -10px;
  background: var(--primary);
}

.service-item * {
  transition: 0.5s;
}

.service-item:hover * {
  color: var(--light) !important;
}

/*** Categories & Courses ***/
.category img,
.course-item img {
  transition: 0.5s;
}

.category a:hover img,
.course-item:hover img {
  transform: scale(1.1);
}

/*** Team ***/
.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
  color: #ffffff !important;
}

.testimonial-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border: 1px solid #cccccc;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

/*** Footer ***/
.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-weight: normal;
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
.contact-email {
  display: flex;
  align-items: center;
}
.contact-email i {
  margin-right: 5px;
}
.contact-email a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.d-flex {
  display: flex;
  /* justify-content: center; */
  gap: 15px;
  padding-top: 20px;
}
.btn-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid white;
  color: white;
  transition: background-color 0.3s, color 0.3s;
}
.instagram:hover {
  background-color: #e4405f;
  border-color: #e4405f;
  color: white;
}
.facebook:hover {
  background-color: #3b5998;
  border-color: #3b5998;
  color: white;
}
.whatsapp:hover {
  background-color: #25d366;
  border-color: #25d366;
  color: white;
}
.linkedin:hover {
  background-color: #0077b5;
  border-color: #0077b5;
  color: white;
}
.gallery-section img {
  width: 100%;
  border-radius: 5px;
  transition: transform 0.3s, opacity 0.3s;
}
.gallery-section img:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

/* web */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
}

.course-container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  color: #333;
}

.course-section {
  margin-top: 20px;
}

ul {
  list-style-type: none;
  padding: 0;
}

ul li {
  padding: 5px 0;
}

ul li ul {
  padding-left: 20px;
}

.dropdown-btn {
  width: 100%;
  background-color: #439096;
  color: white;
  padding: 10px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-align: left;
  outline: none;
  transition: background-color 0.3s, transform 0.3s;
}

.dropdown-btn:hover {
  background-color: #29b9a1;
  transform: scale(1.03);
}

.dropdown-content {
  display: none;
  padding: 0;
}

.dropdown-content ul {
  background-color: #f9f9f9;
  margin: 0;
  padding: 10px;
  border: 1px solid #ddd;
  border-top: none;
}

.dropdown-content ul li:hover {
  background-color: #e0e0e0;
}
/* enrol */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
}

.enroll-container {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background-color: #aad7dd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

h1 {
  color: #333;
  margin-bottom: 20px;
}

.enroll-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

.submit-btn {
  padding: 12px 20px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #2980b9;
}

@media (max-width: 600px) {
  .enroll-container {
    padding: 15px;
    margin: 20px;
  }

  .submit-btn {
    font-size: 14px;
    padding: 10px;
  }
}

/* Footer Alignment */
/* Basic footer styling */
.footer {
  background-color: #333;
  color: #fff;
  padding: 2.5em 0;
}

.footer .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1em;
}

.footer .row {
  display: flex;
  flex-wrap: wrap;
}

.footer .col {
  flex: 1 1 25%;
  padding: 1em;
  box-sizing: border-box;
}

.footer h5 {
  font-size: 1.125em;
}

.footer p,
.footer a {
  font-size: 1em;
}

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

.footer .btn {
  display: inline-block;
  padding: 0.625em 1.25em;
  font-size: 1em;
  border: none;
  border-radius: 0.3125em;
  transition: background-color 0.3s ease;
}

.footer .btn-primary {
  background-color: #007bff;
  color: white;
}

/* Specific Styles */
.footer .btn.btn-social {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.375em;
  height: 2.375em;
  margin-right: 0.3125em;
  color: #9b9b9b;
  border: 0.0625em solid #9b9b9b;
  border-radius: 50%;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
  border-color: var(--light);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 0.3125em;
  padding: 0;
  text-align: left;
  color: #9b9b9b;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0.625em;
}

.footer .btn.btn-link:hover {
  color: #ffffff;
  letter-spacing: 0.0625em;
  box-shadow: none;
}

.footer .copyright {
  padding: 1.5625em 0;
  border-top: 0.0625em solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: var(--primary);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .footer .col {
    flex: 1 1 50%;
  }
  .footer h5 {
    font-size: 1em;
  }
  .footer p,
  .footer a {
    font-size: 0.875em;
  }
  .footer .btn {
    padding: 0.5em 1em;
    font-size: 0.875em;
  }
}

@media (max-width: 576px) {
  .footer .col {
    flex: 1 1 100%;
  }
  .footer h5 {
    font-size: 0.875em;
  }
  .footer p,
  .footer a {
    font-size: 0.75em;
  }
  .footer .btn {
    padding: 0.375em 0.75em;
    font-size: 0.75em;
  }
}

/* Specific Styles for Newsletter Signup Section */
.footer .position-relative {
  max-width: 25em;
  width: 100%;
}

.footer .form-control {
  width: calc(100% - 4.375em);
  padding: 1em;
  border: 0.0625em solid #ccc;
  border-radius: 0.3125em 0 0 0.3125em;
}

.footer .btn-primary {
  width: 4.375em;
  padding: 0.625em;
  border-radius: 0 0.3125em 0.3125em 0;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  transition: 0.3s;
}

@media (max-width: 576px) {
  .footer .col {
    flex: 1 1 100%;
  }
  .footer h5 {
    font-size: 0.875em;
  }
  .footer p,
  .footer a {
    font-size: 0.75em;
  }
  .footer .btn {
    padding: 0.375em 0.75em;
    font-size: 0.75em;
  }
}

/* Specific Styles for Newsletter Signup Section */
.footer .position-relative {
  max-width: 25em;
  width: 100%;
}

.footer .form-control {
  width: calc(100% - 4.375em);
  padding: 1em;
  border: 0.0625em solid #ccc;
  border-radius: 0.3125em 0 0 0.3125em;
}

.footer .btn-primary {
  width: 4.375em;
  padding: 0.625em;
  border-radius: 0 0.3125em 0.3125em 0;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .footer .form-control {
    width: calc(100% - 3.75em);
    padding: 0.75em;
  }

  .footer .btn-primary {
    width: 3.75em;
    padding: 0.5em;
  }

  .footer h5 {
    font-size: 1em;
  }
  .footer p,
  .footer a {
    font-size: 0.875em;
  }
}

@media (max-width: 576px) {
  .footer .form-control {
    width: calc(100% - 3.125em);
    padding: 0.625em;
  }

  .footer .btn-primary {
    width: 3.125em;
    padding: 0.375em;
  }

  .footer h5 {
    font-size: 0.875em;
  }
  .footer p,
  .footer a {
    font-size: 0.75em;
  }
}

/* Additional Media Queries for very small screens */
@media (max-width: 400px) {
  .footer .form-control {
    width: calc(100% - 2.5em);
    padding: 0.5em;
  }

  .footer .btn-primary {
    width: 2.5em;
    padding: 0.25em;
  }

  .footer h5,
  .footer p,
  .footer a {
    font-size: 0.75em;
  }
}
/*  */
/* General Styles */
.container-xxl {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #fff;
  color: #007bff;
  font-weight: 600;
  border-radius: 5px;
}

h1,
h5 {
  color: #343a40;
}

.text-primary {
  color: #007bff !important;
}

.contact-email,
.contact-phone,
.contact-address {
  display: flex;
  align-items: center;
}

.contact-email i,
.contact-phone i,
.contact-address i {
  margin-right: 5px;
}

.contact-email a,
.contact-phone a,
.contact-address a {
  color: inherit; /* Inherit the color from the parent element */
  text-decoration: none;
}

.contact-email a:hover,
.contact-phone a:hover,
.contact-address a:hover {
  text-decoration: underline;
}

/* Contact Section */
.row.g-4 .col-lg-4,
.row.g-4 .col-md-6 {
  margin-bottom: 2rem;
}

.d-flex {
  display: flex;
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.bg-primary {
  background-color: #007bff !important;
}

.text-white {
  color: #fff !important;
}

@media (max-width: 768px) {
  .text-center {
    text-align: center !important;
  }

  .wow {
    visibility: visible !important;
  }
}
/*  */
/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
}

.newsletter {
  margin: auto;
  padding: 20px;
  background-color: #343a40;
  color: white;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.newsletter h5 {
  color: #fff;
}

.newsletter .form-control {
  border-radius: 0;
}

.newsletter .btn-primary {
  background-color: #007bff;
  border: none;
  border-radius: 0;
}

.newsletter .btn-primary:hover {
  background-color: #0056b3;
}

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

  .newsletter .position-relative {
    max-width: 100%;
  }

  .newsletter .btn-primary {
    width: 100%;
    position: static;
    transform: none;
  }
}

@media (max-width: 576px) {
  .newsletter .form-control {
    padding-left: 20px;
    padding-right: 20px;
  }
}
