@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37423b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #bf9000; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #272828;  /* The default color of the main navmenu links */
  --nav-hover-color: #bf9000; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #272828; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #bf9000; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: rgba(245, 18, 18, 0.2);
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--background-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 2;
}

.header .logo img {
  max-height: 95px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 10px 15px;
    margin-left: 2px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--contrast-color);
    background-color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 2px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    margin: 0;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--contrast-color);
    background-color: var(--nav-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: white;
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0 0 0;
  position: relative;
}

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer .address p {
  margin-bottom: 0px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

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

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

.footer a,
.footer .nav-link {
  color: white;
  transition: color 0.3s ease;
}

.footer a:hover,
.footer .nav-link:hover {
  color: #ddd;
  text-decoration: underline;
}

.footer .social-links a {
  color: white;
}

.footer .social-links a:hover {
  color: #ddd;
  border-color: #ddd;
}

/* ===== Steps-2 Styles ===== */
.steps-2 {
  padding-top: 1px;
  padding-bottom: 1px;
}

.steps-2 .steps-wrapper {
  position: relative;
  padding: 20px 0;
}

.steps-2 .steps-wrapper::before {
  content: "";
  position: absolute;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.steps-2 .step-item {
  margin-bottom: 50px;
  width: 100%;
  position: relative;
}

.steps-2 .step-item:last-child {
  margin-bottom: 0;
}

.steps-2 .step-item:nth-child(even) .step-content {
  flex-direction: row-reverse;
}

.steps-2 .step-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.steps-2 .step-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease-in-out;
}

.steps-2 .step-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: transform 0.3s ease-in-out;
}

.steps-2 .step-info {
  flex: 1;
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}

.steps-2 .step-info:hover {
  transform: translateY(-5px);
}

.steps-2 .step-number {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.steps-2 h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--heading-color);
}

.steps-2 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .steps-2 .steps-wrapper::before {
    left: 25px;
  }

  .steps-2 .step-item .step-content {
    flex-direction: row !important;
  }

  .steps-2 .step-icon {
    width: 60px;
    height: 60px;
  }

  .steps-2 .step-icon i {
    font-size: 24px;
  }

  .steps-2 .step-info {
    padding: 20px;
  }

  .steps-2 h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .steps-2 .step-content {
    gap: 20px;
  }

  .steps-2 .step-icon {
    width: 50px;
    height: 50px;
  }

  .steps-2 .step-icon i {
    font-size: 20px;
  }

  .steps-2 .step-info {
    padding: 15px;
  }

  .steps-2 h3 {
    font-size: 1.2rem;
  }

  .steps-2 p {
    font-size: 0.95rem;
  }
}

/* ===== Connect Now Button Styles ===== */
#connectNowContainer {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

#connectNowBtn {
  background: linear-gradient(135deg, #28a745, #218838);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

#connectNowBtn .fa {
  font-size: 20px;
}

#connectNowBtn:hover {
  background: linear-gradient(135deg, #218838, #1e7e34);
  transform: scale(1.05);
}

#connectOptions {
  display: none;
  flex-direction: column;
  margin-top: 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  min-width: 240px;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#connectOptions a {
  padding: 14px 20px;
  color: #343a40;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  transition: background 0.25s ease;
  display: flex;
  align-items: center;
  gap: 14px;
}

#connectOptions a:last-child {
  border-bottom: none;
}

#connectOptions a .fa {
  font-size: 18px;
  color: #28a745;
}

#connectOptions a:hover {
  background-color: #f1fdf4;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 900px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title div {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title div .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
  padding-top: 0px;
  position: relative;
  overflow: hidden;
  padding-bottom: 90px;
}

.hero-2 .hero-container {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/education/showcase-1.webp") center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--contrast-color);
  padding: 120px 20px;
  position: relative;
}

.hero-2 .hero-container .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-2 .hero-container .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .hero-2 .hero-container .hero-content h1 {
    font-size: 2.5rem;
  }
}

.hero-2 .hero-container .hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .hero-2 .hero-container .hero-content p {
    font-size: 1.1rem;
  }
}

.hero-2 .hero-container .hero-content .cta-buttons {
  margin-bottom: 30px;
}

.hero-2 .hero-container .hero-content .cta-buttons a {
  display: inline-block;
  padding: 12px 30px;
  margin: 0 10px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .hero-2 .hero-container .hero-content .cta-buttons a {
    display: block;
    margin: 10px auto;
    max-width: 200px;
  }
}

.hero-2 .hero-container .hero-content .cta-buttons .btn-apply {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero-2 .hero-container .hero-content .cta-buttons .btn-apply:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-2 .hero-container .hero-content .cta-buttons .btn-tour {
  background-color: transparent;
  color: var(--contrast-color);
  border: 2px solid var(--contrast-color);
}

.hero-2 .hero-container .hero-content .cta-buttons .btn-tour:hover {
  background-color: var(--contrast-color);
  color: var(--heading-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-2 .hero-container .hero-content .announcement {
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 8px;
  padding: 15px 20px;
  display: inline-flex;
  align-items: center;
}

.hero-2 .hero-container .hero-content .announcement .announcement-badge {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-right: 15px;
  text-transform: uppercase;
}

.hero-2 .hero-container .hero-content .announcement p {
  margin: 0;
  font-size: 1rem;
}

.hero-2 .highlights-container {
  margin-top: -70px;
  position: relative;
  z-index: 10;
}

.hero-2 .highlights-container .highlight-item {
  background-color: var(--surface-color);
  border-radius: 8px;
  padding: 30px 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.hero-2 .highlights-container .highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.hero-2 .highlights-container .highlight-item .icon {
  font-size: 2.5rem;
  height: 70px;
  width: 70px;
  line-height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.hero-2 .highlights-container .highlight-item h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero-2 .highlights-container .highlight-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero-2 .event-banner {
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  padding: 30px 0;
  margin-top: 40px;
}

.hero-2 .event-banner h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero-2 .event-banner p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.hero-2 .event-banner .btn-register {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
}

.hero-2 .event-banner .btn-register:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero-2 .event-banner .btn-register {
    margin-top: 15px;
    width: 100%;
  }
}

.hero-2 .event-banner .admission-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero-2 .event-banner {
    text-align: center;
  }

  .hero-2 .event-banner .event-icon,
  .hero-2 .event-banner .admission-icon {
    margin: 0 auto 15px;
    max-width: 100px;
  }
}

/*--------------------------------------------------------------
# Features 3 Section
--------------------------------------------------------------*/
.features-3 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.features-3 .features-item+.features-item {
  margin-top: 60px;
}

.features-3 .features-item .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 30px;
  border-radius: 10px;
}

.features-3 .features-item h3 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 15px;
}

.features-3 .features-item .more-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 30px;
  border-radius: 6px;
}

.features-3 .features-item .more-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.features-3 .features-item ul {
  list-style: none;
  padding: 0;
}

.features-3 .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features-3 .features-item ul li:last-child {
  padding-bottom: 0;
}

.features-3 .features-item ul i {
  font-size: 20px;
  margin-right: 10px;
  color: var(--accent-color);
}

.features-3 .features-item img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .about .content h2 {
    font-size: 32px;
  }
}

.about .content .description {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.8;
}

.about .benefits {
  margin-bottom: 40px;
}

.about .benefits .benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.about .benefits .benefit-item .icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  margin-right: 20px;
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.3s ease;
}

.about .benefits .benefit-item:hover .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .benefits .benefit-item .text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.about .benefits .benefit-item .text p {
  font-size: 15px;
  margin-bottom: 0;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about .cta .btn {
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.about .cta .btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
}

.about .image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about .image:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 82%, rgba(0, 0, 0, 0.1));
}

.about .image img {
  transition: all 0.5s ease;
}

.about .image img:hover {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .about .image {
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Testimonials 2 Section
--------------------------------------------------------------*/
.testimonials-2 .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  position: relative;
  height: 100%;
}

.testimonials-2 .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials-2 .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials-2 .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials-2 .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials-2 .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials-2 .testimonial-item .quote-icon-left,
.testimonials-2 .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials-2 .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials-2 .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials-2 .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials-2 .swiper-wrapper {
  height: auto;
}

.testimonials-2 .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials-2 .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials-2 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials-2 .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials-2 .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials-2 .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Services 5 Section
--------------------------------------------------------------*/
.services-5 .service-item {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
}

.services-5 .service-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.services-5 .service-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.services-5 .service-item:hover::before {
  transform: scaleY(1);
}

.services-5 .service-item:hover .service-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotateY(180deg);
}

.services-5 .service-item:hover .service-icon i {
  transform: rotateY(180deg);
}

.services-5 .service-item:hover .service-link i {
  transform: translateX(5px);
}

.services-5 .service-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  transition: all 0.5s ease;
}

.services-5 .service-icon i {
  font-size: 2rem;
  transition: transform 0.5s ease;
}

.services-5 .service-content {
  flex-grow: 1;
}

.services-5 .service-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.services-5 .service-content p {
  margin-bottom: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services-5 .service-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.services-5 .service-link span {
  margin-right: 0.5rem;
}

.services-5 .service-link i {
  transition: transform 0.3s ease;
}

.services-5 .service-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

@media (max-width: 767.98px) {
  .services-5 .service-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .services-5 .service-icon {
    width: 60px;
    height: 60px;
    margin-right: 1rem;
  }

  .services-5 .service-icon i {
    font-size: 1.5rem;
  }

  .services-5 .service-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .services-5 .service-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  .services-5 .service-item {
    flex-direction: column;
    text-align: center;
  }

  .services-5 .service-item::before {
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
  }

  .services-5 .service-item:hover::before {
    transform: scaleX(1);
  }

  .services-5 .service-icon {
    margin-right: 0;
    margin-bottom: 1.25rem;
  }

  .services-5 .service-link {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Hero 3 Section
--------------------------------------------------------------*/
.hero-3 {
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding-bottom: 80px;
}

.hero-3 .badge-wrapper .d-inline-flex {
  padding: 0.5rem 0.75rem;
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero-3 .badge-wrapper .d-inline-flex .icon-circle {
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-3 .badge-wrapper .d-inline-flex .icon-circle i {
  font-size: 0.875rem;
  color: var(--heading-color);
}

.hero-3 .badge-wrapper .d-inline-flex .badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--heading-color);
}

@media (max-width: 767.98px) {
  .hero-3 .badge-wrapper .d-inline-flex .badge-text {
    font-size: 0.75rem;
  }
}

.hero-3 .hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

@media (max-width: 991.98px) {
  .hero-3 .hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-3 .hero-title {
    font-size: 1.75rem;
  }
}

.hero-3 .hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 2rem;
}

@media (max-width: 767.98px) {
  .hero-3 .hero-description {
    font-size: 1rem;
  }
}

.hero-3 .cta-wrapper .btn-primary {
  padding: 0.75rem 1.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero-3 .cta-wrapper .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-3 .hero-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.hero-3 .hero-image:hover {
  transform: translateY(-5px);
}

.hero-3 .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.hero-3 .feature-boxes {
  margin-top: 3rem;
}

.hero-3 .feature-boxes .feature-box {
  padding: 1.5rem;
  border-radius: 12px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 576px) {
  .hero-3 .feature-boxes .feature-box {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
}

.hero-3 .feature-boxes .feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.hero-3 .feature-boxes .feature-box .feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-3 .feature-boxes .feature-box .feature-icon i {
  font-size: 1.75rem;
  color: var(--heading-color);
}

.hero-3 .feature-boxes .feature-box .feature-content {
  flex: 1;
}

.hero-3 .feature-boxes .feature-box .feature-content .feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
}

.hero-3 .feature-boxes .feature-box .feature-content .feature-text {
  font-size: 0.95rem;
  color: var(--default-color);
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .hero-3 .feature-boxes .feature-box {
    padding: 1.25rem;
  }

  .hero-3 .feature-boxes .feature-box .feature-icon {
    width: 50px;
    height: 50px;
  }

  .hero-3 .feature-boxes .feature-box .feature-icon i {
    font-size: 1.5rem;
  }

  .hero-3 .feature-boxes .feature-box .feature-title {
    font-size: 1.125rem;
  }

  .hero-3 .feature-boxes .feature-box .feature-text {
    font-size: 0.875rem;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding-top: 61px;
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 50%, var(--background-color) 100%);
  padding-bottom: 92px;
}

.call-to-action .cta-wrapper {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 93%), 0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 90%);
  overflow: hidden;
}

.call-to-action .background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .background-pattern .wave {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(45deg, transparent 0%, color-mix(in srgb, var(--accent-color), transparent 96%) 30%, color-mix(in srgb, var(--accent-color), transparent 98%) 70%, transparent 100%);
  transform: skewX(-15deg) translateX(20%);
}

.call-to-action .background-pattern .geometric-shape {
  position: absolute;
  border-radius: 50%;
}

.call-to-action .background-pattern .geometric-shape.shape-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
  top: 5%;
  left: 10%;
  animation: floatRotate 8s ease-in-out infinite;
}

.call-to-action .background-pattern .geometric-shape.shape-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(225deg, color-mix(in srgb, var(--heading-color), transparent 88%), color-mix(in srgb, var(--heading-color), transparent 96%));
  bottom: 10%;
  right: 15%;
  animation: floatRotate 6s ease-in-out infinite reverse;
}

.call-to-action .content-section {
  position: relative;
  z-index: 2;
}

.call-to-action .content-section .label-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 10%));
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 8px 16px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.call-to-action .content-section .label-badge i {
  font-size: 1.1rem;
}

.call-to-action .content-section h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.call-to-action .content-section p {
  font-size: 1.125rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.call-to-action .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.call-to-action .features-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.call-to-action .features-grid .feature-item .feature-icon {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action .features-grid .feature-item span {
  font-weight: 500;
  color: var(--heading-color);
  font-size: 0.95rem;
}

.call-to-action .cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.call-to-action .cta-actions .btn {
  transition: all 0.3s ease;
  font-weight: 600;
  border-radius: 12px;
}

.call-to-action .cta-actions .btn.btn-cta-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 15%));
  color: var(--contrast-color);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 12px 24px color-mix(in srgb, var(--accent-color), transparent 85%), 0 0 0 0 var(--accent-color);
}

.call-to-action .cta-actions .btn.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px color-mix(in srgb, var(--accent-color), transparent 80%), 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.call-to-action .cta-actions .btn.btn-cta-secondary {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  padding: 0.75rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.call-to-action .cta-actions .btn.btn-cta-secondary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-color: var(--accent-color);
}

.call-to-action .cta-actions .btn.btn-cta-secondary i {
  font-size: 1.2rem;
}

.call-to-action .cta-actions .secondary-action {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.call-to-action .cta-actions .secondary-action .note {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-style: italic;
}

.call-to-action .image-section {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-to-action .image-section .main-image-wrapper {
  position: relative;
  max-width: 450px;
}

.call-to-action .image-section .main-image-wrapper .main-img {
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

.call-to-action .image-section .main-image-wrapper .overlay-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.call-to-action .image-section .main-image-wrapper .overlay-circle.circle-1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
  top: -20px;
  right: -30px;
  animation: pulse 4s ease-in-out infinite;
}

.call-to-action .image-section .main-image-wrapper .overlay-circle.circle-2 {
  width: 100px;
  height: 100px;
  background: linear-gradient(225deg, color-mix(in srgb, var(--heading-color), transparent 88%), color-mix(in srgb, var(--heading-color), transparent 96%));
  bottom: -15px;
  left: -25px;
  animation: pulse 3s ease-in-out infinite;
}

.call-to-action .image-section .stats-card {
  position: absolute;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 90%), 0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 90%);
  z-index: 3;
}

.call-to-action .image-section .stats-card .stat-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.25rem;
}

.call-to-action .image-section .stats-card .stat-content h6 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1;
}

.call-to-action .image-section .stats-card .stat-content span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.call-to-action .image-section .stats-card.card-1 {
  top: 15%;
  left: -20px;
  animation: float1 6s ease-in-out infinite;
}

.call-to-action .image-section .stats-card.card-2 {
  bottom: 20%;
  right: -25px;
  animation: float2 5s ease-in-out infinite;
}

@keyframes floatRotate {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(180deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.4;
  }
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@media (max-width: 991.98px) {
  .call-to-action {
    padding: 80px 0;
  }

  .call-to-action .cta-wrapper {
    padding: 3rem 2rem;
  }

  .call-to-action .content-section h2 {
    font-size: 2.25rem;
  }

  .call-to-action .content-section p {
    font-size: 1rem;
  }

  .call-to-action .features-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .call-to-action .cta-actions .btn.btn-cta-primary {
    width: 100%;
  }

  .call-to-action .cta-actions .secondary-action {
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  .call-to-action .image-section {
    margin-top: 3rem;
  }

  .call-to-action .image-section .stats-card.card-1 {
    top: 10%;
    left: 0;
  }

  .call-to-action .image-section .stats-card.card-2 {
    bottom: 10%;
    right: 0;
  }
}

@media (max-width: 768px) {
  .call-to-action {
    padding: 60px 0;
  }

  .call-to-action .cta-wrapper {
    padding: 2rem 1.5rem;
  }

  .call-to-action .content-section h2 {
    font-size: 1.875rem;
  }

  .call-to-action .content-section .label-badge {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
  }

  .call-to-action .stats-card {
    padding: 0.75rem 1rem;
  }

  .call-to-action .stats-card .stat-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .call-to-action .stats-card .stat-content h6 {
    font-size: 1.1rem;
  }

  .call-to-action .stats-card .stat-content span {
    font-size: 0.8rem;
  }

  .call-to-action .overlay-circle {
    transform: scale(0.8);
  }
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.about-2 .about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--heading-color);
}

.about-2 .about-content h3 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.about-2 .about-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--text-color);
}

.about-2 .about-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.about-2 .about-content ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.about-2 .about-image {
  position: relative;
}

.about-2 .about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-2 .vision-mission-philosophy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-2 .vision-mission-philosophy .vision,
.about-2 .vision-mission-philosophy .mission,
.about-2 .vision-mission-philosophy .philosophy {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.about-2 .vision-mission-philosophy .vision h3,
.about-2 .vision-mission-philosophy .mission h3,
.about-2 .vision-mission-philosophy .philosophy h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-2 .vision-mission-philosophy .vision p,
.about-2 .vision-mission-philosophy .vision ul,
.about-2 .vision-mission-philosophy .mission p,
.about-2 .vision-mission-philosophy .mission ul,
.about-2 .vision-mission-philosophy .philosophy p,
.about-2 .vision-mission-philosophy .philosophy ul {
  font-size: 0.98rem;
  margin-bottom: 0;
}

.about-2 .vision-mission-philosophy .vision ul,
.about-2 .vision-mission-philosophy .mission ul,
.about-2 .vision-mission-philosophy .philosophy ul {
  padding-left: 18px;
}

.about-2 .vision-mission-philosophy .vision ul li,
.about-2 .vision-mission-philosophy .mission ul li,
.about-2 .vision-mission-philosophy .philosophy ul li {
  margin-bottom: 8px;
}

.about-2 .what-we-offer {
  margin-top: 40px;
}

.about-2 .what-we-offer h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
}

.about-2 .what-we-offer .value-card {
  background-color: var(--surface-color);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-2 .what-we-offer .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-2 .what-we-offer .value-card .value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin: 0 auto 20px auto;
}

.about-2 .what-we-offer .value-card .value-icon i {
  font-size: 32px;
  color: var(--accent-color);
}

.about-2 .what-we-offer .value-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--heading-color);
}

.about-2 .what-we-offer .value-card p {
  font-size: 0.97rem;
  margin-bottom: 0;
  color: var(--text-color);
}

.about-2 .important-note {
  margin-top: 40px;
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}

.about-2 .important-note h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #d97706;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.about-2 .important-note p {
  margin-bottom: 0;
  font-size: 1.05rem;
  color: var(--text-color);
  text-align: center;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 34px;
  padding-bottom: 7px;
}

.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-2 {
  padding-top: 2px;
  padding-bottom: 2px;
}

.contact-2 .info-item+.info-item {
  margin-top: 40px;
}

.contact-2 .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact-2 .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-2 .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact-2 .php-email-form {
  height: 100%;
}

.contact-2 .php-email-form input[type=text],
.contact-2 .php-email-form input[type=email],
.contact-2 .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-2 .php-email-form input[type=text]:focus,
.contact-2 .php-email-form input[type=email]:focus,
.contact-2 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact-2 .php-email-form input[type=text]::placeholder,
.contact-2 .php-email-form input[type=email]::placeholder,
.contact-2 .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact-2 .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact-2 .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact 3 Section
--------------------------------------------------------------*/
.contact-3 {
  padding-top: 34px;
  padding-bottom: 26px;
}

.contact-3 .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact-3 .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact-3 .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact-3 .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact-3 .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact-3 .info-box {
    padding: 1.5rem;
  }
}

.contact-3 .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-3 .info-item:last-child {
  margin-bottom: 0;
}

.contact-3 .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact-3 .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact-3 .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact-3 .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-3 .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact-3 .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact-3 .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact-3 .contact-form {
    padding: 1.5rem;
  }
}

.contact-3 .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact-3 .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact-3 .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact-3 .contact-form .form-control,
.contact-3 .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact-3 .contact-form .form-control:focus,
.contact-3 .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact-3 .contact-form .form-control::placeholder,
.contact-3 .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact-3 .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact-3 .contact-form .btn i {
  font-size: 1.25rem;
}

.contact-3 .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-sidebar {
  position: sticky;
  top: 100px;
}

.faq .faq-sidebar .faq-image {
  margin-bottom: 30px;
  border-radius: 14px;
  overflow: hidden;
}

.faq .faq-sidebar .faq-image img {
  transition: transform 0.5s ease;
}

.faq .faq-sidebar .faq-image img:hover {
  transform: scale(1.04);
}

.faq .faq-sidebar .contact-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 14px;
  padding: 30px;
}

.faq .faq-sidebar .contact-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq .faq-sidebar .contact-box h3 i {
  font-size: 24px;
  color: var(--accent-color);
}

.faq .faq-sidebar .contact-box p {
  margin-bottom: 20px;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.faq .faq-sidebar .contact-box .btn-contact {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq .faq-sidebar .contact-box .btn-contact:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.faq .faq-tabs .nav-pills {
  gap: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 15px;
}

.faq .faq-tabs .nav-pills .nav-link {
  background: transparent;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.faq .faq-tabs .nav-pills .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.faq .faq-tabs .nav-pills .nav-link:hover:not(.active) {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
}

.faq .faq-tabs .tab-content {
  padding-top: 25px;
}

.faq .faq-item {
  position: relative;
  margin-bottom: 20px;
  background-color: var(--surface-color);
  border-radius: 14px;
  box-shadow: 0 3px 10px color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq .faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.faq .faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  padding-right: 35px;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content p {
  margin-bottom: 0;
  padding-top: 15px;
  font-size: 15px;
  line-height: 1.6;
  overflow: hidden;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.faq .faq-item .faq-toggle {
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 18px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq .faq-item.faq-active {
  background-color: color-mix(in srgb, var(--surface-color), var(--accent-color) 3%);
}

.faq .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item.faq-active .faq-toggle {
  transform: rotate(180deg);
}

@media (max-width: 991.98px) {
  .faq .faq-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .faq .faq-sidebar .contact-box {
    text-align: center;
  }

  .faq .faq-tabs .nav-pills {
    flex-wrap: wrap;
  }

  .faq .faq-tabs .nav-pills .nav-item {
    flex: 1 0 30%;
  }

  .faq .faq-tabs .nav-pills .nav-link {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .faq .faq-tabs .nav-pills .nav-item {
    flex: 1 0 100%;
  }

  .faq .faq-item {
    padding: 20px;
  }

  .faq .faq-item h3 {
    font-size: 16px;
    line-height: 1.5;
  }

  .faq .faq-item .faq-toggle {
    right: 20px;
    top: 20px;
  }
}

/*--------------------------------------------------------------
# About 3 Section
--------------------------------------------------------------*/
.about-3 .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.about-3 .content p {
  margin-bottom: 30px;
}

.about-3 .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: var(--accent-color);
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--accent-color);
}

.about-3 .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about-3 .content .about-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about-3 .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.about-3 .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about-3 .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.about-3 .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

.about-3 .icon-box:hover h4 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .features-item {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .features-2 .features-item {
    margin-bottom: 60px;
  }
}

.features-2 .features-item .feature-card {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  overflow: hidden;
}

.features-2 .features-item .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.features-2 .features-item .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.features-2 .features-item .feature-card:hover::before {
  transform: scaleX(1);
}

.features-2 .features-item .feature-card:hover .feature-icon {
  transform: scale(1.1);
  background: var(--accent-color);
}

.features-2 .features-item .feature-card:hover .feature-icon i {
  color: var(--contrast-color);
}

.features-2 .features-item .feature-card .feature-icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.features-2 .features-item .feature-card .feature-icon i {
  font-size: 36px;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.features-2 .features-item .feature-card h4 {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.features-2 .features-item .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.features-2 .features-detail .feature-image-wrapper {
  position: relative;
}

.features-2 .features-detail .feature-image-wrapper .main-image {
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.features-2 .features-detail .feature-image-wrapper .floating-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 250px;
  border: 2px solid var(--accent-color);
}

@media (max-width: 768px) {
  .features-2 .features-detail .feature-image-wrapper .floating-card {
    position: static;
    margin-top: 20px;
    max-width: 100%;
  }
}

.features-2 .features-detail .feature-image-wrapper .floating-card .card-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.features-2 .features-detail .feature-image-wrapper .floating-card .card-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.features-2 .features-detail .feature-image-wrapper .floating-card .card-content h6 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
  font-family: var(--heading-font);
}

.features-2 .features-detail .feature-image-wrapper .floating-card .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin: 0;
}

.features-2 .features-detail .feature-content h3 {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--heading-font);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .features-2 .features-detail .feature-content h3 {
    font-size: 26px;
  }
}

.features-2 .features-detail .feature-content>p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.features-2 .features-detail .feature-content .feature-points {
  margin-bottom: 35px;
}

.features-2 .features-detail .feature-content .feature-points .point-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.features-2 .features-detail .feature-content .feature-points .point-item:last-child {
  margin-bottom: 0;
}

.features-2 .features-detail .feature-content .feature-points .point-item .point-icon {
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.features-2 .features-detail .feature-content .feature-points .point-item .point-icon i {
  font-size: 20px;
  color: var(--accent-color);
}

.features-2 .features-detail .feature-content .feature-points .point-item .point-text h5 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--heading-font);
}

.features-2 .features-detail .feature-content .feature-points .point-item .point-text p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

.features-2 .features-detail .feature-content .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.features-2 .features-detail .feature-content .btn-primary:hover {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Course Details Section
--------------------------------------------------------------*/
.course-details {
  padding-top: 60px;
  --accent-color: #2166d1;
  --heading-color: #222b45;
  --default-color: #535c68;
  --surface-color: #f8fbff;
  --contrast-color: #fff;
  background: var(--surface-color);
  padding-bottom: 60px;
  /* Responsive Adjustments */
}

.course-details .course-header {
  margin-bottom: 36px;
}

.course-details .course-header .course-image {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.course-details .course-header .course-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.course-details .course-header .course-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.course-details .course-header .instructor {
  display: flex;
  align-items: center;
  gap: 15px;
}

.course-details .course-header .instructor .instructor-avatar {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
}

.course-details .course-header .instructor .instructor-info h6 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.course-details .course-header .instructor .instructor-info span {
  font-size: 0.85rem;
  color: #7e8599;
}

.course-details .course-header .course-stats {
  display: flex;
  gap: 20px;
}

.course-details .course-header .course-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.93rem;
  color: var(--default-color);
}

.course-details .course-header .course-stats .stat-item i {
  color: var(--accent-color);
}

.course-details .course-content {
  margin-bottom: 40px;
  background: #fff;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.course-details .course-content h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--heading-color);
  font-weight: 700;
}

.course-details .course-content h3 {
  font-size: 1.25rem;
  color: var(--heading-color);
  font-weight: 600;
  margin-top: 22px;
  margin-bottom: 10px;
}

.course-details .course-content p,
.course-details .course-content ul,
.course-details .course-content table {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 18px;
}

.course-details .course-content ul {
  padding-left: 22px;
  margin-bottom: 18px;
}

.course-details .course-content ul li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.course-details .course-content table {
  width: 100%;
  border-collapse: collapse;
  background: #fafdff;
}

.course-details .course-content table th,
.course-details .course-content table td {
  padding: 10px 14px;
  border: 1px solid #e5e9f2;
  text-align: left;
}

.course-details .course-content table th {
  font-weight: 700;
  background: #eef2fa;
  color: var(--heading-color);
}

.course-details .course-content i {
  font-style: italic;
  color: #868e96;
  font-size: 0.93rem;
}

.course-details .course-content .course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.course-details .course-content .course-tags .tag {
  background: #e9ecef;
  border-radius: 5px;
  padding: 0.4rem 1.2rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.98rem;
}

.course-details .course-sidebar {
  position: sticky;
  top: 110px;
}

.course-details .course-sidebar .pricing-card {
  background: var(--surface-color);
  border: 1px solid #dde7fa;
  border-radius: 12px;
  padding: 28px 20px;
  margin-bottom: 28px;
  box-shadow: 0 4px 18px rgba(34, 43, 69, 0.06);
  text-align: center;
}

.course-details .course-sidebar .pricing-card .price .currency,
.course-details .course-sidebar .pricing-card .price .amount {
  color: var(--accent-color);
  font-weight: 600;
}

.course-details .course-sidebar .pricing-card .price .currency {
  font-size: 1.2rem;
}

.course-details .course-sidebar .pricing-card .price .amount {
  font-size: 2.2rem;
}

.course-details .course-sidebar .pricing-card .price .period {
  font-size: 0.98rem;
  color: #8ba0c2;
}

.course-details .course-sidebar .pricing-card .original-price {
  font-size: 1rem;
  color: #99a3b1;
  text-decoration: line-through;
  margin-bottom: 15px;
}

.course-details .course-sidebar .pricing-card .btn-enroll,
.course-details .course-sidebar .pricing-card .btn-preview {
  width: 100%;
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.course-details .course-sidebar .pricing-card .btn-enroll {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.course-details .course-sidebar .pricing-card .btn-enroll:hover {
  background: #194e98;
}

.course-details .course-sidebar .pricing-card .btn-preview {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.course-details .course-sidebar .pricing-card .btn-preview:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.course-details .course-sidebar .course-info-card,
.course-details .course-sidebar .course-tags {
  background: var(--surface-color);
  border: 1px solid #dde7fa;
  border-radius: 12px;
  padding: 22px 20px;
  margin-bottom: 18px;
}

.course-details .course-sidebar .course-info-card h4 {
  font-size: 1.05rem;
  color: var(--heading-color);
  margin-bottom: 14px;
  font-weight: 600;
}

.course-details .course-sidebar .course-info-card .info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e9f2;
}

.course-details .course-sidebar .course-info-card .info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.course-details .course-sidebar .course-info-card .info-item .label {
  font-weight: 600;
  color: var(--default-color);
}

.course-details .course-sidebar .course-info-card .info-item .value {
  color: #7e8599;
}

.course-details .course-sidebar .course-tags h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--heading-color);
  font-weight: 600;
}

.course-details .course-sidebar .course-tags .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.course-details .course-sidebar .course-tags .tags-list .tag {
  background: #edf6fd;
  color: var(--accent-color);
  border-radius: 18px;
  font-size: 0.93rem;
  padding: 4px 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.course-details .course-sidebar .course-tags .tags-list .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {

  .course-details .course-header,
  .course-details .course-content,
  .course-details .course-sidebar {
    padding: 0 !important;
  }

  .course-details .course-sidebar {
    position: static;
    top: auto;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .course-details .course-header .course-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .course-details .course-content {
    padding: 1rem 0.6rem;
  }

  .course-details .course-content h2 {
    font-size: 1.2rem;
  }

  .course-details .course-content h3 {
    font-size: 1rem;
  }

  .course-details .course-sidebar {
    margin-top: 32px;
  }
}

/*--------------------------------------------------------------
# Course Details 2 Section
--------------------------------------------------------------*/
.course-details-2 {
  --accent-color: #2166d1;
  --heading-color: #222b45;
  --default-color: #535c68;
  --surface-color: #f8fbff;
  --contrast-color: #fff;
  background: var(--surface-color);
  /* Responsive Adjustments */
}

.course-details-2 .course-header {
  margin-bottom: 36px;
}

.course-details-2 .course-header .course-image {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.course-details-2 .course-header .course-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.course-details-2 .course-header .course-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.course-details-2 .course-header .instructor {
  display: flex;
  align-items: center;
  gap: 15px;
}

.course-details-2 .course-header .instructor .instructor-avatar {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
}

.course-details-2 .course-header .instructor .instructor-info h6 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.course-details-2 .course-header .instructor .instructor-info span {
  font-size: 0.85rem;
  color: #7e8599;
}

.course-details-2 .course-header .course-stats {
  display: flex;
  gap: 20px;
}

.course-details-2 .course-header .course-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.93rem;
  color: var(--default-color);
}

.course-details-2 .course-header .course-stats .stat-item i {
  color: var(--accent-color);
}

.course-details-2 .course-content {
  margin-bottom: 40px;
  background: #fff;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.course-details-2 .course-content h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--heading-color);
  font-weight: 700;
}

.course-details-2 .course-content h3 {
  font-size: 1.25rem;
  color: var(--heading-color);
  font-weight: 600;
  margin-top: 22px;
  margin-bottom: 10px;
}

.course-details-2 .course-content p,
.course-details-2 .course-content ul,
.course-details-2 .course-content table {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 18px;
}

.course-details-2 .course-content ul {
  padding-left: 22px;
  margin-bottom: 18px;
}

.course-details-2 .course-content ul li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.course-details-2 .course-content table {
  width: 100%;
  border-collapse: collapse;
  background: #fafdff;
}

.course-details-2 .course-content table th,
.course-details-2 .course-content table td {
  padding: 10px 14px;
  border: 1px solid #e5e9f2;
  text-align: left;
}

.course-details-2 .course-content table th {
  font-weight: 700;
  background: #eef2fa;
  color: var(--heading-color);
}

.course-details-2 .course-content i {
  font-style: italic;
  color: #868e96;
  font-size: 0.93rem;
}

.course-details-2 .course-content .course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.course-details-2 .course-content .course-tags .tag {
  background: #e9ecef;
  border-radius: 5px;
  padding: 0.4rem 1.2rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.98rem;
}

.course-details-2 .course-sidebar {
  position: sticky;
  top: 110px;
}

.course-details-2 .course-sidebar .pricing-card {
  background: var(--surface-color);
  border: 1px solid #dde7fa;
  border-radius: 12px;
  padding: 28px 20px;
  margin-bottom: 28px;
  box-shadow: 0 4px 18px rgba(34, 43, 69, 0.06);
  text-align: center;
}

.course-details-2 .course-sidebar .pricing-card .price .currency,
.course-details-2 .course-sidebar .pricing-card .price .amount {
  color: var(--accent-color);
  font-weight: 600;
}

.course-details-2 .course-sidebar .pricing-card .price .currency {
  font-size: 1.2rem;
}

.course-details-2 .course-sidebar .pricing-card .price .amount {
  font-size: 2.2rem;
}

.course-details-2 .course-sidebar .pricing-card .price .period {
  font-size: 0.98rem;
  color: #8ba0c2;
}

.course-details-2 .course-sidebar .pricing-card .original-price {
  font-size: 1rem;
  color: #99a3b1;
  text-decoration: line-through;
  margin-bottom: 15px;
}

.course-details-2 .course-sidebar .pricing-card .btn-enroll,
.course-details-2 .course-sidebar .pricing-card .btn-preview {
  width: 100%;
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.course-details-2 .course-sidebar .pricing-card .btn-enroll {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.course-details-2 .course-sidebar .pricing-card .btn-enroll:hover {
  background: #194e98;
}

.course-details-2 .course-sidebar .pricing-card .btn-preview {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.course-details-2 .course-sidebar .pricing-card .btn-preview:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.course-details-2 .course-sidebar .course-info-card,
.course-details-2 .course-sidebar .course-tags {
  background: var(--surface-color);
  border: 1px solid #dde7fa;
  border-radius: 12px;
  padding: 22px 20px;
  margin-bottom: 18px;
}

.course-details-2 .course-sidebar .course-info-card h4 {
  font-size: 1.05rem;
  color: var(--heading-color);
  margin-bottom: 14px;
  font-weight: 600;
}

.course-details-2 .course-sidebar .course-info-card .info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e9f2;
}

.course-details-2 .course-sidebar .course-info-card .info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.course-details-2 .course-sidebar .course-info-card .info-item .label {
  font-weight: 600;
  color: var(--default-color);
}

.course-details-2 .course-sidebar .course-info-card .info-item .value {
  color: #7e8599;
}

.course-details-2 .course-sidebar .course-tags h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--heading-color);
  font-weight: 600;
}

.course-details-2 .course-sidebar .course-tags .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.course-details-2 .course-sidebar .course-tags .tags-list .tag {
  background: #edf6fd;
  color: var(--accent-color);
  border-radius: 18px;
  font-size: 0.93rem;
  padding: 4px 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.course-details-2 .course-sidebar .course-tags .tags-list .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {

  .course-details-2 .course-header,
  .course-details-2 .course-content,
  .course-details-2 .course-sidebar {
    padding: 0 !important;
  }

  .course-details-2 .course-sidebar {
    position: static;
    top: auto;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .course-details-2 .course-header .course-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .course-details-2 .course-content {
    padding: 1rem 0.6rem;
  }

  .course-details-2 .course-content h2 {
    font-size: 1.2rem;
  }

  .course-details-2 .course-content h3 {
    font-size: 1rem;
  }

  .course-details-2 .course-sidebar {
    margin-top: 32px;
  }
}

/*--------------------------------------------------------------
# Course Detailsundefined Section
--------------------------------------------------------------*/
.course-detailsundefined {
  --accent-color: #2166d1;
  --heading-color: #222b45;
  --default-color: #535c68;
  --surface-color: #f8fbff;
  --contrast-color: #fff;
  background: var(--surface-color);
  /* Responsive Adjustments */
}

.course-detailsundefined .course-header {
  margin-bottom: 36px;
}

.course-detailsundefined .course-header .course-image {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.course-detailsundefined .course-header .course-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.course-detailsundefined .course-header .course-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.course-detailsundefined .course-header .instructor {
  display: flex;
  align-items: center;
  gap: 15px;
}

.course-detailsundefined .course-header .instructor .instructor-avatar {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
}

.course-detailsundefined .course-header .instructor .instructor-info h6 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.course-detailsundefined .course-header .instructor .instructor-info span {
  font-size: 0.85rem;
  color: #7e8599;
}

.course-detailsundefined .course-header .course-stats {
  display: flex;
  gap: 20px;
}

.course-detailsundefined .course-header .course-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.93rem;
  color: var(--default-color);
}

.course-detailsundefined .course-header .course-stats .stat-item i {
  color: var(--accent-color);
}

.course-detailsundefined .course-content {
  margin-bottom: 40px;
  background: #fff;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.course-detailsundefined .course-content h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--heading-color);
  font-weight: 700;
}

.course-detailsundefined .course-content h3 {
  font-size: 1.25rem;
  color: var(--heading-color);
  font-weight: 600;
  margin-top: 22px;
  margin-bottom: 10px;
}

.course-detailsundefined .course-content p,
.course-detailsundefined .course-content ul,
.course-detailsundefined .course-content table {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 18px;
}

.course-detailsundefined .course-content ul {
  padding-left: 22px;
  margin-bottom: 18px;
}

.course-detailsundefined .course-content ul li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.course-detailsundefined .course-content table {
  width: 100%;
  border-collapse: collapse;
  background: #fafdff;
}

.course-detailsundefined .course-content table th,
.course-detailsundefined .course-content table td {
  padding: 10px 14px;
  border: 1px solid #e5e9f2;
  text-align: left;
}

.course-detailsundefined .course-content table th {
  font-weight: 700;
  background: #eef2fa;
  color: var(--heading-color);
}

.course-detailsundefined .course-content i {
  font-style: italic;
  color: #868e96;
  font-size: 0.93rem;
}

.course-detailsundefined .course-content .course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.course-detailsundefined .course-content .course-tags .tag {
  background: #e9ecef;
  border-radius: 5px;
  padding: 0.4rem 1.2rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.98rem;
}

.course-detailsundefined .course-sidebar {
  position: sticky;
  top: 110px;
}

.course-detailsundefined .course-sidebar .pricing-card {
  background: var(--surface-color);
  border: 1px solid #dde7fa;
  border-radius: 12px;
  padding: 28px 20px;
  margin-bottom: 28px;
  box-shadow: 0 4px 18px rgba(34, 43, 69, 0.06);
  text-align: center;
}

.course-detailsundefined .course-sidebar .pricing-card .price .currency,
.course-detailsundefined .course-sidebar .pricing-card .price .amount {
  color: var(--accent-color);
  font-weight: 600;
}

.course-detailsundefined .course-sidebar .pricing-card .price .currency {
  font-size: 1.2rem;
}

.course-detailsundefined .course-sidebar .pricing-card .price .amount {
  font-size: 2.2rem;
}

.course-detailsundefined .course-sidebar .pricing-card .price .period {
  font-size: 0.98rem;
  color: #8ba0c2;
}

.course-detailsundefined .course-sidebar .pricing-card .original-price {
  font-size: 1rem;
  color: #99a3b1;
  text-decoration: line-through;
  margin-bottom: 15px;
}

.course-detailsundefined .course-sidebar .pricing-card .btn-enroll,
.course-detailsundefined .course-sidebar .pricing-card .btn-preview {
  width: 100%;
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.course-detailsundefined .course-sidebar .pricing-card .btn-enroll {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.course-detailsundefined .course-sidebar .pricing-card .btn-enroll:hover {
  background: #194e98;
}

.course-detailsundefined .course-sidebar .pricing-card .btn-preview {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.course-detailsundefined .course-sidebar .pricing-card .btn-preview:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.course-detailsundefined .course-sidebar .course-info-card,
.course-detailsundefined .course-sidebar .course-tags {
  background: var(--surface-color);
  border: 1px solid #dde7fa;
  border-radius: 12px;
  padding: 22px 20px;
  margin-bottom: 18px;
}

.course-detailsundefined .course-sidebar .course-info-card h4 {
  font-size: 1.05rem;
  color: var(--heading-color);
  margin-bottom: 14px;
  font-weight: 600;
}

.course-detailsundefined .course-sidebar .course-info-card .info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e9f2;
}

.course-detailsundefined .course-sidebar .course-info-card .info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.course-detailsundefined .course-sidebar .course-info-card .info-item .label {
  font-weight: 600;
  color: var(--default-color);
}

.course-detailsundefined .course-sidebar .course-info-card .info-item .value {
  color: #7e8599;
}

.course-detailsundefined .course-sidebar .course-tags h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--heading-color);
  font-weight: 600;
}

.course-detailsundefined .course-sidebar .course-tags .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.course-detailsundefined .course-sidebar .course-tags .tags-list .tag {
  background: #edf6fd;
  color: var(--accent-color);
  border-radius: 18px;
  font-size: 0.93rem;
  padding: 4px 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.course-detailsundefined .course-sidebar .course-tags .tags-list .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {

  .course-detailsundefined .course-header,
  .course-detailsundefined .course-content,
  .course-detailsundefined .course-sidebar {
    padding: 0 !important;
  }

  .course-detailsundefined .course-sidebar {
    position: static;
    top: auto;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .course-detailsundefined .course-header .course-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .course-detailsundefined .course-content {
    padding: 1rem 0.6rem;
  }

  .course-detailsundefined .course-content h2 {
    font-size: 1.2rem;
  }

  .course-detailsundefined .course-content h3 {
    font-size: 1rem;
  }

  .course-detailsundefined .course-sidebar {
    margin-top: 32px;
  }
}

/*--------------------------------------------------------------
# Course Detailsundefined 2 Section
--------------------------------------------------------------*/
.course-detailsundefined-2 {
  --accent-color: #2166d1;
  --heading-color: #222b45;
  --default-color: #535c68;
  --surface-color: #f8fbff;
  --contrast-color: #fff;
  background: var(--surface-color);
  /* Responsive Adjustments */
}

.course-detailsundefined-2 .course-header {
  margin-bottom: 36px;
}

.course-detailsundefined-2 .course-header .course-image {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.course-detailsundefined-2 .course-header .course-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.course-detailsundefined-2 .course-header .course-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.course-detailsundefined-2 .course-header .instructor {
  display: flex;
  align-items: center;
  gap: 15px;
}

.course-detailsundefined-2 .course-header .instructor .instructor-avatar {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
}

.course-detailsundefined-2 .course-header .instructor .instructor-info h6 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.course-detailsundefined-2 .course-header .instructor .instructor-info span {
  font-size: 0.85rem;
  color: #7e8599;
}

.course-detailsundefined-2 .course-header .course-stats {
  display: flex;
  gap: 20px;
}

.course-detailsundefined-2 .course-header .course-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.93rem;
  color: var(--default-color);
}

.course-detailsundefined-2 .course-header .course-stats .stat-item i {
  color: var(--accent-color);
}

.course-detailsundefined-2 .course-content {
  margin-bottom: 40px;
  background: #fff;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.course-detailsundefined-2 .course-content h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--heading-color);
  font-weight: 700;
}

.course-detailsundefined-2 .course-content h3 {
  font-size: 1.25rem;
  color: var(--heading-color);
  font-weight: 600;
  margin-top: 22px;
  margin-bottom: 10px;
}

.course-detailsundefined-2 .course-content p,
.course-detailsundefined-2 .course-content ul,
.course-detailsundefined-2 .course-content table {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 18px;
}

.course-detailsundefined-2 .course-content ul {
  padding-left: 22px;
  margin-bottom: 18px;
}

.course-detailsundefined-2 .course-content ul li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.course-detailsundefined-2 .course-content table {
  width: 100%;
  border-collapse: collapse;
  background: #fafdff;
}

.course-detailsundefined-2 .course-content table th,
.course-detailsundefined-2 .course-content table td {
  padding: 10px 14px;
  border: 1px solid #e5e9f2;
  text-align: left;
}

.course-detailsundefined-2 .course-content table th {
  font-weight: 700;
  background: #eef2fa;
  color: var(--heading-color);
}

.course-detailsundefined-2 .course-content i {
  font-style: italic;
  color: #868e96;
  font-size: 0.93rem;
}

.course-detailsundefined-2 .course-content .course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.course-detailsundefined-2 .course-content .course-tags .tag {
  background: #e9ecef;
  border-radius: 5px;
  padding: 0.4rem 1.2rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.98rem;
}

.course-detailsundefined-2 .course-sidebar {
  position: sticky;
  top: 110px;
}

.course-detailsundefined-2 .course-sidebar .pricing-card {
  background: var(--surface-color);
  border: 1px solid #dde7fa;
  border-radius: 12px;
  padding: 28px 20px;
  margin-bottom: 28px;
  box-shadow: 0 4px 18px rgba(34, 43, 69, 0.06);
  text-align: center;
}

.course-detailsundefined-2 .course-sidebar .pricing-card .price .currency,
.course-detailsundefined-2 .course-sidebar .pricing-card .price .amount {
  color: var(--accent-color);
  font-weight: 600;
}

.course-detailsundefined-2 .course-sidebar .pricing-card .price .currency {
  font-size: 1.2rem;
}

.course-detailsundefined-2 .course-sidebar .pricing-card .price .amount {
  font-size: 2.2rem;
}

.course-detailsundefined-2 .course-sidebar .pricing-card .price .period {
  font-size: 0.98rem;
  color: #8ba0c2;
}

.course-detailsundefined-2 .course-sidebar .pricing-card .original-price {
  font-size: 1rem;
  color: #99a3b1;
  text-decoration: line-through;
  margin-bottom: 15px;
}

.course-detailsundefined-2 .course-sidebar .pricing-card .btn-enroll,
.course-detailsundefined-2 .course-sidebar .pricing-card .btn-preview {
  width: 100%;
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.course-detailsundefined-2 .course-sidebar .pricing-card .btn-enroll {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.course-detailsundefined-2 .course-sidebar .pricing-card .btn-enroll:hover {
  background: #194e98;
}

.course-detailsundefined-2 .course-sidebar .pricing-card .btn-preview {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.course-detailsundefined-2 .course-sidebar .pricing-card .btn-preview:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.course-detailsundefined-2 .course-sidebar .course-info-card,
.course-detailsundefined-2 .course-sidebar .course-tags {
  background: var(--surface-color);
  border: 1px solid #dde7fa;
  border-radius: 12px;
  padding: 22px 20px;
  margin-bottom: 18px;
}

.course-detailsundefined-2 .course-sidebar .course-info-card h4 {
  font-size: 1.05rem;
  color: var(--heading-color);
  margin-bottom: 14px;
  font-weight: 600;
}

.course-detailsundefined-2 .course-sidebar .course-info-card .info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e9f2;
}

.course-detailsundefined-2 .course-sidebar .course-info-card .info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.course-detailsundefined-2 .course-sidebar .course-info-card .info-item .label {
  font-weight: 600;
  color: var(--default-color);
}

.course-detailsundefined-2 .course-sidebar .course-info-card .info-item .value {
  color: #7e8599;
}

.course-detailsundefined-2 .course-sidebar .course-tags h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--heading-color);
  font-weight: 600;
}

.course-detailsundefined-2 .course-sidebar .course-tags .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.course-detailsundefined-2 .course-sidebar .course-tags .tags-list .tag {
  background: #edf6fd;
  color: var(--accent-color);
  border-radius: 18px;
  font-size: 0.93rem;
  padding: 4px 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.course-detailsundefined-2 .course-sidebar .course-tags .tags-list .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {

  .course-detailsundefined-2 .course-header,
  .course-detailsundefined-2 .course-content,
  .course-detailsundefined-2 .course-sidebar {
    padding: 0 !important;
  }

  .course-detailsundefined-2 .course-sidebar {
    position: static;
    top: auto;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .course-detailsundefined-2 .course-header .course-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .course-detailsundefined-2 .course-content {
    padding: 1rem 0.6rem;
  }

  .course-detailsundefined-2 .course-content h2 {
    font-size: 1.2rem;
  }

  .course-detailsundefined-2 .course-content h3 {
    font-size: 1rem;
  }

  .course-detailsundefined-2 .course-sidebar {
    margin-top: 32px;
  }
}

/*--------------------------------------------------------------
# Course Detailsundefinedundefined Section
--------------------------------------------------------------*/
.course-detailsundefinedundefined {
  --accent-color: #2166d1;
  --heading-color: #222b45;
  --default-color: #535c68;
  --surface-color: #f8fbff;
  --contrast-color: #fff;
  background: var(--surface-color);
  /* Responsive Adjustments */
}

.course-detailsundefinedundefined .course-header {
  margin-bottom: 36px;
}

.course-detailsundefinedundefined .course-header .course-image {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.course-detailsundefinedundefined .course-header .course-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.course-detailsundefinedundefined .course-header .course-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.course-detailsundefinedundefined .course-header .instructor {
  display: flex;
  align-items: center;
  gap: 15px;
}

.course-detailsundefinedundefined .course-header .instructor .instructor-avatar {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
}

.course-detailsundefinedundefined .course-header .instructor .instructor-info h6 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.course-detailsundefinedundefined .course-header .instructor .instructor-info span {
  font-size: 0.85rem;
  color: #7e8599;
}

.course-detailsundefinedundefined .course-header .course-stats {
  display: flex;
  gap: 20px;
}

.course-detailsundefinedundefined .course-header .course-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.93rem;
  color: var(--default-color);
}

.course-detailsundefinedundefined .course-header .course-stats .stat-item i {
  color: var(--accent-color);
}

.course-detailsundefinedundefined .course-content {
  margin-bottom: 40px;
  background: #fff;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.course-detailsundefinedundefined .course-content h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--heading-color);
  font-weight: 700;
}

.course-detailsundefinedundefined .course-content h3 {
  font-size: 1.25rem;
  color: var(--heading-color);
  font-weight: 600;
  margin-top: 22px;
  margin-bottom: 10px;
}

.course-detailsundefinedundefined .course-content p,
.course-detailsundefinedundefined .course-content ul,
.course-detailsundefinedundefined .course-content table {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 18px;
}

.course-detailsundefinedundefined .course-content ul {
  padding-left: 22px;
  margin-bottom: 18px;
}

.course-detailsundefinedundefined .course-content ul li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.course-detailsundefinedundefined .course-content table {
  width: 100%;
  border-collapse: collapse;
  background: #fafdff;
}

.course-detailsundefinedundefined .course-content table th,
.course-detailsundefinedundefined .course-content table td {
  padding: 10px 14px;
  border: 1px solid #e5e9f2;
  text-align: left;
}

.course-detailsundefinedundefined .course-content table th {
  font-weight: 700;
  background: #eef2fa;
  color: var(--heading-color);
}

.course-detailsundefinedundefined .course-content i {
  font-style: italic;
  color: #868e96;
  font-size: 0.93rem;
}

.course-detailsundefinedundefined .course-content .course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.course-detailsundefinedundefined .course-content .course-tags .tag {
  background: #e9ecef;
  border-radius: 5px;
  padding: 0.4rem 1.2rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.98rem;
}

.course-detailsundefinedundefined .course-sidebar {
  position: sticky;
  top: 110px;
}

.course-detailsundefinedundefined .course-sidebar .pricing-card {
  background: var(--surface-color);
  border: 1px solid #dde7fa;
  border-radius: 12px;
  padding: 28px 20px;
  margin-bottom: 28px;
  box-shadow: 0 4px 18px rgba(34, 43, 69, 0.06);
  text-align: center;
}

.course-detailsundefinedundefined .course-sidebar .pricing-card .price .currency,
.course-detailsundefinedundefined .course-sidebar .pricing-card .price .amount {
  color: var(--accent-color);
  font-weight: 600;
}

.course-detailsundefinedundefined .course-sidebar .pricing-card .price .currency {
  font-size: 1.2rem;
}

.course-detailsundefinedundefined .course-sidebar .pricing-card .price .amount {
  font-size: 2.2rem;
}

.course-detailsundefinedundefined .course-sidebar .pricing-card .price .period {
  font-size: 0.98rem;
  color: #8ba0c2;
}

.course-detailsundefinedundefined .course-sidebar .pricing-card .original-price {
  font-size: 1rem;
  color: #99a3b1;
  text-decoration: line-through;
  margin-bottom: 15px;
}

.course-detailsundefinedundefined .course-sidebar .pricing-card .btn-enroll,
.course-detailsundefinedundefined .course-sidebar .pricing-card .btn-preview {
  width: 100%;
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.course-detailsundefinedundefined .course-sidebar .pricing-card .btn-enroll {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.course-detailsundefinedundefined .course-sidebar .pricing-card .btn-enroll:hover {
  background: #194e98;
}

.course-detailsundefinedundefined .course-sidebar .pricing-card .btn-preview {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.course-detailsundefinedundefined .course-sidebar .pricing-card .btn-preview:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.course-detailsundefinedundefined .course-sidebar .course-info-card,
.course-detailsundefinedundefined .course-sidebar .course-tags {
  background: var(--surface-color);
  border: 1px solid #dde7fa;
  border-radius: 12px;
  padding: 22px 20px;
  margin-bottom: 18px;
}

.course-detailsundefinedundefined .course-sidebar .course-info-card h4 {
  font-size: 1.05rem;
  color: var(--heading-color);
  margin-bottom: 14px;
  font-weight: 600;
}

.course-detailsundefinedundefined .course-sidebar .course-info-card .info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e9f2;
}

.course-detailsundefinedundefined .course-sidebar .course-info-card .info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.course-detailsundefinedundefined .course-sidebar .course-info-card .info-item .label {
  font-weight: 600;
  color: var(--default-color);
}

.course-detailsundefinedundefined .course-sidebar .course-info-card .info-item .value {
  color: #7e8599;
}

.course-detailsundefinedundefined .course-sidebar .course-tags h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--heading-color);
  font-weight: 600;
}

.course-detailsundefinedundefined .course-sidebar .course-tags .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.course-detailsundefinedundefined .course-sidebar .course-tags .tags-list .tag {
  background: #edf6fd;
  color: var(--accent-color);
  border-radius: 18px;
  font-size: 0.93rem;
  padding: 4px 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.course-detailsundefinedundefined .course-sidebar .course-tags .tags-list .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {

  .course-detailsundefinedundefined .course-header,
  .course-detailsundefinedundefined .course-content,
  .course-detailsundefinedundefined .course-sidebar {
    padding: 0 !important;
  }

  .course-detailsundefinedundefined .course-sidebar {
    position: static;
    top: auto;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .course-detailsundefinedundefined .course-header .course-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .course-detailsundefinedundefined .course-content {
    padding: 1rem 0.6rem;
  }

  .course-detailsundefinedundefined .course-content h2 {
    font-size: 1.2rem;
  }

  .course-detailsundefinedundefined .course-content h3 {
    font-size: 1rem;
  }

  .course-detailsundefinedundefined .course-sidebar {
    margin-top: 32px;
  }
}

/*--------------------------------------------------------------
# Course Detailsundefinedundefined 2 Section
--------------------------------------------------------------*/
.course-detailsundefinedundefined-2 {
  --accent-color: #141413;
  --heading-color: #222b45;
  --default-color: #535c68;
  --surface-color: #ffffff;
  --contrast-color: #fff;
  background: var(--surface-color);
  color: var(--default-color);
  font-family: Arial, Helvetica, sans-serif;
  /* Responsive Improvements */
}

.course-detailsundefinedundefined-2 .course-content {
  margin-bottom: 40px;
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 32px 0 rgba(33, 102, 209, 0.06);
  position: relative;
  transition: box-shadow 0.2s;
  /* Subtle side accent bar */
}

.course-detailsundefinedundefined-2 .course-content:hover {
  box-shadow: 0 6px 44px 0 rgba(33, 102, 209, 0.12);
}

.course-detailsundefinedundefined-2 .course-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background: linear-gradient(to bottom, var(--accent-color) 80%, #fff 99%);
  border-radius: 16px 0 0 16px;
  opacity: 0.14;
  transition: opacity 0.2s;
}

.course-detailsundefinedundefined-2 .course-content h2 {
  font-size: 2.1rem;
  margin-bottom: 18px;
  color: var(--heading-color);
  font-weight: 800;
  letter-spacing: -1px;
}

.course-detailsundefinedundefined-2 .course-content h2 .subtitle {
  font-size: 1.05rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-left: 0.5em;
  background: #f3f8ff;
  border-radius: 0.3em;
  padding: 0.14em 0.7em;
}

.course-detailsundefinedundefined-2 .course-content h3 {
  font-size: 1.22rem;
  color: var(--accent-color);
  font-weight: 700;
  margin-top: 2.3em;
  margin-bottom: 10px;
  border-left: 4px solid var(--accent-color);
  padding-left: 0.7em;
  background: #f8fbff;
  border-radius: 0 4px 4px 0;
}

.course-detailsundefinedundefined-2 .course-content hr {
  margin: 1rem 0 2rem 0;
  border: none;
  border-top: 2px solid #dde7fa;
  opacity: 0.6;
}

.course-detailsundefinedundefined-2 .course-content p,
.course-detailsundefinedundefined-2 .course-content ul,
.course-detailsundefinedundefined-2 .course-content table {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 18px;
  line-height: 1.7;
}

.course-detailsundefinedundefined-2 .course-content ul {
  padding-left: 1.3em;
  margin-bottom: 18px;
}

.course-detailsundefinedundefined-2 .course-content ul li {
  margin-bottom: 8px;
  padding-left: 0.3em;
  line-height: 1.7;
  position: relative;
}

.course-detailsundefinedundefined-2 .course-content ul li:before {
  content: "•";
  color: var(--accent-color);
  font-weight: 900;
  margin-right: 0.65em;
  font-size: 1.08em;
  position: relative;
  top: -1.5px;
}

.course-detailsundefinedundefined-2 .course-content table {
  width: 100%;
  border-radius: 8px;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 1em;
  overflow: hidden;
  background: #fafdff;
  box-shadow: 0 2px 10px 0 rgba(33, 102, 209, 0.04);
}

.course-detailsundefinedundefined-2 .course-content table th,
.course-detailsundefinedundefined-2 .course-content table td {
  padding: 12px 14px;
  border-bottom: 1px solid #e5e9f2;
  text-align: left;
}

.course-detailsundefinedundefined-2 .course-content table th {
  font-weight: 700;
  background: #eef2fa;
  color: var(--heading-color);
  font-size: 1.08rem;
}

.course-detailsundefinedundefined-2 .course-content table tbody tr:last-child td {
  border-bottom: none;
}

.course-detailsundefinedundefined-2 .course-content table tbody tr:nth-child(even) td {
  background: #f0f4fb;
}

.course-detailsundefinedundefined-2 .course-content i,
.course-detailsundefinedundefined-2 .course-content .note {
  font-style: italic;
  color: #868e96;
  font-size: 0.97rem;
  background: #f3f8ff;
  border-radius: 5px;
  padding: 6px 10px;
  display: inline-block;
  margin-top: 0.3em;
}

.course-detailsundefinedundefined-2 .course-content .course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}

.course-detailsundefinedundefined-2 .course-content .course-tags .tag {
  background: #e9ecef;
  color: var(--accent-color);
  border-radius: 22px;
  padding: 0.44rem 1.3rem;
  font-weight: 700;
  font-size: 0.98rem;
  box-shadow: 0 2px 8px rgba(33, 102, 209, 0.07);
  letter-spacing: 0.01em;
  transition: background 0.22s, color 0.22s;
}

.course-detailsundefinedundefined-2 .course-content .course-tags .tag:hover {
  background: var(--accent-color);
  color: #fff;
}

.course-detailsundefinedundefined-2 .course-content .faq-list {
  margin-top: 16px;
}

.course-detailsundefinedundefined-2 .course-content .faq-list>b {
  display: block;
  color: var(--accent-color);
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 4px;
}

.course-detailsundefinedundefined-2 .course-content .faq-list .faq-item {
  margin-bottom: 10px;
  color: var(--heading-color);
  background: #f8f9fc;
  border-left: 4px solid var(--accent-color);
  border-radius: 0 6px 6px 0;
  padding: 8px 16px;
  font-size: 0.98rem;
}

@media (max-width: 992px) {
  .course-detailsundefinedundefined-2 .course-content {
    padding: 1.2rem 0.6rem;
  }
}

@media (max-width: 768px) {
  .course-detailsundefinedundefined-2 .course-content h2 {
    font-size: 1.2rem;
  }

  .course-detailsundefinedundefined-2 .course-content h3 {
    font-size: 1rem;
  }

  .course-detailsundefinedundefined-2 .course-content {
    padding: 1rem 0.4rem;
  }
}

/*--------------------------------------------------------------
# Course Details 3 Section
--------------------------------------------------------------*/
.course-details-3 {
  --accent-color: #2166d1;
  --heading-color: #222b45;
  --default-color: #535c68;
  --surface-color: #f8fbff;
  --contrast-color: #fff;
  background: var(--surface-color);
  /* Responsive Adjustments */
}

.course-details-3 .course-header {
  margin-bottom: 36px;
}

.course-details-3 .course-header .course-image {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.course-details-3 .course-header .course-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.course-details-3 .course-header .course-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.course-details-3 .course-header .instructor {
  display: flex;
  align-items: center;
  gap: 15px;
}

.course-details-3 .course-header .instructor .instructor-avatar {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
}

.course-details-3 .course-header .instructor .instructor-info h6 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.course-details-3 .course-header .instructor .instructor-info span {
  font-size: 0.85rem;
  color: #7e8599;
}

.course-details-3 .course-header .course-stats {
  display: flex;
  gap: 20px;
}

.course-details-3 .course-header .course-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.93rem;
  color: var(--default-color);
}

.course-details-3 .course-header .course-stats .stat-item i {
  color: var(--accent-color);
}

.course-details-3 .course-content {
  margin-bottom: 40px;
  background: #fff;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.course-details-3 .course-content h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--heading-color);
  font-weight: 700;
}

.course-details-3 .course-content h3 {
  font-size: 1.25rem;
  color: var(--heading-color);
  font-weight: 600;
  margin-top: 22px;
  margin-bottom: 10px;
}

.course-details-3 .course-content p,
.course-details-3 .course-content ul,
.course-details-3 .course-content table {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 18px;
}

.course-details-3 .course-content ul {
  padding-left: 22px;
  margin-bottom: 18px;
}

.course-details-3 .course-content ul li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.course-details-3 .course-content table {
  width: 100%;
  border-collapse: collapse;
  background: #fafdff;
}

.course-details-3 .course-content table th,
.course-details-3 .course-content table td {
  padding: 10px 14px;
  border: 1px solid #e5e9f2;
  text-align: left;
}

.course-details-3 .course-content table th {
  font-weight: 700;
  background: #eef2fa;
  color: var(--heading-color);
}

.course-details-3 .course-content i {
  font-style: italic;
  color: #868e96;
  font-size: 0.93rem;
}

.course-details-3 .course-content .course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.course-details-3 .course-content .course-tags .tag {
  background: #e9ecef;
  border-radius: 5px;
  padding: 0.4rem 1.2rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.98rem;
}

.course-details-3 .course-sidebar {
  position: sticky;
  top: 110px;
}

.course-details-3 .course-sidebar .pricing-card {
  background: var(--surface-color);
  border: 1px solid #dde7fa;
  border-radius: 12px;
  padding: 28px 20px;
  margin-bottom: 28px;
  box-shadow: 0 4px 18px rgba(34, 43, 69, 0.06);
  text-align: center;
}

.course-details-3 .course-sidebar .pricing-card .price .currency,
.course-details-3 .course-sidebar .pricing-card .price .amount {
  color: var(--accent-color);
  font-weight: 600;
}

.course-details-3 .course-sidebar .pricing-card .price .currency {
  font-size: 1.2rem;
}

.course-details-3 .course-sidebar .pricing-card .price .amount {
  font-size: 2.2rem;
}

.course-details-3 .course-sidebar .pricing-card .price .period {
  font-size: 0.98rem;
  color: #8ba0c2;
}

.course-details-3 .course-sidebar .pricing-card .original-price {
  font-size: 1rem;
  color: #99a3b1;
  text-decoration: line-through;
  margin-bottom: 15px;
}

.course-details-3 .course-sidebar .pricing-card .btn-enroll,
.course-details-3 .course-sidebar .pricing-card .btn-preview {
  width: 100%;
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.course-details-3 .course-sidebar .pricing-card .btn-enroll {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.course-details-3 .course-sidebar .pricing-card .btn-enroll:hover {
  background: #194e98;
}

.course-details-3 .course-sidebar .pricing-card .btn-preview {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.course-details-3 .course-sidebar .pricing-card .btn-preview:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.course-details-3 .course-sidebar .course-info-card,
.course-details-3 .course-sidebar .course-tags {
  background: var(--surface-color);
  border: 1px solid #dde7fa;
  border-radius: 12px;
  padding: 22px 20px;
  margin-bottom: 18px;
}

.course-details-3 .course-sidebar .course-info-card h4 {
  font-size: 1.05rem;
  color: var(--heading-color);
  margin-bottom: 14px;
  font-weight: 600;
}

.course-details-3 .course-sidebar .course-info-card .info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e9f2;
}

.course-details-3 .course-sidebar .course-info-card .info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.course-details-3 .course-sidebar .course-info-card .info-item .label {
  font-weight: 600;
  color: var(--default-color);
}

.course-details-3 .course-sidebar .course-info-card .info-item .value {
  color: #7e8599;
}

.course-details-3 .course-sidebar .course-tags h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--heading-color);
  font-weight: 600;
}

.course-details-3 .course-sidebar .course-tags .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.course-details-3 .course-sidebar .course-tags .tags-list .tag {
  background: #edf6fd;
  color: var(--accent-color);
  border-radius: 18px;
  font-size: 0.93rem;
  padding: 4px 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.course-details-3 .course-sidebar .course-tags .tags-list .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {

  .course-details-3 .course-header,
  .course-details-3 .course-content,
  .course-details-3 .course-sidebar {
    padding: 0 !important;
  }

  .course-details-3 .course-sidebar {
    position: static;
    top: auto;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .course-details-3 .course-header .course-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .course-details-3 .course-content {
    padding: 1rem 0.6rem;
  }

  .course-details-3 .course-content h2 {
    font-size: 1.2rem;
  }

  .course-details-3 .course-content h3 {
    font-size: 1rem;
  }

  .course-details-3 .course-sidebar {
    margin-top: 32px;
  }
}

/*--------------------------------------------------------------
# Course Detailsundefined 3 Section
--------------------------------------------------------------*/
.course-detailsundefined-3 {
  --accent-color: #2166d1;
  --heading-color: #222b45;
  --default-color: #535c68;
  --surface-color: #f8fbff;
  --contrast-color: #fff;
  background: var(--surface-color);
  /* Responsive Adjustments */
}

.course-detailsundefined-3 .course-header {
  margin-bottom: 36px;
}

.course-detailsundefined-3 .course-header .course-image {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.course-detailsundefined-3 .course-header .course-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.course-detailsundefined-3 .course-header .course-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.course-detailsundefined-3 .course-header .instructor {
  display: flex;
  align-items: center;
  gap: 15px;
}

.course-detailsundefined-3 .course-header .instructor .instructor-avatar {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
}

.course-detailsundefined-3 .course-header .instructor .instructor-info h6 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.course-detailsundefined-3 .course-header .instructor .instructor-info span {
  font-size: 0.85rem;
  color: #7e8599;
}

.course-detailsundefined-3 .course-header .course-stats {
  display: flex;
  gap: 20px;
}

.course-detailsundefined-3 .course-header .course-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.93rem;
  color: var(--default-color);
}

.course-detailsundefined-3 .course-header .course-stats .stat-item i {
  color: var(--accent-color);
}

.course-detailsundefined-3 .course-content {
  margin-bottom: 40px;
  background: #fff;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.course-detailsundefined-3 .course-content h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--heading-color);
  font-weight: 700;
}

.course-detailsundefined-3 .course-content h3 {
  font-size: 1.25rem;
  color: var(--heading-color);
  font-weight: 600;
  margin-top: 22px;
  margin-bottom: 10px;
}

.course-detailsundefined-3 .course-content p,
.course-detailsundefined-3 .course-content ul,
.course-detailsundefined-3 .course-content table {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 18px;
}

.course-detailsundefined-3 .course-content ul {
  padding-left: 22px;
  margin-bottom: 18px;
}

.course-detailsundefined-3 .course-content ul li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.course-detailsundefined-3 .course-content table {
  width: 100%;
  border-collapse: collapse;
  background: #fafdff;
}

.course-detailsundefined-3 .course-content table th,
.course-detailsundefined-3 .course-content table td {
  padding: 10px 14px;
  border: 1px solid #e5e9f2;
  text-align: left;
}

.course-detailsundefined-3 .course-content table th {
  font-weight: 700;
  background: #eef2fa;
  color: var(--heading-color);
}

.course-detailsundefined-3 .course-content i {
  font-style: italic;
  color: #868e96;
  font-size: 0.93rem;
}

.course-detailsundefined-3 .course-content .course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.course-detailsundefined-3 .course-content .course-tags .tag {
  background: #e9ecef;
  border-radius: 5px;
  padding: 0.4rem 1.2rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.98rem;
}

.course-detailsundefined-3 .course-sidebar {
  position: sticky;
  top: 110px;
}

.course-detailsundefined-3 .course-sidebar .pricing-card {
  background: var(--surface-color);
  border: 1px solid #dde7fa;
  border-radius: 12px;
  padding: 28px 20px;
  margin-bottom: 28px;
  box-shadow: 0 4px 18px rgba(34, 43, 69, 0.06);
  text-align: center;
}

.course-detailsundefined-3 .course-sidebar .pricing-card .price .currency,
.course-detailsundefined-3 .course-sidebar .pricing-card .price .amount {
  color: var(--accent-color);
  font-weight: 600;
}

.course-detailsundefined-3 .course-sidebar .pricing-card .price .currency {
  font-size: 1.2rem;
}

.course-detailsundefined-3 .course-sidebar .pricing-card .price .amount {
  font-size: 2.2rem;
}

.course-detailsundefined-3 .course-sidebar .pricing-card .price .period {
  font-size: 0.98rem;
  color: #8ba0c2;
}

.course-detailsundefined-3 .course-sidebar .pricing-card .original-price {
  font-size: 1rem;
  color: #99a3b1;
  text-decoration: line-through;
  margin-bottom: 15px;
}

.course-detailsundefined-3 .course-sidebar .pricing-card .btn-enroll,
.course-detailsundefined-3 .course-sidebar .pricing-card .btn-preview {
  width: 100%;
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.course-detailsundefined-3 .course-sidebar .pricing-card .btn-enroll {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.course-detailsundefined-3 .course-sidebar .pricing-card .btn-enroll:hover {
  background: #194e98;
}

.course-detailsundefined-3 .course-sidebar .pricing-card .btn-preview {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.course-detailsundefined-3 .course-sidebar .pricing-card .btn-preview:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.course-detailsundefined-3 .course-sidebar .course-info-card,
.course-detailsundefined-3 .course-sidebar .course-tags {
  background: var(--surface-color);
  border: 1px solid #dde7fa;
  border-radius: 12px;
  padding: 22px 20px;
  margin-bottom: 18px;
}

.course-detailsundefined-3 .course-sidebar .course-info-card h4 {
  font-size: 1.05rem;
  color: var(--heading-color);
  margin-bottom: 14px;
  font-weight: 600;
}

.course-detailsundefined-3 .course-sidebar .course-info-card .info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e9f2;
}

.course-detailsundefined-3 .course-sidebar .course-info-card .info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.course-detailsundefined-3 .course-sidebar .course-info-card .info-item .label {
  font-weight: 600;
  color: var(--default-color);
}

.course-detailsundefined-3 .course-sidebar .course-info-card .info-item .value {
  color: #7e8599;
}

.course-detailsundefined-3 .course-sidebar .course-tags h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--heading-color);
  font-weight: 600;
}

.course-detailsundefined-3 .course-sidebar .course-tags .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.course-detailsundefined-3 .course-sidebar .course-tags .tags-list .tag {
  background: #edf6fd;
  color: var(--accent-color);
  border-radius: 18px;
  font-size: 0.93rem;
  padding: 4px 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.course-detailsundefined-3 .course-sidebar .course-tags .tags-list .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {

  .course-detailsundefined-3 .course-header,
  .course-detailsundefined-3 .course-content,
  .course-detailsundefined-3 .course-sidebar {
    padding: 0 !important;
  }

  .course-detailsundefined-3 .course-sidebar {
    position: static;
    top: auto;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .course-detailsundefined-3 .course-header .course-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .course-detailsundefined-3 .course-content {
    padding: 1rem 0.6rem;
  }

  .course-detailsundefined-3 .course-content h2 {
    font-size: 1.2rem;
  }

  .course-detailsundefined-3 .course-content h3 {
    font-size: 1rem;
  }

  .course-detailsundefined-3 .course-sidebar {
    margin-top: 32px;
  }
}

/*--------------------------------------------------------------
# Course Detailsundefinedundefined 3 Section
--------------------------------------------------------------*/
.course-detailsundefinedundefined-3 {
  --accent-color: #2166d1;
  --heading-color: #222b45;
  --default-color: #535c68;
  --surface-color: #f8fbff;
  --contrast-color: #fff;
  background: var(--surface-color);
  /* Responsive Adjustments */
}

.course-detailsundefinedundefined-3 .course-header {
  margin-bottom: 36px;
}

.course-detailsundefinedundefined-3 .course-header .course-image {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.course-detailsundefinedundefined-3 .course-header .course-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.course-detailsundefinedundefined-3 .course-header .course-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.course-detailsundefinedundefined-3 .course-header .instructor {
  display: flex;
  align-items: center;
  gap: 15px;
}

.course-detailsundefinedundefined-3 .course-header .instructor .instructor-avatar {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
}

.course-detailsundefinedundefined-3 .course-header .instructor .instructor-info h6 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.course-detailsundefinedundefined-3 .course-header .instructor .instructor-info span {
  font-size: 0.85rem;
  color: #7e8599;
}

.course-detailsundefinedundefined-3 .course-header .course-stats {
  display: flex;
  gap: 20px;
}

.course-detailsundefinedundefined-3 .course-header .course-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.93rem;
  color: var(--default-color);
}

.course-detailsundefinedundefined-3 .course-header .course-stats .stat-item i {
  color: var(--accent-color);
}

.course-detailsundefinedundefined-3 .course-content {
  margin-bottom: 40px;
  background: #fff;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.course-detailsundefinedundefined-3 .course-content h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--heading-color);
  font-weight: 700;
}

.course-detailsundefinedundefined-3 .course-content h3 {
  font-size: 1.25rem;
  color: var(--heading-color);
  font-weight: 600;
  margin-top: 22px;
  margin-bottom: 10px;
}

.course-detailsundefinedundefined-3 .course-content p,
.course-detailsundefinedundefined-3 .course-content ul,
.course-detailsundefinedundefined-3 .course-content table {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 18px;
}

.course-detailsundefinedundefined-3 .course-content ul {
  padding-left: 22px;
  margin-bottom: 18px;
}

.course-detailsundefinedundefined-3 .course-content ul li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.course-detailsundefinedundefined-3 .course-content table {
  width: 100%;
  border-collapse: collapse;
  background: #fafdff;
}

.course-detailsundefinedundefined-3 .course-content table th,
.course-detailsundefinedundefined-3 .course-content table td {
  padding: 10px 14px;
  border: 1px solid #e5e9f2;
  text-align: left;
}

.course-detailsundefinedundefined-3 .course-content table th {
  font-weight: 700;
  background: #eef2fa;
  color: var(--heading-color);
}

.course-detailsundefinedundefined-3 .course-content i {
  font-style: italic;
  color: #868e96;
  font-size: 0.93rem;
}

.course-detailsundefinedundefined-3 .course-content .course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.course-detailsundefinedundefined-3 .course-content .course-tags .tag {
  background: #e9ecef;
  border-radius: 5px;
  padding: 0.4rem 1.2rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.98rem;
}

.course-detailsundefinedundefined-3 .course-sidebar {
  position: sticky;
  top: 110px;
}

.course-detailsundefinedundefined-3 .course-sidebar .pricing-card {
  background: var(--surface-color);
  border: 1px solid #dde7fa;
  border-radius: 12px;
  padding: 28px 20px;
  margin-bottom: 28px;
  box-shadow: 0 4px 18px rgba(34, 43, 69, 0.06);
  text-align: center;
}

.course-detailsundefinedundefined-3 .course-sidebar .pricing-card .price .currency,
.course-detailsundefinedundefined-3 .course-sidebar .pricing-card .price .amount {
  color: var(--accent-color);
  font-weight: 600;
}

.course-detailsundefinedundefined-3 .course-sidebar .pricing-card .price .currency {
  font-size: 1.2rem;
}

.course-detailsundefinedundefined-3 .course-sidebar .pricing-card .price .amount {
  font-size: 2.2rem;
}

.course-detailsundefinedundefined-3 .course-sidebar .pricing-card .price .period {
  font-size: 0.98rem;
  color: #8ba0c2;
}

.course-detailsundefinedundefined-3 .course-sidebar .pricing-card .original-price {
  font-size: 1rem;
  color: #99a3b1;
  text-decoration: line-through;
  margin-bottom: 15px;
}

.course-detailsundefinedundefined-3 .course-sidebar .pricing-card .btn-enroll,
.course-detailsundefinedundefined-3 .course-sidebar .pricing-card .btn-preview {
  width: 100%;
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.course-detailsundefinedundefined-3 .course-sidebar .pricing-card .btn-enroll {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.course-detailsundefinedundefined-3 .course-sidebar .pricing-card .btn-enroll:hover {
  background: #194e98;
}

.course-detailsundefinedundefined-3 .course-sidebar .pricing-card .btn-preview {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.course-detailsundefinedundefined-3 .course-sidebar .pricing-card .btn-preview:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.course-detailsundefinedundefined-3 .course-sidebar .course-info-card,
.course-detailsundefinedundefined-3 .course-sidebar .course-tags {
  background: var(--surface-color);
  border: 1px solid #dde7fa;
  border-radius: 12px;
  padding: 22px 20px;
  margin-bottom: 18px;
}

.course-detailsundefinedundefined-3 .course-sidebar .course-info-card h4 {
  font-size: 1.05rem;
  color: var(--heading-color);
  margin-bottom: 14px;
  font-weight: 600;
}

.course-detailsundefinedundefined-3 .course-sidebar .course-info-card .info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e9f2;
}

.course-detailsundefinedundefined-3 .course-sidebar .course-info-card .info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.course-detailsundefinedundefined-3 .course-sidebar .course-info-card .info-item .label {
  font-weight: 600;
  color: var(--default-color);
}

.course-detailsundefinedundefined-3 .course-sidebar .course-info-card .info-item .value {
  color: #7e8599;
}

.course-detailsundefinedundefined-3 .course-sidebar .course-tags h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--heading-color);
  font-weight: 600;
}

.course-detailsundefinedundefined-3 .course-sidebar .course-tags .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.course-detailsundefinedundefined-3 .course-sidebar .course-tags .tags-list .tag {
  background: #edf6fd;
  color: var(--accent-color);
  border-radius: 18px;
  font-size: 0.93rem;
  padding: 4px 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.course-detailsundefinedundefined-3 .course-sidebar .course-tags .tags-list .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {

  .course-detailsundefinedundefined-3 .course-header,
  .course-detailsundefinedundefined-3 .course-content,
  .course-detailsundefinedundefined-3 .course-sidebar {
    padding: 0 !important;
  }

  .course-detailsundefinedundefined-3 .course-sidebar {
    position: static;
    top: auto;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .course-detailsundefinedundefined-3 .course-header .course-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .course-detailsundefinedundefined-3 .course-content {
    padding: 1rem 0.6rem;
  }

  .course-detailsundefinedundefined-3 .course-content h2 {
    font-size: 1.2rem;
  }

  .course-detailsundefinedundefined-3 .course-content h3 {
    font-size: 1rem;
  }

  .course-detailsundefinedundefined-3 .course-sidebar {
    margin-top: 32px;
  }
}

/*--------------------------------------------------------------
# About 4 Section
--------------------------------------------------------------*/
.about-4 .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.about-4 .content p {
  margin-bottom: 30px;
}

.about-4 .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: var(--accent-color);
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--accent-color);
}

.about-4 .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about-4 .content .about-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about-4 .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.about-4 .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about-4 .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.about-4 .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

.about-4 .icon-box:hover h4 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About 5 Section
--------------------------------------------------------------*/
.about-5 .small-title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent-color);
}

.about-5 .about-title {
  font-size: 2.2rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .about-5 .about-title {
    font-size: 1.6rem;
  }
}

.about-5 .about-description {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1.125rem;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .about-5 .description-wrapper {
    border-left: 1px solid var(--accent-color);
    padding-left: 30px;
  }
}

.about-5 .row.g-4 {
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .about-5 .row.g-4 {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
  }
}

.about-5 .content-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 0 0 48%;
}

.about-5 .content-card .card-image {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 12px;
}

.about-5 .content-card .card-image img {
  transition: transform 0.5s ease;
}

.about-5 .content-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-5 .content-card .card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-5 .content-card .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.5rem;
  flex: 1;
}

.about-5 .content-card .card-content .read-more {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.about-5 .content-card .card-content .read-more:hover {
  gap: 0.75rem;
}

.about-5 .content-card .card-content .read-more:hover i {
  transform: translateX(5px);
}

.about-5 .content-card .card-content .read-more i {
  transition: transform 0.3s ease;
}

.about-5 .content-card:hover .card-image img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .about-5 .content-card {
    flex: 1 1 100%;
  }
}