/**
* Template Name: Mentor
* Template URL: https://bootstrapmade.com/mentor-free-education-bootstrap-theme/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

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

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

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

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

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

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

/* Image Performance Optimizations */
img {
  /* Prevent layout shifts by reserving space */
  max-width: 100%;
  height: auto;
  /* Optimize rendering performance */
  content-visibility: auto;
  /* Smooth fade-in effect when images load */
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

/* Lazy loaded images - Initially almost invisible, fade in on load */
img[loading="lazy"] {
  background-color: #f0f0f0;
}

/* Support for browsers with native lazy loading */
img:not([src]) {
  visibility: hidden;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
html {
  overflow-x: hidden;
  overflow-y: auto !important;
  /* Use auto instead of scroll to prevent permanent scrollbar */
  height: auto;
  min-height: 100%;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  overflow: visible !important;
  overflow-x: hidden !important;
  overflow-y: visible !important;
  /* Prevent body from creating its own scrollbar */
  height: auto !important;
  width: 100%;
  position: relative;
  min-height: 100vh;
}

/* Fix double scrollbar - ensure no inner containers scroll */
main,
.main,
#main,
.container,
.container-fluid,
section,
.hero,
.page-title {
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  max-height: none !important;
  height: auto !important;
}

/* Completely Remove Scroll Top Button */
.scroll-top,
#scroll-top {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

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

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

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

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

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

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

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

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

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

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  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: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-weight: 700;
  font-size: 30px;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

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

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

  .navmenu li {
    position: relative;
  }

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

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

  .navmenu li:last-child a {
    padding-right: 0;
  }

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

  .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 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;
  }
}

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

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

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

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

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

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

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

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

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

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

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

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

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

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  margin-bottom: 0;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  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: 30px;
}

.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: 10px 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 30%);
  display: inline-block;
  line-height: 1;
}

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

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding-top: 25px;
  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;
  background: var(--background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.15s ease-out, visibility 0.15s ease-out;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.preloader-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  animation: pulse-logo 2s infinite ease-in-out;
}

.preloader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-top: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 10px;
  /* Adjust based on logo size to center the spinner around it or below it */
  width: 100px;
  /* Enclose the logo */
  height: 100px;
  top: -10px;
}

.preloader-motto {
  margin-top: 30px;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(10px);
  animation: fade-up-motto 0.8s ease-out forwards 0.5s;
  background: linear-gradient(to right, var(--accent-color), #2eca6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes pulse-logo {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }

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

@keyframes fade-up-motto {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

/*--------------------------------------------------------------
# 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 {
  --default-color: var(--contrast-color);
  --background-color: var(--accent-color);
  --heading-color: var(--contrast-color);
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--accent-color) 90%, black 5%);
  padding: 20px 0;
}

.page-title nav a {
  color: var(--default-color);
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

.page-title nav 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: 60px 0;
  scroll-margin-top: 900px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: var(--nav-font);
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  transition: 0.4s;
  margin-top: 30px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

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

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 24px 12px 24px;
  border-radius: 50px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

/*--------------------------------------------------------------
# Counts Section
--------------------------------------------------------------*/
.counts {
  padding: 25px 0;
}

.counts .stats-item {
  padding: 30px;
  width: 100%;
}

.counts .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--accent-color);
  font-weight: 700;
}

.counts .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
}

.why-us .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 8px 40px 10px 40px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}

.why-us .icon-box {
  background-color: var(--surface-color);
  text-align: center;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .icon-box i {
  color: var(--accent-color);
  font-size: 32px;
  margin-bottom: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: 0.3s;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.why-us .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .icon-box:hover i {
  color: var(--contrast-color);
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding: 10px 0;
}

.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Courses Section
--------------------------------------------------------------*/
.courses .course-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 5px;
}

.courses .course-content {
  padding: 15px;
}

.courses .course-content h3 {
  font-weight: 700;
  font-size: 20px;
}

.courses .course-content h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.courses .course-content h3 a:hover {
  color: var(--accent-color);
}

.courses .course-content .category {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0;
  border-radius: 5px;
}

.courses .course-content .price {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .course-content .description {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .trainer {
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.courses .trainer .trainer-profile img {
  max-width: 50px;
  border-radius: 50px;
}

.courses .trainer .trainer-profile .trainer-link {
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.courses .trainer .trainer-profile .trainer-link:hover {
  color: var(--accent-color);
}

.courses .trainer .trainer-rank {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.courses .trainer .trainer-rank .user-icon {
  font-size: 22px;
}

/*--------------------------------------------------------------
# Trainers Index Section
--------------------------------------------------------------*/
.trainers-index .member {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  margin-bottom: 20px;
}

.trainers-index .member img {
  margin: -1px -1px 30px -1px;
}

.trainers-index .member .member-content {
  padding: 0 20px 30px 20px;
}

.trainers-index .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.trainers-index .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.trainers-index .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.trainers-index .member .social {
  margin-top: 15px;
}

.trainers-index .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
}

.trainers-index .member .social a:hover {
  color: var(--accent-color);
}

.trainers-index .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about-us .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about-us .content ul {
  list-style: none;
  padding: 0;
}

.about-us .content ul li {
  padding-bottom: 10px;
}

.about-us .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about-us .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  position: relative;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  position: absolute;
  left: -45px;
}

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

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

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

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

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

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

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

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

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

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

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

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

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

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

/*--------------------------------------------------------------
# Courses Course Details Section
--------------------------------------------------------------*/
.courses-course-details {
  padding-bottom: 20px;
}

.courses-course-details h3 {
  font-size: 24px;
  margin: 30px 0 15px 0;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.courses-course-details h3:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  bottom: 0;
  left: 0;
}

.courses-course-details h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 1px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.courses-course-details .course-info {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 10px 15px;
  margin-bottom: 15px;
}

.courses-course-details .course-info h5 {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  font-family: var(--nav-font);
}

.courses-course-details .course-info p {
  margin: 0;
  font-weight: 600;
}

.courses-course-details .course-info a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs {
  padding-top: 30;
}

.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  background-color: var(--background-color);
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.tabs .nav-link:hover {
  color: var(--accent-color);
}

.tabs .nav-link.active {
  background-color: var(--surface-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.tabs .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.tabs .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tabs .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

@media (max-width: 992px) {
  .tabs .nav-link {
    border: 0;
    padding: 15px;
  }

  .tabs .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Trainers Section
--------------------------------------------------------------*/
.trainers .member {
  position: relative;
}

.trainers .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .trainers .member .member-img {
    margin: 0 60px;
  }
}

.trainers .member .member-img img {
  position: relative;
  z-index: 1;
}

.trainers .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.trainers .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.trainers .member .member-img .social a:hover {
  color: var(--accent-color);
}

.trainers .member .member-info {
  margin-top: 30px;
}

.trainers .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.trainers .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.trainers .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.trainers .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .card {
  background-color: var(--background-color);
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
}

.events .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.events .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.events .card-body {
  z-index: 10;
  background: var(--surface-color);
  border-top: 4px solid var(--surface-color);
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.events .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.events .card-title a {
  color: var(--default-color);
  transition: 0.3s;
}

.events .card-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.events .card:hover img {
  transform: scale(1.1);
}

.events .card:hover .card-body {
  border-color: var(--accent-color);
}

.events .card:hover .card-body .card-title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Enhanced Professional Styles - Meftihe Tutors
--------------------------------------------------------------*/

/* Section Tag */
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(95, 207, 128, 0.15), rgba(95, 207, 128, 0.05));
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  border: 1px solid rgba(95, 207, 128, 0.3);
}

/* Enhanced Hero Section */
.hero .hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero .hero-badge .badge-icon {
  font-size: 18px;
  margin-right: 8px;
}

.hero .hero-badge span {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

.hero .hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero .btn-learn-online {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-learn-online:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.hero .hero-trust-badges {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.hero .trust-item i {
  color: var(--accent-color);
  font-size: 18px;
}

/* Highlighted Nav Link */
.navmenu .nav-highlight {
  background: linear-gradient(135deg, var(--accent-color), #4db870);
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 50px;
  margin-left: 10px;
}

.navmenu .nav-highlight:hover {
  background: linear-gradient(135deg, #4db870, var(--accent-color));
}

/* Announcement Banner */
.announcement-banner {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  padding: 15px 0;
  position: relative;
  overflow: hidden;
}

.announcement-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(50%);
  }
}

.announcement-banner .banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.announcement-banner .banner-icon {
  background: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

.announcement-banner .banner-icon i {
  color: #fff;
  font-size: 18px;
}

@keyframes pulse {

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

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

.announcement-banner .banner-text {
  color: #fff;
  font-size: 15px;
}

.announcement-banner .banner-button {
  background: var(--accent-color);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.announcement-banner .banner-button:hover {
  background: #4db870;
  transform: translateX(5px);
}

/* About Image Enhancement */
.about-image {
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Online Learning Promo Section */
.online-promo {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fffe 0%, #f0fbf4 100%);
  position: relative;
  overflow: hidden;
}

.online-promo::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(95, 207, 128, 0.1), transparent 70%);
  border-radius: 50%;
}

.online-promo .promo-visual {
  position: relative;
  padding: 40px;
}

.online-promo .visual-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color), #4db870);
  border-radius: 30px;
  transform: rotate(-5deg);
  opacity: 0.1;
}

.online-promo .device-mockup {
  background: #1a1a2e;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.online-promo .screen {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.online-promo .screen-header {
  background: #f5f5f5;
  padding: 12px 15px;
  display: flex;
  gap: 8px;
}

.online-promo .screen-header .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.online-promo .screen-header .dot.red {
  background: #ff5f57;
}

.online-promo .screen-header .dot.yellow {
  background: #ffbd2e;
}

.online-promo .screen-header .dot.green {
  background: #28ca41;
}

.online-promo .screen-content {
  padding: 30px;
}

.online-promo .lesson-preview {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa, #fff);
  border-radius: 15px;
  border: 1px solid #eee;
}

.online-promo .lesson-preview i {
  font-size: 50px;
  color: var(--accent-color);
}

.online-promo .lesson-info h5 {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
}

.online-promo .progress-bar {
  width: 200px;
  height: 8px;
  background: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 5px;
}

.online-promo .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), #4db870);
  border-radius: 10px;
}

.online-promo .lesson-info span {
  font-size: 12px;
  color: #888;
}

.online-promo .floating-stat {
  position: absolute;
  background: #fff;
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.online-promo .floating-stat i {
  font-size: 24px;
  color: var(--accent-color);
}

.online-promo .floating-stat .number {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

.online-promo .floating-stat .label {
  display: block;
  font-size: 12px;
  color: #888;
}

.online-promo .stat-1 {
  bottom: 60px;
  left: 0;
  animation: float 3s ease-in-out infinite;
}

.online-promo .stat-2 {
  top: 60px;
  right: 0;
  animation: float 3s ease-in-out infinite 0.5s;
}

@keyframes float {

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

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

.online-promo .promo-content {
  padding-left: 40px;
}

.online-promo .promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(95, 207, 128, 0.15), rgba(95, 207, 128, 0.05));
  color: var(--accent-color);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.online-promo h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.online-promo p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.online-promo .promo-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.online-promo .promo-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
}

.online-promo .promo-features i {
  color: var(--accent-color);
  font-size: 18px;
}

.online-promo .promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-color), #4db870);
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(95, 207, 128, 0.3);
}

.online-promo .promo-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(95, 207, 128, 0.4);
}

/* Testimonials Cards */
.testimonials .testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.testimonials .testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.12);
}

.testimonials .testimonial-card.featured {
  background: linear-gradient(135deg, var(--accent-color), #4db870);
  color: #fff;
}

.testimonials .testimonial-card.featured .quote-icon i,
.testimonials .testimonial-card.featured h5,
.testimonials .testimonial-card.featured p,
.testimonials .testimonial-card.featured span {
  color: #fff;
}

.testimonials .quote-icon i {
  font-size: 40px;
  color: var(--accent-color);
  opacity: 0.5;
}

.testimonials .testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  margin: 20px 0;
  font-style: italic;
}

.testimonials .testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.testimonials .author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), #4db870);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.testimonials .testimonial-card.featured .author-avatar {
  background: rgba(255, 255, 255, 0.2);
}

.testimonials .author-info h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.testimonials .author-info span {
  font-size: 13px;
  color: #888;
}

.testimonials .testimonial-rating i {
  color: #ffc107;
  font-size: 14px;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section .cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.cta-section .cta-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(95, 207, 128, 0.1), transparent 50%);
  animation: pulse-bg 8s ease-in-out infinite;
}

@keyframes pulse-bg {

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

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.cta-section h2 {
  position: relative;
  z-index: 2;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.cta-section p {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 35px;
}

.cta-section .cta-buttons {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-cta-primary {
  background: linear-gradient(135deg, var(--accent-color), #4db870);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(95, 207, 128, 0.3);
}

.cta-section .btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(95, 207, 128, 0.4);
}

.cta-section .btn-cta-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 14px 38px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.cta-section .btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/*--------------------------------------------------------------
# Online Learning Platform Page Styles
--------------------------------------------------------------*/

/* Learning Hero */
.learning-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
}

.learning-hero .learning-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #16213e 100%);
}

.learning-hero .learning-hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 30%, rgba(95, 207, 128, 0.2), transparent 60%);
}

.learning-hero .container {
  position: relative;
  z-index: 2;
}

.learning-hero .badge-tag {
  display: inline-block;
  background: rgba(95, 207, 128, 0.2);
  color: var(--accent-color);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid rgba(95, 207, 128, 0.3);
}

.learning-hero h1 {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 25px;
}

.learning-hero .lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 540px;
}

.learning-hero .hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.learning-hero .btn-primary-hero {
  background: linear-gradient(135deg, var(--accent-color), #4db870);
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(95, 207, 128, 0.3);
}

.learning-hero .btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(95, 207, 128, 0.4);
}

.learning-hero .btn-secondary-hero {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 13px 33px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.learning-hero .btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.learning-hero .hero-stats {
  display: flex;
  gap: 40px;
}

.learning-hero .stat-item {
  text-align: left;
}

.learning-hero .stat-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}

.learning-hero .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.learning-hero .hero-illustration {
  position: relative;
  height: 450px;
}

.learning-hero .main-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--accent-color), #4db870);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.learning-hero .main-visual i {
  font-size: 80px;
  color: #fff;
}

.learning-hero .pulse-ring {
  position: absolute;
  inset: -20px;
  border: 3px solid rgba(95, 207, 128, 0.3);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.learning-hero .floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  animation: float 4s ease-in-out infinite;
}

.learning-hero .floating-card i {
  font-size: 24px;
  color: var(--accent-color);
}

.learning-hero .floating-card span {
  font-size: 14px;
  font-weight: 500;
}

.learning-hero .card-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.learning-hero .card-2 {
  top: 60%;
  left: 5%;
  animation-delay: 1s;
}

.learning-hero .card-3 {
  top: 30%;
  right: 5%;
  animation-delay: 2s;
}

/* How It Works Section */
.how-it-works .step-box {
  text-align: center;
  padding: 40px 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.how-it-works .step-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.12);
}

.how-it-works .step-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 60px;
  font-weight: 800;
  color: rgba(95, 207, 128, 0.1);
  line-height: 1;
}

.how-it-works .step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(95, 207, 128, 0.15), rgba(95, 207, 128, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.how-it-works .step-icon i {
  font-size: 32px;
  color: var(--accent-color);
}

.how-it-works .step-box h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.how-it-works .step-box p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* Courses Catalog */
.courses-catalog .course-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.courses-catalog .course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.12);
}

.courses-catalog .course-card.featured {
  background: linear-gradient(135deg, #fff 0%, #f0fbf4 100%);
  border: 2px solid var(--accent-color);
}

.courses-catalog .course-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.courses-catalog .course-badge.premium {
  background: linear-gradient(135deg, #f39c12, #e74c3c);
}

.courses-catalog .course-badge.coming-soon {
  background: #6c757d;
}

.courses-catalog .course-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.courses-catalog .course-icon i {
  font-size: 30px;
  color: #fff;
}

.courses-catalog .gradient-1 {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.courses-catalog .gradient-2 {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.courses-catalog .gradient-3 {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.courses-catalog .gradient-4 {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.courses-catalog .gradient-5 {
  background: linear-gradient(135deg, #fa709a, #fee140);
}

.courses-catalog .gradient-6 {
  background: linear-gradient(135deg, #a8edea, #fed6e3);
}

.courses-catalog .course-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.courses-catalog .course-card>p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.courses-catalog .course-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.courses-catalog .course-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: #555;
}

.courses-catalog .course-features i {
  color: var(--accent-color);
  font-size: 14px;
}

.courses-catalog .course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #eee;
  margin-top: auto;
}

.courses-catalog .price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-color);
}

.courses-catalog .price small {
  font-size: 13px;
  color: #888;
  font-weight: 400;
}

.courses-catalog .enroll-btn {
  background: var(--accent-color);
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.courses-catalog .enroll-btn:hover {
  background: #4db870;
  transform: translateX(3px);
}

.courses-catalog .enroll-btn.notify {
  background: #6c757d;
}

/* Platform Features */
.platform-features {
  padding: 100px 0;
}

.platform-features .features-content h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.platform-features .features-content>p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.platform-features .feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.platform-features .feature-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, rgba(95, 207, 128, 0.15), rgba(95, 207, 128, 0.05));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.platform-features .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.platform-features .feature-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.platform-features .feature-text p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.platform-features .features-visual {
  position: relative;
  padding: 40px;
}

.platform-features .visual-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.12);
}

.platform-features .main-card {
  padding: 0;
  overflow: hidden;
}

.platform-features .main-card .card-header {
  background: linear-gradient(135deg, var(--accent-color), #4db870);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 500;
}

.platform-features .live-indicator {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.platform-features .main-card .card-body {
  padding: 30px;
  text-align: center;
}

.platform-features .main-card .card-body i {
  font-size: 60px;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.platform-features .main-card .card-body h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.platform-features .participants {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.platform-features .avatar-stack {
  display: flex;
}

.platform-features .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #4db870);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  margin-right: -10px;
  border: 2px solid #fff;
}

.platform-features .avatar.more {
  background: #eee;
  color: #666;
}

.platform-features .participants span {
  font-size: 13px;
  color: #888;
}

.platform-features .side-card {
  position: absolute;
  bottom: 20px;
  left: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  animation: float 3s ease-in-out infinite;
}

.platform-features .side-card i {
  font-size: 30px;
  color: #ffc107;
}

.platform-features .side-card span {
  font-weight: 600;
  font-size: 14px;
}

.platform-features .side-card small {
  color: #888;
  font-size: 12px;
}

/* FAQ Accordion */
.faq .accordion-item {
  background: #fff;
  border: none !important;
  border-radius: 15px !important;
  margin-bottom: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq .accordion-button {
  background: transparent;
  font-weight: 600;
  font-size: 16px;
  padding: 20px 25px;
  color: var(--heading-color);
}

.faq .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--accent-color);
  box-shadow: none;
}

.faq .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq .accordion-button::after {
  background-size: 14px;
}

.faq .accordion-body {
  padding: 0 25px 20px;
  color: #666;
  line-height: 1.8;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .learning-hero h1 {
    font-size: 40px;
  }

  .learning-hero .hero-illustration {
    display: none;
  }

  .online-promo .promo-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .online-promo h2 {
    font-size: 30px;
  }

  .cta-section h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .hero .hero-trust-badges {
    gap: 15px;
  }

  .announcement-banner .banner-content {
    text-align: center;
  }

  .learning-hero .hero-stats {
    gap: 25px;
    flex-wrap: wrap;
  }
}

/*--------------------------------------------------------------
# Professional Header Styles
--------------------------------------------------------------*/

/* Header Top Bar */
.header-top-bar {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 10px 0;
  font-size: 13px;
  display: none;
}

@media (min-width: 992px) {
  .header-top-bar {
    display: block;
  }
}

.header-top-bar .top-bar-left {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-top-bar .top-bar-left span {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-top-bar .top-bar-left i {
  color: var(--accent-color);
}

.header-top-bar .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-top-bar .top-bar-phone {
  color: #fff;
  background: var(--accent-color);
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.header-top-bar .top-bar-phone:hover {
  background: #4db870;
  transform: translateY(-2px);
}

.header-top-bar .top-social-links {
  display: flex;
  gap: 12px;
}

.header-top-bar .top-social-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all 0.3s ease;
}

.header-top-bar .top-social-links a:hover {
  color: var(--accent-color);
}

/* Header Main */
.header-main {
  width: 100%;
  padding: 15px 0;
}

.header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header .logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--accent-color), #4db870);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .logo-icon i {
  font-size: 24px;
  color: #fff;
}

.header .logo-text {
  line-height: 1.2;
}

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

.header .logo-text .tagline {
  font-size: 12px;
  color: var(--accent-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.header .header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header .btn-apply-tutor {
  display: none;
  align-items: center;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

@media (min-width: 1200px) {
  .header .btn-apply-tutor {
    display: inline-flex;
  }
}

.header .btn-apply-tutor:hover {
  background: var(--accent-color);
  color: #fff;
}

/* Hero Call Now Button */
.hero .btn-call-now {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-call-now:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Professional Footer Styles
--------------------------------------------------------------*/

.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
  color: #fff;
}

.footer .footer-top {
  padding: 80px 0 50px;
}

.footer .footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer .footer-brand .logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), #4db870);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .footer-brand .logo-icon i {
  font-size: 26px;
  color: #fff;
}

.footer .footer-brand .logo-text h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.footer .footer-brand .logo-text span {
  font-size: 12px;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer .footer-about-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer .footer-social {
  display: flex;
  gap: 12px;
}

.footer .social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer .social-link:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

.footer .footer-links h4,
.footer .footer-contact h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links h4::after,
.footer .footer-contact h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links li {
  margin-bottom: 12px;
}

.footer .footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer .footer-links a i {
  font-size: 10px;
  color: var(--accent-color);
}

.footer .footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item.clickable {
  cursor: pointer;
  padding: 10px;
  margin: -10px;
  margin-bottom: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.footer .footer-contact .contact-item.clickable:hover {
  background: rgba(255, 255, 255, 0.05);
}

.footer .footer-contact .contact-item i {
  width: 40px;
  height: 40px;
  background: rgba(95, 207, 128, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 18px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.footer .footer-contact .contact-item strong {
  color: #fff;
}

.footer .footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-bottom .copyright,
.footer .footer-bottom .credits {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer .footer-bottom a {
  color: var(--accent-color);
}

.footer .footer-bottom a:hover {
  color: #fff;
}

/*--------------------------------------------------------------
# Phone Popup Modal
--------------------------------------------------------------*/

.phone-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.phone-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.phone-popup-content {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  max-width: 420px;
  width: 90%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.phone-popup-overlay.active .phone-popup-content {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.popup-close:hover {
  background: #f5f5f5;
  color: #333;
}

.popup-header {
  text-align: center;
  margin-bottom: 30px;
}

.popup-header i {
  font-size: 50px;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: block;
}

.popup-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #333;
}

.popup-header p {
  color: #666;
  margin: 0;
  font-size: 15px;
}

.phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.phone-number-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #f8fffe, #f0fbf4);
  border: 2px solid rgba(95, 207, 128, 0.2);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.phone-number-item:hover {
  border-color: var(--accent-color);
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(95, 207, 128, 0.2);
}

.phone-number-item .phone-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), #4db870);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-number-item .phone-icon i {
  font-size: 22px;
  color: #fff;
}

.phone-number-item .phone-info {
  flex: 1;
}

.phone-number-item .phone-label {
  display: block;
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.phone-number-item .phone-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.phone-number-item .call-icon {
  font-size: 22px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.phone-number-item:hover .call-icon {
  transform: rotate(15deg);
}

.popup-footer {
  margin-top: 25px;
  text-align: center;
}

.popup-footer p {
  margin: 0;
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.popup-footer i {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Tutor Application Modal
--------------------------------------------------------------*/

.tutor-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.tutor-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.tutor-modal-content {
  background: #fff;
  border-radius: 24px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.tutor-modal-overlay.active .tutor-modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.2);
}

.tutor-modal-content .modal-header {
  background: linear-gradient(135deg, var(--accent-color), #4db870);
  padding: 40px 30px 30px;
  text-align: center;
  color: #fff;
}

.tutor-modal-content .modal-header i {
  font-size: 50px;
  margin-bottom: 15px;
  display: block;
}

.tutor-modal-content .modal-header h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 8px;
}

.tutor-modal-content .modal-header p {
  margin: 0;
  opacity: 0.9;
  font-size: 15px;
}

.google-form-container {
  height: 600px;
  overflow: hidden;
}

.google-form-container iframe {
  border: none;
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------
# Floating Action Buttons
--------------------------------------------------------------*/

.floating-actions {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-actions .fab-phone,
.floating-actions .fab-apply {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

.floating-actions .fab-phone {
  background: linear-gradient(135deg, var(--accent-color), #4db870);
  animation: pulse-ring-fab 2s ease-out infinite;
}

@keyframes pulse-ring-fab {
  0% {
    box-shadow: 0 0 0 0 rgba(95, 207, 128, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(95, 207, 128, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(95, 207, 128, 0);
  }
}

.floating-actions .fab-apply {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.floating-actions .fab-phone:hover,
.floating-actions .fab-apply:hover {
  transform: scale(1.1);
}

.floating-actions .fab-tooltip {
  position: absolute;
  right: 65px;
  background: #333;
  color: #fff;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.floating-actions .fab-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid #333;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.floating-actions .fab-phone:hover .fab-tooltip,
.floating-actions .fab-apply:hover .fab-tooltip {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
# Updated Course Cards
--------------------------------------------------------------*/

.courses .course-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  background: #fff;
  border: none;
}

.courses .course-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.courses .course-badge-ribbon {
  position: absolute;
  top: 20px;
  left: -35px;
  background: var(--accent-color);
  color: #fff;
  padding: 8px 40px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  transform: rotate(-45deg);
  z-index: 10;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.courses .course-badge-ribbon.popular {
  background: linear-gradient(135deg, #f39c12, #e74c3c);
}

.courses .course-badge-ribbon.featured {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.courses .course-item img {
  border-radius: 20px 20px 0 0;
  transition: all 0.4s ease;
}

.courses .course-item:hover img {
  transform: scale(1.05);
}

.courses .course-content {
  padding: 25px;
}

.courses .course-content .category {
  background: rgba(95, 207, 128, 0.15);
  color: var(--accent-color);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}

.courses .price-tag {
  text-align: right;
}

.courses .price-tag .price-amount {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1.2;
}

.courses .price-tag .price-unit {
  font-size: 12px;
  color: #888;
}

.courses .course-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.courses .course-content h3 a {
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.courses .course-content h3 a:hover {
  color: var(--accent-color);
}

.courses .course-content .description {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.courses .course-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.courses .course-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #888;
}

.courses .course-meta i {
  color: var(--accent-color);
}

.courses .course-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-color), #4db870);
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.courses .course-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(95, 207, 128, 0.3);
}

/*--------------------------------------------------------------
# Become a Tutor Section
--------------------------------------------------------------*/

.become-tutor {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fffe 0%, #f0fbf4 100%);
}

.become-tutor .tutor-cta-box {
  background: #fff;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.become-tutor .tutor-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(95, 207, 128, 0.1), transparent 70%);
  border-radius: 50%;
}

.become-tutor h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.become-tutor h2 i {
  color: var(--accent-color);
}

.become-tutor>.container>.tutor-cta-box>.row>.col-lg-7>p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.become-tutor .tutor-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.become-tutor .tutor-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
}

.become-tutor .tutor-benefits i {
  color: var(--accent-color);
  font-size: 16px;
}

.become-tutor .tutor-apply-box {
  background: linear-gradient(135deg, var(--accent-color), #4db870);
  border-radius: 24px;
  padding: 40px 30px;
  color: #fff;
  position: relative;
}

.become-tutor .tutor-apply-box i {
  font-size: 60px;
  margin-bottom: 20px;
  display: block;
}

.become-tutor .tutor-apply-box h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.become-tutor .tutor-apply-box p {
  opacity: 0.9;
  margin-bottom: 25px;
  font-size: 14px;
}

.become-tutor .btn-apply-now {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--accent-color);
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.become-tutor .btn-apply-now:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Stats Suffix */
.stats-suffix {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
}

/* Responsive Adjustments for New Features */
@media (max-width: 991px) {
  .become-tutor .tutor-benefits {
    grid-template-columns: 1fr;
  }

  .become-tutor .tutor-apply-box {
    margin-top: 40px;
  }

  .become-tutor .tutor-cta-box {
    padding: 30px;
  }

  .become-tutor h2 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .floating-actions {
    bottom: 80px;
  }

  .phone-popup-content,
  .tutor-modal-content {
    border-radius: 20px;
    padding: 25px;
  }

  .tutor-modal-content {
    max-height: 85vh;
  }

  .google-form-container {
    height: 500px;
  }
}

/ * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -     #   M o d e r n   P r i c i n g   S e c t i o n   -   G l a s s m o r p h i s m   &   G r a d i e n t     - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - * /     . p r i c i n g   . p r i c i n g - i t e m    {
               b a c k g r o u n d :    v a r ( - - s u r f a c e - c o l o r ) ;
               b o x - s h a d o w :    0   1 0 p x   4 0 p x   r g b a ( 0 ,    0 ,    0 ,    0 . 0 6 ) ;
               p a d d i n g :    4 0 p x   3 0 p x ;
               b o r d e r - r a d i u s :    2 0 p x ;
               p o s i t i o n :    r e l a t i v e ;
               o v e r f l o w :    h i d d e n ;
               t r a n s i t i o n :    a l l   0 . 4 s   e a s e ;
               b o r d e r :    1 p x   s o l i d   r g b a ( 0 ,    0 ,    0 ,    0 . 0 3 ) ;
               h e i g h t :    1 0 0 % ;
               d i s p l a y :    f l e x ;
               f l e x - d i r e c t i o n :    c o l u m n ;
       
}

         . p r i c i n g   . p r i c i n g - i t e m : h o v e r    {
               t r a n s f o r m :    t r a n s l a t e Y ( - 1 5 p x ) ;
               b o x - s h a d o w :    0   2 0 p x   6 0 p x   r g b a ( 0 ,    0 ,    0 ,    0 . 1 2 ) ;
       
}

         . p r i c i n g   . p r i c i n g - i t e m . f e a t u r e d    {
               b a c k g r o u n d :    # f f f ;
               b o r d e r :    2 p x   s o l i d   v a r ( - - a c c e n t - c o l o r ) ;
               t r a n s f o r m :    s c a l e ( 1 . 0 2 ) ;
               z - i n d e x :    1 0 ;
       
}

         . p r i c i n g   . p r i c i n g - i t e m . f e a t u r e d : h o v e r    {
               t r a n s f o r m :    s c a l e ( 1 . 0 2 )   t r a n s l a t e Y ( - 1 5 p x ) ;
       
}

         . p r i c i n g   . p r i c i n g - i t e m   h 3    {
               f o n t - w e i g h t :    7 0 0 ;
               m a r g i n - b o t t o m :    1 5 p x ;
               f o n t - s i z e :    2 0 p x ;
               c o l o r :    v a r ( - - h e a d i n g - c o l o r ) ;
               t e x t - t r a n s f o r m :    u p p e r c a s e ;
               l e t t e r - s p a c i n g :    1 p x ;
       
}

         . p r i c i n g   . p r i c i n g - i t e m   h 4    {
               f o n t - s i z e :    4 2 p x ;
               c o l o r :    v a r ( - - a c c e n t - c o l o r ) ;
               f o n t - w e i g h t :    7 0 0 ;
               f o n t - f a m i l y :    v a r ( - - f o n t - p r i m a r y ) ;
               m a r g i n - b o t t o m :    2 5 p x ;
       
}

         . p r i c i n g   . p r i c i n g - i t e m   h 4   s u p    {
               f o n t - s i z e :    2 0 p x ;
               t o p :    - 1 5 p x ;
               l e f t :    - 3 p x ;
       
}

         . p r i c i n g   . p r i c i n g - i t e m   h 4   s p a n    {
               c o l o r :    c o l o r - m i x ( i n   s r g b ,    v a r ( - - d e f a u l t - c o l o r ) ,    t r a n s p a r e n t   6 0 % ) ;
               f o n t - s i z e :    1 6 p x ;
               f o n t - w e i g h t :    4 0 0 ;
       
}

         . p r i c i n g   . p r i c i n g - i t e m   u l    {
               p a d d i n g :    0 ;
               l i s t - s t y l e :    n o n e ;
               c o l o r :    c o l o r - m i x ( i n   s r g b ,    v a r ( - - d e f a u l t - c o l o r ) ,    t r a n s p a r e n t   3 0 % ) ;
               t e x t - a l i g n :    l e f t ;
               l i n e - h e i g h t :    2 0 p x ;
               m a r g i n - b o t t o m :    2 5 p x ;
               f l e x - g r o w :    1 ;
       
}

         . p r i c i n g   . p r i c i n g - i t e m   u l   l i    {
               p a d d i n g - b o t t o m :    1 6 p x ;
               d i s p l a y :    f l e x ;
               a l i g n - i t e m s :    c e n t e r ;
       
}

         . p r i c i n g   . p r i c i n g - i t e m   u l   i    {
               c o l o r :    v a r ( - - a c c e n t - c o l o r ) ;
               f o n t - s i z e :    2 0 p x ;
               p a d d i n g - r i g h t :    8 p x ;
       
}

         . p r i c i n g   . p r i c i n g - i t e m   u l   . n a    {
               c o l o r :    c o l o r - m i x ( i n   s r g b ,    v a r ( - - d e f a u l t - c o l o r ) ,    t r a n s p a r e n t   7 0 % ) ;
               t e x t - d e c o r a t i o n :    l i n e - t h r o u g h ;
       
}

         . p r i c i n g   . b t n - w r a p    {
               m a r g i n - t o p :    a u t o ;
               t e x t - a l i g n :    c e n t e r ;
       
}

         . p r i c i n g   . b t n - b u y    {
               d i s p l a y :    i n l i n e - b l o c k ;
               p a d d i n g :    1 2 p x   4 0 p x ;
               b o r d e r - r a d i u s :    5 0 p x ;
               c o l o r :    v a r ( - - a c c e n t - c o l o r ) ;
               t r a n s i t i o n :    n o n e ;
               f o n t - s i z e :    1 6 p x ;
               f o n t - w e i g h t :    6 0 0 ;
               f o n t - f a m i l y :    v a r ( - - f o n t - p r i m a r y ) ;
               t r a n s i t i o n :    0 . 3 s ;
               b o r d e r :    2 p x   s o l i d   v a r ( - - a c c e n t - c o l o r ) ;
               w i d t h :    1 0 0 % ;
       
}

         . p r i c i n g   . b t n - b u y : h o v e r    {
               b a c k g r o u n d :    v a r ( - - a c c e n t - c o l o r ) ;
               c o l o r :    # f f f ;
       
}

         . p r i c i n g   . p r i c i n g - i t e m . f e a t u r e d   . b t n - b u y    {
               b a c k g r o u n d :    v a r ( - - a c c e n t - c o l o r ) ;
               c o l o r :    # f f f ;
       
}

         . p r i c i n g   . p r i c i n g - i t e m . f e a t u r e d   . b t n - b u y : h o v e r    {
               b a c k g r o u n d :    # 2 c b 5 6 c ;
               b o r d e r - c o l o r :    # 2 c b 5 6 c ;
       
}

         / *   F e a t u r e d   R i b b o n   o v e r r i d e   i f   n e e d e d ,
   o r   A d v a n c e d   T a g   * /     . p r i c i n g   . p r i c i n g - i t e m   . a d v a n c e d    {
               w i d t h :    2 0 0 p x ;
               p o s i t i o n :    a b s o l u t e ;
               t o p :    1 8 p x ;
               r i g h t :    - 6 8 p x ;
               t r a n s f o r m :    r o t a t e ( 4 5 d e g ) ;
               z - i n d e x :    1 ;
               b a c k g r o u n d - c o l o r :    v a r ( - - a c c e n t - c o l o r ) ;
               c o l o r :    # f f f ;
               f o n t - s i z e :    1 3 p x ;
               f o n t - w e i g h t :    7 0 0 ;
               p a d d i n g :    8 p x   0 ;
               t e x t - a l i g n :    c e n t e r ;
       
}

         / * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -     #   L o g o   S t y l e s     - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - * /     . l o g o - i m g    {
               m a x - h e i g h t :    5 0 p x ;
               w i d t h :    a u t o ;
               t r a n s i t i o n :    a l l   0 . 3 s   e a s e ;
       
}

         . f o o t e r   . l o g o - i m g    {
               m a x - h e i g h t :    6 0 p x ;
               f i l t e r :    b r i g h t n e s s ( 0 )   i n v e r t ( 1 ) ;
               o p a c i t y :    0 . 9 ;
       
}

     