@charset "UTF-8";

/* Fonts */
:root {
  --default-font: "Roboto", 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: "Ubuntu", sans-serif;
}

:root {
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #262626;
  --accent-color: #911517;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors*/
:root {
  --nav-color: rgba(0, 0, 0, 0.7);
  --nav-hover-color: #181818;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #394450;
  --nav-dropdown-hover-color: #136ad5;
}

/* Color Presets */

.light-background {
  --background-color: #f5faff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #136ad5;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #acd0fc;
  --surface-color: #4188de;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

::selection {
  background-color: #911517;
  color: #ffffff;
}

/*--------------------------------------------------------------
# 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 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.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 {
  --background-color: #ffffff;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #2e80e4;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 56px;
}



.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: #e01e37;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: #911517;
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 90%);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, #911517, transparent 15%);
}

@media (max-width: 879px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0 !important;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 879px) {
  .navmenu {
    padding: 0;
    display: flex;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 5px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    gap: 5px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #911517 !important;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    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;
    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 .active,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-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 NAV — replace your existing block
   ============================================= */
@media (max-width: 879px) {

  /* Hamburger toggle icon */
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 26px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
  }

  /* Nav wrapper */
  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  /* Slide-down drawer */
  .navmenu ul {
    display: block;
    list-style: none;
    position: fixed;
    top: -110%;          /* hidden above viewport */
    left: 0;
    width: 100%;
    height: auto;
    padding: 10px 14px 20px;
    margin: 0;
    background: #ffffff;
    border-radius: 0 0 30px 20px;
    box-shadow: 0 8px 32px rgba(145, 21, 23, 0.12);
    transition: top 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998;
  }

  /* Nav links */
  .navmenu a,
  .navmenu a:focus {
    color: #1a1a2e;
    padding: 10px 12px;
    font-family: var(--nav-font);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 10px;
    white-space: nowrap;
    transition: background 0.18s, color 0.18s;
    position: relative;
    margin-bottom: 2px;
  }

  /* Icon pill — NEW class */
  .nav-icon-wrap {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.18s;
  }

  .navmenu a i {
    font-size: 14px;
    line-height: 1;
  }

  /* Hover state */
  .navmenu a:hover {
    background: #fff5f5;
    color: #911517 !important;
  }
  .navmenu a:hover .nav-icon-wrap {
    background: #fee2e2;
  }

  /* Active state — left accent bar */
  .navmenu .active,
  .navmenu .active:focus {
    background: #fef2f2;
    color: #911517 !important;
    border-radius: 10px;
  }
  .navmenu .active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: #911517;
    border-radius: 0 3px 3px 0;
  }
  .navmenu .active .nav-icon-wrap {
    background: #fee2e2;
  }

  /* ---- Active state open ---- */
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .navmenu ul {
    top: 0px;    /* adjust to your actual header height */
  }

  /* Overlay */
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background: rgba(10, 10, 20, 0.4);
    transition: background 0.3s;
    z-index: 9996;
  }

  /* Hamburger becomes X */
  .mobile-nav-active .mobile-nav-toggle {
  color: #911517;
  position: absolute;
  font-size: 30px;
  top: 14px;
  right: 14px;
  margin-right: 0;
  z-index: 9999;
  transform: rotate(90deg);
}
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #000;
  font-size: 14px;
  /* padding-bottom: 50px; */
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 15px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--default-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  font-size: 16px;
  color: #fff;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 20px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 6px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 15px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Spinner Loader */

.spinner {
  width: 56px;
  height: 56px;
  display: grid;
  border: 4.5px solid #0000;
  border-radius: 50%;
  border-color: #dbdcef #0000;
  animation: spinner-e04l1k 1s infinite linear;
}

.spinner::before,
.spinner::after {
  content: "";
  grid-area: 1/1;
  margin: 2.2px;
  border: inherit;
  border-radius: 50%;
}

.spinner::before {
  border-color: #911517 #0000;
  animation: inherit;
  animation-duration: 0.5s;
  animation-direction: reverse;
}

.spinner::after {
  margin: 8.9px;
}

@keyframes spinner-e04l1k {
  100% {
    transform: rotate(1turn);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  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;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: #f2f2f2;
  padding: 8px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  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 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 35px 0;
  scroll-margin-top: 20px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 35px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}


.section-title p {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 1.6rem;
  }
}

/*--------------------------------------------------------------
# Courses Hero Section
--------------------------------------------------------------*/
.courses-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;
}

.courses-hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.courses-hero .hero-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.cp-name {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .courses-hero .hero-text h1 {
    font-size: 1.6rem;
  }
}

.courses-hero .hero-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  margin-right: 50px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses-hero .hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .courses-hero .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
}

.courses-hero .hero-stats .stat-item {
  text-align: center;
}

.courses-hero .hero-stats .stat-item .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.courses-hero .hero-stats .stat-item .label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.courses-hero .hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}


.courses-hero .hero-buttons .btn {
  padding: 10px 30px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.courses-hero .hero-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.courses-hero .hero-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.courses-hero .hero-buttons .btn.btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.courses-hero .hero-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.courses-hero .hero-features {
  display: flex;
  gap: 2rem;
}

.courses-hero .hero-features .feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.courses-hero .hero-features .feature i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.courses-hero .hero-features .feature span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--default-color);
}

.courses-hero .hero-image {
  position: relative;
}

.courses-hero .hero-image .main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.courses-hero .hero-image .main-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.courses-hero .hero-image .floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.courses-hero .hero-image .floating-cards .course-card {
  position: absolute;
  background: var(--surface-color);
  border-radius: 15px;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 200px;
}

.courses-hero .hero-image .floating-cards .course-card:nth-child(1) {
  top: 20%;
  left: -10%;
}

.courses-hero .hero-image .floating-cards .course-card:nth-child(2) {
  top: 50%;
  right: -15%;
}

.courses-hero .hero-image .floating-cards .course-card:nth-child(3) {
  bottom: 5%;
  left: -5%;
}

.courses-hero .hero-image .floating-cards .course-card .card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-bg-cng {
  background-color: #000 !important;
}

.card-bg-cng h6,
.card-bg-cng span {
  color: #fff !important;
}

.icon-bg-cng {
  background: color-mix(in srgb, #f4e7e7, transparent 12%) !important;
}

.courses-hero .hero-image .floating-cards .course-card .card-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.courses-hero .hero-image .floating-cards .course-card .card-content h6 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.2;
}

.courses-hero .hero-image .floating-cards .course-card .card-content span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991.5px) {
  .courses-hero .hero-image .floating-cards .course-card {
    /* display: none; */
  }

  .cng-order-2 {
    order: 2 !important;
  }

  .cng-order-2 {
    order: 1 !important;
  }
}

.courses-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.courses-hero .hero-background .bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.courses-hero .hero-background .bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.courses-hero .hero-background .bg-shapes .shape.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.courses-hero .hero-background .bg-shapes .shape.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

.courses-hero .hero-background .bg-shapes .shape.shape-3 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 30%;
  animation: float 7s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 991px) {
  .courses-hero {
    /* padding: 100px 0 60px; */
    min-height: auto;
  }

}

@media (max-width: 768px) {
  .courses-hero {
    text-align: center;
  }

  .courses-hero .hero-stats {
    justify-content: center;
  }

  .courses-hero .hero-features {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Featured Courses Section
--------------------------------------------------------------*/
.featured-courses .course-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-courses .course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px color-mix(in srgb, #911517, transparent 55%);
}

.featured-courses .course-image {
  position: relative;
  overflow: hidden;
  height: 78px;
}

.featured-courses .course-image img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-courses .course-image:hover img {
  transform: scale(1.05);
}

.featured-courses .course-image .badge {
  position: absolute;
  top: 15px;
  left: 20px;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-courses .course-image .badge.icon-1 {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.featured-courses .course-image .badge.icon-2 {
  background: linear-gradient(135deg, #10b981, #047857);
}

.featured-courses .course-image .badge.icon-3 {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.featured-courses .course-image .badge.icon-4 {
  background: linear-gradient(135deg, #059669, #047857);
}

.featured-courses .course-image .badge.icon-5 {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.featured-courses .course-image .badge.icon-6 {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.featured-courses .course-image .badge.icon-7 {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.featured-courses .course-image .badge.icon-8 {
  background: linear-gradient(135deg, #84cc16, #65a30d);
}


.featured-courses .course-image .badge.new {
  background: #28a745;
  color: white;
}

.featured-courses .course-image .badge.certificate {
  background: #ffc107;
  color: #212529;
}

.featured-courses .course-image .badge.popular {
  background: #ff6b35;
  color: white;
}

.featured-courses .course-image .price-badge {
  position: absolute;
  top: 3px;
  left: 90px;
  color: #000;
  padding: 8px 10px 0 5px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 18px;
}

.featured-courses .course-content {
  padding: 5px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.featured-courses .course-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.featured-courses .course-meta span {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 15px;
  font-weight: 500;
}

.featured-courses .course-meta span.level {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.featured-courses .course-meta span.duration {
  background: color-mix(in srgb, var(--heading-color), transparent 85%);
  color: var(--heading-color);
}

.featured-courses h3 {
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 1.3;
}

.featured-courses h3 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.featured-courses h3 a:hover {
  color: var(--accent-color);
}

.featured-courses p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.featured-courses .instructor {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.featured-courses .instructor .instructor-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.featured-courses .instructor .instructor-info h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.featured-courses .instructor .instructor-info span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.featured-courses .course-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.featured-courses .course-stats .rating {
  display: flex;
  align-items: center;
  gap: 3px;
}

.featured-courses .course-stats .rating i {
  color: #ffc107;
  font-size: 12px;
}

.featured-courses .course-stats .rating span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 12px;
  margin-left: 8px;
  font-weight: 500;
}

.featured-courses .course-stats .students {
  display: flex;
  align-items: center;
  gap: 5px;
}

.featured-courses .course-stats .students i {
  color: var(--accent-color);
  font-size: 14px;
}

.featured-courses .course-stats .students span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 12px;
  font-weight: 500;
}

.featured-courses .btn-course {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: auto;
}

.featured-courses .btn-course:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.featured-courses .more-courses {
  margin-top: 50px;
}

.featured-courses .more-courses .btn-more {
  display: inline-block;
  background: transparent;
  color: var(--accent-color);
  padding: 15px 40px;
  border: 2px solid var(--accent-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.featured-courses .more-courses .btn-more:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .featured-courses .course-image {
    height: 200px;
  }

  .featured-courses .course-content {
    /* padding: 20px; */
  }

  .featured-courses h3 {
    font-size: 18px;
  }

  .featured-courses .course-stats {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/*--------------------------------------------------------------
# Course Categories Section
--------------------------------------------------------------*/
.course-categories .category-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.course-categories .category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.course-categories .category-card .category-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.course-categories .category-card .category-icon i {
  font-size: 30px;
  color: var(--contrast-color);
}

.course-categories .category-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.course-categories .category-card .course-count {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.course-categories .category-card.category-tech .category-icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.course-categories .category-card.category-tech:hover {
  border-color: #3b82f6;
}

.course-categories .category-card.category-business .category-icon {
  background: linear-gradient(135deg, #10b981, #047857);
}

.course-categories .category-card.category-business:hover {
  border-color: #10b981;
}

.course-categories .category-card.category-design .category-icon {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.course-categories .category-card.category-design:hover {
  border-color: #8b5cf6;
}

.course-categories .category-card.category-health .category-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.course-categories .category-card.category-health:hover {
  border-color: #ef4444;
}

.course-categories .category-card.category-language .category-icon {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.course-categories .category-card.category-language:hover {
  border-color: #f97316;
}

.course-categories .category-card.category-science .category-icon {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.course-categories .category-card.category-science:hover {
  border-color: #06b6d4;
}

.course-categories .category-card.category-marketing .category-icon {
  background: linear-gradient(135deg, #ec4899, #db2777);
}

.course-categories .category-card.category-marketing:hover {
  border-color: #ec4899;
}

.course-categories .category-card.category-finance .category-icon {
  background: linear-gradient(135deg, #059669, #047857);
}

.course-categories .category-card.category-finance:hover {
  border-color: #059669;
}

.course-categories .category-card.category-photography .category-icon {
  background: linear-gradient(135deg, #64748b, #475569);
}

.course-categories .category-card.category-photography:hover {
  border-color: #64748b;
}

.course-categories .category-card.category-music .category-icon {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

.course-categories .category-card.category-music:hover {
  border-color: #7c3aed;
}

.course-categories .category-card.category-engineering .category-icon {
  background: linear-gradient(135deg, #6b7280, #4b5563);
}

.course-categories .category-card.category-engineering:hover {
  border-color: #6b7280;
}

.course-categories .category-card.category-law .category-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.course-categories .category-card.category-law:hover {
  border-color: #f59e0b;
}

.course-categories .category-card.category-culinary .category-icon {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
}

.course-categories .category-card.category-culinary:hover {
  border-color: #f43f5e;
}

.course-categories .category-card.category-sports .category-icon {
  background: linear-gradient(135deg, #84cc16, #65a30d);
}

.course-categories .category-card.category-sports:hover {
  border-color: #84cc16;
}

.course-categories .category-card.category-writing .category-icon {
  background: linear-gradient(135deg, #6366f1, #4338ca);
}

.course-categories .category-card.category-writing:hover {
  border-color: #6366f1;
}

.course-categories .category-card.category-psychology .category-icon {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.course-categories .category-card.category-psychology:hover {
  border-color: #14b8a6;
}

.course-categories .category-card.category-environment .category-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.course-categories .category-card.category-environment:hover {
  border-color: #22c55e;
}

.course-categories .category-card.category-communication .category-icon {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.course-categories .category-card.category-communication:hover {
  border-color: #0ea5e9;
}

@media (max-width: 576px) {
  .course-categories .category-card {
    padding: 20px 15px;
  }

  .course-categories .category-card .category-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .course-categories .category-card .category-icon i {
    font-size: 24px;
  }

  .course-categories .category-card h5 {
    font-size: 14px;
  }

  .course-categories .category-card .course-count {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Featured Instructors Section
--------------------------------------------------------------*/
.featured-instructors .instructor-card {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 94%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-instructors .instructor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 88%);
}

.featured-instructors .instructor-card:hover .instructor-image .overlay-content {
  opacity: 1;
}

.featured-instructors .instructor-card:hover .instructor-image img {
  transform: scale(1.05);
}

.featured-instructors .instructor-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.featured-instructors .instructor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-instructors .instructor-image .overlay-content {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.featured-instructors .instructor-image .rating-stars {
  background: var(--surface-color);
  padding: 8px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.featured-instructors .instructor-image .rating-stars i {
  color: #ffc107;
  font-size: 12px;
}

.featured-instructors .instructor-image .rating-stars i.bi-star {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.featured-instructors .instructor-image .rating-stars span {
  font-size: 12px;
  font-weight: 600;
  margin-left: 4px;
  color: var(--heading-color);
}

.featured-instructors .instructor-image .course-count {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.featured-instructors .instructor-image .course-count i {
  font-size: 14px;
}

.featured-instructors .instructor-image .course-count span {
  font-size: 12px;
  font-weight: 600;
}

.featured-instructors .instructor-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.featured-instructors .instructor-info h5 {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
}

.featured-instructors .instructor-info .specialty {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-instructors .instructor-info .description {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.featured-instructors .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
}

.featured-instructors .stats-grid .stat {
  text-align: center;
}

.featured-instructors .stats-grid .stat .number {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 4px;
}

.featured-instructors .stats-grid .stat .label {
  font-size: 11px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.featured-instructors .action-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.featured-instructors .action-buttons .btn-view {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
}

.featured-instructors .action-buttons .btn-view:hover {
  transform: translateY(-2px);
}

.featured-instructors .action-buttons .social-links {
  display: flex;
  gap: 6px;
}

.featured-instructors .action-buttons .social-links a {
  width: 32px;
  height: 32px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
}

.featured-instructors .action-buttons .social-links a:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.featured-instructors .action-buttons .social-links a i {
  font-size: 14px;
}

@media (max-width: 1399px) {
  .featured-instructors .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
}

@media (max-width: 1199px) {
  .featured-instructors .col-lg-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
}

@media (max-width: 991px) {
  .featured-instructors .instructor-card {
    margin-bottom: 20px;
  }

  .featured-instructors .instructor-image {
    height: 220px;
  }

  .featured-instructors .instructor-info {
    padding: 20px;
  }

  .featured-instructors .instructor-info h5 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .featured-instructors .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .featured-instructors .instructor-image {
    height: 200px;
  }

  .featured-instructors .instructor-info {
    padding: 18px;
  }
}

@media (max-width: 575px) {
  .featured-instructors .row>* {
    width: 100% !important;
  }

  .featured-instructors .instructor-image {
    height: 250px;
  }

  .featured-instructors .instructor-image .overlay-content {
    opacity: 1;
  }

  .featured-instructors .action-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .featured-instructors .action-buttons .btn-view {
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  overflow: hidden;
}

.testimonials .critic-reviews {
  margin-bottom: 60px;
}

.testimonials .critic-reviews .critic-review {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.testimonials .critic-reviews .critic-review .review-quote {
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: var(--accent-color);
  opacity: 0.2;
  line-height: 1;
}

.testimonials .critic-reviews .critic-review .stars {
  margin-bottom: 15px;
  display: flex;
}

.testimonials .critic-reviews .critic-review .stars i {
  color: #FFD700;
  margin-right: 3px;
  font-size: 18px;
}

.testimonials .critic-reviews .critic-review p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--default-color);
  font-style: italic;
}

.testimonials .critic-reviews .critic-review .critic-info .critic-name {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 16px;
}

.testimonials .critic-reviews .critic-review:hover {
  transform: translateY(-10px);
}


.testimonials .testimonials-container .swiper-wrapper {
  height: auto !important;
  padding-bottom: 20px;
}

.testimonials .testimonials-container .testimonial-item {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  border-top: 3px solid var(--accent-color);
}

.testimonials .testimonials-container .testimonial-item .stars {
  margin-bottom: 15px;
  display: flex;
}

.testimonials .testimonials-container .testimonial-item .stars i {
  color: #FFD700;
  margin-right: 3px;
  font-size: 16px;
}

.testimonials .testimonials-container .testimonial-item p {
  font-size: 15px;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--default-color);
  line-height: 1.6;
}

.testimonials .testimonials-container .testimonial-item .testimonial-profile {
  display: flex;
  align-items: center;
}

.testimonials .testimonials-container .testimonial-item .testimonial-profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  margin-right: 15px;
}

.testimonials .testimonials-container .testimonial-item .testimonial-profile div h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px;
  color: var(--heading-color);
}

.testimonials .testimonials-container .testimonial-item .testimonial-profile div h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-weight: normal;
}

.testimonials .testimonials-container .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .testimonials-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
}

.testimonials .testimonials-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  width: 20px;
  border-radius: 10px;
}

.testimonials .overall-rating {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: inline-block;
}

.testimonials .overall-rating .rating-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 10px;
}

.testimonials .overall-rating .rating-stars {
  margin-bottom: 15px;
}

.testimonials .overall-rating .rating-stars i {
  color: #FFD700;
  font-size: 22px;
  margin: 0 3px;
}

.testimonials .overall-rating p {
  color: var(--default-color);
  font-size: 15px;
  margin-bottom: 15px;
}

.testimonials .overall-rating .rating-platforms {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.testimonials .overall-rating .rating-platforms span {
  font-size: 14px;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 5px 15px;
  border-radius: 20px;
}

@media (max-width: 991px) {
  .testimonials .section-header h2 {
    font-size: 28px;
  }

  .testimonials .critic-reviews .critic-review {
    margin-bottom: 30px;
  }

  .testimonials .testimonials-container .testimonial-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }

  .testimonials .section-header h2 {
    font-size: 24px;
  }

  .testimonials .overall-rating {
    padding: 30px;
  }

  .testimonials .overall-rating .rating-number {
    font-size: 36px;
  }

  .testimonials .overall-rating .rating-stars i {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .card {
  border: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
  height: 100%;
  background-color: var(--surface-color);
}

.recent-blog-posts .card:hover .card-img-wrapper img {
  transform: scale(1.1);
}

.recent-blog-posts .card .card-top {
  padding: 1rem;
}

.recent-blog-posts .card .card-top img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.recent-blog-posts .card .card-top .author-name {
  font-size: 0.9rem;
  color: var(--heading-color);
}

.recent-blog-posts .card .card-top .likes {
  font-size: 0.9rem;
  color: var(--accent-color);
}

.recent-blog-posts .card .card-top .likes i {
  margin-right: 0.25rem;
}

.recent-blog-posts .card .card-img-wrapper {
  overflow: hidden;
  max-height: 250px;
}

.recent-blog-posts .card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.recent-blog-posts .card .card-body {
  padding: 1.5rem;
}

.recent-blog-posts .card .card-body .card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
  font-weight: 600;
}

.recent-blog-posts .card .card-body .card-title a {
  color: inherit;
}

.recent-blog-posts .card .card-body .card-title:hover {
  color: var(--accent-color);
}

.recent-blog-posts .card .card-body .card-text {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

/*--------------------------------------------------------------
# Cta Section
--------------------------------------------------------------*/
.cta {
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/bg/abstract-bg-3.webp") center/cover;
  opacity: 0.03;
  z-index: 1;
}

.cta .container {
  position: relative;
  z-index: 2;
}

.cta .cta-content {
  padding-right: 30px;
}

@media (max-width: 991px) {
  .cta .cta-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.cta .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .cta .cta-content h2 {
    font-size: 2rem;
  }
}

.cta .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.cta .features-list {
  margin-bottom: 32px;
}

.cta .features-list .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.cta .features-list .feature-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-right: 12px;
  flex-shrink: 0;
}

.cta .features-list .feature-item span {
  font-weight: 500;
  color: var(--default-color);
}

.cta .cta-actions {
  margin-bottom: 40px;
}

.cta .cta-actions .btn {
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 16px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.cta .cta-actions .btn.btn-primary {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
}

.cta .cta-actions .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.cta .cta-actions .btn.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.cta .cta-actions .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.cta .stats-row {
  display: flex;
  gap: 40px;
}

@media (max-width: 576px) {
  .cta .stats-row {
    flex-direction: column;
    gap: 24px;
  }
}

.cta .stats-row .stat-item h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 8px;
  line-height: 1;
}

.cta .stats-row .stat-item p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta .cta-image {
  position: relative;
}

.cta .cta-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cta .cta-image .floating-element {
  position: absolute;
  background: var(--surface-color);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.cta .cta-image .floating-element.student-card {
  top: 20px;
  right: -20px;
}

@media (max-width: 576px) {
  .cta .cta-image .floating-element.student-card {
    right: 10px;
    padding: 15px;
  }
}

.cta .cta-image .floating-element.course-card {
  bottom: 30px;
  left: -20px;
}

@media (max-width: 576px) {
  .cta .cta-image .floating-element.course-card {
    left: 10px;
    padding: 15px;
  }
}

.cta .cta-image .floating-element .card-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta .cta-image .floating-element .card-content i {
  font-size: 2rem;
  color: var(--accent-color);
}

.cta .cta-image .floating-element .card-content .text .number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.cta .cta-image .floating-element .card-content .text .label {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/


.about .subtitle {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  position: relative;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.about .about-content {
  padding-right: 20px;
}

.about .about-content h2,
.about-content h2.bro-chu {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (max-width: 991.5px) {

  .about .about-content h2,
  .about-content h2.bro-chu {
    font-size: 2rem;
  }

  .about .about-content {
    padding: 0 15px;
  }
}

.about .about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.about .stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.about .stats-row .stats-item {
  flex: 1;
  min-width: 100px;
}

.about .stats-row .stats-item .count {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.5rem;
}

.about .stats-row .stats-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.about .mission-card {
  background-color: var(--surface-color);
  padding: 2.5rem 1.5rem;
  border-radius: 8px;
  height: 100%;
  position: relative;
  transition: all 0.3s ease-in-out;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.about .mission-card:hover {
  transform: translateY(-5px);
}

.about .mission-card:hover .icon-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .mission-card .icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--accent-color);
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease-in-out;
}

.about .mission-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about .mission-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.about .achievements {
  padding-left: 20px;
}

.about .achievements h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (max-width: 912px) {
  .about .achievements h2 {
    font-size: 2rem;
  }
}

.about .achievements p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.about .achievements .achievements-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.about .achievements .achievements-list li {
  padding: 0.5rem 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about .achievements .achievements-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about .achievements .btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about .achievements .btn-explore:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  gap: 0.75rem;
}

.about .achievements .btn-explore i {
  font-size: 1rem;
}

.about .about-gallery img {
  border: 5px solid var(--surface-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about .about-gallery img:hover {
  transform: scale(1.02);
}

@media (max-width: 991px) {

  .about .about-content,
  .about .achievements {
    padding-left: 0;
    margin-top: 2rem;
  }

  .about .about-gallery {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .about .stats-row {
    justify-content: center;
    gap: 1.5rem;
  }

  .about .stats-row .stats-item {
    flex: 0 0 40%;
    text-align: center;
  }

  .about .mission-card {
    margin-bottom: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Courses 2 Section
--------------------------------------------------------------*/
.courses-2 .course-filters {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.courses-2 .course-filters .filter-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.courses-2 .course-filters .filter-group {
  margin-bottom: 25px;
}

.courses-2 .course-filters .filter-group h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.courses-2 .course-filters .filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.courses-2 .course-filters .filter-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: var(--default-color);
  padding-left: 25px;
  transition: color 0.3s ease;
}

.courses-2 .course-filters .filter-checkbox:hover {
  color: var(--accent-color);
}

.courses-2 .course-filters .filter-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.courses-2 .course-filters .filter-checkbox input:checked~.checkmark {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.courses-2 .course-filters .filter-checkbox input:checked~.checkmark:after {
  display: block;
}

.courses-2 .course-filters .filter-checkbox .checkmark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.courses-2 .course-filters .filter-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid var(--contrast-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.courses-2 .courses-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
}

.courses-2 .courses-header .search-box {
  position: relative;
  flex: 1;
  max-width: 400px;
}

.courses-2 .courses-header .search-box i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.courses-2 .courses-header .search-box input {
  width: 100%;
  padding: 12px 20px 12px 45px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 25px;
  font-size: 14px;
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.courses-2 .courses-header .search-box input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.courses-2 .courses-header .search-box input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.courses-2 .courses-header .sort-dropdown select {
  padding: 12px 40px 12px 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.courses-2 .courses-header .sort-dropdown select:focus {
  outline: none;
  border-color: var(--accent-color);
}

.courses-2 .courses-grid .course-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.courses-2 .courses-grid .course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.courses-2 .courses-grid .course-image {
  position: relative;
  overflow: hidden;
}

.courses-2 .courses-grid .course-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.courses-2 .courses-grid .course-image:hover img {
  transform: scale(1.05);
}

.courses-2 .courses-grid .course-image .course-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.courses-2 .courses-grid .course-image .course-badge.badge-free {
  background-color: #28a745;
}

.courses-2 .courses-grid .course-image .course-badge.badge-new {
  background-color: #ff6b35;
}

.courses-2 .courses-grid .course-image .course-badge.badge-certificate {
  background-color: #6f42c1;
}

.courses-2 .courses-grid .course-image .course-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #28a745;
  color: var(--contrast-color);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.courses-2 .courses-grid .course-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.courses-2 .courses-grid .course-content .course-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.courses-2 .courses-grid .course-content .course-meta span {
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.courses-2 .courses-grid .course-content .course-meta span.category {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.courses-2 .courses-grid .course-content .course-meta span.level {
  background-color: color-mix(in srgb, var(--heading-color), transparent 85%);
  color: var(--heading-color);
}

.courses-2 .courses-grid .course-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
  line-height: 1.4;
}

.courses-2 .courses-grid .course-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.courses-2 .courses-grid .course-content .course-stats {
  margin-bottom: 20px;
}

.courses-2 .courses-grid .course-content .course-stats .stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-right: 15px;
  margin-bottom: 8px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.courses-2 .courses-grid .course-content .course-stats .stat i {
  color: var(--accent-color);
}

.courses-2 .courses-grid .course-content .course-stats .rating {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.courses-2 .courses-grid .course-content .course-stats .rating i {
  color: #ffc107;
  font-size: 12px;
}

.courses-2 .courses-grid .course-content .course-stats .rating span {
  margin-left: 5px;
}

.courses-2 .courses-grid .course-content .instructor-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.courses-2 .courses-grid .course-content .instructor-info .instructor-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
}

.courses-2 .courses-grid .course-content .instructor-info .instructor-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
}

.courses-2 .courses-grid .course-content .btn-course {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: auto;
}

.courses-2 .courses-grid .course-content .btn-course:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.courses-2 .pagination-wrapper {
  margin-top: 40px;
}

.courses-2 .pagination-wrapper .pagination .page-item {
  margin: 0 3px;
}

.courses-2 .pagination-wrapper .pagination .page-item .page-link {
  border: none;
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.courses-2 .pagination-wrapper .pagination .page-item .page-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.courses-2 .pagination-wrapper .pagination .page-item.active .page-link {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.courses-2 .pagination-wrapper .pagination .page-item.disabled .page-link {
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  cursor: not-allowed;
}

.courses-2 .pagination-wrapper .pagination .page-item.disabled .page-link:hover {
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

@media (max-width: 991px) {
  .courses-2 .course-filters {
    margin-bottom: 20px;
  }

  .courses-2 .courses-header {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .courses-2 .courses-header .search-box {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .courses-2 .courses-grid .course-card {
    margin-bottom: 20px;
  }

  .courses-2 .course-filters {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Course Details Section
--------------------------------------------------------------*/
.course-details .course-hero {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  align-items: center;
}

@media (max-width: 991px) {
  .course-details .course-hero {
    flex-direction: column;
    text-align: center;
  }
}

.course-details .course-hero .hero-content {
  flex: 1;
}

.course-details .course-hero .hero-content .course-badge {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .course-details .course-hero .hero-content .course-badge {
    justify-content: center;
  }
}

.course-details .course-hero .hero-content .course-badge span {
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
}

.course-details .course-hero .hero-content .course-badge span.category {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.course-details .course-hero .hero-content .course-badge span.level {
  background-color: color-mix(in srgb, var(--heading-color), transparent 85%);
  color: var(--heading-color);
}

.course-details .course-hero .hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .course-details .course-hero .hero-content h1 {
    font-size: 32px;
  }
}

.course-details .course-hero .hero-content .course-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.course-details .course-hero .hero-content .instructor-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 991px) {
  .course-details .course-hero .hero-content .instructor-card {
    justify-content: center;
  }
}

.course-details .course-hero .hero-content .instructor-card .instructor-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.course-details .course-hero .hero-content .instructor-card .instructor-details h5 {
  margin: 0 0 5px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.course-details .course-hero .hero-content .instructor-card .instructor-details span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 8px;
}

.course-details .course-hero .hero-content .instructor-card .instructor-details .instructor-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.course-details .course-hero .hero-content .instructor-card .instructor-details .instructor-rating i {
  color: #ffc107;
  font-size: 14px;
}

.course-details .course-hero .hero-content .instructor-card .instructor-details .instructor-rating span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-left: 8px;
  margin-bottom: 0;
}

.course-details .course-hero .hero-image {
  flex: 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.course-details .course-hero .hero-image img {
  width: 100%;
  /* height: 350px; */
  object-fit: cover;
}

.course-details .course-hero .hero-image .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.course-details .course-hero .hero-image .play-overlay .play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  font-size: 32px;
  margin-bottom: 15px;
  transition: all 0.3s;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.course-details .course-hero .hero-image .play-overlay .play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 40%);
}

.course-details .course-hero .hero-image .play-overlay span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--contrast-color);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.course-details .course-nav-tabs .nav-tabs {
  border: none;
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 10px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

.course-details .course-nav-tabs .nav-tabs .nav-item {
  flex: 1;
}

.course-details .course-nav-tabs .nav-tabs .nav-link {
  border: none;
  border-radius: 10px;
  padding: 15px 20px;
  text-align: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background: none;
  font-weight: 500;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 576px) {
  .course-details .course-nav-tabs .nav-tabs .nav-link {
    padding: 12px 10px;
    font-size: 14px;
    flex-direction: column;
    gap: 5px;
  }
}

.course-details .course-nav-tabs .nav-tabs .nav-link i {
  font-size: 18px;
}

@media (max-width: 576px) {
  .course-details .course-nav-tabs .nav-tabs .nav-link i {
    font-size: 16px;
  }
}

.course-details .course-nav-tabs .nav-tabs .nav-link.active {
  background: linear-gradient(135deg, #e01e37, #9b0f1f);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.course-details .course-nav-tabs .nav-tabs .nav-link:hover:not(.active) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.overview-section {
  margin-bottom: 40px;
}

.overview-section h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.overview-section p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 15px;
}

.skills-grid {
  margin-bottom: 40px;
}

.skills-grid h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.skills-grid .skill-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  margin-bottom: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s;
}

.skills-grid .skill-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.skills-grid .skill-item .skill-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), blue 20%));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.skills-grid .skill-item .skill-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.skills-grid .skill-item .skill-content h5 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.skills-grid .skill-item .skill-content p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.requirements-section h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.requirements-section .requirements-list {
  list-style: none;
  padding: 0;
}

.requirements-section .requirements-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 15px;
  color: var(--default-color);
}

.requirements-section .requirements-list li i {
  color: var(--accent-color);
  font-size: 18px;
  flex-shrink: 0;
}

.curriculum-overview {
  margin-bottom: 30px;
}

.curriculum-overview .curriculum-stats {
  display: flex;
  gap: 30px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .curriculum-overview .curriculum-stats {
    flex-direction: column;
    gap: 15px;
  }
}

.curriculum-overview .curriculum-stats .stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.curriculum-overview .curriculum-stats .stat i {
  color: var(--accent-color);
  font-size: 20px;
}

.curriculum-overview .curriculum-stats .stat span {
  font-weight: 600;
  color: var(--default-color);
}

.accordion .curriculum-module {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion .curriculum-module .accordion-button {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: none;
  padding: 12px 25px;
  font-weight: 600;
  box-shadow: none;
}

.accordion .curriculum-module .accordion-button:not(.collapsed) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--heading-color);
}

.accordion .curriculum-module .accordion-button:focus {
  box-shadow: none;
}

.accordion .curriculum-module .accordion-button .module-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.accordion .curriculum-module .accordion-button .module-info .module-title {
  font-size: 18px;
}

.accordion .curriculum-module .accordion-button .module-info .module-meta {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

.accordion .curriculum-module .accordion-body {
  padding: 0;
}

.accordion .curriculum-module .accordion-body .lessons-list .lesson {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
  transition: background-color 0.3s;
}

.accordion .curriculum-module .accordion-body .lessons-list .lesson:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.accordion .curriculum-module .accordion-body .lessons-list .lesson:last-child {
  border-bottom: none;
}

.accordion .curriculum-module .accordion-body .lessons-list .lesson i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 15px;
}

.accordion .curriculum-module .accordion-body .lessons-list .lesson .lesson-title {
  flex: 1;
  font-size: 15px;
  color: var(--default-color);
}

.accordion .curriculum-module .accordion-body .lessons-list .lesson .lesson-time {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.reviews-summary {
  margin-bottom: 40px;
  text-align: center;
  padding: 40px;
  background-color: var(--surface-color);
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.reviews-summary .rating-overview .overall-rating .rating-number {
  font-size: 64px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 10px;
}

.reviews-summary .rating-overview .overall-rating .rating-stars {
  margin-bottom: 10px;
}

.reviews-summary .rating-overview .overall-rating .rating-stars i {
  font-size: 24px;
  color: #ffc107;
  margin: 0 2px;
}

.reviews-summary .rating-overview .overall-rating .rating-text {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.reviews-list .review-item {
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 25px;
}

.reviews-list .review-item .reviewer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.reviews-list .review-item .reviewer-info .reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.reviews-list .review-item .reviewer-info .reviewer-details {
  flex: 1;
}

.reviews-list .review-item .reviewer-info .reviewer-details h6 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

.reviews-list .review-item .reviewer-info .reviewer-details .review-rating i {
  color: #ffc107;
  font-size: 14px;
  margin-right: 2px;
}

.reviews-list .review-item .reviewer-info .review-date {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.reviews-list .review-item .review-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--default-color);
  margin: 0;
}

.course-details .enrollment-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 20px;
  margin-bottom: 15px;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  position: sticky;
  top: 100px;
}

.course-details .enrollment-card .card-header {
  padding: 30px 30px 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.course-details .enrollment-card .card-header .price-display {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.course-details .enrollment-card .card-header .price-display .current-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-color);
}

.course-details .enrollment-card .card-header .price-display .original-price {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
}

.course-details .enrollment-card .card-header .price-display .discount {
  padding: 5px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.course-details .enrollment-card .card-header .enrollment-count {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.course-details .enrollment-card .card-header .enrollment-count i {
  color: var(--accent-color);
}

.course-details .enrollment-card .card-body {
  padding: 30px;
}

.course-details .enrollment-card .card-body .course-highlights {
  margin-bottom: 30px;
}

.course-details .enrollment-card .card-body .course-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.course-details .enrollment-card .card-body .course-highlights .highlight-item i {
  color: var(--accent-color);
  font-size: 16px;
  width: 16px;
}

.course-details .enrollment-card .card-body .course-highlights .highlight-item span {
  font-size: 14px;
  color: var(--default-color);
}

.course-details .enrollment-card .card-body .action-buttons {
  margin-bottom: 25px;
}

.course-details .enrollment-card .card-body .action-buttons .btn-primary {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #e01e37, #9b0f1f);
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
  color: var(--contrast-color);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  transition: all 0.3s;
}

.course-details .enrollment-card .card-body .action-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.course-details .enrollment-card .card-body .action-buttons .btn-secondary {
  width: 100%;
  padding: 16px;
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.course-details .enrollment-card .card-body .action-buttons .btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.course-details .enrollment-card .card-body .guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.course-details .enrollment-card .card-body .guarantee i {
  color: var(--accent-color);
}

.course-details .course-details-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
}

.course-details .course-details-card h4 {
  font-size: 20px;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.course-details .course-details-card .detail-grid .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.course-details .course-details-card .detail-grid .detail-row:last-child {
  border-bottom: none;
}

.course-details .course-details-card .detail-grid .detail-row .detail-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--default-color);
}

.course-details .course-details-card .detail-grid .detail-row .detail-value {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.course-details .share-course-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}

.course-details .share-course-card h4 {
  font-size: 20px;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.course-details .share-course-card .social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.course-details .share-course-card .social-links .social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}

.course-details .share-course-card .social-links .social-link.facebook {
  background-color: #1877f2;
  color: white;
}

.course-details .share-course-card .social-links .social-link.facebook:hover {
  background-color: color-mix(in srgb, #1877f2, black 10%);
}

.course-details .share-course-card .social-links .social-link.twitter {
  background-color: #1da1f2;
  color: white;
}

.course-details .share-course-card .social-links .social-link.twitter:hover {
  background-color: color-mix(in srgb, #1da1f2, black 10%);
}

.course-details .share-course-card .social-links .social-link.linkedin {
  background-color: #0077b5;
  color: white;
}

.course-details .share-course-card .social-links .social-link.linkedin:hover {
  background-color: color-mix(in srgb, #0077b5, black 10%);
}

.course-details .share-course-card .social-links .social-link.email {
  background-color: var(--accent-color);
  color: white;
}

.course-details .share-course-card .social-links .social-link.email:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.course-details .share-course-card .social-links .social-link:hover {
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .course-details .enrollment-card {
    position: static;
  }
}

/*--------------------------------------------------------------
# Instructors Section
--------------------------------------------------------------*/
.instructors .instructor-card {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 94%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.instructors .instructor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 88%);
}

.instructors .instructor-card:hover .instructor-image .overlay-content {
  opacity: 1;
}

.instructors .instructor-card:hover .instructor-image img {
  transform: scale(1.05);
}

.instructors .instructor-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.instructors .instructor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.instructors .instructor-image .overlay-content {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instructors .instructor-image .rating-stars {
  background: var(--surface-color);
  padding: 8px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.instructors .instructor-image .rating-stars i {
  color: #ffc107;
  font-size: 12px;
}

.instructors .instructor-image .rating-stars i.bi-star {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.instructors .instructor-image .rating-stars span {
  font-size: 12px;
  font-weight: 600;
  margin-left: 4px;
  color: var(--heading-color);
}

.instructors .instructor-image .course-count {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.instructors .instructor-image .course-count i {
  font-size: 14px;
}

.instructors .instructor-image .course-count span {
  font-size: 12px;
  font-weight: 600;
}

.instructors .instructor-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.instructors .instructor-info h5 {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
}

.instructors .instructor-info .specialty {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.instructors .instructor-info .description {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.instructors .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
}

.instructors .stats-grid .stat {
  text-align: center;
}

.instructors .stats-grid .stat .number {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 4px;
}

.instructors .stats-grid .stat .label {
  font-size: 11px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.instructors .action-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.instructors .action-buttons .btn-view {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
}

.instructors .action-buttons .btn-view:hover {
  transform: translateY(-2px);
}

.instructors .action-buttons .social-links {
  display: flex;
  gap: 6px;
}

.instructors .action-buttons .social-links a {
  width: 32px;
  height: 32px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
}

.instructors .action-buttons .social-links a:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.instructors .action-buttons .social-links a i {
  font-size: 14px;
}

@media (max-width: 1399px) {
  .instructors .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
}

@media (max-width: 1199px) {
  .instructors .col-lg-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
}

@media (max-width: 991px) {
  .instructors .instructor-card {
    margin-bottom: 20px;
  }

  .instructors .instructor-image {
    height: 220px;
  }

  .instructors .instructor-info {
    padding: 20px;
  }

  .instructors .instructor-info h5 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .instructors .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .instructors .instructor-image {
    height: 200px;
  }

  .instructors .instructor-info {
    padding: 18px;
  }
}

@media (max-width: 575px) {
  .instructors .row>* {
    width: 100% !important;
  }

  .instructors .instructor-image {
    height: 250px;
  }

  .instructors .instructor-image .overlay-content {
    opacity: 1;
  }

  .instructors .action-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .instructors .action-buttons .btn-view {
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Instructor Profile Section
--------------------------------------------------------------*/
.instructor-profile .instructor-hero-banner {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  margin-bottom: 40px;
}

.instructor-profile .instructor-hero-banner .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.instructor-profile .instructor-hero-banner .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instructor-profile .instructor-hero-banner .hero-background .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 20%) 0%, color-mix(in srgb, var(--accent-color), transparent 30%) 100%);
}

.instructor-profile .instructor-hero-banner .hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.instructor-profile .instructor-hero-banner .hero-content .instructor-avatar {
  position: relative;
  flex-shrink: 0;
}

.instructor-profile .instructor-hero-banner .hero-content .instructor-avatar img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 6px solid var(--contrast-color);
  object-fit: cover;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 70%);
}

.instructor-profile .instructor-hero-banner .hero-content .instructor-avatar .status-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 80%);
}

.instructor-profile .instructor-hero-banner .hero-content .instructor-avatar .status-badge i {
  font-size: 14px;
}

.instructor-profile .instructor-hero-banner .hero-content .instructor-info {
  color: var(--contrast-color);
}

.instructor-profile .instructor-hero-banner .hero-content .instructor-info h2 {
  color: var(--contrast-color);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 70%);
}

.instructor-profile .instructor-hero-banner .hero-content .instructor-info .title {
  font-size: 20px;
  margin-bottom: 20px;
  opacity: 0.9;
  font-weight: 500;
}

.instructor-profile .instructor-hero-banner .hero-content .instructor-info .credentials {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.instructor-profile .instructor-hero-banner .hero-content .instructor-info .credentials .credential {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 600;
}

.instructor-profile .instructor-hero-banner .hero-content .instructor-info .rating-overview {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.instructor-profile .instructor-hero-banner .hero-content .instructor-info .rating-overview .stars i {
  color: #ffc107;
  font-size: 18px;
  margin-right: 2px;
}

.instructor-profile .instructor-hero-banner .hero-content .instructor-info .rating-overview .rating-text {
  font-size: 16px;
  opacity: 0.9;
}

.instructor-profile .instructor-hero-banner .hero-content .instructor-info .contact-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.instructor-profile .instructor-hero-banner .hero-content .instructor-info .contact-actions .btn-contact {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.instructor-profile .instructor-hero-banner .hero-content .instructor-info .contact-actions .btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 70%);
  color: var(--accent-color);
}

.instructor-profile .instructor-hero-banner .hero-content .instructor-info .contact-actions .social-media {
  display: flex;
  gap: 10px;
}

.instructor-profile .instructor-hero-banner .hero-content .instructor-info .contact-actions .social-media a {
  width: 45px;
  height: 45px;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.instructor-profile .instructor-hero-banner .hero-content .instructor-info .contact-actions .social-media a:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-3px);
}

.instructor-profile .content-tabs .custom-tabs {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 8px;
  border: none;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

.instructor-profile .content-tabs .custom-tabs .nav-item .nav-link {
  border: none;
  border-radius: 10px;
  color: var(--default-color);
  font-weight: 500;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-right: 5px;
}

.instructor-profile .content-tabs .custom-tabs .nav-item .nav-link i {
  font-size: 16px;
}

.instructor-profile .content-tabs .custom-tabs .nav-item .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.instructor-profile .content-tabs .custom-tabs .nav-item .nav-link:hover:not(.active) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.instructor-profile .content-tabs .custom-tab-content {
  padding: 40px 0;
}

.instructor-profile .content-tabs .custom-tab-content .about-content .bio-section {
  margin-bottom: 40px;
}

.instructor-profile .content-tabs .custom-tab-content .about-content .bio-section h4 {
  color: var(--heading-color);
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}

.instructor-profile .content-tabs .custom-tab-content .about-content .bio-section p {
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

.instructor-profile .content-tabs .custom-tab-content .about-content .expertise-grid h4 {
  color: var(--heading-color);
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 600;
}

.instructor-profile .content-tabs .custom-tab-content .about-content .expertise-grid .skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.instructor-profile .content-tabs .custom-tab-content .about-content .expertise-grid .skills-grid .skill-item {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.instructor-profile .content-tabs .custom-tab-content .about-content .expertise-grid .skills-grid .skill-item i {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.instructor-profile .content-tabs .custom-tab-content .about-content .expertise-grid .skills-grid .skill-item span {
  font-weight: 600;
  color: var(--heading-color);
}

.instructor-profile .content-tabs .custom-tab-content .about-content .expertise-grid .skills-grid .skill-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
}

.instructor-profile .content-tabs .custom-tab-content .experience-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.instructor-profile .content-tabs .custom-tab-content .experience-grid .experience-card {
  display: flex;
  gap: 30px;
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid var(--accent-color);
}

.instructor-profile .content-tabs .custom-tab-content .experience-grid .experience-card .timeline-marker {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  height: fit-content;
}

.instructor-profile .content-tabs .custom-tab-content .experience-grid .experience-card .experience-details h5 {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 600;
}

.instructor-profile .content-tabs .custom-tab-content .experience-grid .experience-card .experience-details .institution {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 16px;
}

.instructor-profile .content-tabs .custom-tab-content .experience-grid .experience-card .experience-details p {
  line-height: 1.7;
  margin: 0;
}

.instructor-profile .content-tabs .custom-tab-content .courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.instructor-profile .content-tabs .custom-tab-content .courses-grid .course-item {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.instructor-profile .content-tabs .custom-tab-content .courses-grid .course-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 80%);
}

.instructor-profile .content-tabs .custom-tab-content .courses-grid .course-item .course-thumb {
  position: relative;
}

.instructor-profile .content-tabs .custom-tab-content .courses-grid .course-item .course-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.instructor-profile .content-tabs .custom-tab-content .courses-grid .course-item .course-thumb .course-level {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.instructor-profile .content-tabs .custom-tab-content .courses-grid .course-item .course-info {
  padding: 25px;
}

.instructor-profile .content-tabs .custom-tab-content .courses-grid .course-item .course-info h5 {
  color: var(--heading-color);
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.instructor-profile .content-tabs .custom-tab-content .courses-grid .course-item .course-info .course-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.instructor-profile .content-tabs .custom-tab-content .courses-grid .course-item .course-info .course-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.instructor-profile .content-tabs .custom-tab-content .courses-grid .course-item .course-info .course-stats span i {
  color: var(--accent-color);
}

.instructor-profile .content-tabs .custom-tab-content .courses-grid .course-item .course-info .price {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.instructor-profile .content-tabs .custom-tab-content .reviews-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.instructor-profile .content-tabs .custom-tab-content .reviews-container .review-card {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

.instructor-profile .content-tabs .custom-tab-content .reviews-container .review-card .review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.instructor-profile .content-tabs .custom-tab-content .reviews-container .review-card .review-header .reviewer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.instructor-profile .content-tabs .custom-tab-content .reviews-container .review-card .review-header .reviewer-info h6 {
  color: var(--heading-color);
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}

.instructor-profile .content-tabs .custom-tab-content .reviews-container .review-card .review-header .reviewer-info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 8px;
  font-size: 14px;
}

.instructor-profile .content-tabs .custom-tab-content .reviews-container .review-card .review-header .reviewer-info .review-rating i {
  color: #ffc107;
  font-size: 14px;
  margin-right: 2px;
}

.instructor-profile .content-tabs .custom-tab-content .reviews-container .review-card p {
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

.instructor-profile .sidebar-widgets {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.instructor-profile .sidebar-widgets .stats-widget,
.instructor-profile .sidebar-widgets .achievements-widget,
.instructor-profile .sidebar-widgets .contact-widget {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

.instructor-profile .sidebar-widgets .stats-widget h4,
.instructor-profile .sidebar-widgets .achievements-widget h4,
.instructor-profile .sidebar-widgets .contact-widget h4 {
  color: var(--heading-color);
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 600;
}

.instructor-profile .sidebar-widgets .stats-widget .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.instructor-profile .sidebar-widgets .stats-widget .stats-grid .stat-box {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease;
}

.instructor-profile .sidebar-widgets .stats-widget .stats-grid .stat-box:hover {
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.instructor-profile .sidebar-widgets .stats-widget .stats-grid .stat-box .stat-icon {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.instructor-profile .sidebar-widgets .stats-widget .stats-grid .stat-box .stat-icon i {
  font-size: 20px;
}

.instructor-profile .sidebar-widgets .stats-widget .stats-grid .stat-box .stat-content h5 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.instructor-profile .sidebar-widgets .stats-widget .stats-grid .stat-box .stat-content p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  margin: 0;
}

.instructor-profile .sidebar-widgets .achievements-widget .achievement-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.instructor-profile .sidebar-widgets .achievements-widget .achievement-list .achievement-item {
  display: flex;
  gap: 15px;
}

.instructor-profile .sidebar-widgets .achievements-widget .achievement-list .achievement-item i {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.instructor-profile .sidebar-widgets .achievements-widget .achievement-list .achievement-item .achievement-text h6 {
  color: var(--heading-color);
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
}

.instructor-profile .sidebar-widgets .achievements-widget .achievement-list .achievement-item .achievement-text p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  margin: 0;
}

.instructor-profile .sidebar-widgets .contact-widget .contact-info {
  margin-bottom: 25px;
}

.instructor-profile .sidebar-widgets .contact-widget .contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.instructor-profile .sidebar-widgets .contact-widget .contact-info .contact-item i {
  width: 35px;
  height: 35px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.instructor-profile .sidebar-widgets .contact-widget .contact-info .contact-item span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.instructor-profile .sidebar-widgets .contact-widget .office-hours {
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}

.instructor-profile .sidebar-widgets .contact-widget .office-hours h6 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.instructor-profile .sidebar-widgets .contact-widget .office-hours p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-size: 14px;
}

@media (max-width: 991px) {
  .instructor-profile .instructor-hero-banner .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .instructor-profile .instructor-hero-banner .hero-content .instructor-info .credentials {
    justify-content: center;
  }

  .instructor-profile .instructor-hero-banner .hero-content .instructor-info .contact-actions {
    justify-content: center;
  }

  .instructor-profile .sidebar-widgets {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .instructor-profile .instructor-hero-banner .hero-content {
    padding: 40px 20px;
  }

  .instructor-profile .instructor-hero-banner .hero-content .instructor-avatar img {
    width: 140px;
    height: 140px;
  }

  .instructor-profile .instructor-hero-banner .hero-content .instructor-info h2 {
    font-size: 32px;
  }

  .instructor-profile .instructor-hero-banner .hero-content .instructor-info .credentials {
    flex-direction: column;
    gap: 10px;
  }

  .instructor-profile .instructor-hero-banner .hero-content .instructor-info .contact-actions {
    flex-direction: column;
    gap: 15px;
  }

  .instructor-profile .custom-tabs .nav-item .nav-link {
    padding: 12px 15px;
    font-size: 14px;
  }

  .instructor-profile .stats-widget .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/*--------------------------------------------------------------
# Enroll Section
--------------------------------------------------------------*/
.enroll {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
}

.enroll .enrollment-form-wrapper {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .enroll .enrollment-form-wrapper {
    padding: 30px 20px;
    border-radius: 15px;
  }
}

.enroll .enrollment-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .enroll .enrollment-header h2 {
    font-size: 2rem;
  }
}

.enroll .enrollment-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
}

.enroll .enrollment-form .form-group {
  margin-bottom: 1.5rem;
}

.enroll .enrollment-form .form-group .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.enroll .enrollment-form .form-group .form-control,
.enroll .enrollment-form .form-group .form-select {
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--default-color);
}

.enroll .enrollment-form .form-group .form-control:focus,
.enroll .enrollment-form .form-group .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
  outline: none;
}

.enroll .enrollment-form .form-group .form-control::placeholder,
.enroll .enrollment-form .form-group .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.enroll .enrollment-form .form-group textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.enroll .enrollment-form .schedule-options .form-check {
  margin-bottom: 12px;
  padding: 15px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 10px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease;
}

.enroll .enrollment-form .schedule-options .form-check:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.enroll .enrollment-form .schedule-options .form-check .form-check-input {
  margin-top: 3px;
  margin-left: 0px;
}

.enroll .enrollment-form .schedule-options .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.enroll .enrollment-form .schedule-options .form-check .form-check-label {
  font-weight: 500;
  margin-left: 10px;
  cursor: pointer;
}

.enroll .enrollment-form .agreement-section {
  background: color-mix(in srgb, var(--heading-color), transparent 95%);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
}

.enroll .enrollment-form .agreement-section .form-check {
  margin-bottom: 15px;
}

.enroll .enrollment-form .agreement-section .form-check:last-child {
  margin-bottom: 0;
}

.enroll .enrollment-form .agreement-section .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.enroll .enrollment-form .agreement-section .form-check .form-check-label {
  font-size: 0.95rem;
  line-height: 1.5;
}

.enroll .enrollment-form .agreement-section .form-check .form-check-label a {
  color: var(--accent-color);
  text-decoration: underline;
  font-weight: 600;
}

.enroll .enrollment-form .agreement-section .form-check .form-check-label a:hover {
  color: var(--heading-color);
}

.enroll .enrollment-form .btn-enroll {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.enroll .enrollment-form .btn-enroll:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
  transition: left 0.5s;
}

.enroll .enrollment-form .btn-enroll:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.enroll .enrollment-form .btn-enroll:hover:before {
  left: 100%;
}

.enroll .enrollment-form .btn-enroll:active {
  transform: translateY(-1px);
}

.enroll .enrollment-form .btn-enroll .bi {
  font-size: 1.2rem;
}

.enroll .enrollment-form .enrollment-note {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-style: italic;
}

.enroll .enrollment-form .enrollment-note .bi {
  color: var(--accent-color);
  margin-right: 5px;
}

.enroll .enrollment-benefits {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 15px 50px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.enroll .enrollment-benefits h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--heading-color);
  text-align: center;
}

.enroll .enrollment-benefits .benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.enroll .enrollment-benefits .benefit-item:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateX(5px);
}

.enroll .enrollment-benefits .benefit-item .benefit-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.enroll .enrollment-benefits .benefit-item .benefit-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.enroll .enrollment-benefits .benefit-item .benefit-content p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.4;
}

.enroll .enrollment-benefits .enrollment-stats {
  background: var(--accent-color);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
}

.enroll .enrollment-benefits .enrollment-stats .stat-item {
  display: block;
  margin-bottom: 15px;
}

.enroll .enrollment-benefits .enrollment-stats .stat-item:last-child {
  margin-bottom: 0;
}

.enroll .enrollment-benefits .enrollment-stats .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--contrast-color);
  line-height: 1;
}

.enroll .enrollment-benefits .enrollment-stats .stat-item .stat-label {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin-top: 5px;
}

@media (max-width: 991px) {
  .enroll .enrollment-benefits {
    margin-top: 50px;
    position: static;
    top: auto;
  }
}

/*--------------------------------------------------------------
# Courses Events Section
--------------------------------------------------------------*/
.courses-events {
  background-color: var(--surface-color);
}

.online-learning img {
  width: 100%;
  transition: all 0.2s ease;
  overflow: hidden;
}

.online-learning:hover {
  transform: translateY(-10px) !important;
}

.courses-events .event-card .cart-hov {
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.courses-events .event-card .cart-hov:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 12px 24px color-mix(in srgb, #911517, transparent 55%);
}

.courses-events .event-card .event-image {
  position: relative;
  overflow: hidden;
}

.courses-events .event-card .event-image img {
  width: 100%;
  height: 100%;
  padding: 20px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.courses-events .event-card .event-image .date-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  text-align: center;
  padding: 8px;
  min-width: 50px;
  font-weight: 600;
}

.courses-events .event-card .event-image .date-badge .day {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.courses-events .event-card .event-image .date-badge .month {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
}

.courses-events .event-card .event-content {
  padding: 25px 0;
}

.courses-events .event-card .event-content .event-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.courses-events .event-card .event-content .event-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.courses-events .event-card .event-content .event-meta span i {
  color: var(--accent-color);
}

.courses-events .event-card .event-content .event-title {
  /* margin-bottom: 15px; */
  font-size: 22px;
  line-height: 1.1;
  padding-top: 15px;
}

.courses-events .event-card .event-content .event-title a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.courses-events .event-card .event-content .event-title a:hover {
  color: var(--accent-color);
}

.courses-events .event-card .event-content .event-description {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
  line-height: 1.6;
}

.courses-events .event-card .event-content .event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.courses-events .event-card .event-content .event-footer .instructor {
  display: flex;
  align-items: center;
  gap: 10px;
}

.courses-events .event-card .event-content .event-footer .instructor .instructor-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.courses-events .event-card .event-content .event-footer .instructor span {
  font-weight: 500;
  color: var(--heading-color);
}

.courses-events .event-card .event-content .event-footer .event-price .price {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-color);
}

.courses-events .event-card .event-content .event-footer .event-price .price.free {
  color: #28a745;
}

.courses-events .event-card .event-content .event-actions {
  display: flex;
  gap: 15px;
}

.courses-events .event-card .event-content .event-actions .btn {
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.courses-events .event-card .event-content .event-actions .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.courses-events .event-card .event-content .event-actions .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.courses-events .event-card .event-content .event-actions .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.courses-events .event-card .event-content .event-actions .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {

  .courses-events .event-card .event-content {
    padding: 20px;
  }

  .courses-events .event-card .event-content .event-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .courses-events .event-card .event-content .event-actions {
    flex-direction: column;
  }

  .courses-events .event-card .event-content .event-actions .btn {
    text-align: center;
  }
}

.courses-events .pagination-wrapper {
  margin-top: 50px;
}

.courses-events .pagination-wrapper .pagination .page-item .page-link {
  color: var(--default-color);
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 0 3px;
  border-radius: 5px;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.courses-events .pagination-wrapper .pagination .page-item .page-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.courses-events .pagination-wrapper .pagination .page-item.active .page-link {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.courses-events .pagination-wrapper .pagination .page-item.disabled .page-link {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  cursor: not-allowed;
}

.courses-events .sidebar-widget {
  background: var(--surface-color);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.courses-events .sidebar-widget .widget-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 10px;
}

.courses-events .sidebar-widget .widget-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
}

.courses-events .sidebar-widget.search-widget .search-form {
  position: relative;
}

.courses-events .sidebar-widget.search-widget .search-form .form-control {
  padding-right: 50px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 25px;
  padding: 12px 20px;
  background: var(--surface-color);
  color: var(--default-color);
}

.courses-events .sidebar-widget.search-widget .search-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.courses-events .sidebar-widget.search-widget .search-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.courses-events .sidebar-widget.search-widget .search-form .search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.courses-events .sidebar-widget.search-widget .search-form .search-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.courses-events .sidebar-widget.filter-widget .filter-content .filter-group {
  margin-bottom: 20px;
}

.courses-events .sidebar-widget.filter-widget .filter-content .filter-group .filter-label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.courses-events .sidebar-widget.filter-widget .filter-content .filter-group .form-select {
  background: var(--surface-color);
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  padding: 10px 15px;
}

.courses-events .sidebar-widget.filter-widget .filter-content .filter-group .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.courses-events .sidebar-widget.filter-widget .filter-content .filter-apply-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 500;
  width: 100%;
  transition: background 0.3s ease;
}

.courses-events .sidebar-widget.filter-widget .filter-content .filter-apply-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.courses-events .sidebar-widget.upcoming-widget .upcoming-list .upcoming-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.courses-events .sidebar-widget.upcoming-widget .upcoming-list .upcoming-item:last-child {
  border-bottom: none;
}

.courses-events .sidebar-widget.upcoming-widget .upcoming-list .upcoming-item .upcoming-date {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 8px;
  text-align: center;
  padding: 8px;
  min-width: 50px;
  font-weight: 600;
  height: fit-content;
}

.courses-events .sidebar-widget.upcoming-widget .upcoming-list .upcoming-item .upcoming-date .day {
  display: block;
  font-size: 16px;
  line-height: 1;
}

.courses-events .sidebar-widget.upcoming-widget .upcoming-list .upcoming-item .upcoming-date .month {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
}

.courses-events .sidebar-widget.upcoming-widget .upcoming-list .upcoming-item .upcoming-content {
  flex: 1;
}

.courses-events .sidebar-widget.upcoming-widget .upcoming-list .upcoming-item .upcoming-content .upcoming-title {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.3;
}

.courses-events .sidebar-widget.upcoming-widget .upcoming-list .upcoming-item .upcoming-content .upcoming-title a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.courses-events .sidebar-widget.upcoming-widget .upcoming-list .upcoming-item .upcoming-content .upcoming-title a:hover {
  color: var(--accent-color);
}

.courses-events .sidebar-widget.upcoming-widget .upcoming-list .upcoming-item .upcoming-content .upcoming-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.courses-events .sidebar-widget.upcoming-widget .upcoming-list .upcoming-item .upcoming-content .upcoming-meta .time {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  gap: 5px;
}

.courses-events .sidebar-widget.upcoming-widget .upcoming-list .upcoming-item .upcoming-content .upcoming-meta .time i {
  color: var(--accent-color);
}

.courses-events .sidebar-widget.upcoming-widget .upcoming-list .upcoming-item .upcoming-content .upcoming-meta .price {
  font-weight: 600;
  color: var(--accent-color);
}

.courses-events .sidebar-widget.upcoming-widget .upcoming-list .upcoming-item .upcoming-content .upcoming-meta .price.free {
  color: #28a745;
}

.courses-events .sidebar-widget.newsletter-widget {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  color: var(--contrast-color);
}

.courses-events .sidebar-widget.newsletter-widget .widget-title {
  color: var(--contrast-color);
}

.courses-events .sidebar-widget.newsletter-widget .widget-title:after {
  background: var(--contrast-color);
}

.courses-events .sidebar-widget.newsletter-widget p {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  margin-bottom: 20px;
}

.courses-events .sidebar-widget.newsletter-widget .newsletter-form {
  position: relative;
}

.courses-events .sidebar-widget.newsletter-widget .newsletter-form input[type=email] {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  border-radius: 25px;
  padding: 12px 20px;
  width: 100%;
  margin-bottom: 15px;
}

.courses-events .sidebar-widget.newsletter-widget .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.courses-events .sidebar-widget.newsletter-widget .newsletter-form input[type=email]:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.courses-events .sidebar-widget.newsletter-widget .newsletter-form button {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.courses-events .sidebar-widget.newsletter-widget .newsletter-form button:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .courses-events .sidebar-widget {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-toggle {
  position: relative;
  margin-bottom: 2rem;
}

.pricing .pricing-toggle span {
  font-size: 1rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
  cursor: pointer;
}

.pricing .pricing-toggle span.active {
  color: var(--accent-color);
  font-weight: 600;
}

.pricing .pricing-toggle span .badge {
  background-color: color-mix(in srgb, #4CAF50, transparent 70%);
  color: #4CAF50;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  margin-left: 0.5rem;
}

.pricing .pricing-toggle .form-check-input {
  width: 3rem;
  height: 1.5rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  border: none;
  cursor: pointer;
}

.pricing .pricing-toggle .form-check-input:checked {
  background-color: var(--accent-color);
}

.pricing .pricing-toggle .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 70%);
  border-color: transparent;
}

.pricing .pricing-item {
  background-color: var(--surface-color);
  border-radius: 0.75rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.pricing .pricing-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-item.popular {
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.pricing .pricing-item.popular .popular-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: color-mix(in srgb, #9C27B0, transparent 80%);
  color: #9C27B0;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
}

.pricing .pricing-item .pricing-header {
  margin-bottom: 0.5rem;
}

.pricing .pricing-item .pricing-header .pricing-category {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.pricing .pricing-item .pricing-header .price-wrap {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.pricing .pricing-item .pricing-header .price-wrap i {
  font-size: 1.8rem;
}

.pricing .pricing-item .pricing-header .price-wrap .price {
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 0;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.pricing .pricing-item .pricing-header .price-wrap .price sup {
  font-size: 1.25rem;
  position: relative;
  top: -0.75rem;
}

.pricing .pricing-item .pricing-header .price-wrap .price span {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .pricing-item .pricing-header .price-wrap .yearly {
  display: none;
}

.pricing .pricing-item .pricing-header .pricing-description {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.pricing .pricing-item.yearly-active .pricing-header .price-wrap .monthly {
  display: none;
}

.pricing .pricing-item.yearly-active .pricing-header .price-wrap .yearly {
  display: block;
}

.pricing .pricing-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.pricing .pricing-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.pricing .pricing-features {
  flex-grow: 1;
}

.pricing .pricing-features h6 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.pricing .pricing-features .feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.pricing .pricing-features .feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.2rem;
  font-size: 0.875rem;
  color: var(--default-color);
}

.pricing .pricing-features .feature-list li i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pricing .pricing-features .feature-list li .feature-highlight {
  color: #9C27B0;
  font-weight: 600;
}

.pricing.yearly-active .pricing-toggle .monthly {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.pricing.yearly-active .pricing-toggle .yearly {
  color: var(--accent-color);
  font-weight: 600;
}

.pricing.yearly-active .pricing-item .price-wrap .monthly {
  display: none;
}

.pricing.yearly-active .pricing-item .price-wrap .yearly {
  display: block;
}


@media (max-width: 768px) {
  .pricing .row.gy-4>[class*=col-] {
    margin-bottom: 2rem;
  }


  .pricing .pricing-header .price-wrap .price {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .pricing .pricing-toggle {
    flex-direction: column;
  }

  .pricing .pricing-toggle .form-check {
    margin: 1rem 0;
  }

  .pricing .pricing-toggle span .badge {
    display: block;
    margin: 0.5rem auto 0;
    width: fit-content;
  }
}

/*--------------------------------------------------------------
# Blog Hero Section
--------------------------------------------------------------*/
.blog-hero .blog-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .blog-hero .blog-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-hero .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.blog-hero .blog-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: transform 0.3s ease-in-out;
  background-color: var(--surface-color);
}

.blog-hero .blog-item:hover {
  transform: translateY(-5px);
}

.blog-hero .blog-item:hover img {
  transform: scale(1.05);
}

.blog-hero .blog-item:hover .blog-content {
  background: linear-gradient(0deg, color-mix(in srgb, var(--default-color), transparent 10%) 0%, transparent 100%);
}

.blog-hero .blog-item.featured {
  grid-column: span 8;
}

@media (max-width: 991px) {
  .blog-hero .blog-item.featured {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .blog-hero .blog-item.featured {
    grid-column: span 1;
  }
}

.blog-hero .blog-item.featured .post-title {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .blog-hero .blog-item.featured .post-title {
    font-size: 1.5rem;
  }
}

.blog-hero .blog-item:not(.featured) {
  grid-column: span 4;
}

@media (max-width: 991px) {
  .blog-hero .blog-item:not(.featured) {
    grid-column: span 3;
  }
}

@media (max-width: 768px) {
  .blog-hero .blog-item:not(.featured) {
    grid-column: span 1;
  }
}

.blog-hero .blog-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  aspect-ratio: 16/9;
}

.blog-hero .blog-item .blog-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(0deg, color-mix(in srgb, var(--default-color), transparent 20%) 0%, transparent 100%);
  transition: background 0.3s ease-in-out;
}

.blog-hero .blog-item .post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--contrast-color);
}

.blog-hero .blog-item .post-meta .date,
.blog-hero .blog-item .post-meta .category {
  display: flex;
  align-items: center;
}

.blog-hero .blog-item .post-meta .date::before,
.blog-hero .blog-item .post-meta .category::before {
  font-family: "bootstrap-icons";
  margin-right: 0.5rem;
  font-size: 1rem;
}

.blog-hero .blog-item .post-meta .date::before {
  content: "\f282";
}

.blog-hero .blog-item .post-meta .category::before {
  content: "\f5d3";
}

.blog-hero .blog-item .post-title {
  margin: 0;
  font-family: var(--heading-font);
}

.blog-hero .blog-item .post-title a {
  color: var(--contrast-color);
  text-decoration: none;
}

.blog-hero .blog-item .post-title a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts {
  padding-top: 60px;
  padding-bottom: 62px;
}

.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius: 8px;
  overflow: hidden;
}

.blog-posts .post-img img {
  transition: 0.5s;
}

.blog-posts .post-content {
  padding: 30px;
}

.blog-posts .post-title {
  font-size: 20px;
  line-height: 24px;
  color: var(--heading-color);
  font-weight: 600;
  transition: 0.3s;
  margin-bottom: 20px;
}

.blog-posts .meta {
  position: relative;
  margin-top: -20px;
  padding: 0 30px;
}

.blog-posts .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.blog-posts .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  padding: 6px 12px;
  text-align: center;
  margin-right: 15px;
  border-radius: 4px;
}

.blog-posts .meta .post-date span {
  display: block;
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 20px;
}

.blog-posts .readmore {
  display: flex;
  align-items: center;
  font-weight: 400;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts article:hover .post-title,
.blog-posts article:hover .readmore {
  color: var(--accent-color);
}

.blog-posts article:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
}

.pagination-2 nav {
  position: relative;
}

.pagination-2 ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.pagination-2 li.ellipsis {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 8px 16px;
  user-select: none;
}

.pagination-2 li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 16px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 90%);
}

.pagination-2 li a.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pagination-2 li a:hover:not(.active) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-1px);
  box-shadow: 0 3px 6px color-mix(in srgb, var(--default-color), transparent 85%);
}

.pagination-2 li a i {
  font-size: 14px;
}

.pagination-2 li a span {
  margin: 0 4px;
}

@media (max-width: 575px) {
  .pagination-2 ul {
    gap: 4px;
  }

  .pagination-2 li a {
    min-width: 36px;
    height: 36px;
    padding: 8px 12px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.blog-details .article-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.blog-details .article-header .meta-categories {
  margin-bottom: 1.5rem;
}

.blog-details .article-header .meta-categories .category {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  margin: 0 0.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.blog-details .article-header .meta-categories .category:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-header .title {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .blog-details .article-header .title {
    font-size: 2.2rem;
  }
}

.blog-details .article-header .article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.blog-details .article-header .article-meta .author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details .article-header .article-meta .author .author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-details .article-header .article-meta .author .author-info {
  text-align: left;
}

.blog-details .article-header .article-meta .author .author-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.blog-details .article-header .article-meta .author .author-info span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.blog-details .article-header .article-meta .post-info {
  display: flex;
  gap: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.blog-details .article-header .article-meta .post-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .blog-details .article-header .article-meta {
    justify-content: center;
    text-align: center;
  }

  .blog-details .article-header .article-meta .post-info {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.blog-details .article-featured-image {
  margin: 0 -2rem 3rem;
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
}

.blog-details .article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .blog-details .article-featured-image {
    margin: 0 -1rem 2rem;
    height: 300px;
  }
}

.blog-details .article-wrapper {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: 3rem;
  position: relative;
}

@media (max-width: 991px) {
  .blog-details .article-wrapper {
    grid-template-columns: 1fr;
  }
}

.blog-details .article-wrapper .table-of-contents {
  position: sticky;
  top: 100px;
  height: fit-content;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
  .blog-details .article-wrapper .table-of-contents {
    display: none;
  }
}

.blog-details .article-wrapper .table-of-contents h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.blog-details .article-wrapper .table-of-contents nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details .article-wrapper .table-of-contents nav ul li {
  margin-bottom: 0.75rem;
}

.blog-details .article-wrapper .table-of-contents nav ul li a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding-left: 1rem;
  position: relative;
}

.blog-details .article-wrapper .table-of-contents nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-color);
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.blog-details .article-wrapper .table-of-contents nav ul li a:hover,
.blog-details .article-wrapper .table-of-contents nav ul li a.active {
  color: var(--heading-color);
}

.blog-details .article-wrapper .table-of-contents nav ul li a:hover::before,
.blog-details .article-wrapper .table-of-contents nav ul li a.active::before {
  opacity: 1;
}

.blog-details .article-wrapper .article-content {
  font-size: 1.15rem;
  line-height: 1.8;
}

.blog-details .article-wrapper .article-content .content-section {
  margin-bottom: 4rem;
}

.blog-details .article-wrapper .article-content .content-section .lead {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--heading-color);
  margin-bottom: 2rem;
}

.blog-details .article-wrapper .article-content .content-section h2 {
  font-size: 2.2rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote {
  margin: 3rem 0;
  padding: 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote::before {
  content: "“";
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote {
  padding-left: 3rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote p {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption.right {
  float: right;
  max-width: 450px;
  margin: 0 0 2rem 2rem;
}

@media (max-width: 768px) {
  .blog-details .article-wrapper .article-content .content-section .image-with-caption.right {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption img {
  width: 100%;
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption figcaption {
  padding: 1rem;
  background: var(--surface-color);
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-wrapper .article-content .content-section .feature-points {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point i {
  font-size: 2rem;
  color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point h4 {
  margin: 0 0 0.5rem;
  color: var(--heading-color);
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point p {
  margin: 0;
  font-size: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid {
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon {
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul {
  padding-left: 1.2rem;
  margin: 0;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul li {
  margin-bottom: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.blog-details .article-wrapper .article-content .content-section .key-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .blog-details .article-wrapper .article-content .content-section .key-principles {
    grid-template-columns: 1fr;
  }
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle .number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle h4 {
  color: var(--heading-color);
  margin: 1rem 0;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle p {
  margin: 0;
  font-size: 0.95rem;
}

.blog-details .article-wrapper .article-content .content-section .info-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .info-box .icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .info-box .content h4 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.blog-details .article-wrapper .article-content .content-section .info-box .content p {
  margin: 0;
}

.blog-details .article-wrapper .article-content .content-section .future-trends {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .blog-details .article-wrapper .article-content .content-section .future-trends {
    grid-template-columns: 1fr;
  }
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend:hover {
  transform: translateY(-5px);
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend p {
  margin: 0;
  font-size: 0.95rem;
}

.blog-details .article-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .article-footer h4 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.blog-details .article-footer .share-article {
  margin-bottom: 3rem;
}

.blog-details .article-footer .share-article .share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.blog-details .article-footer .share-article .share-buttons .share-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--surface-color);
  border-radius: 30px;
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-footer .share-article .share-buttons .share-button i {
  font-size: 1.2rem;
}

.blog-details .article-footer .share-article .share-buttons .share-button:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-footer .share-article .share-buttons .share-button.twitter:hover {
  background: #1DA1F2;
}

.blog-details .article-footer .share-article .share-buttons .share-button.facebook:hover {
  background: #4267B2;
}

.blog-details .article-footer .share-article .share-buttons .share-button.linkedin:hover {
  background: #0077B5;
}

.blog-details .article-footer .article-tags .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.blog-details .article-footer .article-tags .tags .tag {
  padding: 0.5rem 1rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-footer .article-tags .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding-top: 60px;
  padding-bottom: 30px;
}

.blog-comments .comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.blog-comments .comments-header .title {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin: 0;
}

.blog-comments .comments-header .comments-stats {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 8px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-comments .comments-header .comments-stats .count {
  font-size: 18px;
  font-weight: 700;
}

.blog-comments .comments-header .comments-stats .label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-comments .comments-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-comments .comment-thread {
  position: relative;
}

.blog-comments .comment-thread:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 80px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--accent-color), transparent 40%), color-mix(in srgb, var(--accent-color), transparent 90%));
  z-index: 0;
}

@media (min-width: 768px) {
  .blog-comments .comment-thread:not(:last-child)::after {
    left: 35px;
  }
}

.blog-comments .comment-box {
  position: relative;
  transition: all 0.3s ease;
}

.blog-comments .comment-box.reply {
  margin-left: 50px;
  margin-top: 25px;
}

@media (min-width: 768px) {
  .blog-comments .comment-box.reply {
    margin-left: 70px;
  }
}

.blog-comments .comment-wrapper {
  display: flex;
  gap: 20px;
  position: relative;
}

.blog-comments .avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.blog-comments .avatar-wrapper img {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  object-fit: cover;
  border: 3px solid var(--surface-color);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .blog-comments .avatar-wrapper img {
    width: 70px;
    height: 70px;
  }
}

.blog-comments .avatar-wrapper img:hover {
  transform: scale(1.05);
}

.blog-comments .avatar-wrapper .status-indicator {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4CAF50;
  border: 2px solid var(--surface-color);
  z-index: 1;
}

.blog-comments .comment-content {
  flex: 1;
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.blog-comments .comment-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.blog-comments .comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.blog-comments .comment-header .user-info h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
}

.blog-comments .comment-header .user-info .time-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-comments .comment-header .user-info .time-badge i {
  font-size: 13px;
}

.blog-comments .comment-header .engagement .likes {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 20px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
}

.blog-comments .comment-header .engagement .likes i {
  font-size: 13px;
}

.blog-comments .comment-body p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-comments .comment-actions {
  display: flex;
  gap: 15px;
}

.blog-comments .comment-actions .action-btn {
  background: none;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn i {
  font-size: 15px;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.blog-comments .comment-actions .action-btn:hover.like-btn i {
  transform: scale(1.2);
  color: #ff4b6e;
}

.blog-comments .comment-actions .action-btn:hover.reply-btn i {
  transform: translateX(-3px);
}

.blog-comments .comment-actions .action-btn:hover.share-btn i {
  transform: translateY(-2px);
}

.blog-comments .comment-actions .action-btn.like-btn.active {
  color: #ff4b6e;
}

.blog-comments .replies-container {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media (max-width: 768px) {
  .blog-comments .comments-header {
    margin-bottom: 30px;
  }

  .blog-comments .comments-header .title {
    font-size: 24px;
  }

  .blog-comments .comments-header .comments-stats {
    padding: 6px 15px;
  }

  .blog-comments .comments-header .comments-stats .count {
    font-size: 20px;
  }

  .blog-comments .comments-header .comments-stats .label {
    font-size: 12px;
  }

  .blog-comments .comment-content {
    padding: 20px;
  }

  .blog-comments .comment-header .user-info h4 {
    font-size: 16px;
  }

  .blog-comments .comment-header .user-info .time-badge {
    font-size: 13px;
  }

  .blog-comments .comment-body p {
    font-size: 14px;
  }

  .blog-comments .comment-actions .action-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Blog Comment Form Section
--------------------------------------------------------------*/
.blog-comment-form {
  padding-top: 30px;
  max-width: 900px;
  margin: 30px auto 0 auto;
  padding-bottom: 60px;
}

.blog-comment-form form {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog-comment-form form p {
  font-size: 14px;
}

.blog-comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.blog-comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.blog-comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.blog-comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.blog-comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.blog-comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.blog-comment-form form .form-group {
  margin-bottom: 25px;
}

.blog-comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.blog-comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.contact .map-wrapper iframe {
  width: 100%;
  height: 100%;
}

@media (min-width: 991px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 576px) {
  .contact .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: var(--accent-color);
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container .dashboard-heading:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.contact .contact-form-container .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-form-container .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-container textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container a {
  width: 100%;
}

.contact .contact-form-container button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .contact-form-container .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-form-container .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# 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;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 100px 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 0%), color-mix(in srgb, var(--background-color), var(--accent-color) 4%));
}

.error-404 .error-wrapper {
  position: relative;
  overflow: hidden;
}

.error-404 .error-illustration {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404 .error-illustration i {
  font-size: 9rem;
  color: color-mix(in srgb, var(--accent-color), transparent 10%);
  position: relative;
  z-index: 2;
  animation: pulse 2s infinite;
}

.error-404 .error-illustration .circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.error-404 .error-illustration .circle.circle-1 {
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  animation: float 6s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-2 {
  width: 120px;
  height: 120px;
  background: color-mix(in srgb, var(--heading-color), transparent 85%);
  top: 30%;
  left: 25%;
  animation: float 8s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-3 {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  bottom: 20%;
  right: 30%;
  animation: float 7s ease-in-out infinite reverse;
}

.error-404 .error-content {
  padding: 30px 0;
}

.error-404 .error-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.error-404 .error-code {
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  margin: 0;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -2px;
}

.error-404 .error-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.error-404 .error-description {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.error-404 .error-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.error-404 .error-actions .btn-home,
.error-404 .error-actions .btn-help {
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.error-404 .error-actions .btn-home i,
.error-404 .error-actions .btn-help i {
  font-size: 1.2rem;
}

.error-404 .error-actions .btn-home {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.error-404 .error-actions .btn-home:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .error-actions .btn-help {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.error-404 .error-actions .btn-help:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

.error-404 .error-suggestions {
  padding: 1.5rem;
  background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 5%);
  border-radius: 12px;
}

.error-404 .error-suggestions h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.error-404 .error-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.error-404 .error-suggestions ul li {
  margin-bottom: 0.8rem;
}

.error-404 .error-suggestions ul li:last-child {
  margin-bottom: 0;
}

.error-404 .error-suggestions ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--default-color);
  font-size: 1.05rem;
  transition: all 0.3s;
}

.error-404 .error-suggestions ul li a i {
  color: var(--accent-color);
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.error-404 .error-suggestions ul li a:hover {
  color: var(--accent-color);
}

.error-404 .error-suggestions ul li a:hover i {
  transform: translateX(3px);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 991px) {
  .error-404 .error-illustration {
    height: 300px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .error-404 {
    padding: 70px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 6rem);
  }

  .error-404 .error-title {
    font-size: 1.8rem;
  }

  .error-404 .error-actions {
    flex-direction: column;
  }

  .error-404 .error-actions .btn-home,
  .error-404 .error-actions .btn-help {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.pursuit-container {
  /* background-color: #f5f5f7; */
  padding: 10px 15px;
  border-radius: 10px;
}

.comlg {
  padding: 10px 20px;
}


.scroll-container {
  overflow: hidden;
  padding: 15px 0;
  position: relative;
}

/* Gradient overlays for smooth fade effect */
.scroll-container::before,
.scroll-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.scroll-container-bg::before {
  background: none !important;
}

.scroll-container-bg::after {
  background: none !important;
}

.scroll-container::before {
  left: 0;
  background: linear-gradient(to right, rgb(255 255 255 / 41%), rgb(255 255 255 / 0%));
}

.scroll-container::after {
  right: 0;
  background: linear-gradient(to left, rgb(255 255 255 / 41%), rgb(255 255 255 / 0%));
}

.scroll-track {
  display: flex;
  gap: 40px;
}

.logo-card {
  flex: 0 0 auto;
  width: 190px;
  height: 100px;
  background: white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-card:hover {
  transform: translateY(-1px);
}

.logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.logo-card:hover img {
  filter: grayscale(0%);
}

.current {
  font-weight: 600;
}

.cart-hov .col-md-4,
.cart-hov .col-md-8,
.cart-hover-pad .col-lg-4 {
  padding: 0 !important;
}

.career-img {
  clip-path: polygon(30.1% 0%, 69.9% 0%, 100% 30%, 100% 70%, 69.9% 100%, 30.1% 100%, 0% 70%, 0% 30%);
}

.price-badge-career {
  color: #000;
  padding: 16px 22px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 20px;
}

.career-image-cource {
  height: auto !important;
}

.career-buttons a,
.career-buttons button {
  color: #fff;
  background: #911517;
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 20px 20px;
  border-radius: 50px;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 90%);
}

.career-buttons a:hover,
.career-buttons button:hover {
  background: #ca4e50;
  color: #fff;
}

.main-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.content-wrapper {
  display: flex;
  gap: 30px;
}

.sidebar {
  width: 280px;
  padding-top: 20px;
  flex-shrink: 0;
}


.category-btn {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  border: none;
  background: white;
  border-radius: 50px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.category-btn:hover {
  background: #f8f9fa;
  transform: translateX(5px);
}

.category-btn.active {
  background: linear-gradient(135deg, #911517 0%, #781113 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.category-btn i {
  font-size: 1.2rem;
  width: 24px;
}

.courses-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
}

.course-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  display: none;
}

.course-card.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.course-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}

.course-content {
  padding: 20px;
}

.course-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.course-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.course-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ffa500;
}

.course-students {
  color: #999;
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .content-wrapper {
    flex-direction: column;
  }

  .sidebar {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
    gap: 10px !important;
  }

  .courses-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 576px) {
  .main-title {
    font-size: 2rem;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    grid-template-columns: 1fr;
  }

  .modal-content {
    padding: 40px 15px !important;
  }

  .toggle-btn {
    font-size: 14px !important;
    padding: 10px 5px !important;
  }
}

.main-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  gap: 30px;
}

.sidebar {
  width: 280px;
  flex-shrink: 0;
}

.category-btn {
  width: 100%;
  text-align: left;
  padding: 12px 20px;
  border: none;
  background: white;
  border-radius: 50px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.category-btn:hover {
  background: #f8f9fa;
  transform: translateX(5px);
}

.category-btn.active {
  background: linear-gradient(135deg, #e01e37, #9b0f1f);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.category-btn i {
  font-size: 1.2rem;
  width: 24px;
}

.courses-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
  gap: 25px;
  align-content: start;
}

.course-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  display: none;
}

.course-card-hight {
  height: 200px;
}

.course-card.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.course-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  z-index: 9;
}

.course-content {
  padding: 20px;
}

.course-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.course-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.course-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ffa500;
}

.course-students {
  color: #999;
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .content-wrapper {
    flex-direction: column;
  }

  .sidebar {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
    gap: 10px !important;
  }

  .courses-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .main-title {
    font-size: 2rem;
  }

  .courses-grid {
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
    gap: 12px;
  }

  .sidebar {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
    gap: 5px !important;
  }

  .category-btn {
    padding: 10px;
  }

  .course-card-hight {
    height: 145px;
  }

  .course-badge {
    padding: 3px 6px;
    font-size: 0.7rem;
  }
}

@media (min-width:300px) and (max-width: 405px) {
  .content-wrapper .courses-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
  }

  .course-card-hight {
    height: 120px;
  }
}

@media (min-width:400px) and (max-width: 450px) {
  .content-wrapper .courses-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
  }

  .course-card-hight {
    height: 120px;
  }
}

.increes {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
}

.increes span {
  color: #000 !important;
}

.increes span.plus-color-cng {
  color: #ffffff !important;
}








@media (max-width: 991.5px) {
  .curriculum-det {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .bro-ucher-content {
    flex-direction: column;
  }

  .bro-chu-cn {
    width: 100% !important;
  }

  .contact .contact-form-container a {
    display: flex;
    justify-content: center;
  }

  .header .logo img {
    max-height: 35px;
  }

  .header .btn-getstarted {
    padding: 4px 8px;
  }

  .courses-hero .hero-image .floating-cards .course-card .card-icon i {
    font-size: 0.9rem;
  }

  .courses-hero .hero-image .floating-cards .course-card .card-icon {
    width: 35px;
    height: 35px;
  }

  .courses-hero .hero-image .floating-cards .course-card {
    padding: 10px;
    min-width: 50px;
  }

  .courses-hero {
    padding: 20px;
  }

  .courses-hero .hero-image .floating-cards .course-card .card-content span {
    font-size: 10px;
  }

  .courses-hero .hero-image .floating-cards .course-card:nth-child(3) {
    bottom: -3%;
  }

  .courses-hero .hero-image .floating-cards .course-card:nth-child(1) {
    top: 27%;
    left: -3%;
  }

  .courses-hero .hero-image .floating-cards .course-card:nth-child(2) {
    top: 40%;
    right: -4%;
  }

  .hero-content .cng-order-2 {
    padding-top: 40px;
  }

  .courses-hero .hero-text p {
    margin: 0;
    padding-bottom: 20px;
  }

  .courses-hero .hero-buttons .btn {
    padding: 7px;
    width: 50%;
  }

  .courses-hero .hero-buttons {
    margin-bottom: 15px;
  }

  .courses-hero .hero-features {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .courses-hero .hero-text {
    margin: 0;
  }

  .featured-courses .course-image {
    height: 70px;
  }

  .featured-courses .course-image .price-badge {
    font-size: 21px;
    padding: 0 8px;
    top: 10px;
  }

  .featured-courses .course-image .badge {
    font-size: 35px;
  }

  .featured-courses .course-content {
    padding: 8px 20px;
    text-align: justify;
  }

  .section-title {
    padding-bottom: 10px;
  }

  .about .about-content h2,
  .about-content h2.bro-chu {
    font-size: 1.2rem;
  }

  .about .subtitle {
    font-size: 0.7rem;
  }

  .about .about-content p {
    font-size: 1rem;
    text-align: justify;
    margin-bottom: 0;
  }

  #featured-courses,
  #about,
  #contact, #program-course, #es-services {
    padding: 20px;
  }

  .cart-hover-pad .col-lg-4 {
    width: 50%;
  }

  .cart-hov .col-md-8 {
    width: 72%;
  }

  .cart-hov .col-md-4 {
    width: 28%;
  }

  .courses-events .event-card .event-image img {
    padding: 6px;
  }

  .courses-events .event-card .event-content .event-title,
  .courses-events .event-card .event-content .event-meta {
    font-size: 11px;
    padding: 0;
    margin: 0;
  }

  .courses-events .event-card .event-content {
    padding: 15px 0;
  }

  .comlg {
    padding: 5px 8px;
  }

  .cart-hov {
    min-height: 70px;
  }

  #courses-events,
  #featured-instructors,
  #testimonials {
    padding: 20px;
  }

  .logo-card {
    width: 125px;
    height: 70px;
  }

  .scroll-track {
    gap: 20px;
  }

  .testimonials .testimonials-container .swiper-pagination {
    margin: 0;
    padding-top: 10px;
  }

  .testimonials .testimonials-container .testimonial-item {
    margin: 0;
  }

  .testimonials .testimonials-container .swiper-wrapper {
    padding-bottom: 15px;
  }

  .testimonials .testimonials-container .testimonial-item {
    padding: 20px;
  }

  .contact .contact-form-container .form-control {
    padding: 5px 15px;
  }

  .check-flex {
    display: flex;
    gap: 5px;
    align-items: baseline;
    font-size: 14px;
  }

  .contact .contact-form-container button {
    width: 58%;
    padding: 10px;
  }

  .about .about-content,
  .about .achievements {
    margin: 0;
  }

  .courses-hero .hero-image .floating-cards .course-card .card-content h6 {
    font-size: 1rem;
  }

  .courses-grid {
    padding: 10px !important;
  }

  .brow-chg {
    padding: 0 !important;
  }

  #pricing .price-card-col {
    width: 100% !important;
  }

  .pricing .row.gy-4>[class*=col-] {
    margin-bottom: 0;
  }

  .course-details .course-hero .hero-content .course-subtitle,
  .bro-chu-cn p,
  .accordion .curriculum-module .accordion-body .lessons-list .lesson .lesson-title {
    text-align: justify;
  }

  .course-details .course-hero .hero-content {
    padding: 0 20px;
  }
}


@media (min-width:567px) and (max-width: 768px) {
  .bro-ucher-content {
    flex-direction: column;
  }

  .bro-chu-cn {
    width: 100% !important;
  }

  .brow-chg {
    padding: 0 !important;
  }

  .courses-hero .hero-image .floating-cards .course-card:nth-child(3) {
    bottom: -4%;
    left: -3%;
  }

  .courses-hero .hero-image .floating-cards .course-card:nth-child(1) {
    top: 27%;
    left: -3%;
  }

  .courses-hero .hero-image .floating-cards .course-card:nth-child(2) {
    top: 40%;
    right: -4%;
  }

  .courses-hero {
    padding: 20px;
  }

  .hero-content .cng-order-2 {
    padding-top: 40px;
  }

  .courses-hero .hero-text p {
    margin: 0;
    padding-bottom: 20px;
  }

  .courses-hero .hero-buttons {
    margin-bottom: 15px;
  }

  .courses-hero .hero-buttons .btn {
    padding: 7px;
    width: 50%;
  }

  #featured-courses,
  #about,
  #contact, #program-course, #es-services {
    padding: 20px;
  }

  .section-title {
    padding-bottom: 10px;
  }

  .featured-courses .course-image {
    height: 70px;
  }

  #courses-events,
  #featured-instructors,
  #testimonials {
    padding: 20px;
  }

  .cart-hover-pad .col-lg-4 {
    width: 50%;
  }

  .cart-hov .col-md-4 {
    width: 28%;
  }

  .courses-events .event-card .event-image img {
    padding: 6px;
  }

  .cart-hov .col-md-8 {
    width: 72%;
  }

  .courses-events .event-card .event-content .event-title,
  .courses-events .event-card .event-content .event-meta {
    font-size: 11px;
    padding: 0;
    margin: 0;
  }

  .comlg {
    padding: 5px 8px;
  }

  .cart-hov {
    min-height: 80px;
  }

  .category-btn {
    padding: 10px;
  }

  .about .about-content p {
    font-size: 1rem;
    text-align: justify;
    margin-bottom: 0;
  }

  .courses-hero .hero-image .floating-cards .course-card .card-content h6 {
    font-size: 1.2rem;
  }

  .featured-courses .course-image .price-badge {
    font-size: 22px;
  }

  .pricing .pricing-item {
    padding: 8px;
  }

  #pricing .price-card-col {
    width: 33% !important;
  }

  .pricing .pricing-cta .btn-primary {
    padding: 0.3rem 1.5rem;
    margin-bottom: 10px;
  }

  .course-details .course-hero .hero-content .course-subtitle,
  .bro-chu-cn p,
  .accordion .curriculum-module .accordion-body .lessons-list .lesson .lesson-title {
    text-align: justify;
  }

  .course-details .course-hero .hero-content {
    padding: 0 20px;
  }
}

@media (min-width:992px) and (max-width: 1600px) {
  .courses-hero .hero-image .floating-cards .course-card:nth-child(2) {
    right: -5%;
  }
}

@media (min-width:1100.5px) and (max-width: 1400px) {
  .courses-events .event-card .event-content .event-title {
    font-size: 18px;
  }
}

@media (min-width:991.5px) and (max-width: 1100px) {
  .card-choice {
    flex: 0 0 auto;
    width: 50%;
  }

  .featured-courses .course-image .price-badge {
    font-size: 21px;
  }

  #courses-events,
  #featured-instructors,
  #testimonials {
    padding: 20px;
  }

  .cart-hover-pad .col-lg-4 {
    width: 50%;
  }

  .cart-hov .col-md-4 {
    width: 28%;
  }

  .courses-events .event-card .event-image img {
    padding: 6px;
  }

  .cart-hov .col-md-8 {
    width: 72%;
  }

  .courses-events .event-card .event-content .event-title,
  .courses-events .event-card .event-content .event-meta {
    font-size: 20px;
    padding: 0 0 0 10px;
    margin: 0;
  }
}

@media (min-width:768px) and (max-width: 991.5px) {

  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    margin: 0;
  }

  .bro-ucher-content {
    flex-direction: column;
  }

  .bro-chu-cn {
    width: 100% !important;
  }

  .courses-hero .hero-image .floating-cards .course-card:nth-child(2) {
    top: 50%;
    right: -3%;
  }

  .featured-courses .course-image .price-badge {
    font-size: 18px;
  }

  .courses-hero .hero-image .floating-cards .course-card:nth-child(1) {
    left: -4%;
    top: 27%;
  }

  .courses-hero .hero-image .floating-cards .course-card:nth-child(3) {
    bottom: 2%;
  }

  .hero-content .cng-order-2 {
    padding-top: 40px;
  }

  .courses-hero .hero-buttons {
    margin-bottom: 15px;
  }

  .courses-hero .hero-buttons .btn {
    padding: 10px;
    width: 50%;
  }

  .section-title {
    padding-bottom: 20px;
  }

  #courses-events,
  #featured-instructors,
  #testimonials {
    padding: 20px;
  }

  .cart-hover-pad .col-lg-4 {
    width: 50%;
  }

  .cart-hov .col-md-4 {
    width: 28%;
  }

  .courses-events .event-card .event-image img {
    padding: 6px;
  }

  .cart-hov .col-md-8 {
    width: 72%;
  }

  .courses-events .event-card .event-content .event-title,
  .courses-events .event-card .event-content .event-meta {
    font-size: 11px;
    padding: 0;
    margin: 0;
  }

  #pricing .price-card-col {
    width: 33% !important;
  }

  .pricing .pricing-item {
    padding: 1rem;
  }
}


@media (min-width:1200px) and (max-width: 1400px) {
  .featured-courses .course-image .price-badge {
    font-size: 16px;
  }

  .featured-courses .course-image {
    height: 75px;
  }
}

.login-user {
  justify-content: center;
}

.login-user-text {
  display: flex;
  justify-content: center;
}

.login-user-text .price-badge-career {
  font-size: 30px;
}

.login-btn button {
  width: 100% !important;
  margin: 0;
  padding: 6px;
}


.login-txt .price-badge-career {
  font-weight: 500 !important;
  font-size: 13px !important;
  text-align: end;
}

.login-section {
  padding: 130px 0;
}


.quick-answers {
  color: #911517;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.main-heading {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 30px;
}

.accordion-item {
  border: none;
  border-bottom: 2px solid #d1d5db;
  background-color: transparent;
  margin-bottom: 0;
}

.accordion-item:last-child {
  border-bottom: 2px solid #d1d5db;
}

.accordion-button {
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #1a1a2e;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a1a2e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  width: 1.5rem;
  height: 1.5rem;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a1a2e'%3e%3cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 0 0 24px 0;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
}

.accordion-collapse {
  border: none;
}

canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #f2f2f2;
}

.index-Z {
  z-index: 5;
}

/* ===== LAYOUT ===== */
.about-page .wrapper {
  position: relative;
  z-index: 1;
  /* min-height:100vh; */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 50px 24px;
}

/* ===== CARD ===== */
.verify-card {
  width: 100%;
  max-width: 450px;
  background: #ffffff;
  border-radius: 22px;
  padding: 38px;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, .08),
    0 0 0 1px #e6e6e6;
}

/* ===== BRAND ===== */
.verify-card .logo {
  text-align: center;
}

.logo img {
  height: 90px;
}

.verify-card .verify-head {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  unicode-bidi: isolate;
}

.verify-card .sub {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin: 8px 0 28px;
}

.verify-card .sub-lg {
  text-align: end;
  font-size: 14px;
  color: #666;
  margin: 20px 10px 0;
}

/* ===== INPUT ===== */
.verify-card input {
  width: 100%;
  padding: 12px 18px;
  border-radius: 40px;
  border: 1px solid #c4162a;
  font-size: 15px;
}

.verify-card input:focus {
  outline: none;
  border-color: #c4162a;
}

/* ===== BUTTON ===== */
.verify-card button {
  width: 100%;
  margin-top: 16px;
  padding: 16px;
  border: none;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #e01e37, #9b0f1f);
  cursor: pointer;
}

.verify-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(196, 22, 42, .45);
}

/* ===== RESULT ===== */
.verify-card .result {
  margin-top: 22px;
  padding: 22px;
  border-radius: 16px;
  font-size: 14px;
}

.verify-card .valid {
  background: #f1fffb;
  border-left: 4px solid #1bbf8b;
}

.verify-card .invalid {
  background: #fff3f3;
  border-left: 4px solid #e63946;
}

/* ===== VALID HEADER ===== */
.valid-title {
  font-size: 16px;
  font-weight: 700;
  color: #1bbf8b;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.valid-title::before {
  content: "✔";
  color: #1bbf8b;
  font-size: 18px;
}

/* ===== MESSAGE ===== */
.message {
  line-height: 1.7;
}

.message b {
  color: #c4162a;
}

/* ===== CERTIFICATE PREVIEW (A4 LANDSCAPE: 29.7 × 21 cm) ===== */
.preview-box {
  margin-top: 26px;
  border: 2px solid #c4162a;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow:
    0 18px 36px rgba(0, 0, 0, .15),
    inset 0 0 0 1px rgba(0, 0, 0, .04);
}

.preview-ratio {
  position: relative;
  width: 100%;
  padding-top: 70.707%;
}

.preview-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1150px;
  }
}

@media (max-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1050px;
  }
}

@media (max-width: 1100px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 900px;
  }
}

@media (max-width: 950px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 800px;
  }
}

@media (max-width: 850px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 700px;
  }
}

@media (max-width: 768px) {

  .container,
  .container-md,
  .container-sm {
    max-width: 695px;
  }
}

@media (max-width: 576px) {

  .container,
  .container-sm {
    max-width: 510px;
  }
}

.icon-spc i {
  font-size: 18px;
}

.icon-spc {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
}

.pursuit-container-spe {
  background: none !important;
}

.spc-row-flex {
  align-items: center;
}

.spc-row-flex-img {
  display: flex;
  justify-content: center;
}

.container-head {
  padding: 0 20px;
}

.whatsapp-float {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 70px;
  /* Position above scroll-top button */
  right: 15px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 25px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: all 0.3s ease;
  animation: zoomInOut 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  background-color: #911517;
  color: #fff;
  transform: scale(1.1);
  animation: none;
}

/* Zoom In-Out Animation */
@keyframes zoomInOut {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}



/* Animation */

/* Header Buttons */
.header-buttons {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.header-btn {
  padding: 11px 35px;
  border: 2px solid #911517;
  background: white;
  color: var(--heading-color);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: fadeInDown 0.6s ease forwards;
  opacity: 0;
}

.header-btn:nth-child(1) {
  animation-delay: 0.1s;
}

.header-btn:nth-child(2) {
  animation-delay: 0.2s;
}

.header-btn:nth-child(3) {
  animation-delay: 0.3s;
}

/* Journey Container */
.journey-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: center;
  position: relative;
}

/* Step Item */
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.step-item:nth-child(1) {
  animation-delay: 0.4s;
}

.step-item:nth-child(2) {
  animation-delay: 0.5s;
}

.step-item:nth-child(3) {
  animation-delay: 0.6s;
}

.step-item:nth-child(4) {
  animation-delay: 0.7s;
}

.step-item:nth-child(5) {
  animation-delay: 0.8s;
}

/* Circle Design */
.circle-wrapper {
  position: relative;
  width: 150px;
  height: 150px;
  margin-bottom: 30px;
}

.outer-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid #911517;
  border-radius: 50%;
  transform: rotate(-90deg);
  opacity: 0.3;
}

.progress-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: #911517c5;
  border-right-color: #911517;
  border-radius: 50%;
  transform: rotate(-90deg);
  animation: rotate 3s ease-in-out infinite;
}

.inner-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px #91151765;
  transition: all 0.3s ease;
}

.step-item:hover .inner-circle {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 30px #911517d1;
}

.step-number {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.step-label {
  font-size: 11px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
}

/* Connector Dots */
.connector {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 15px;
}

.dot {
  width: 6px;
  height: 6px;
  background: #911517;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.dot:nth-child(1) {
  animation-delay: 0s;
}

.dot:nth-child(2) {
  animation-delay: 0.3s;
}

.dot:nth-child(3) {
  animation-delay: 0.6s;
}

/* Action Buttons */
.action-btn {
  padding: 11px 35px;
  border: 2px solid #911517;
  background: white;
  color: var(--heading-color);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(-90deg);
  }

  50% {
    transform: rotate(270deg);
  }

  100% {
    transform: rotate(-90deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

/* Responsive Design */

/* 568px */
@media (max-width: 568px) {
  .header-btn {
    padding: 6px 8px;
    font-size: 7px;
  }

  .action-btn {
    padding: 6px 8px;
    font-size: 7px;
  }

  .header-buttons {
    margin-bottom: 8px;
  }

  .journey-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }

  .circle-wrapper {
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
  }

  .inner-circle {
    width: 45px;
    height: 45px;
  }

  .step-number {
    font-size: 12px;
  }

  .step-label {
    font-size: 10px;
  }

  .connector {
    display: none;
  }

  .faq-head h2,
  .quick-answers {
    text-align: center !important;
  }

  .certificates-pre {
    padding: 5px 0 !important;
  }

  .certificates-pre .certificates {
    padding: 0 7px !important;
  }

}

@media (min-width: 879px) and (max-width: 1055px) {
  .header .logo img {
    max-height: 44px;
  }

  .header .btn-getstarted {
    padding: 5px 15px;
  }

  .navmenu>ul>li {
    padding: 0 2px;
  }

  .container-head {
    padding: 0 10px;
  }

  .navmenu a {
    padding: 0;
  }
}

@media (min-width: 340px) and (max-width: 410px) {
  .certificates-pre {
    padding: 5px 0 !important;
    gap: 10px;
  }

  .certificates-pre .certificates {
    padding: 0 7px !important;
  }
}

@media (min-width: 410px) and (max-width: 569px) {
  .certificates-pre {
    padding: 5px 0 !important;
  }

  .certificates-pre .certificates {
    padding: 0 7px !important;
  }

  .certificates-preview {
    width: 50%;
  }
}

/* 768px */
@media (min-width: 569px) and (max-width: 768px) {
  .header-btn {
    padding: 6px 10px;
    font-size: 12px;
  }

  .certificates-preview {
    width: 50%;
  }

  .header-buttons {
    gap: 40px;
    margin-bottom: 8px;
  }

  .journey-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }

  .circle-wrapper {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
  }

  .inner-circle {
    width: 65px;
    height: 65px;
  }

  .step-number {
    font-size: 20px;
  }

  .step-item:nth-child(2) .connector,
  .step-item:nth-child(4) .connector {
    display: none;
  }

  .step-item:nth-child(odd) .connector {
    display: none;
  }

  .action-btn {
    padding: 6px 10px;
    font-size: 12px;
  }

  .faq-head h2,
  .quick-answers {
    text-align: center !important;
  }

  .certificates-pre {
    padding: 5px 0 !important;
  }

  .certificates-pre .certificates {
    padding: 0 7px !important;
  }
}

/* 991.5px */
@media (min-width: 769px) and (max-width: 991.5px) {

  .faq-head h2,
  .quick-answers {
    text-align: center !important;
  }

  .journey-container {
    grid-template-columns: repeat(5, 1fr);
    /* gap: 40px; */
  }

  .circle-wrapper {
    width: 90px;
    height: 90px;
  }

  .inner-circle {
    width: 90px;
    height: 90px;
  }

  .step-number {
    font-size: 30px;
  }

  .step-item:nth-child(3) .connector,
  .step-item:nth-child(5) .connector {
    display: none;
  }

  .certificates-pre {
    padding: 5px 0 !important;
  }
}

/* 1200px */
@media (min-width: 992px) and (max-width: 1200px) {
  .journey-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }

  .circle-wrapper {
    width: 130px;
    height: 130px;
  }

  .inner-circle {
    width: 85px;
    height: 85px;
  }

  .step-number {
    font-size: 28px;
  }

  .connector {
    margin-left: 10px;
  }
}

/* 1400px and above */
@media (min-width: 1201px) and (max-width: 1400px) {
  .journey-container {
    gap: 25px;
  }
}

@media (min-width: 1401px) {
  .journey-container {
    gap: 35px;
  }

  .circle-wrapper {
    width: 160px;
    height: 160px;
  }

  .inner-circle {
    width: 105px;
    height: 105px;
  }

  .step-number {
    font-size: 34px;
  }
}

/* Limit CS/IT section height */
.courses-grid {
  max-height: calc(2 * 230px);
  /* 2 rows = 6 cards (3 per row) */
  overflow-y: auto;
  padding: 20px;
}

.courses-pages {
  max-height: none !important;
}

/* Smooth scrolling */
.courses-grid::-webkit-scrollbar {
  width: 6px;
}

.courses-grid::-webkit-scrollbar-thumb {
  background: #911517bc;
  border-radius: 10px;
}

.courses-grid::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.cur-img {
  height: 100%;
}

.course-img-hg {
  height: 100% !important;
}

.course-img-hg .cur-img img {
  transition: 0.3s;
}

.course-img-hg .cur-img img:hover {
  transform: scale(1.05);
}

.faq-head h2 {
  text-align: start;
}

.faq-head {
  padding: 0 !important;
}

.course-card-hight {
  transform: none !important;
}



/* Image blur slightly delayed for smooth effect */
.course-card-hight img {
  filter: blur(12px);
  animation: imageReveal 0.8s ease-in-out forwards;
  animation-delay: 0.2s;
}


/* Image animation */
@keyframes imageReveal {
  0% {
    filter: blur(12px);
  }

  100% {
    filter: blur(0);
  }
}


.curriculum-det {
  display: flex;
  gap: 25px;
}

.current-price-color {
  color: #000 !important;
}

.bro-chu-sub {
  width: 100%;
}

.bro-ucher-content {
  min-height: auto !important;
  display: flex !important;
  background-image: url(../img/br1.jpg);
  background-repeat: no-repeat;
  /* background-size: cover; */
  padding: 20px 35px;
}

.bro-chu-cn {
  width: 65%;
}

.bro-chu-cn h2,
.bro-chu-cn p {
  color: #ffffff !important;
}

.browcher-back-cng {
  background-color: #ffffff42 !important;
}

.browcher-back-cng .form-control {
  background-color: ;
}

.price-justify-content {
  justify-content: center;
}

#loader {
  width: 50px;
  height: 50px;
  border: 4px solid #ddd;
  border-top: 4px solid #911517;
  border-radius: 50%;
  margin: 0 auto 15px;
  animation: spin 1s linear infinite;
}

#statusIcon {
  display: none;
  font-size: 48px;
  margin-bottom: 10px;
}

#popupBtn a {
  color: #fff;
}

#popupBtn {
  display: none;
  margin-top: 15px;
  padding: 8px 30px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #e01e37, #9b0f1f);
  color: #fff;
  cursor: pointer;
}

#popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
  border-radius: 12px;
  z-index: 9999;
  text-align: center;
  min-width: 300px;
}


@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#pricing .price-card-col {
  width: 30%;
}

.certificates-pre .certificates {
  padding: 0 !important;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #911517;
}

.certificates-pre {
  padding: 25px 20px;
}

.certificates-pre .certificates img {
  transition: 0.3s;
}

.certificates-pre .certificates img:hover {
  transform: scale(1.03);
}

.certi-background {
  background: #f5faff;
}

.inner1 {
  background-color: #fb7338 !important;
}

.progress1 {
  border-top-color: #d37046;
  border-right-color: #fb7338;
}

.header-buttons1 {
  border: 2px solid #fb7338;
}

.inner2 {
  background-color: #f06292 !important;
}

.progress2 {
  border-top-color: #f06292;
  border-right-color: #f06292;
}

.action-btn1 {
  border: 2px solid #f06292;
}

.inner3 {
  background-color: #feb74d !important;
}

.progress3 {
  border-top-color: #feb74d;
  border-right-color: #feb74d;
}


.header-buttons2 {
  border: 2px solid #feb74d;
}

.inner4 {
  background-color: #ffd550 !important;
}

.progress4 {
  border-top-color: #ffd550;
  border-right-color: #ffd550;
}

.action-btn2 {
  border: 2px solid #ffd550;
}

.inner5 {
  background-color: #81c784 !important;
}

.progress5 {
  border-top-color: #81c784;
  border-right-color: #81c784;
}

.header-buttons3 {
  border: 2px solid #81c784;
}

.pricing-item1 {
  background-color: #ebdfd4 !important;
}

.pricing-item2 {
  background-color: #f8f8ff !important;
}

.pricing-item3 {
  background-color: #dcdcdc !important;
}

.pricing .pricing-features .feature-list li i.fa-check {
  color: red !important;
}

.pricing .pricing-features .feature-list li i.fa-xmark {
  color: #000 !important;
}

.pricing-cta1 a.btn-primary {
  background-color: #f8f8ff !important;
  color: #000 !important;
}

.pricing-cta2 a.btn-primary {
  background-color: #ebdfd4 !important;
  color: #000 !important;
}

.pricing-cta3 a.btn-primary {
  background-color: #f8f8ff !important;
  color: #000 !important;
}

.pricing-cta a.btn-primary:hover {
  background-color:
    color-mix(in srgb, var(--accent-color), transparent 15%) !important;
  border-color:
    color-mix(in srgb, var(--accent-color), transparent 15%) !important;
  color: #ffffff !important;
}

/* Image Swiper Styles */
.image-swiper-container {
  position: relative;
  width: 100%;
  /* height: 500px; */
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.swiper-wrapper {
  position: relative;
  width: 380px;
  height: 450px;
}

.swiper-card {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); */
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  cursor: pointer;
}

.swiper-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Stacking effect */
.swiper-card:nth-child(1) {
  z-index: 5;
  transform: translateX(0) scale(1);
  opacity: 1;
}

.swiper-card:nth-child(2) {
  z-index: 4;
  transform: translateX(20px) scale(0.95);
  opacity: 0.8;
}

.swiper-card:nth-child(3) {
  z-index: 3;
  transform: translateX(40px) scale(0.9);
  opacity: 0.6;
}

.swiper-card:nth-child(4) {
  z-index: 2;
  transform: translateX(60px) scale(0.85);
  opacity: 0.4;
}

.swiper-card:nth-child(5) {
  z-index: 1;
  transform: translateX(80px) scale(0.8);
  opacity: 0.2;
}

/* Animation for card going to back */
.swiper-card.animating-out {
  transform: translateX(-15%) rotate(-15deg) scale(0.7) !important;
  opacity: 0 !important;
  z-index: 0 !important;
}

@media (max-width: 992px) {
  .swiper-wrapper {
    width: 350px;
    height: 420px;
  }
}

@media (max-width: 576px) {
  .swiper-wrapper {
    width: 300px;
    height: 380px;
  }

  .bro-ucher-content {
    padding: 20px 15px;
  }

  .contact .contact-form-container button {
    width: 75% !important;
  }
}

.image-swiper-container #swiperPagination {
  display: none !important;
}

#brochureForm .form-control {
  padding: 9px 20px;
}

.content-wrapper-all-program {
  display: block !important;
}

.sidebar-all-program {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.tech-cr-flex {
  display: flex;
  align-items: baseline;
  gap: 35px;
}

@media (min-width:991px) and (max-width: 1101px) {
  .tech-cr-flex {
    gap: 5px;
  }
}

@media (max-width: 767px) {
  .tech-cr-wdth {
    width: 100% !important;
  }
}

.adrees-div p {
  padding: 0;
  margin: 0;
}

.price-card-col {
  max-width: 400px;
  margin: 0 auto;
}

/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  border-radius: 16px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: slideUp 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #dc3545;
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.payment-toggle {
  display: flex;
  background: #f0f0f0;
  border-radius: 50px;
  padding: 5px;
  margin-bottom: 30px;
}

.toggle-btn {
  flex: 1;
  padding: 12px 24px;
  border: none;
  background: transparent;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
}

.toggle-btn.active {
  background: #911517;
  color: white;
  box-shadow: 0 2px 8px #995556;
}

.price-display {
  text-align: center;
}

.price-display .rupee-symbol {
  font-size: 42px;
  color: #333;
}

.price-display .amount {
  font-size: 56px;
  font-weight: 700;
  color: #333;
  margin: 10px 0;
}

.payment-options {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.payment-btn {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.payment-btn.upi {
  background: linear-gradient(135deg, #e01e37, #9b0f1f);
  color: white;
}

.payment-btn.upi:hover {
  background: linear-gradient(135deg, #db273f, #a62635);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.payment-btn.razorpay {
  background: linear-gradient(135deg, #e01e37, #9b0f1f);
  /* background: linear-gradient(50deg, #bc293d, #911517); */
  color: white;
}

.payment-btn.razorpay:hover {
  background: linear-gradient(135deg, #db273f, #a62635);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.pre-reg-display {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Reset Bootstrap interference on the form container */
#dashboardAccessForm,
#dashboardAccessForm * {
  box-sizing: border-box !important;
}

#dashboardAccessForm {
  font-family: 'DM Sans', sans-serif !important;
}

/* ── Section Labels ── */
#dashboardAccessForm .daf-section-label {
  font-family: 'Syne', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  color: #e84040 !important;
  margin-bottom: 20px !important;
  margin-top: 36px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  border: none !important;
  background: none !important;
  padding: 0 !important;
}

#dashboardAccessForm .daf-section-label:first-child {
  margin-top: 0 !important;
}

#dashboardAccessForm .daf-section-label::after {
  content: '' !important;
  flex: 1 !important;
  height: 1px !important;
  background: linear-gradient(to right, rgba(232, 64, 64, 0.25), transparent) !important;
}

/* ── Grid Rows ── */
#dashboardAccessForm .daf-row {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  margin-bottom: 20px !important;
  float: none !important;
}

#dashboardAccessForm .daf-row.daf-col-2 {
  grid-template-columns: repeat(2, 1fr) !important;
}

#dashboardAccessForm .daf-row.daf-col-1 {
  grid-template-columns: 1fr !important;
}

@media (max-width: 768px) {
  #dashboardAccessForm {
    padding: 28px 16px !important;
  }

  #dashboardAccessForm .daf-row,
  #dashboardAccessForm .daf-row.col-2 {
    grid-template-columns: 1fr !important;
  }
}

/* ── Field Wrapper ── */
#dashboardAccessForm .daf-field {
  position: relative !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}

/* ── Inputs & Selects — override Bootstrap fully ── */
#dashboardAccessForm .daf-field input,
#dashboardAccessForm .daf-field select {
  display: block !important;
  width: 100% !important;
  height: 56px !important;
  padding: 20px 16px 8px !important;
  border: 1.5px solid #d8d4ce !important;
  border-radius: 12px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #1a1a1a !important;
  background: #fafaf9 !important;
  outline: none !important;
  box-shadow: none !important;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s !important;
  margin: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  line-height: normal !important;
  vertical-align: middle !important;
}

#dashboardAccessForm .daf-field input::placeholder {
  color: transparent !important;
}

#dashboardAccessForm .daf-field input:focus,
#dashboardAccessForm .daf-field select:focus {
  border-color: #e84040 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(232, 64, 64, 0.09) !important;
  outline: none !important;
}

/* ── Floating Label ── */
#dashboardAccessForm .daf-field>label {
  position: absolute !important;
  left: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #999 !important;
  background: transparent !important;
  padding: 0 2px !important;
  margin: 0 !important;
  transition: all 0.2s ease !important;
  pointer-events: none !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: calc(100% - 32px) !important;
  z-index: 1 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-family: 'DM Sans', sans-serif !important;
}

/* Float up on focus or filled */
#dashboardAccessForm .daf-field input:focus~label,
#dashboardAccessForm .daf-field input:not(:placeholder-shown)~label {
  top: 10px !important;
  transform: translateY(0) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  color: #e84040 !important;
}

/* Select & Date: label always floated */
#dashboardAccessForm .daf-field.daf-select>label,
#dashboardAccessForm .daf-field.daf-date>label {
  top: 10px !important;
  transform: translateY(0) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  color: #e84040 !important;
}

/* Select dropdown arrow */
#dashboardAccessForm .daf-field.daf-select::after {
  content: '' !important;
  position: absolute !important;
  right: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 0 !important;
  height: 0 !important;
  border-left: 5px solid transparent !important;
  border-right: 5px solid transparent !important;
  border-top: 6px solid #aaa !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

#dashboardAccessForm .daf-field.daf-select:focus-within::after {
  border-top-color: #e84040 !important;
}

/* ── Checkbox Section ── */
#dashboardAccessForm .daf-checkbox-field {
  border: 1.5px solid #d8d4ce !important;
  border-radius: 12px !important;
  padding: 18px 20px 16px !important;
  background: #fafaf9 !important;
  position: relative !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  width: 100% !important;
}

#dashboardAccessForm .daf-checkbox-field:focus-within {
  border-color: #e84040 !important;
  box-shadow: 0 0 0 4px rgba(232, 64, 64, 0.09) !important;
}

#dashboardAccessForm .daf-checkbox-field .daf-float-label {
  position: absolute !important;
  top: -9px !important;
  left: 12px !important;
  background: #ffffff !important;
  padding: 0 6px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  color: #e84040 !important;
  font-family: 'DM Sans', sans-serif !important;
  line-height: 1 !important;
}

/* ── THIS IS THE KEY FIX: Force horizontal flex layout ── */
#dashboardAccessForm .daf-checkbox-grid {
  display: flex !important;
  flex-direction: row !important;
  /* horizontal, not vertical */
  flex-wrap: wrap !important;
  gap: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  align-items: center !important;
}

#dashboardAccessForm .daf-check-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  width: auto !important;
  /* prevent Bootstrap col stretching */
}

/* Checkbox input — full reset then restyle */
#dashboardAccessForm .daf-check-item input[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  display: inline-block !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  border: 2px solid #d8d4ce !important;
  border-radius: 5px !important;
  background: #ffffff !important;
  cursor: pointer !important;
  transition: all 0.15s ease !important;
  position: relative !important;
  margin: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  float: none !important;
  vertical-align: middle !important;
  flex-shrink: 0 !important;
}

#dashboardAccessForm .daf-check-item input[type="checkbox"]:checked {
  background: #e84040 !important;
  border-color: #e84040 !important;
}

#dashboardAccessForm .daf-check-item input[type="checkbox"]:checked::after {
  content: '' !important;
  position: absolute !important;
  left: 3px !important;
  top: 0px !important;
  width: 6px !important;
  height: 10px !important;
  border: 2px solid white !important;
  border-top: none !important;
  border-left: none !important;
  transform: rotate(45deg) !important;
}

#dashboardAccessForm .daf-check-item span {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #1a1a1a !important;
  user-select: none !important;
  font-family: 'DM Sans', sans-serif !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

/* ── Submit Button ── */
#dashboardAccessForm .daf-footer {
  margin-top: 40px !important;
  display: flex !important;
  justify-content: center !important;
}

#dashboardAccessForm .daf-submit-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, #e01e37, #9b0f1f) !important;
  color: white !important;
  border: none !important;
  padding: 0 56px !important;
  height: 56px !important;
  border-radius: 100px !important;
  font-family: 'Syne', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s !important;
  box-shadow: none !important;
  text-decoration: none !important;
  outline: none !important;
}

#dashboardAccessForm .daf-submit-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 32px rgba(232, 64, 64, 0.35) !important;
}

#dashboardAccessForm .daf-submit-btn:active {
  transform: translateY(0) !important;
}

#dashboardAccessForm .daf-submit-btn.daf-success {
  background: #27ae60 !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Popup Background */
.otp-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;

  /* Control position */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* NOT center */
  padding-top: 20px;
  /* little down from top */
}

/* Popup Box */
.otp-popup-content {
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.4s ease-out;
}

/* Text */
.otp-popup-content p {
  font-size: 16px;
  font-weight: 600;
  color: #dc3545;
}

/* Button */
.otp-popup-content button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: #dc3545;
}

/* Top to Middle Animation */
@keyframes slideDown {
  from {
    transform: translateY(-150px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ── CSS variables local to the section ── */
#es-services {
  --es-navy: #fff6f6;
  --es-navy2: #0d1528;
  --es-blue: #3b82f6;
  --es-cyan: #919191;
  --es-gold: #f59e0b;
  --es-green: #10b981;
  --es-rose: #f43f5e;
  --es-violet: #8b5cf6;
  --es-glass: #ffffff;
  --es-glass2: rgba(217, 98, 98, 0.08);
  --es-border: rgba(255, 255, 255, 0.09);
  --es-text: #e2e8f0;
  --es-muted: #787e87;

  position: relative;
  z-index: 1;

  /* Dark background ONLY for this section */
  background: var(--es-navy);
  color: var(--es-text);
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
}

/* Background mesh orbs — scoped inside section */
#es-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% 20%, rgba(59, 130, 246, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(6, 182, 212, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Container ── */
#es-services .es-container {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Header ── */
#es-services .es-header {
  text-align: center;
  margin-bottom: 64px;
}

#es-services .es-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--es-cyan);
  background: rgba(6, 182, 212, 0.10);
  border: 1px solid rgba(6, 182, 212, 0.25);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 22px;
}

#es-services .es-eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--es-cyan);
  animation: es-pulse 2s infinite;
}

@keyframes es-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.6);
  }
}

#es-services .es-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #000 30%, var(--es-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

#es-services .es-header p {
  font-size: 1rem;
  color: var(--es-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Layout ── */
#es-services .es-layout {
  gap: 32px;
}

/* ── Sidebar ── */
#es-services .es-sidebar {
  width: 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 32px;
}

#es-services .es-sidebar-label {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--es-muted);
  font-weight: 600;
  padding: 0 4px;
  margin-bottom: 6px;
}

#es-services .es-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-radius: 12px;
  border: 1px solid var(--es-border);
  background: var(--es-glass);
  color: var(--es-muted);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  text-align: left;
  width: 100%;
}

#es-services .es-tab-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.06);
  color: var(--es-muted);
}

#es-services .es-tab-count {
  margin-left: auto;
  font-size: 0.7rem;
  background: #9115173e;
  padding: 2px 8px;
  border-radius: 100px;
  color: var(--es-muted);
  transition: all 0.3s ease;
}

#es-services .es-tab:hover {
  border-color: #911517;
  background: var(--es-glass2);
  color: #3b3b3b;
}

#es-services .es-tab.active {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.1);
  color: #000;
}

#es-services .es-tab.active .es-tab-icon {
  background: var(--es-blue);
  color: #fff;
}

#es-services .es-tab.active .es-tab-count {
  background: rgba(59, 130, 246, 0.25);
  color: var(--es-blue);
}

/* ── Grid ── */
#es-services .es-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 15px;
}

/* ── Card show/hide ── */
#es-services .es-card {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

#es-services .es-card.show {
  display: flex;
}

#es-services .es-card.animate {
  animation: es-cardIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes es-cardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Card inner ── */
#es-services .es-card-inner {
  width: 100%;
  border-radius: 20px;
  padding: 30px 26px;
  border: 1px solid var(--es-border);
  background: var(--es-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Glow orb */
#es-services .es-card-inner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(40px);
  transition: opacity 0.4s ease;
}

/* Top accent line */
#es-services .es-card-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 20px 20px 0 0;
  opacity: 0.7;
}

#es-services .es-card-inner:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

/* ── Colour themes ── */

/* IBM — blue */
#es-services .es-card.t-ibm .es-card-inner {
  border-color: rgba(59, 130, 246, 0.2);
}

#es-services .es-card.t-ibm .es-card-inner::before {
  background: var(--es-blue);
}

#es-services .es-card.t-ibm .es-card-inner::after {
  background: linear-gradient(90deg, var(--es-blue), var(--es-cyan));
}

#es-services .es-card.t-ibm .es-card-inner:hover {
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 24px 60px rgba(59, 130, 246, 0.15);
}

#es-services .es-card.t-ibm .es-icon {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

#es-services .es-card.t-ibm .es-badge {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.25);
}

#es-services .es-card.t-ibm .es-feat i {
  color: var(--es-blue);
}

#es-services .es-card.t-ibm .es-cta {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

/* Offline — emerald */
#es-services .es-card.t-offline .es-card-inner {
  border-color: rgba(16, 185, 129, 0.2);
}

#es-services .es-card.t-offline .es-card-inner::before {
  background: var(--es-green);
}

#es-services .es-card.t-offline .es-card-inner::after {
  background: linear-gradient(90deg, #059669, #10b981);
}

#es-services .es-card.t-offline .es-card-inner:hover {
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: 0 24px 60px rgba(16, 185, 129, 0.15);
}

#es-services .es-card.t-offline .es-icon {
  background: linear-gradient(135deg, #059669, #10b981);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

#es-services .es-card.t-offline .es-badge {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.25);
}

#es-services .es-card.t-offline .es-feat i {
  color: var(--es-green);
}

#es-services .es-card.t-offline .es-cta {
  background: linear-gradient(135deg, #059669, #10b981);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

/* Online — violet */
#es-services .es-card.t-online .es-card-inner {
  border-color: rgba(139, 92, 246, 0.2);
}

#es-services .es-card.t-online .es-card-inner::before {
  background: var(--es-violet);
}

#es-services .es-card.t-online .es-card-inner::after {
  background: linear-gradient(90deg, #7c3aed, #8b5cf6);
}

#es-services .es-card.t-online .es-card-inner:hover {
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 24px 60px rgba(139, 92, 246, 0.15);
}

#es-services .es-card.t-online .es-icon {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
}

#es-services .es-card.t-online .es-badge {
  background: rgba(139, 92, 246, 0.12);
  color: #a78bfa;
  border-color: rgba(139, 92, 246, 0.25);
}

#es-services .es-card.t-online .es-feat i {
  color: var(--es-violet);
}

#es-services .es-card.t-online .es-cta {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

/* Web — amber */
#es-services .es-card.t-web .es-card-inner {
  border-color: rgba(245, 158, 11, 0.2);
}

#es-services .es-card.t-web .es-card-inner::before {
  background: var(--es-gold);
}

#es-services .es-card.t-web .es-card-inner::after {
  background: linear-gradient(90deg, #d97706, #f59e0b);
}

#es-services .es-card.t-web .es-card-inner:hover {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 24px 60px rgba(245, 158, 11, 0.12);
}

#es-services .es-card.t-web .es-icon {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

#es-services .es-card.t-web .es-badge {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
  border-color: rgba(245, 158, 11, 0.25);
}

#es-services .es-card.t-web .es-feat i {
  color: var(--es-gold);
}

#es-services .es-card.t-web .es-cta {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

/* App — cyan */
#es-services .es-card.t-app .es-card-inner {
  border-color: rgba(6, 182, 212, 0.2);
}

#es-services .es-card.t-app .es-card-inner::before {
  background: var(--es-cyan);
}

#es-services .es-card.t-app .es-card-inner::after {
  background: linear-gradient(90deg, #0891b2, #06b6d4);
}

#es-services .es-card.t-app .es-card-inner:hover {
  border-color: rgba(6, 182, 212, 0.45);
  box-shadow: 0 24px 60px rgba(6, 182, 212, 0.15);
}

#es-services .es-card.t-app .es-icon {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.35);
}

#es-services .es-card.t-app .es-badge {
  background: rgba(6, 182, 212, 0.12);
  color: #22d3ee;
  border-color: rgba(6, 182, 212, 0.25);
}

#es-services .es-card.t-app .es-feat i {
  color: var(--es-cyan);
}

#es-services .es-card.t-app .es-cta {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.3);
}

/* UI/UX — rose */
#es-services .es-card.t-uiux .es-card-inner {
  border-color: rgba(244, 63, 94, 0.2);
}

#es-services .es-card.t-uiux .es-card-inner::before {
  background: var(--es-rose);
}

#es-services .es-card.t-uiux .es-card-inner::after {
  background: linear-gradient(90deg, #e11d48, #f43f5e);
}

#es-services .es-card.t-uiux .es-card-inner:hover {
  border-color: rgba(244, 63, 94, 0.45);
  box-shadow: 0 24px 60px rgba(244, 63, 94, 0.15);
}

#es-services .es-card.t-uiux .es-icon {
  background: linear-gradient(135deg, #e11d48, #f43f5e);
  box-shadow: 0 8px 24px rgba(244, 63, 94, 0.35);
}

#es-services .es-card.t-uiux .es-badge {
  background: rgba(244, 63, 94, 0.12);
  color: #fb7185;
  border-color: rgba(244, 63, 94, 0.25);
}

#es-services .es-card.t-uiux .es-feat i {
  color: var(--es-rose);
}

#es-services .es-card.t-uiux .es-cta {
  background: linear-gradient(135deg, #e11d48, #f43f5e);
  box-shadow: 0 6px 20px rgba(244, 63, 94, 0.3);
}

/* ── Card internals ── */
#es-services .es-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

#es-services .es-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}

#es-services .es-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid;
  white-space: nowrap;
  align-self: flex-start;
}

#es-services .es-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
}

#es-services .es-desc {
  font-size: 0.84rem;
  color: var(--es-muted);
  line-height: 1.65;
}

#es-services .es-divider {
  height: 1px;
  background: var(--es-border);
  margin: 2px 0;
}

#es-services .es-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#es-services .es-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #333333;
}

#es-services .es-feat i {
  font-size: 0.72rem;
  flex-shrink: 0;
}

#es-services .es-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin-top: auto;
  width: fit-content;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  font-family: 'DM Sans', sans-serif;
}

#es-services .es-cta i {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}

#es-services .es-cta:hover {
  transform: translateY(-2px);
  opacity: 0.88;
  color: #fff;
}

#es-services .es-cta:hover i {
  transform: translateX(5px);
}

/* ── Responsive ── */
@media (min-width: 300px) {
  #es-services .es-sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    position: static;
  }

  #es-services .es-tab {
    flex: 1;
    min-width: 140px;
  }

  #es-services .es-sidebar-label {
    width: 100%;
  }
}

@media (max-width: 900px) {
  #es-services .es-layout {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  #es-services .es-grid {
    grid-template-columns: 1fr;
  }
}

#es-services .es-card.t-digital .es-icon {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  box-shadow: 0 8px 24px rgba(244, 63, 94, 0.35);
}

#es-services .es-card.t-aws .es-icon {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

#es-services .es-card.t-dashboard .es-icon {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
}

#es-services .es-card.t-digital .es-badge {
  background: rgba(244, 63, 94, 0.12);
  color: #fb7185;
  border-color: rgba(244, 63, 94, 0.25);
}

#es-services .es-card.t-aws .es-badge {
  background: rgba(37, 99, 235, 0.12);
  color: #3b82f6;
  border-color: rgba(37, 99, 235, 0.25);
}

#es-services .es-card.t-dashboard .es-badge {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.25);
}

#es-services .es-card.t-digital .es-feat i {
  color: #fb7185;
}

#es-services .es-card.t-aws .es-feat i {
  color: #3b82f6;
}

#es-services .es-card.t-dashboard .es-feat i {
  color: #22c55e;
}

#es-services .es-card.t-digital .es-cta {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  box-shadow: 0 6px 20px rgba(244, 63, 94, 0.3);
}

#es-services .es-card.t-aws .es-cta {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

#es-services .es-card.t-dashboard .es-cta {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}

/* Digital Marketing */
#es-services .es-card.t-digital .es-card-inner::before {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
}

/* AWS Project */
#es-services .es-card.t-aws .es-card-inner::before {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}

/* Dashboard Development */
#es-services .es-card.t-dashboard .es-card-inner::before {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

#es-services .es-card.t-digital .es-card-inner {
  border-color: rgba(244, 63, 94, 0.2);
}

#es-services .es-card.t-digital .es-card-inner:hover {
  box-shadow: 0 24px 60px rgba(244, 63, 94, 0.15);
  border-color: rgba(244, 63, 94, 0.45);
}

#es-services .es-card.t-aws .es-card-inner {
  border-color: rgba(37, 99, 235, 0.2);
}

#es-services .es-card.t-aws .es-card-inner:hover {
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.45);
}

#es-services .es-card.t-dashboard .es-card-inner {
  border-color: rgba(34, 197, 94, 0.2);
}

#es-services .es-card.t-dashboard .es-card-inner:hover {
  box-shadow: 0 24px 60px rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.45);
}

#es-services .es-card.t-digital .es-card-inner::after {
  background: linear-gradient(90deg, #ec4899, #f43f5e);
}

#es-services .es-card.t-aws .es-card-inner::after {
  background: linear-gradient(90deg, #2563eb, #06b6d4);
}

#es-services .es-card.t-dashboard .es-card-inner::after {
  background: linear-gradient(90deg, #16a34a, #22c55e);
}

#es-services .es-tab-section {
  background: #e9e9e9 !important;
}

/* --- Desktop Application (Purple/Indigo Theme) --- */
#es-services .es-card.t-desktop .es-icon {
  background: linear-gradient(135deg, #6366f1, #a855f7);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

#es-services .es-card.t-desktop .es-badge {
  background: rgba(99, 102, 241, 0.12);
  color: #818cf8;
  border-color: rgba(99, 102, 241, 0.25);
}

#es-services .es-card.t-desktop .es-feat i {
  color: #818cf8;
}

#es-services .es-card.t-desktop .es-cta {
  background: linear-gradient(135deg, #6366f1, #a855f7);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

#es-services .es-card.t-desktop .es-card-inner::before {
  background: linear-gradient(135deg, #6366f1, #a855f7);
}

#es-services .es-card.t-desktop .es-card-inner {
  border-color: rgba(99, 102, 241, 0.2);
}

#es-services .es-card.t-desktop .es-card-inner:hover {
  box-shadow: 0 24px 60px rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.45);
}

#es-services .es-card.t-desktop .es-card-inner::after {
  background: linear-gradient(90deg, #6366f1, #a855f7);
}

/* --- Graphics Design (Amber/Orange Theme) --- */
#es-services .es-card.t-graphics .es-icon {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

#es-services .es-card.t-graphics .es-badge {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
  border-color: rgba(245, 158, 11, 0.25);
}

#es-services .es-card.t-graphics .es-feat i {
  color: #fbbf24;
}

#es-services .es-card.t-graphics .es-cta {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

#es-services .es-card.t-graphics .es-card-inner::before {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

#es-services .es-card.t-graphics .es-card-inner {
  border-color: rgba(245, 158, 11, 0.2);
}

#es-services .es-card.t-graphics .es-card-inner:hover {
  box-shadow: 0 24px 60px rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.45);
}

#es-services .es-card.t-graphics .es-card-inner::after {
  background: linear-gradient(90deg, #f59e0b, #ef4444);
}

@media (min-width:300px) and (max-width: 421px) {
  #es-services .es-tab {
    gap: 5px;
    padding: 8px 6px;
  }
}

/* ============================================
   RECENT PROJECTS SECTION — #es-projects
   Paste this into your main CSS file
   ============================================ */

#es-projects {
  --ep-navy: #fff6f6;
  --ep-blue: #3b82f6;
  --ep-cyan: #06b6d4;
  --ep-gold: #f59e0b;
  --ep-green: #10b981;
  --ep-rose: #f43f5e;
  --ep-violet: #919191;
  --ep-muted: #787e87;
  --ep-border: rgba(0, 0, 0, 0.09);
  --ep-glass: #ffffff;

  position: relative;
  z-index: 1;
  background: var(--ep-navy);
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
}

/* subtle background orbs matching services section */
#es-projects::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 10%, rgba(139, 92, 246, 0.09) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 10% 90%, rgba(6, 182, 212, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Container ── */
#es-projects .ep-container {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Header ── */
#es-projects .ep-header {
  text-align: center;
  margin-bottom: 48px;
}

#es-projects .ep-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ep-violet);
  background: rgba(139, 92, 246, 0.10);
  border: 1px solid rgba(139, 92, 246, 0.25);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 22px;
}

#es-projects .ep-eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ep-violet);
  animation: ep-pulse 2s infinite;
}

@keyframes ep-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.6);
  }
}

#es-projects .ep-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #000 30%, var(--ep-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#es-projects .ep-header p {
  font-size: 1rem;
  color: var(--ep-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Filter Tabs ── */
#es-projects .ep-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

#es-projects .ep-filter {
  padding: 9px 22px;
  border-radius: 100px;
  border: 1px solid var(--ep-border);
  background: var(--ep-glass);
  color: var(--ep-muted);
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.28s ease;
  font-family: 'DM Sans', sans-serif;
}

#es-projects .ep-filter:hover {
  border-color: #911517;
  color: #3b3b3b;
  background: rgba(217, 98, 98, 0.08);
}

#es-projects .ep-filter.active {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.4);
  color: var(--ep-violet);
  font-weight: 600;
}

/* ── Grid ── */
#es-projects .ep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

/* ── Card show/hide + animation ── */
#es-projects .ep-card {
  display: none;
  opacity: 0;
  transform: translateY(22px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--ep-border);
  background: var(--ep-glass);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

#es-projects .ep-card.ep-show {
  display: flex;
  flex-direction: column;
}

#es-projects .ep-card.ep-animate {
  animation: ep-cardIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes ep-cardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#es-projects .ep-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

/* ── Thumbnail ── */
#es-projects .ep-thumb {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#es-projects .ep-thumb-bg {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  transition: opacity 0.3s ease;
}

#es-projects .ep-thumb-bg img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

#es-projects .ep-thumb-bg img:hover {
  transform: scale(1.04);
}

#es-projects .ep-card:hover .ep-thumb-bg {
  opacity: 1.28;
}

#es-projects .ep-thumb-icon {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

#es-projects .ep-card:hover .ep-thumb-icon {
  transform: scale(1.08);
}

/* Status badge */
#es-projects .ep-status {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid;
  z-index: 2;
}

#es-projects .ep-live {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.3);
}

#es-projects .ep-progress {
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
  border-color: rgba(245, 158, 11, 0.3);
}

/* ── Thumb colour themes ── */
#es-projects .ep-thumb-web {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

#es-projects .ep-thumb-web .ep-thumb-bg {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  opacity: 1;
}

#es-projects .ep-thumb-web .ep-thumb-icon {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}

#es-projects .ep-thumb-web2 {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}

#es-projects .ep-thumb-web2 .ep-thumb-bg {
  background: linear-gradient(135deg, #db2777, #ec4899);
  opacity: 1;
}

#es-projects .ep-thumb-web2 .ep-thumb-icon {
  background: linear-gradient(135deg, #db2777, #ec4899);
}

#es-projects .ep-thumb-design {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
}

#es-projects .ep-thumb-design .ep-thumb-bg {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  opacity: 1;
}

#es-projects .ep-thumb-design .ep-thumb-icon {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

#es-projects .ep-thumb-design2 {
  background: linear-gradient(135deg, #cffafe, #a5f3fc);
}

#es-projects .ep-thumb-design2 .ep-thumb-bg {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  opacity: 1;
}

#es-projects .ep-thumb-design2 .ep-thumb-icon {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
}

#es-projects .ep-thumb-app {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

#es-projects .ep-thumb-app .ep-thumb-bg {
  background: linear-gradient(135deg, #059669, #10b981);
  opacity: 1;
}

#es-projects .ep-thumb-app .ep-thumb-icon {
  background: linear-gradient(135deg, #059669, #10b981);
}

#es-projects .ep-thumb-cloud {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

#es-projects .ep-thumb-cloud .ep-thumb-bg {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  opacity: 1;
}


/* ── Card Body ── */
#es-projects .ep-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

#es-projects .ep-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

#es-projects .ep-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: 100px;
  border: 1px solid;
}

#es-projects .ep-tag-web {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
  border-color: rgba(245, 158, 11, 0.25);
}

#es-projects .ep-tag-design {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
  border-color: rgba(139, 92, 246, 0.25);
}

#es-projects .ep-tag-app {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border-color: rgba(16, 185, 129, 0.25);
}

#es-projects .ep-tag-cloud {
  background: rgba(59, 130, 246, 0.1);
  color: #1d4ed8;
  border-color: rgba(59, 130, 246, 0.25);
}

#es-projects .ep-date {
  font-size: 0.75rem;
  color: var(--ep-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}

#es-projects .ep-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
}

#es-projects .ep-about {
  font-size: 0.83rem;
  color: var(--ep-muted);
  line-height: 1.65;
}

/* ── Tech Stack ── */
#es-projects .ep-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 2px;
}

#es-projects .ep-stack span {
  font-size: 0.72rem;
  font-weight: 600;
  background: #f1f5f9;
  color: #475569;
  padding: 4px 11px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  letter-spacing: 0.3px;
}

/* ── Links ── */
#es-projects .ep-links {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 4px;
  flex-wrap: wrap;
}

#es-projects .ep-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 9px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  font-family: 'DM Sans', sans-serif;
}

#es-projects .ep-btn i {
  font-size: 0.72rem;
}

#es-projects .ep-btn-primary {
  background: #111;
  color: #fff;
}

#es-projects .ep-btn-primary:hover {
  background: #333;
  transform: translateY(-2px);
  color: #fff;
}

#es-projects .ep-btn-ghost {
  background: transparent;
  color: #333;
  border: 1px solid #e2e8f0;
}

#es-projects .ep-btn-ghost:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-2px);
  color: #333;
}

/* ── CTA Row ── */
#es-projects .ep-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 20px;
  text-align: center;
}

#es-projects .ep-cta-wrap p {
  font-size: 0.95rem;
  color: var(--ep-muted);
}

#es-projects .ep-main-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #e01e37, #9b0f1f);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  font-family: 'DM Sans', sans-serif;
}

#es-projects .ep-main-cta i {
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

#es-projects .ep-main-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(139, 92, 246, 0.35);
  opacity: 0.92;
  color: #fff;
}

#es-projects .ep-main-cta:hover i {
  transform: translateX(5px);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  #es-projects .ep-grid {
    grid-template-columns: 1fr;
  }


  #es-projects {
    padding: 0 10px 30px 10px;
  }
}

@media (max-width: 480px) {
  #es-projects .ep-filters {
    gap: 7px;
  }

  #es-projects .ep-filter {
    padding: 7px 16px;
    font-size: 0.78rem;
  }
}


/* ── Feature cards ── */
.fc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.fc:hover::after {
  transform: scaleX(1);
}

.fc-num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: rgba(0, 0, 0, .1);
  letter-spacing: .06em;
}

.fc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 16px;
  background: var(--ci);
  color: var(--c);
  transition: transform .3s ease;
}

.fc:hover .fc-icon {
  transform: scale(1.1) rotate(-4deg);
}

.fc-title {
  font-family: 'Syne', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 9px;
  line-height: 1.35;
}

.fc-desc {
  font-size: 12.5px;
  line-height: 1.72;
  color: var(--ink2);
  font-weight: 300;
}


/* ── New wrapper card ── */
.pursuit-container-spe {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

/* ── Row ── */
.spc-row-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

/* ── Image side ── */
.spc-row-flex-img {
  padding: 40px;
  display: flex;
  justify-content: center;
  position: relative;
}

/* glowing blob behind image */
.spc-img-blob {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.spc-row-flex-img img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  border-radius: 20px;
  filter: drop-shadow(0 12px 28px rgba(79, 110, 247, 0.18));
  transition: transform 0.4s ease;
}

.spc-row-flex-img img:hover {
  transform: translateY(-6px) scale(1.02);
}

/* ── Content side ── */
.col-lg-6.mt-2 {
  padding: 40px 40px 40px 20px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Each feature card ── */
.icon-spc {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f8f9ff;
  border: 1px solid #e8ecff;
  border-radius: 16px;
  padding: 10px 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}

.icon-spc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 110, 247, 0.06), rgba(155, 92, 246, 0.04));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.icon-spc:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 28px rgba(79, 110, 247, 0.14);
  border-color: #c2ccff;
}

.icon-spc:hover::before {
  opacity: 1;
}

/* icon bubble */
.icon-spc>i {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(135deg, #4f6ef7, #7b5cf6);
  box-shadow: 0 4px 14px rgba(79, 110, 247, 0.35);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.icon-spc:hover>i {
  transform: rotate(-8deg) scale(1.1);
}

/* individual accent colours */
.icon-spc:nth-child(1)>i {
  background: linear-gradient(135deg, #4f6ef7, #3b56e0);
}

.icon-spc:nth-child(2)>i {
  background: linear-gradient(135deg, #0ea5e9, #0369a1);
}

.icon-spc:nth-child(3)>i {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.icon-spc:nth-child(4)>i {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.icon-spc p {
  font-size: 0.93rem;
  line-height: 1.65;
  color: #3d4a6b;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .spc-row-flex {
    flex-direction: column;
  }

  .spc-row-flex-img {
    padding: 30px 20px 10px;
  }

  .col-lg-6.mt-2 {
    padding: 20px;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }
}

/* Career Section */


/* ── JOBS GRID ── */
.jobs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 auto;
}

.job-card {
  background: #FFFFFF;
  border: 1px solid #E8E4DF;
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.23, 1, .32, 1), box-shadow 0.35s, border-color 0.3s;
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #9B1C2E, #C0233E);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(.23, 1, .32, 1);
}

.job-card::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 28, 46, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.09), 0 0 0 1px rgba(155, 28, 46, 0.12);
  border-color: rgba(155, 28, 46, 0.18);
}

.job-card:hover::before {
  transform: scaleX(1);
}

.job-card:hover::after {
  opacity: 1;
}

.job-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #FDF0F2;
  border: 1px solid rgba(155, 28, 46, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.job-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #B8872A;
  background: #FBF6EC;
  border: 1px solid rgba(184, 135, 42, 0.2);
  padding: 4px 12px;
  border-radius: 40px;
  margin-bottom: 14px;
}

.job-role {
  font-family: 'Syne', sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: #1A1410;
  margin-bottom: 12px;
  line-height: 1.25;
}

.job-desc {
  font-size: 0.92rem;
  line-height: 1.72;
  color: #4A4440;
  margin-bottom: 18px;
}

.job-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.meta-pill {
  font-size: 11px;
  color: #9A948E;
  background: #F8F7F5;
  border: 1px solid #E8E4DF;
  padding: 5px 13px;
  border-radius: 40px;
}

.job-email {
  font-size: 0.82rem;
  color: #9A948E;
  margin-bottom: 26px;
}

.job-email a {
  color: #9B1C2E;
  font-weight: 500;
  text-decoration: none;
}

.job-email a:hover {
  text-decoration: underline;
}

.apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #9B1C2E;
  color: #fff;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 40px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(155, 28, 46, 0.25);
}

.apply-btn:hover {
  background: #C0233E;
  color: #fff;
  transform: translateX(3px);
  box-shadow: 0 6px 24px rgba(155, 28, 46, 0.38);
}

.apply-btn svg {
  transition: transform 0.2s;
}

.apply-btn:hover svg {
  transform: translateX(4px);
}

/* ── JOBS SECTION BACKGROUND ANIMATION ── */
.jobs-background {
  position: relative;
  background: #fff9f9;
  overflow: hidden;
}

/* Animated floating blobs */
.jobs-background::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 28, 46, 0.08) 0%, transparent 70%);
  animation: blobFloat1 10s ease-in-out infinite;
  pointer-events: none;
}

.jobs-background::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 135, 42, 0.07) 0%, transparent 70%);
  animation: blobFloat2 13s ease-in-out infinite;
  pointer-events: none;
}

/* Dot grid */
.jobs-background .container::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(155, 28, 46, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.jobs-background .container {
  position: relative;
  z-index: 1;
}

/* Floating animated ring — top right */
.jobs-background .jobs-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2.5px dashed rgb(155 28 46 / 40%);
  animation: spinRing 18s linear infinite;
  pointer-events: none;
}

/* Floating animated ring — bottom left */
.jobs-background .jobs-grid::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: -50px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 2.5px dashed rgba(184, 135, 42, 0.2);
  animation: spinRing 14s linear infinite reverse;
  pointer-events: none;
}

.jobs-background .jobs-grid {
  position: relative;
}

/* ── Keyframes ── */
@keyframes blobFloat1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(40px, 30px) scale(1.08);
  }

  66% {
    transform: translate(-20px, 50px) scale(0.95);
  }
}

@keyframes blobFloat2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  40% {
    transform: translate(-50px, -30px) scale(1.1);
  }

  70% {
    transform: translate(20px, -50px) scale(0.92);
  }
}

@keyframes spinRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ── CTA ── */
.cta-section {
  background: #FFFFFF;
  padding: 40px 0;
}

.cta-band {
  margin: 0 auto;
  background: linear-gradient(135deg, #9B1C2E 0%, #7A1222 100%);
  border-radius: 28px;
  padding: 60px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 38%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.cta-text {
  position: relative;
  z-index: 2;
}

.cta-text h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.97rem;
  line-height: 1.65;
}

.cta-action {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #9B1C2E;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 40px;
  transition: transform 0.25s, box-shadow 0.3s;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

/* ── ANIMATIONS ── */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.18s;
}

.delay-3 {
  transition-delay: 0.28s;
}

.delay-4 {
  transition-delay: 0.38s;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 0 28px;
    min-height: auto;
  }

  .hero-right {
    display: none;
  }

  .hero-left {
    padding: 72px 0 60px;
  }

  .section {
    padding: 72px 24px;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 60px 24px;
  }

  .cta-band {
    flex-direction: column;
    padding: 48px 36px;
    text-align: center;
  }
}

/* ===== OVERLAY ===== */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgb(255 255 255 / 5%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.popup.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== CARD ===== */
.popup-content {
  position: relative;
  background: #ffffffe8;
  border: 1px solid rgba(176, 125, 58, 0.2);
  border-radius: 20px;
  width: 450px;
  padding: 25px 30px 25px;
  text-align: center;
  box-shadow:
    0 4px 6px rgba(100, 70, 20, 0.12),
    0 20px 60px rgba(100, 70, 20, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

@media (max-width: 370px) {
  .popup-content {
    width: 300px !important;
  }

  .popup-content h3 {
    font-size: 24px !important;
  }
}

@media (max-width: 500px) {
  .popup-content {
    width: 360px;
    padding: 25px 12px 25px;
  }

  .close-btn {
    top: 10px !important;
    right: 10px !important;
  }
}

/* Warm top glow strip */
.popup-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #911517, transparent);
  opacity: 0.7;
}

/* Subtle background texture */
.popup-content::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(176, 125, 58, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(176, 125, 58, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.popup-content>* {
  position: relative;
  z-index: 1;
}

/* ===== CLOSE BUTTON ===== */
.close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #a0907a;
  font-size: 18px;
  font-family: 'DM Sans', sans-serif;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #faf8f5;
  transition: all 0.2s ease;
  float: none;
  z-index: 2;
  line-height: 1;
}

.close-btn:hover {
  color: #1a1208;
  background: #f5ead8;
  border-color: rgba(176, 125, 58, 0.2);
  transform: rotate(90deg);
}

/* ===== ICON ===== */
.popup-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #f5ead8, #fdf6ec);
  border: 1px solid rgba(176, 125, 58, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 2px 8px rgba(176, 125, 58, 0.15);
}

/* ===== HEADING ===== */
.popup-content h3 {
  font-size: 28px;
  font-weight: 600;
  color: #1a1208;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}

.popup-content p.subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #a0907a;
  margin: 0 0 5px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* ===== FORM ===== */
.popup-content form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field-wrap {
  position: relative;
  text-align: left;
}

.field-wrap label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #911517;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field-wrap input,
.field-wrap select {
  width: 100%;
  background: #faf8f5;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  padding: 7px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #a4947f !important;
  outline: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.field-wrap input::placeholder {
  color: #a0907a;
}

.field-wrap input:focus {
  border-color: #b07d3a;
  background: #fffdf9;
  box-shadow: 0 0 0 3px rgba(176, 125, 58, 0.15);
}

/* ===== DIVIDER ===== */
.popup-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 2px 0;
}

.popup-divider span {
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.popup-divider em {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #a0907a;
  font-style: normal;
  letter-spacing: 0.05em;
}

/* ===== BUTTON ===== */
.popup-content button[type="submit"] {
  margin-top: 6px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #8f5f1f, #911517);
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(176, 125, 58, 0.35);
}

.popup-content button[type="submit"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12), transparent);
  pointer-events: none;
}

.popup-content button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(176, 125, 58, 0.45);
}

.popup-content button[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(176, 125, 58, 0.3);
}

/* ══════════════════════════════════════
       SECTION — all scoped under .affiliated
    ══════════════════════════════════════ */

.affiliated.featured-instructors {
  position: relative;
  background: #f4f6fb;
  padding: 56px 0 52px;
  overflow: hidden;
}

/* Decorative gradient orbs */
.affiliated.featured-instructors::before,
.affiliated.featured-instructors::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(72px);
  opacity: 0.45;
}

.affiliated.featured-instructors::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #c7d2fe 0%, transparent 70%);
  top: -120px;
  left: -80px;
}

.affiliated.featured-instructors::after {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #bfdbfe 0%, transparent 70%);
  bottom: -100px;
  right: 10%;
}

/* ── Layout: text LEFT | scroll RIGHT ── */
.affiliated .affiliated-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

/* ── LEFT block ── */
.affiliated .affiliated-one {
  flex: 0 0 225px;
}

.affiliated .affiliated-one .badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #c4162a;
  border-radius: 999px;
  padding: 6px 16px 6px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.12);
}

.affiliated .affiliated-one .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c4162a, #911517);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
  animation: affiliated-pulse 2s ease-in-out infinite;
}

@keyframes affiliated-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.08);
  }
}

.affiliated .affiliated-one h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.18;
  letter-spacing: -0.5px;
}

.affiliated .affiliated-one h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #c4162a, #911517);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.affiliated .affiliated-one .subtitle {
  margin-top: 10px;
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  font-weight: 400;
}
@media (min-width: 350px) and (max-width: 576px) {
  .affiliated .affiliated-one h2{
    font-size: 22px;
  }
  .affiliated .affiliated-one .badge{
    font-size: 7px;
    padding: 6px 6px 6px 10px;
    margin-bottom:0;
  }
  .affiliated .affiliated-one{
    flex: 0 0 140px;
  }
  .affiliated .affiliated-divider{
    margin-right: 5px !important;
  }
  .affiliated .logo-card{
    width: 90px !important;
    height: 70px !important;
  }
  .affiliated .scroll-track{
    gap: 8px !important;
  }
}
@media (min-width: 576px) and (max-width: 698px) {
  .affiliated .affiliated-one h2{
    font-size: 26px;
  }
  .affiliated .affiliated-one .badge{
    font-size: 10px;
    margin-bottom: 5px;
  }
  .affiliated .affiliated-one{
    flex: 0 0 200px;
  }
  .affiliated .affiliated-divider{
    margin-right: 10px !important;
  }
  .affiliated .logo-card{
    width: 120px !important;
    height: 80px !important;
  }
  .affiliated .scroll-track{
    gap: 8px !important;
  }
}
@media (min-width: 698px) and (max-width: 920px) {
  .affiliated .logo-card{
    width: 200px !important;
  }

}

/* Vertical divider */
.affiliated .affiliated-divider {
  flex: 0 0 1px;
  height: 72px;
  background: linear-gradient(to bottom, transparent, rgba(99, 102, 241, 0.25), transparent);
  margin-right: 36px;
}

/* ── RIGHT: scroll viewport ── */
.affiliated .affiliated-two {
  overflow: hidden;
  border-radius: 70px;
}

.affiliated .scroll-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: affiliated-marquee 28s linear infinite;
}

@keyframes affiliated-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── Cards ── */
.affiliated .logo-card {
  flex-shrink: 0;
  width: 300px;
  height: 130px;
  background: #ffffff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border: 1px solid rgba(99, 102, 241, 0.13);
  box-shadow:
    0 1px 3px rgba(15, 23, 42, 0.06),
    0 4px 16px rgba(99, 102, 241, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Shimmer on card */
.affiliated .logo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0) 60%);
  background-size: 200% 200%;
  animation: affiliated-shimmer 4s ease-in-out infinite;
  border-radius: inherit;
  pointer-events: none;
}

@keyframes affiliated-shimmer {
  0% {
    background-position: 200% 0%;
  }

  100% {
    background-position: -200% 0%;
  }
}

.affiliated .logo-card img {
  max-width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}


/* Modal Overlay */
#jobModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease;
}

#jobModal.active {
  display: flex;
}

/* Modal Box */
#jobModal .modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px 36px 32px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  position: relative;
  animation: slideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Icon Circle */
#jobModal .modal-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
}

#jobModal .modal-box h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 10px;
}

#jobModal .modal-box p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0 0 28px;
}

#jobModal .modal-box p a {
  color: #e63946;
  font-weight: 600;
  text-decoration: none;
}

#jobModal .modal-box p a:hover {
  text-decoration: underline;
}

/* Status Badge */
#jobModal .modal-badge {
  display: inline-block;
  background: #fff0f0;
  color: #e63946;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid #ffd0d3;
  margin-bottom: 18px;
}

/* Close Button */
#jobModal .modal-close-btn {
  background: linear-gradient(135deg, #e01e37, #9b0f1f);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  width: 100%;
}

#jobModal .modal-close-btn:hover {
  background: #e63946;
  transform: translateY(-1px);
}

/* X icon top-right */
#jobModal .modal-x {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}

#jobModal .modal-x:hover {
  color: #333;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* === FC SECTION BACKGROUND ANIMATION === */

/* 1. Section wrapper — position context */
#featured-courses,
.course-events-bg,
.featured-instructors-bg,
.testimonials-bg {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f8f9ff 0%, #f1f4ff 40%, #f5f8ff 70%, #eef3ff 100%);
}

/* 2. Animated blurred orbs */
.fc-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.fc-bg-orb-1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #7c8fff, #a3b5ff);
  top: -80px;
  left: -60px;
  animation: fcFloat1 12s ease-in-out infinite;
}

.fc-bg-orb-2 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, #5dc9e6, #7ee0f5);
  bottom: -60px;
  right: -40px;
  animation: fcFloat2 15s ease-in-out infinite 2s;
}

.fc-bg-orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #a78bfa, #c4b5fd);
  top: 40%;
  left: 55%;
  animation: fcFloat3 10s ease-in-out infinite 1s;
}

.fc-bg-orb-4 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, #34d399, #6ee7b7);
  top: 20%;
  right: 12%;
  animation: fcFloat1 18s ease-in-out infinite 4s;
}

/* 3. Subtle grid overlay */
.fc-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(100, 120, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 120, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* 4. Pulse rings */
.fc-pulse-anchor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.fc-pulse-ring {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(120, 140, 255, 0.4);
  position: absolute;
  transform-origin: center;
  animation: fcPulse 3s ease-out infinite;
}

.fc-pulse-dot {
  width: 6px;
  height: 6px;
  background: rgba(120, 140, 255, 0.5);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
}

/* 5. Floating particles (generated via JS) */
.fc-bg-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(100, 120, 255, 0.35);
  pointer-events: none;
  z-index: 0;
  animation: fcDrift linear infinite;
  opacity: 0;
}

/* 6. Cards — glass effect */
.card-choice .course-card {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(180, 190, 255, 0.35) !important;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fcCardBreathe 5s ease-in-out infinite;
}

.card-choice:nth-child(2) .course-card {
  animation-delay: 0.7s;
}

.card-choice:nth-child(3) .course-card {
  animation-delay: 1.4s;
}

.card-choice:nth-child(4) .course-card {
  animation-delay: 2.1s;
}

.card-choice:nth-child(5) .course-card {
  animation-delay: 0.4s;
}

.card-choice:nth-child(6) .course-card {
  animation-delay: 1.1s;
}

.card-choice:nth-child(7) .course-card {
  animation-delay: 1.8s;
}

.card-choice:nth-child(8) .course-card {
  animation-delay: 2.5s;
}

.card-choice .course-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(86, 99, 247, 0.18);
  border-color: rgba(86, 99, 247, 0.35) !important;
}

/* 7. Section title shimmer */
.featured-courses .sec-title span.fc-highlight {
  background: linear-gradient(90deg, #5663f7 0%, #38baf5 50%, #7c3aed 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fcShimmer 4s linear infinite;
}

/* === KEYFRAMES === */
@keyframes fcFloat1 {

  0%,
  100% {
    transform: translateY(0) translateX(0)
  }

  33% {
    transform: translateY(-18px) translateX(8px)
  }

  66% {
    transform: translateY(8px) translateX(-12px)
  }
}

@keyframes fcFloat2 {

  0%,
  100% {
    transform: translateY(0) translateX(0)
  }

  33% {
    transform: translateY(14px) translateX(-10px)
  }

  66% {
    transform: translateY(-10px) translateX(14px)
  }
}

@keyframes fcFloat3 {

  0%,
  100% {
    transform: translateY(0) translateX(0)
  }

  50% {
    transform: translateY(-22px) translateX(6px)
  }
}

@keyframes fcPulse {
  0% {
    transform: scale(1);
    opacity: 0.18
  }

  70% {
    transform: scale(2.4);
    opacity: 0
  }

  100% {
    transform: scale(2.4);
    opacity: 0
  }
}

@keyframes fcDrift {
  0% {
    opacity: 0;
    transform: translateY(0)
  }

  20% {
    opacity: 0.6
  }

  80% {
    opacity: 0.6
  }

  100% {
    opacity: 0;
    transform: translateY(-60px)
  }
}

@keyframes fcShimmer {
  0% {
    background-position: 200% center
  }

  100% {
    background-position: -200% center
  }
}

@keyframes fcCardBreathe {

  0%,
  100% {
    box-shadow: 0 2px 20px rgba(99, 131, 255, 0.06)
  }

  50% {
    box-shadow: 0 4px 32px rgba(99, 131, 255, 0.14)
  }
}

#typing-text {
  color: #911517;
}

.typed-cursor {
  color: #911517 !important;
}

/* ══════════════════════════════════════════
       PARENT SECTION
       id="aw-gallery-section"  class="aw-gallery-section"
    ══════════════════════════════════════════ */
#aw-gallery-section.aw-gallery-section {
  overflow: hidden;
  background: #F4F6F9;
}

/* ── SECTION HEADER ── */
#aw-gallery-section.aw-gallery-section .aw-sec-header {
  text-align: center;
  margin-bottom: 48px;
}

#aw-gallery-section.aw-gallery-section .aw-sec-header .aw-sec-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #E85D00;
  text-transform: uppercase;
  margin-bottom: 12px;
}

#aw-gallery-section.aw-gallery-section .aw-sec-header h2 {
  font-size: clamp(28px, 4vw, 46px);
  color: #1A1A2E;
  font-weight: 700;
}

#aw-gallery-section.aw-gallery-section .aw-sec-header h2 span {
  color: #E85D00;
}

/* ══════════════════════════════════════════
       SLIDER WRAPPER
    ══════════════════════════════════════════ */
#aw-gallery-section.aw-gallery-section .aw-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
}

/* ── PROGRESS BAR ── */
#aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background:linear-gradient(90deg, #e80000c2, #ff0000);
  border-radius: 0 2px 2px 0;
  transition: width 0.4s ease;
  z-index: 5;
}

/* ── TRACK ── */
#aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

/* ══════════════════════════════════════════
       INDIVIDUAL SLIDE
    ══════════════════════════════════════════ */
#aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track .aw-slide {
  min-width: 100%;
  display: flex;
  align-items: stretch;
  gap: 0;
}

/* ── IMAGE PANEL ── */
#aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track .aw-slide .aw-img-panel {
  width: 45%;
  position: relative;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
  flex-shrink: 0;
}

#aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track .aw-slide .aw-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

#aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track .aw-slide.aw-active .aw-img-panel img {
  transform: scale(1.04);
}

/* image overlay — lighter warm tint */
#aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track .aw-slide .aw-img-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(232, 93, 0, 0.12) 0%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}

/* slide number badge */
#aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track .aw-slide .aw-img-panel .aw-img-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #e80000;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 30px;
  z-index: 2;
  text-transform: uppercase;
}

/* ── CONTENT PANEL ── */
#aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track .aw-slide .aw-content-panel {
  width: 55%;
  background: linear-gradient(145deg, #FFFFFF 0%, #FFF8F4 100%);
  border-radius: 0 20px 20px 0;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(232, 93, 0, 0.12);
  border-left: none;
  position: relative;
  overflow: hidden;
}

/* decorative corner glow */
#aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track .aw-slide .aw-content-panel::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 93, 0, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

/* bottom-left decorative dot */
#aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track .aw-slide .aw-content-panel::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* content tag */
#aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track .aw-slide .aw-content-panel .aw-content-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #E85D00;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* divider */
#aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track .aw-slide .aw-content-panel .aw-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #E85D00, #FFB800);
  border-radius: 2px;
  margin-bottom: 22px;
}

/* slide heading */
#aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track .aw-slide .aw-content-panel .aw-slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  color: #1A1A2E;
  line-height: 1.2;
  margin-bottom: 18px;
}

#aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track .aw-slide .aw-content-panel .aw-slide-title span {
  color: #E85D00;
}

/* description */
#aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track .aw-slide .aw-content-panel .aw-slide-desc {
  font-size: 14px;
  color: #5A5A72;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ── STATS ── */
#aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track .aw-slide .aw-content-panel .aw-stats-row {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
}

#aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track .aw-slide .aw-content-panel .aw-stats-row .aw-stat-item {
  display: flex;
  flex-direction: column;
}

#aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track .aw-slide .aw-content-panel .aw-stats-row .aw-stat-item .aw-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: #D4920A;
  line-height: 1;
}

#aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track .aw-slide .aw-content-panel .aw-stats-row .aw-stat-item .aw-stat-lbl {
  font-size: 11px;
  color: #9A9AB0;
  margin-top: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── CHIPS ── */
#aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track .aw-slide .aw-content-panel .aw-chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track .aw-slide .aw-content-panel .aw-chip-row .aw-chip {
  background: rgba(232, 93, 0, 0.08);
  border: 1px solid rgba(232, 93, 0, 0.22);
  color: #C44F00;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
}

#aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track .aw-slide .aw-content-panel .aw-chip-row .aw-chip svg {
  width: 14px;
  height: 14px;
  fill: #D4920A;
}

/* ══════════════════════════════════════════
       NAVIGATION
    ══════════════════════════════════════════ */
#aw-gallery-section.aw-gallery-section .aw-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 18px;
}

#aw-gallery-section.aw-gallery-section .aw-slider-nav .aw-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #d4d4d4;
  background: #FFFFFF;
  color: #666666;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  font-size: 20px;
  box-shadow: 0 2px 10px rgba(232, 93, 0, 0.10);
}

#aw-gallery-section.aw-gallery-section .aw-slider-nav .aw-nav-btn:hover {
  background: #911517;
  color: #FFFFFF;
  border-color: #d4d4d4;
  box-shadow: 0 4px 20px rgba(232, 93, 0, 0.30);
  transform: scale(1.08);
}

/* dots */
#aw-gallery-section.aw-gallery-section .aw-slider-nav .aw-dots-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}

#aw-gallery-section.aw-gallery-section .aw-slider-nav .aw-dots-wrap .aw-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CDD0DA;
  cursor: pointer;
  transition: all 0.35s ease;
}

#aw-gallery-section.aw-gallery-section .aw-slider-nav .aw-dots-wrap .aw-dot.aw-dot-active {
  width: 28px;
  border-radius: 4px;
  background: #9b0f1f;
}

/* ══════════════════════════════════════════
       RESPONSIVE  ≤ 768px
    ══════════════════════════════════════════ */
@media (max-width: 768px) {
  #aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track .aw-slide {
    flex-direction: column;
  }

  #aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track .aw-slide .aw-img-panel {
    width: 100%;
    height: 350px;
    border-radius: 20px 20px 0 0;
  }

  #aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track .aw-slide .aw-content-panel {
    width: 100%;
    border-radius: 0 0 20px 20px;
    border-left: 1px solid rgba(232, 93, 0, 0.12);
    border-top: none;
    padding: 32px 24px;
  }

  #aw-gallery-section.aw-gallery-section .aw-slider-wrapper .aw-slider-track .aw-slide .aw-content-panel .aw-stats-row {
    gap: 16px;
  }
}

.aw-img-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.success-wrapper {
    font-family: sans-serif;
    background: #f4f6f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }
 
  @keyframes scaleIn {
    from { transform: scale(0.5); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
  }
  @keyframes fadeUp {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
  }
  @keyframes ripple {
    0%   { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0;   }
  }
  @keyframes checkDraw {
    from { stroke-dashoffset: 60; }
    to   { stroke-dashoffset: 0;  }
  }
 
  .success-card {
    max-width: 420px;
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 3rem 2rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
 
  .top-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a8a42, #34d07a);
    border-radius: 16px 16px 0 0;
  }
 
  .icon-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
  }
 
  .ripple-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #1a8a42;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  .ripple-ring:nth-child(1) { animation: ripple 2.4s ease-out 0.2s infinite; }
  .ripple-ring:nth-child(2) { animation: ripple 2.4s ease-out 0.7s infinite; }
  .ripple-ring:nth-child(3) { animation: ripple 2.4s ease-out 1.2s infinite; }
 
  .check-path {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: checkDraw 0.5s ease-out 0.5s forwards;
  }
 
  .title-anim { animation: fadeUp 0.5s ease-out 0.7s  both; }
  .sub-anim   { animation: fadeUp 0.5s ease-out 0.85s both; }
  .pill-anim  { animation: fadeUp 0.5s ease-out 1s    both; }
  .btn-anim   { animation: fadeUp 0.5s ease-out 1.1s  both; }

 
  .pills {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
 
  .pill {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
  }
 
  .pill-green {
    background: #eaf3de;
    border: 1px solid #9FE1CB;
    color: #3B6D11;
  }
 
  .pill-blue {
    background: #E6F1FB;
    border: 1px solid #B5D4F4;
    color: #185FA5;
  }
 
  .actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }
 
  .btn-ghost {
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #374151;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.15s;
  }
  .btn-ghost:hover { background: #f9fafb; }
 
  .btn-primary {
    padding: 10px 22px;
    border-radius: 8px;
    border: none;
    background: #1a8a42;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
  }
  .btn-primary:hover { background: #157a39; }