@font-face {
  font-family: "VarelaRound";
  src: url(../fonts/Varela_Round/VarelaRound-Regular.ttf);
}

html,
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  font-family: VarelaRound, sans-serif;
  font-size: 16px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 400;
  text-align: left;
  color: #333333;
}

p {
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  transition: 0.5s;
}

h1, h2, h3, h4, h5, h6 {
  color: #113347;
  font-style: normal;
  margin: 20px 0 5px;
  line-height: 1.2;
  font-weight: 600;
  transition: 0.5s;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.25rem; margin-bottom: 20px; }
h6 { font-size: 0.875rem; }

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s ease-out;
}

a:focus,
.btn:focus {
  text-decoration: none;
  outline: none;
}

a:hover,
a:focus {
  color: var(--secondary-color);
  text-decoration: none;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  transition: 0.5s;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

a, i, ol, li, ul {
  font-style: normal;
  font-weight: 400;
}

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

*::-moz-selection {
  background: var(--secondary-color);
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: var(--secondary-color);
  color: #fff;
  text-shadow: none;
}

::selection {
  background: var(--secondary-color);
  color: #fff;
  text-shadow: none;
}

.btn {
  background: linear-gradient(to right, color-mix(in srgb, var(--primary-color) 65%, black), var(--primary-color));
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  background: linear-gradient(to right, color-mix(in srgb, var(--primary-color) 45%, black), var(--primary-color));
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.btn-outline {
  background-color: #fff !important;
  color: #121621;
  border-radius: 8px;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: linear-gradient(to right, color-mix(in srgb, var(--primary-color) 65%, black), var(--primary-color));
  border: none;
  color: #ffffff;
}



.topbar {
  background-color: color-mix(in srgb, var(--primary-color) 80%, black);
  color: rgba(255, 255, 255, 0.7);
  padding: 0.75rem 0;
  font-size: 0.85rem;
}

.topbar .info-item {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
}

.topbar .info-item i {
  margin-right: 0.5rem;
}

.topbar .social-icons a {
  color: rgba(255, 255, 255, 0.85);
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.topbar .social-icons a:hover {
  color: var(--secondary-color);
}

.navbar {
  background-color: #ffffff;
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  z-index: 1030;
}

.navbar.static {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}


.navbar-brand img {
  height: 45px;
}


.navbar-nav .nav-link {
  color: #121621;
  font-weight: 500;
  margin: 0 0.6rem !important;
  padding: 1.6rem 0 !important;
  transition: color 0.3s ease;
}

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

.navbar .dropdown:hover .dropdown-menu {
  display: block;
  background: var(--primary-color);
}
.navbar .dropdown-toggle::after {
  margin-left: 5px;
}

.navbar .dropdown .dropdown-menu .dropdown-item {
  color: #fff;
}

.navbar .dropdown .dropdown-menu .dropdown-item:hover,
.navbar .dropdown .dropdown-menu .dropdown-item.active {
  background: var(--secondary-color);
}

.btn-signup {
  padding: 0.5rem 1.2rem 0.3rem;
  margin-right: 0.5rem;
  font-size: 15px;
}

.btn-signin {
  padding: 0.4rem 1.2rem;
  font-size: 15px;
}

.search-icon span {
  cursor: pointer;
}
.search {
  position: absolute;
  margin-top: -5px;
  background: transparent;
  border: none;
}
.search .form-control, .search .btn {
  height: 45px;
}
.search .form-control {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.search .btn {
  width: 45px;
  background: var(--primary-color);
  color: #fff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.search .btn i {
  position: absolute;
  top: 15px;
  left: 20px;
}



.mobile-menu {
  background-color: #121621;
  color: #ffffff;
  width: 75%;
}

.offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.offcanvas-title {
  color: #ffffff;
  font-weight: 700;
}

.offcanvas .btn-close {
  filter: invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.offcanvas .btn-close:hover {
  opacity: 1;
}

.offcanvas-body .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin: 0;
}

.offcanvas-body .navbar-nav .nav-link:hover,
.offcanvas-body .navbar-nav .nav-link.active {
  color: var(--secondary-color);
}

.mobile-menu .dropdown-menu {
  display: none;
  position: static;
  width: 100%;
  box-shadow: none;
  border: none;
  background-color: color-mix(in srgb, var(--sidebar-color) 95%, white);
  padding: 0;
}

.mobile-menu .nav-item.show .dropdown-menu {
  display: block !important;
}

.mobile-menu .dropdown-item {
  padding: 8px 24px;
  font-size: 14px;
  color: #ddd;
}

.mobile-menu .dropdown-item:hover {
  background-color: #46105B;
  color: #fff;
}

.offcanvas-body .offcanvas-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.offcanvas-body .offcanvas-buttons .btn {
  width: 100%;
}

.mobile-search {
  padding: 10px 10px 10px 15px;
}
.mobile-search form {
  position: relative;
}
.mobile-search input {
  display: block;
  width: 100%;
  border: none;
  padding: 10px 45px 10px 20px;
  font-size: 15px;
  height: 45px;
  background: #F7F7F9;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.mobile-search input::placeholder {
  font-size: 15px;
  color: #141E37;
}
.mobile-search button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  padding: 0;
  right: 20px;
  line-height: 1;
  background: transparent;
  color: var(--primary-color);
}

@media (max-width: 991.98px) {
  .topbar .d-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .topbar .info-item {
    margin-bottom: 0.5rem;
    margin-right: 0;
  }
  .navbar .navbar-collapse {
    background-color: #ffffff;
  }
}





/*=======================================
   Hero Section
========================================*/
.carousel-slide-inner {
  min-height: 450px;
  height: auto;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 0;
  position: relative;
}
.carousel-slide-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
}

.carousel-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 30px;
  z-index: 2;
}

.carousel-text {
  max-width: 50%;
}

.carousel-text h1 {
  font-size: 2.1rem;
  margin-bottom: 1.3rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.carousel-text p {
  font-size: 1.2rem;
  line-height: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-btn {
  padding: 10px 25px;
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  background: transparent;
  border: none;
  z-index: 2;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-icon {
  background-color: white;
  border-radius: 50%;
  padding: 12px 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #000;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}


@media (max-width: 768px) {
  .carousel-content {
    flex-direction: column;
    text-align: center;
  }

  .carousel-text {
    max-width: 95% !important;
  }

  .carousel-text h1 {
    font-size: 2rem;
  }

  .carousel-text p {
    font-size: 1rem;
  }
}




/*=======================================
   Breadcrumb Section
========================================*/
.page-header {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 3rem 0;
  color: #fff;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}

.page-header > * {
  position: relative;
  z-index: 2;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 3rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 1rem;
}

.breadcrumb {
  background-color: transparent;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
  content: '>';
}




/*=======================================
   Intro Section
========================================*/
.intro-section {
  background-image: url("../images/bg/pattern-7.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0;
  position: relative;
}

.intro-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.35);
}
.intro-section > * {
  position: relative;
  z-index: 2;
}

.intro-content {
  padding: 1rem;
}

.intro-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.intro-content p {
  color: #6c757d;
}

.intro-content .btn {
  padding: 0.7rem 1.5rem;
}

.intro-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}



/*=======================================
   Whyus Section
========================================*/
.whyus-section {
  background-image: url("../images/bg/pattern-4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0;
  position: relative;
}

.whyus-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.35);
}
.whyus-section > * {
  position: relative;
  z-index: 2;
}

.whyus-content {
  padding: 1rem;
}

.whyus-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.whyus-content p {
  color: #6c757d;
}

.whyus-content .btn {
  padding: 0.7rem 1.5rem;
}

.whyus-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}




/*=======================================
   Corporate Section
========================================*/
.corporate-section {
  background-image: url("../images/bg/pattern-7.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0;
  position: relative;
}

.corporate-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.35);
}
.corporate-section > * {
  position: relative;
  z-index: 2;
}

.corporate-content {
  padding: 1rem;
}

.corporate-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.corporate-content p {
  color: #6c757d;
}

.corporate-content .btn {
  padding: 0.7rem 1.5rem;
}

.corporate-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}



/*=======================================
   About Us Section
========================================*/
.about-us-section {
  background-image: url("../images/bg/pattern-7.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0 3rem;
  position: relative;
}
.about-us-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.35);
}
.about-us-section > * {
  position: relative;
  z-index: 2;
}

.about-us-section img {
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.mv-section {
  background-color: #f7fafc;
  padding: 3rem 0;
}
.mv-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
}
.mv-card .icon {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mv-card .icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}
.mv-card .text {
  text-align: left;
  flex-grow: 1;
}
.value-card .text h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}
.mv-card .text p {
  color: #718096;
  margin: 0;
}
@media (max-width: 576px) {
  .mv-card .text h5 {
    font-size: 1.1rem;
  }
  .mv-card {
    flex-direction: row;
    text-align: left;
  }
  .mv-card .icon {
    margin-bottom: 0;
  }
}



/*=======================================
   Contact Page
========================================*/
.contact-section {
  background-image: url("../images/bg/pattern-7.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 0;
  position: relative;
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.35);
}
.contact-section > * {
  position: relative;
  z-index: 2;
}
.contact-container {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info-section {
  background-color: rgba(247, 247, 247, 0.4);
  padding: 3rem;
  border-radius: 10px 0 0 10px;
  border-right: 1px solid #e0e0e0;
}

.contact-section .contact-form-section {
  padding: 3rem;
}

.contact-form-section .btn {
  padding: 0.8rem 2rem;
}

.contact-section .info-item {
  margin-bottom: 2rem;
}

.contact-section .info-icon {
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-section .social-icons .btn {
  background: transparent !important;
  color: #000;
  border: 1px solid #dcdcdc;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.contact-section .social-icons .btn:hover {
  background: linear-gradient(to right, color-mix(in srgb, var(--primary-color) 45%, black), var(--primary-color)) !important;
  border-color: var(--primary-color);
  color: #fff !important;
}

.contact-section .form-control {
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  padding: 0.8rem;
}


@media (max-width: 991.98px) {
  .contact-info-section {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 10px 10px 0 0;
  }
}




/*=======================================
   Courses Section
========================================*/
.course-section {
  padding: 4rem 0;
  background: #eee;
}
.course-card {
  border: none;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-hover-shadow);
  background-color: var(--primary-color);
}

.course-card .card-img-top {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.course-card .course-title {
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-block;
  position: relative;
  margin-bottom: 0.5rem; 
  transition: color 0.3s ease;
}

.course-card .course-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  position: relative;
  transition: color 0.3s ease;
}

.course-card:hover .course-link {
  color: white;
}

.course-card .card-body {
  padding: 1rem;
}

.course-card .card-img-top {
  border-top: 5px solid var(--secondary-color);
}

.pagination .page-item.active .page-link {
  background-color: var(--primary-color) !important; 
  border-color: var(--primary-color) !important;
  color: white;
  font-weight: 600;
}
.pagination .page-link {
  color: var(--default-text);
  border-radius: 0.5rem;
  margin: 0 0.4rem; 
  transition: background-color 0.2s;
  cursor: pointer;
}
.pagination .page-link:hover {
  background-color: #e0e0e0;
  color: var(--primary-color);
}



/*=======================================
   Course Page
========================================*/
.course-page .section-title {
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.course-page .section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 9999px;
}
.course-page .accordion ul {
  list-style: none;
  padding-left: 0;
}
.course-page .card-course-info {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.75rem;
}
.course-page .list-group-feature i {
  width: 20px;
  text-align: center;
}

#tab-overview ul,
#tab-outcomes ul {
  list-style: none;
  padding: 0;
}
#tab-overview li,
#tab-outcomes li {
  margin-bottom: 8px;
  padding-left: 30px;
  position: relative;
}
#tab-overview li::before,
#tab-outcomes li::before {
  content: '\f058' !important;
  font-family: 'Font Awesome 7 Free' !important;
  font-weight: 900 !important;
  position: absolute;
  left: 0;
  color: var(--tertiary-color);
}

.card-course-info {
  background: #efefef;
  border: 2px solid var(--tertiary-color) !important;
}

.card-course-info .price {
  color: color-mix(in srgb, var(--secondary-color) 65%, black);
}

.card-course-info hr {
  background: color-mix(in srgb, var(--secondary-color) 85%, black);
  height: 3px !important;
  opacity: 1;
  border: none;
}

.card-course-info .list-group-item {
  background: #efefef !important;
}

#EnrollModal .modal-dialog {
  background: transparent;
}

#EnrollModal .modal-content {
  max-width: 450px !important;
  background: #f7f7f7;
  padding: 1rem;
}

#EnrollModal .modal-header {
  border: none!important;
  padding: 0 1rem;
}

#EnrollModal .modal-title {
  color: var(--primary-color);
  margin-top: 0 !important;
}

#EnrollModal .modal-body {
  max-height: 95vh;
  overflow-y: auto;
}

#EnrollModal .select2-selection__rendered {
    line-height: 35px !important;
    text-align: left !important;
}

#EnrollModal .select2-container .select2-selection--single {
    height: 38px !important;
    text-align: left !important;
}

#EnrollModal .select2-selection__arrow {
    height: 37px !important;
}
.action-lnk a {
  color: #1962CD;
}




/*=======================================
   Certificate verification
========================================*/
.cert-area {
  position: relative;
  background-color: #f8f9fa;
  padding: 30px 0;
}
.verify-section {
  max-width: 600px;
  margin: 50px auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.cert-area h3 {
  font-size: 22px;
}
.result-card {
  display: none;
  margin-top: 20px;
}
.btn-verify {
  background-color: #5DBC34;
  border-color: #5DBC34;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.btn-verify:hover {
  background-color: #4ea62c;
  border-color: #4ea62c;
  color: #fff;
}




/*=======================================
   Badge Area
========================================*/
.cert-badge {
  position: relative;
  background-color: #f8f9fa;
  padding: 4rem 0;
}
.cert-section {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.cert-badge h3 {
  font-size: 22px;
}

.cert-badge tr td:first-child {
  width: 150px;
}




/*=======================================
   Organization Pages
========================================*/
.organization {
  background-image: url("../images/bg/pattern-7.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0;
  position: relative;
}

.organization::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.45);
}
.organization > * {
  position: relative;
  z-index: 2;
}
.organization h2 {
  margin-bottom: 1.3rem;
  font-size: 1.5rem;
}
.organization h2,
.organization h3 {
  color: #333;
  font-weight: 600;
}
.organization h3 {
  font-size: 18px;
  margin-top: 1.5rem;
}

.organization ul {
  padding-left: 20px;
  list-style: disc;
}
.organization a {
  color: #00ADEF;
}

.partner-registration {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.partner-registration .form-control {
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.partner-registration .select2-selection__rendered {
    line-height: 35px !important;
    text-align: left !important;
}

.partner-registration .select2-container .select2-selection--single {
    height: 38px !important;
    text-align: left !important;
}

.partner-registration .select2-selection__arrow {
    height: 37px !important;
}

.partner-registration .btn {
  padding: 0.7rem;
}



/*=======================================
   Legal Pages
========================================*/
.legal-section {
  padding: 2rem 0 0;
  position: relative;
  background: white;
  color: #111110;
}
.legal-section h2 {
  margin-bottom: 1.3rem;
  font-size: 1.5rem;
}
.legal-section h2,
.legal-section h3 {
  color: #333;
  font-weight: 600;
}
.legal-section h3 {
  font-size: 18px;
  margin-top: 1.5rem;
}
.legal-section ul {
  padding-left: 20px;
  list-style: disc;
}
.legal-section a {
  color: #00ADEF;
}




/*=======================================
   FAQs Section
========================================*/
.faq-section {
  padding: 3rem 0;
}
.accordion-button {
  font-weight: 600;
  color: #343a40;
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
}
.accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: var(--tertiary-color);
  box-shadow: none;
}
.accordion-body {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-top: none;
  padding: 20px;
}
.accordion-item {
  margin-bottom: 15px;
  border: none;
}

.accordion-item ul, .accordion-item ol {
  padding-left: 25px;
}
.accordion-item ul {
  list-style: disc;
}



/*=======================================
   Login Page
========================================*/
.auth-section {
  background: #f2f3f4;
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Arial', sans-serif;
}
.auth-section .container {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  max-width: 400px;
  width: 100%;
}
.auth-section .signup {
  max-width: 600px;
}
.login-logo {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.auth-section h3 {
  font-size: 27px;
}
.auth-section .input-group {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.auth-section .input-group .input-group-text {
  background: var(--primary-color);
  color: white;
  border: none;
}

.auth-section .form-control {
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.auth-section .signup .form-control {
  padding: 0.4rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.auth-section .select2-selection__rendered {
    line-height: 35px !important;
    text-align: left !important;
}

.auth-section .select2-container .select2-selection--single {
    height: 38px !important;
    text-align: left !important;
}

.auth-section .select2-selection__arrow {
    height: 37px !important;
}

.auth-section .btn {
  padding: 0.7rem;
}
.forgot-password {
  display: block;
  margin-top: 10px;
  color: var(--primary-color);
  text-decoration: none;
  transition: 0.3s;
}

.forgot-password:hover {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .login-container {
    padding: 30px;
  }
}


/********Forgot password**********/
.auth-section .container h2 {
  margin-bottom: 20px;
  font-size: 28px;
  color: #333;
}
.forgot .input-group {
  display: flex;
  align-items: center;
  background: #f1f1f1;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 15px;
}
.forgot .input-group i {
  margin-right: 10px;
  color: var(--primary-color);
}
.forgot .input-group input {
  border: none;
  background: none;
  outline: none;
  flex: 1;
  font-size: 1rem;
}
.back-to-login {
  display: block;
  margin-top: 15px;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
}
.back-to-login:hover {
  text-decoration: underline;
}




/*=======================================
   Footer
========================================*/
.footer {
  background-color: var(--sidebar-color);
  padding-top: 5rem;
  position: relative;
  z-index: 0;
}

.footer img {
  max-height: 55px;
}

.footer h5 {
  font-weight: 600;
  color: #ffffff;
  position: relative;
  margin-bottom: 1.5rem;
  margin-top: 0;
  padding-top: 0;
}

.footer .footer-heading {
  color: #ffffff;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.5rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer .text-white-50 {
  color: rgba(255, 255, 255, 0.6) !important;
}

.footer .list-unstyled li {
  margin-bottom: 0.7rem;
}

.footer .list-unstyled a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.footer .list-unstyled a:hover {
  color: var(--secondary-color) !important;
}

.footer .list-unstyled a .fa-chevron-right {
  font-size: 0.75rem;
  margin-right: 0.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer .list-unstyled a:hover .fa-chevron-right {
  transform: translateX(5px);
  color: var(--secondary-color);
}

.footer .social-icons {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.footer .social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: color-mix(in srgb, var(--sidebar-color) 90%, white);
  color: #ffffff;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.footer .social-icons a:hover {
  background-color: var(--secondary-color);
  color: #ffffff;
}

.footer .contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer .contact-info i {
  color: #ffffff;
  font-size: 1.1rem;
  margin-right: 0.75rem;
  padding-top: 3px;
}

.footer .contact-info span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.copyright-bar {
  background-color: color-mix(in srgb, var(--sidebar-color) 75%, black);
  padding: 1.5rem 0;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .footer {
    padding-top: 3rem;
  }
  .footer .footer-heading {
    margin-top: 1.5rem;
  }
}

.scroll-to-top,
.whatsapp-button {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #46105B;
  border: none;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.scroll-to-top:hover,
.whatsapp-button:hover {
  background-color: #ffffff;
}

.whatsapp-button {
  bottom: 60px;
  background-color: var(--secondary-color);
  color: white;
}

.whatsapp-button:hover {
  background-color: color-mix(in srgb, var(--secondary-color) 95%, black);
}


/*=======================================
   Loader
========================================*/
.loader {
  display: none;
}

.spinner {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 40px;
}

.spinner div {
  display: inline-block;
  position: absolute;
  left: 6px;
  width: 7px;
  background: var(--primary-color);
  color: #007C2B;
  -webkanimation: spinner 1.2s infinite ease-in-out;
  animation: spinner 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.spinner div:nth-child(1) {
  left: 6px;
  animation-delay: -0.16s;
}

.spinner div:nth-child(2) {
  left: 26px;
  animation-delay: -0.12s;
}

.spinner div:nth-child(3) {
  left: 45px;
  animation-delay: -0.8s;
}

.spinner div:nth-child(4) {
  left: 65px;
  animation-delay: -0.4s;
}

.spinner div:nth-child(5) {
  left: 85px;
  animation-delay: 0;
}

@keyframes spinner {
  0% {
    top: 6px;
    height: 51px;
  }

  50%,
  100% {
    top: 19px;
    height: 26px;
  }
}

@-webkkeyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    -webktransform: scaleY(0.4)
  }

  20% {
    -webktransform: scaleY(1.0)
  }
}

@keyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webktransform: scaleY(0.4);
  }

  20% {
    transform: scaleY(1.0);
    -webktransform: scaleY(1.0);
  }
}