/* Fonts */
:root {
  --default-font: "Georama", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Georama", "Segoe UI", Roboto, Arial, sans-serif;
  --nav-font: "Georama", "Segoe UI", Roboto, Arial, 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: #0e1525;
  --default-color: #e6edf7;
  --heading-color: #7cc4ff;
  --accent-color: #00c2a8;
  --surface-color: #141b2d;
  --contrast-color: #ffffff;
  --nav-color: #c2d3ea;
  --nav-hover-color: #7cc4ff;
  --nav-mobile-background-color: #0e1525;
  --nav-dropdown-background-color: #141b2d;
  --nav-dropdown-color: #e6edf7;
  --nav-dropdown-hover-color: #00c2a8;
}

/* Color Presets */

.light-background {
  --background-color: #2d2d2d;
  --surface-color: #404040;
}

.dark-background {
  --background-color: #0d0d0d;
  --default-color: #e0e0e0;
  --heading-color: #ff6b35;
  --surface-color: #1a1a1a;
  --contrast-color: #ffffff;
}

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

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

html {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

/* Prevent horizontal scroll - only for body and html */

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--accent-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-size: 30px;
  margin: 0;
  font-weight: 400;
  color: var(--heading-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:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    border-left: 1px solid var(--default-color);
    border-right: 1px solid var(--default-color);
    border-radius: 1rem;
  }

  .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);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #2d2d2d 100%);
  color: var(--default-color);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    #ff6b35,
    var(--accent-color)
  );
  background-size: 200% 100%;
  animation: gradient-shift 3s ease-in-out infinite;
}

.footer-main {
  padding: 60px 0 40px 0;
}

.footer-brand {
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--heading-color), #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 16px;
  opacity: 0.9;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--surface-color);
  border-radius: 50%;
  color: var(--default-color);
  font-size: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
  border-color: var(--heading-color);
}

.footer-section {
  margin-bottom: 30px;
}

.footer-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #ff6b35);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

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

.footer-links a {
  color: var(--default-color);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: "⚡";
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--accent-color);
}

.footer-links a:hover {
  color: var(--heading-color);
  padding-left: 20px;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  opacity: 1;
  left: -15px;
}

.footer-contact {
  margin-top: 10px;
}

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.footer-contact .contact-item:hover {
  background: #3a3a3a;
  transform: translateX(5px);
}

.footer-contact .contact-item i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact .contact-item div span {
  display: block;
  font-weight: 600;
  color: var(--heading-color);
  font-size: 14px;
  margin-bottom: 5px;
}

.footer-contact .contact-item div a,
.footer-contact .contact-item div p {
  color: var(--default-color);
  margin: 0;
  font-size: 14px;
  text-decoration: none;
}

.footer-contact .contact-item div a:hover {
  color: var(--accent-color);
}

.footer-newsletter {
  background: linear-gradient(135deg, var(--surface-color) 0%, #3a3a3a 100%);
  padding: 40px;
  margin: 40px 0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.footer-newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    #ff6b35,
    var(--accent-color)
  );
  background-size: 200% 100%;
  animation: gradient-shift 3s ease-in-out infinite;
}

.newsletter-content h4 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletter-content p {
  color: var(--default-color);
  margin: 0;
  font-size: 16px;
  opacity: 0.9;
}

.newsletter-form {
  margin-top: 20px;
}

.input-group {
  display: flex;
  background: var(--background-color);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.input-group:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.input-group .form-control {
  background: transparent;
  border: none;
  padding: 15px 25px;
  color: var(--default-color);
  font-size: 16px;
  flex: 1;
}

.input-group .form-control:focus {
  outline: none;
  box-shadow: none;
}

.input-group .form-control::placeholder {
  color: #888;
}

.btn-newsletter {
  background: linear-gradient(135deg, var(--accent-color), #ff6b35);
  color: var(--contrast-color);
  border: none;
  padding: 15px 30px;
  font-weight: 700;
  font-family: var(--heading-font);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-newsletter:hover {
  background: linear-gradient(135deg, #ff6b35, var(--accent-color));
  transform: scale(1.05);
}

.btn-newsletter i {
  font-size: 18px;
}

.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid #404040;
  margin-top: 20px;
}

.footer-copyright p {
  color: #888;
  margin: 0;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 25px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #888;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-legal a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.footer-legal a:hover {
  color: var(--heading-color);
}

.footer-legal a:hover::after {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-main {
    padding: 40px 0 30px 0;
  }

  .footer-logo {
    font-size: 28px;
  }

  .footer-social {
    justify-content: center;
    margin-top: 20px;
  }

  .footer-newsletter {
    padding: 30px 20px;
    margin: 30px 0;
  }

  .newsletter-content {
    text-align: center;
    margin-bottom: 20px;
  }

  .input-group {
    flex-direction: column;
    border-radius: 15px;
  }

  .btn-newsletter {
    border-radius: 0 0 15px 15px;
    justify-content: center;
  }

  .footer-legal {
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
  }

  .footer-copyright {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-legal {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-contact .contact-item {
    padding: 12px;
  }

  .footer-contact .contact-item i {
    font-size: 18px;
  }
}

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

.footer .footer-newsletter h4 {
  font-size: 24px;
}

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

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

.footer .footer-newsletter .newsletter-form input[type="email"] {
  border: 0;
  padding: 4px;
  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: 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 .footer-top {
  padding-top: 30px;
}

.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 20%);
  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;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

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

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

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

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

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

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

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

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

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

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

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0 60px 0;
  display: flex;
  align-items: center;
}

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

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

.hero .download-btn {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color) 90%, black 50%);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 30px 10px 30px;
  border-radius: 3px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .download-btn + .download-btn {
  margin-left: 20px;
}

.hero .download-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .download-btn i {
  font-size: 16px;
  line-height: 0;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .download-btn {
    font-size: 14px;
    padding: 8px 20px 10px 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about {
  background-color: rgb(132, 106, 106);
}
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.2px;
  padding: 12px 32px;
  border-radius: 8px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

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

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.about .read-more:hover i {
  transform: translateX(6px);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
}

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

.features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

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

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.feature-details .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.feature-details .features-item + .features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .feature-details .features-item + .features-item {
    margin-top: 40px;
  }
}

.feature-details .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

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

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

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

.feature-details .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.feature-details .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

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

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

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

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

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 60px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    border-radius: 25px;
    transition: none;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  background: linear-gradient(135deg, var(--background-color) 0%, #2a2a2a 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    #ff6b35,
    var(--accent-color)
  );
  background-size: 200% 100%;
  animation: gradient-shift 3s ease-in-out infinite;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, #3a3a3a 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    #ff6b35,
    var(--accent-color)
  );
  background-size: 200% 100%;
  animation: gradient-shift 3s ease-in-out infinite;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.testimonial-card.featured {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, var(--surface-color) 0%, #404040 100%);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.testimonial-card.featured::before {
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, var(--accent-color), #ff6b35);
}

.testimonial-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.testimonial-avatar {
  position: relative;
  flex-shrink: 0;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid var(--accent-color);
  object-fit: cover;
  transition: all 0.3s ease;
}

.avatar-glow {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #ff6b35);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.testimonial-card:hover .avatar-glow {
  opacity: 0.3;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

.testimonial-info {
  flex: 1;
}

.testimonial-info h3 {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.testimonial-info h4 {
  color: var(--default-color);
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 15px 0;
  opacity: 0.8;
  line-height: 1.3;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0;
}

.stars i {
  color: #ffc107;
  font-size: 16px;
  transition: all 0.3s ease;
}

.testimonial-card:hover .stars i {
  transform: scale(1.1);
  color: #ffd700;
}

.testimonial-content {
  position: relative;
}

.quote-icon {
  position: absolute;
  top: -10px;
  right: 0;
  font-size: 40px;
  color: var(--accent-color);
  opacity: 0.3;
  transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon {
  opacity: 0.6;
  transform: scale(1.1);
}

.testimonial-content p {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 20px 0;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.tag {
  background: linear-gradient(135deg, var(--accent-color), #ff6b35);
  color: var(--contrast-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.testimonial-card:hover .tag {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .testimonial-card {
    padding: 25px;
  }

  .testimonial-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .testimonial-img {
    width: 70px;
    height: 70px;
  }

  .testimonial-info h3 {
    font-size: 18px;
  }

  .testimonial-info h4 {
    font-size: 13px;
  }

  .testimonial-content p {
    font-size: 15px;
  }

  .quote-icon {
    font-size: 30px;
    top: -5px;
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    padding: 20px;
  }

  .testimonial-img {
    width: 60px;
    height: 60px;
  }

  .testimonial-info h3 {
    font-size: 16px;
  }

  .testimonial-info h4 {
    font-size: 12px;
  }

  .testimonial-content p {
    font-size: 14px;
  }

  .tag {
    font-size: 10px;
    padding: 3px 8px;
  }
}

/*--------------------------------------------------------------
# Programs Section
--------------------------------------------------------------*/
.programs .program-item {
  background-color: var(--surface-color);
  padding: 40px 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  height: 100%;
  position: relative;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.programs .program-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
  border-color: var(--accent-color);
}

.programs .program-item.featured {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, var(--surface-color) 0%, #3a3a3a 100%);
}

.programs .program-icon {
  text-align: center;
  margin-bottom: 25px;
}

.programs .program-icon i {
  font-size: 60px;
  color: var(--accent-color);
  background: linear-gradient(135deg, var(--accent-color), #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.programs h3 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
  color: var(--heading-color);
}

.programs p {
  color: var(--default-color);
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.6;
}

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

.programs ul li {
  padding: 8px 0;
  color: var(--default-color);
  position: relative;
  padding-left: 25px;
}

.programs ul li:before {
  content: "⚡";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
}

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

@media (min-width: 992px) {
  .pricing .featured .pricing-item {
    transform: scale(1.02, 1.1);
  }
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--contrast-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

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

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

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: linear-gradient(135deg, var(--background-color) 0%, #2a2a2a 100%);
}

.contact .contact-info {
  padding: 20px 0;
}

.contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.contact .contact-icon {
  margin-right: 20px;
  flex-shrink: 0;
}

.contact .contact-icon i {
  font-size: 40px;
  color: var(--accent-color);
  background: linear-gradient(135deg, var(--accent-color), #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact .contact-details h4 {
  color: var(--heading-color);
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact .contact-details p {
  color: var(--default-color);
  margin: 0;
  line-height: 1.6;
}

.contact .contact-form-wrapper {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.contact .contact-form-wrapper:hover {
  border-color: var(--accent-color);
}

.contact .contact-form-wrapper .form-control {
  background: var(--background-color);
  border: 2px solid #404040;
  border-radius: 10px;
  padding: 15px 20px;
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-wrapper .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  background: var(--surface-color);
}

.contact .contact-form-wrapper .form-control::placeholder {
  color: #888;
}

.contact .contact-form-wrapper select.form-control {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ff6b35' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 50px;
}

.contact .submit-btn {
  background: linear-gradient(135deg, var(--accent-color), #ff6b35);
  color: var(--contrast-color);
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--heading-font);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.contact .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, #ff6b35, var(--accent-color));
}

.contact .submit-btn i {
  font-size: 20px;
}

.contact .contact-method {
  text-align: center;
  padding: 30px 20px;
  background: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.contact .contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
  border-color: var(--accent-color);
}

.contact .method-icon {
  margin-bottom: 20px;
}

.contact .method-icon i {
  font-size: 50px;
  color: var(--accent-color);
  background: linear-gradient(135deg, var(--accent-color), #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact .contact-method h4 {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact .contact-method p {
  color: var(--default-color);
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact .contact-method small {
  color: #888;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

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

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  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"] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.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 */
}

#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  transform: translateX(-50%);
  background: #dedede;
  color: #333;
  border: none;
  padding: 20px;
  font-family: "Oxygen", sans-serif;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border-radius: 25px;
  font-size: 14px;
  max-width: 400px;
  z-index: 1000;
  display: none;
  opacity: 0; /* Start invisible */
  transform: translateY(30px); /* Slide up effect */
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#cookie-popup.show {
  opacity: 1;
  transform: translateY(0);
}

#cookie-popup p {
  margin: 0;
  padding: 0;
}

#cookie-popup .popup-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cookie-popup button {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

#cookie-popup button:hover {
  background: #0056b3;
}

#cookie-popup .popup-message {
  max-width: 80%;
}

#cookie-popup .popup-message a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

#cookie-popup .popup-message a:hover {
  color: #0056b3;
}

/*  New Swiper */
.feature-slider {
  position: relative;
  padding: 40px 0 80px 0;
  background: linear-gradient(135deg, var(--background-color) 0%, #2a2a2a 100%);
  border-radius: 25px;
  margin: 40px 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-slider .swiper-wrapper {
  padding: 20px 0;
}

.feature-slider .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
}

.feature-slider .swiper-slide-active {
  transform: scale(1.02);
  z-index: 2;
}

.feature-slider .swiper-pagination {
  position: absolute;
  bottom: 30px;
  left:50%;
  z-index: 10;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.feature-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--heading-color), #ff6b35);
  opacity: 0.6;
  border-radius: 50%;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature-slider .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--accent-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.feature-slider .swiper-pagination-bullet:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.feature-slider .swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  opacity: 1;
  background: linear-gradient(135deg, var(--accent-color), #ff6b35);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
  transform: scale(1.2);
}

.feature-slider .swiper-pagination-bullet-active::before {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff6b35, var(--accent-color));
}

.feature_example {
  background: linear-gradient(135deg, var(--surface-color) 0%, #3a3a3a 100%);
  border: 2px solid transparent;
  border-radius: 25px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.feature_example::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    #ff6b35,
    var(--accent-color)
  );
  background-size: 200% 100%;
  animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.feature_example:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.feature_example h3 {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.feature_example h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #ff6b35);
  border-radius: 2px;
}

.feature_example p.fst-italic {
  color: var(--default-color);
  font-size: 18px;
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.6;
  opacity: 0.9;
}

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

.feature_example ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px 0;
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.feature_example ul li:hover {
  color: var(--heading-color);
  transform: translateX(5px);
}

.feature_example ul li i {
  font-size: 24px;
  margin-right: 15px;
  color: var(--accent-color);
  background: linear-gradient(135deg, var(--accent-color), #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.feature_example ul li:hover i {
  transform: scale(1.1);
}

.feature_example ul li span {
  flex: 1;
  font-weight: 500;
}

/* Swiper Navigation Arrows */
.feature-slider .swiper-button-next,
.feature-slider .swiper-button-prev {
  color: var(--accent-color);
  background: var(--surface-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-slider .swiper-button-next:hover,
.feature-slider .swiper-button-prev:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.feature-slider .swiper-button-next::after,
.feature-slider .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .feature-slider {
    margin: 20px 0;
    padding: 20px 0 60px 0;
  }

  .feature_example {
    padding: 25px;
    margin: 10px;
  }

  .feature_example h3 {
    font-size: 24px;
  }

  .feature_example p.fst-italic {
    font-size: 16px;
  }

  .feature_example ul li {
    font-size: 14px;
  }

  .feature-slider .swiper-pagination {
    bottom: 20px;
  }

  .feature-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .feature-slider .swiper-pagination-bullet-active {
    width: 14px;
    height: 14px;
  }
}

/* -------------------------------------------------------------
   Theme Overrides: Colors, Header, Nav, and About-Programs
   Appended to ensure they take precedence over earlier rules
------------------------------------------------------------- */
:root {
  --background-color: #0f1226;
  --default-color: #e7eaf3;
  --heading-color: #c084fc;
  --accent-color: #22d3ee;
  --surface-color: #171a31;
  --contrast-color: #ffffff;
  --nav-color: #c9d7f2;
  --nav-hover-color: #c084fc;
  --nav-mobile-background-color: #0f1226;
  --nav-dropdown-background-color: #171a31;
  --nav-dropdown-color: #e7eaf3;
  --nav-dropdown-hover-color: #22d3ee;
  --accent-2: #8b5cf6;
}

.header {
  color: var(--default-color);
  background: color-mix(in srgb, var(--background-color), transparent 70%);
  backdrop-filter: saturate(120%) blur(10px);
  -webkit-backdrop-filter: saturate(120%) blur(10px);
  padding: 12px 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  z-index: 997;
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
  letter-spacing: 0.2px;
}

@media (min-width: 1200px) {
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
  .navmenu li > a {
    position: relative;
  }
  .navmenu li > a::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 10px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }
  .navmenu li:hover > a::after,
  .navmenu .active::after,
  .navmenu .active:focus::after {
    transform: scaleX(1);
  }
}

/* =============================
   FEATURES COMBINED (Merged Features + Details)
============================= */
.features-combined {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1f3a 100%);
}
.features-combined__slider {
  position: relative;
  padding: 20px 0 60px 0;
}
/* Features Combined Pagination - Clean Styles */
.features-combined__pagination {
  position: absolute !important;
  bottom: 30px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  text-align: center !important;
  z-index: 10 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.features-combined__pagination .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  background: rgba(255, 255, 255, 0.3) !important;
  opacity: 1 !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  margin: 0 6px !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

.features-combined__pagination .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color)) !important;
  transform: scale(1.3) !important;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.6) !important;
}

.features-combined__pagination .swiper-pagination-bullet:hover {
  background: var(--accent-color) !important;
  transform: scale(1.1) !important;
}

/* =============================
   FOOTER OVERRIDES (align with theme)
============================= */
body.index-page .footer {
  background: linear-gradient(135deg, var(--background-color) 0%, #171a31 100%);
  color: var(--default-color);
}
body.index-page .footer::before {
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--heading-color),
    var(--accent-color)
  );
}
body.index-page .footer .footer-newsletter {
  background: linear-gradient(135deg, var(--surface-color) 0%, #1f2443 100%);
}
body.index-page .footer .btn-newsletter,
body.index-page .footer .footer-newsletter input[type="submit"] {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--heading-color)
  );
  color: var(--contrast-color);
}
body.index-page .footer .social-link:hover {
  box-shadow: 0 10px 25px rgba(34, 211, 238, 0.25);
  border-color: var(--accent-color);
}
body.index-page .footer .footer-legal a:hover {
  color: var(--heading-color);
}

/* =============================
   PAGE STYLES (Cookie, Privacy, Terms, Thanks)
============================= */
.page-header {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1f3a 100%);
  padding: 120px 0 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color), var(--accent-color));
  background-size: 200% 100%;
  animation: gradient-shift 3s ease-in-out infinite;
}

.page-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 16px;
  line-height: 1.1;
}

.page-subtitle {
  font-size: 20px;
  color: var(--nav-color);
  margin-bottom: 0;
  opacity: 0.9;
}

.content-section {
  padding: 80px 0;
  background: var(--background-color);
}

.content-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.content-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 25px 80px rgba(34, 211, 238, 0.15);
}

.content-intro {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.content-intro h2 {
  color: var(--heading-color);
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: 700;
}

.content-intro p {
  color: var(--default-color);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
}

.content-section-item {
  margin-bottom: 40px;
  padding: 30px;
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.content-section-item:hover {
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  border-color: var(--accent-color);
}

.content-section-item h3 {
  color: var(--heading-color);
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.content-section-item h3 i {
  color: var(--accent-color);
  font-size: 28px;
}

.content-section-item p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--default-color);
  font-size: 16px;
}

.feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  flex-shrink: 0;
}

.alert {
  padding: 16px 20px;
  border-radius: 12px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.alert-info {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid var(--accent-color);
  color: var(--default-color);
}

.alert-success {
  background: color-mix(in srgb, #28a745, transparent 90%);
  border: 1px solid #28a745;
  color: var(--default-color);
}

.alert-warning {
  background: color-mix(in srgb, #ffc107, transparent 90%);
  border: 1px solid #ffc107;
  color: var(--default-color);
}

.contact-info {
  background: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-info a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  color: var(--heading-color);
  text-decoration: underline;
}

/* Success Page Styles */
.success-page-header {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1f3a 100%);
  padding: 120px 0 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.success-page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #28a745, var(--accent-color), #28a745);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease-in-out infinite;
}

.success-icon {
  margin-bottom: 24px;
}

.success-icon i {
  font-size: 80px;
  color: #28a745;
  animation: success-pulse 2s ease-in-out infinite;
}

@keyframes success-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.success-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 16px;
  line-height: 1.1;
}

.success-subtitle {
  font-size: 20px;
  color: var(--nav-color);
  margin-bottom: 0;
  opacity: 0.9;
}

.success-message {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: color-mix(in srgb, #28a745, transparent 90%);
  border-radius: 16px;
  border: 1px solid #28a745;
}

.success-message h2 {
  color: var(--heading-color);
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.success-message h2 i {
  color: #28a745;
}

.success-message p {
  color: var(--default-color);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
}

.next-steps {
  margin-bottom: 40px;
}

.next-steps h3 {
  color: var(--heading-color);
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.next-steps h3 i {
  color: var(--accent-color);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.3s ease;
}

.step-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.step-number {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--heading-color);
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 700;
}

.step-content p {
  color: var(--default-color);
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.9;
}

.contact-info-section {
  margin-bottom: 40px;
}

.contact-info-section h3 {
  color: var(--heading-color);
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info-section h3 i {
  color: var(--accent-color);
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.contact-method i {
  color: var(--accent-color);
  font-size: 24px;
  flex-shrink: 0;
}

.contact-method h4 {
  color: var(--heading-color);
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 700;
}

.contact-method p {
  color: var(--default-color);
  font-size: 14px;
  margin-bottom: 0;
}

.contact-method a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.contact-method a:hover {
  color: var(--heading-color);
  text-decoration: underline;
}

.explore-section {
  margin-bottom: 40px;
}

.explore-section h3 {
  color: var(--heading-color);
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.explore-section h3 i {
  color: var(--accent-color);
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.explore-item {
  background: var(--surface-color);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.3s ease;
}

.explore-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.15);
}

.explore-item i {
  color: var(--accent-color);
  font-size: 32px;
  margin-bottom: 16px;
}

.explore-item h4 {
  color: var(--heading-color);
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 700;
}

.explore-item p {
  color: var(--default-color);
  font-size: 14px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.explore-item .btn {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 8px;
}

.cta-section {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.cta-section .btn {
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-title, .success-title {
    font-size: 36px;
  }
  
  .page-subtitle, .success-subtitle {
    font-size: 18px;
  }
  
  .content-card {
    padding: 24px;
  }
  
  .content-section-item {
    padding: 20px;
  }
  
  .content-section-item h3 {
    font-size: 20px;
  }
  
  .steps-grid, .explore-grid {
    grid-template-columns: 1fr;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
  }
}

/* Combined About + Programs section */
#about-programs.section {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1f3a 100%);
}

.about-programs__intro {
  max-width: 860px;
  margin: 0 auto 40px auto;
  text-align: center;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.about-programs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.about-programs__card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 28px;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.about-programs__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(34, 211, 238, 0.15);
  border-color: var(--accent-color);
}

.about-programs__icon {
  font-size: 40px;
  margin-bottom: 12px;
  color: var(--accent-color);
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--heading-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-programs__title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-programs__desc {
  color: var(--default-color);
  opacity: 0.9;
  margin-bottom: 16px;
}

.about-programs__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-programs__list li {
  padding: 6px 0 6px 24px;
  position: relative;
}

.about-programs__list li::before {
  content: "⚡";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

/* =============================
   HERO V2
============================= */
.heroV2 {
  background: radial-gradient(
      1200px 500px at 20% -10%,
      color-mix(in srgb, var(--accent-color), transparent 75%) 0%,
      transparent 60%
    ),
    radial-gradient(
      1000px 500px at 90% 10%,
      color-mix(in srgb, var(--heading-color), transparent 80%) 0%,
      transparent 60%
    ),
    var(--background-color);
  min-height: 100vh;
}
.heroV2__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 999px;
  color: var(--nav-color);
  margin-bottom: 14px;
}
.heroV2__title {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0 0 12px 0;
}
.heroV2__subtitle {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 18px;
  margin-bottom: 20px;
}
.heroV2__cta {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}
.heroV2__btn-primary {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--heading-color)
  );
  color: var(--contrast-color);
  border: none;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700;
}
.heroV2__btn-outline {
  background: transparent;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700;
}
.heroV2__stats {
  display: flex;
  gap: 18px;
  color: var(--nav-color);
}
.heroV2__stat span {
  color: var(--accent-color);
  font-weight: 800;
  margin-right: 6px;
}
.heroV2__visual {
  position: relative;
}
.heroV2__visual img {
  border-radius: 16px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
}
.heroV2__badge {
  position: absolute;
  left: -10px;
  bottom: 14px;
  background: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
}
.heroV2__badge--alt {
  left: auto;
  right: -10px;
  bottom: auto;
  top: 14px;
}
@media (max-width: 768px) {
  .heroV2__title {
    font-size: 30px;
  }
  .heroV2__cta {
    flex-direction: column;
    align-items: stretch;
  }
}

/* =============================
   FEATURES V2
============================= */
.featuresV2 {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1f3a 100%);
}
.featuresV2__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.featuresV2__card {
  background: var(--surface-color);
  border-radius: 14px;
  padding: 22px;
  border: 2px solid transparent;
  transition: transform 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.featuresV2__card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-color);
  box-shadow: 0 16px 36px rgba(34, 211, 238, 0.15);
}
.featuresV2__icon {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--accent-color);
}
.featuresV2__card h3 {
  color: var(--heading-color);
  font-size: 18px;
  margin: 0 0 8px 0;
}
.featuresV2__card p {
  margin: 0;
  color: var(--default-color);
  opacity: 0.9;
}

/* =============================
   FAQ V2
============================= */
.faqV2 {
  background: linear-gradient(135deg, var(--background-color) 0%, #21264a 100%);
}
.faqV2__grid {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.faqV2__item {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 12px;
  overflow: hidden;
}
.faqV2__question {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: transparent;
  border: 0;
  color: var(--default-color);
  font-weight: 700;
  display: flex;
  gap: 10px;
  align-items: center;
}
.faqV2__answer {
  display: none;
  padding: 0 18px 16px 46px;
  color: var(--nav-color);
}
.faqV2__item.active .faqV2__answer {
  display: block;
}

/* =============================
   SOLUTIONS (Merged About + Features)
============================= */
.solutions {
  background: linear-gradient(135deg, var(--background-color) 0%, #1b2142 100%);
}
.solutions__intro {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  max-width: 820px;
  margin: 0 auto;
}
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.solutions__card {
  background: var(--surface-color);
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.solutions__card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-color);
  box-shadow: 0 18px 40px rgba(34, 211, 238, 0.15);
}
.solutions__icon {
  font-size: 34px;
  margin-bottom: 10px;
  color: var(--accent-color);
}
.solutions__card h3 {
  color: var(--heading-color);
  font-size: 20px;
  margin: 0 0 8px 0;
}
.solutions__card p {
  margin: 0 0 10px 0;
  color: var(--default-color);
  opacity: 0.9;
}
.solutions__card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.solutions__card li {
  position: relative;
  padding-left: 20px;
  margin: 6px 0;
  color: var(--nav-color);
}
.solutions__card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

/* =============================
   COOKIE POPUP Redesigned
============================= */
#cookie-popup {
  left: 20px;
  right: 20px;
  bottom: 20px;
  transform: none;
  max-width: 720px;
  background: color-mix(in srgb, var(--surface-color), transparent 0%);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 16px;
  display: none;
  opacity: 0;
  transform: translateY(20px);
  padding: 18px;
}
#cookie-popup.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
#cookie-popup .popup-content {
  gap: 14px;
}
#cookie-popup .popup-message p {
  color: var(--nav-color);
}
#cookie-popup button {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--heading-color)
  );
  color: var(--contrast-color);
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 700;
}
#cookie-popup button:hover {
  filter: brightness(1.05);
}
#cookie-popup .popup-message a {
  color: var(--heading-color);
  text-decoration: underline;
}
#cookie-popup .popup-message a:hover {
  color: var(--accent-color);
}
@media (max-width: 576px) {
  #cookie-popup {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 14px;
  }
  #cookie-popup .popup-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =============================
   FEATURE DETAILS V2 (Slider)
============================= */
.feature-details-v2 {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1f3a 100%);
}
.feature-details-v2__header {
  text-align: center;
  margin-bottom: 40px;
}
.feature-details-v2__header h2 {
  color: var(--heading-color);
  font-size: 32px;
  margin-bottom: 12px;
}
.feature-details-v2__header p {
  color: var(--nav-color);
  font-size: 18px;
}
.feature-details-v2__slider {
  position: relative;
  padding: 20px 0 60px 0;
}
.feature-details-v2__slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 400px;
}
.feature-details-v2__content {
  padding: 20px;
}
.feature-details-v2__step {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--heading-color)
  );
  color: var(--contrast-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}
.feature-details-v2__content h3 {
  color: var(--heading-color);
  font-size: 28px;
  margin-bottom: 16px;
}
.feature-details-v2__content p {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.feature-details-v2__features {
  display: grid;
  gap: 12px;
}
.feature-details-v2__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--nav-color);
}
.feature-details-v2__feature i {
  color: var(--accent-color);
  font-size: 20px;
}
.feature-details-v2__visual {
  position: relative;
}
.feature-details-v2__visual img {
  border-radius: 16px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
}
.feature-details-v2__pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.feature-details-v2__next,
.feature-details-v2__prev {
  color: var(--accent-color);
  background: var(--surface-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.feature-details-v2__next:hover,
.feature-details-v2__prev:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}
@media (max-width: 768px) {
  .feature-details-v2__slide {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-details-v2__content h3 {
    font-size: 24px;
  }
}

/* =============================
   FEATURES V3
============================= */
.features-v3 {
  background: linear-gradient(135deg, var(--background-color) 0%, #21264a 100%);
}
.features-v3__header {
  text-align: center;
  margin-bottom: 50px;
}
.features-v3__header h2 {
  color: var(--heading-color);
  font-size: 32px;
  margin-bottom: 12px;
}
.features-v3__header p {
  color: var(--nav-color);
  font-size: 18px;
}
.features-v3__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.features-v3__main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.features-v3__feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.features-v3__icon {
  font-size: 32px;
  color: var(--accent-color);
  margin-top: 4px;
}
.features-v3__text h3 {
  color: var(--heading-color);
  font-size: 20px;
  margin-bottom: 8px;
}
.features-v3__text p {
  color: var(--default-color);
  line-height: 1.6;
}
.features-v3__visual {
  position: relative;
}
.features-v3__visual img {
  border-radius: 16px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
}
.features-v3__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--surface-color);
  color: var(--default-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .features-v3__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =============================
   CONTACT V2
============================= */
.contact-v2 {
  background: linear-gradient(135deg, var(--background-color) 0%, #1b2142 100%);
}
.contact-v2__header {
  text-align: center;
  margin-bottom: 50px;
}
.contact-v2__header h2 {
  color: var(--heading-color);
  font-size: 32px;
  margin-bottom: 12px;
}
.contact-v2__header p {
  color: var(--nav-color);
  font-size: 18px;
}
.contact-v2__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-v2__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-v2__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-v2__icon {
  font-size: 24px;
  color: var(--accent-color);
  margin-top: 4px;
}
.contact-v2__text h4 {
  color: var(--heading-color);
  font-size: 18px;
  margin-bottom: 4px;
}
.contact-v2__text p {
  color: var(--default-color);
  font-size: 14px;
}
.contact-v2__form-wrapper {
  background: var(--surface-color);
  padding: 32px;
  border-radius: 16px;
  border: 2px solid transparent;
}
.contact-v2__form-wrapper:hover {
  border-color: var(--accent-color);
}
.contact-v2__form-group {
  margin-bottom: 20px;
}
.contact-v2__form-group input,
.contact-v2__form-group select,
.contact-v2__form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  color: var(--default-color);
  font-size: 14px;
}
.contact-v2__form-group input:focus,
.contact-v2__form-group select:focus,
.contact-v2__form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}
.contact-v2__submit {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--heading-color)
  );
  color: var(--contrast-color);
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.contact-v2__submit:hover {
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .contact-v2__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =============================
   TESTIMONIALS V2 (Slider)
============================= */
.testimonials-v2 {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1f3a 100%);
}
.testimonials-v2__header {
  text-align: center;
  margin-bottom: 50px;
}
.testimonials-v2__header h2 {
  color: var(--heading-color);
  font-size: 32px;
  margin-bottom: 12px;
}
.testimonials-v2__header p {
  color: var(--nav-color);
  font-size: 18px;
}
.testimonials-v2__slider {
  position: relative;
  padding: 20px 0 60px 0;
}
.testimonials-v2__card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.testimonials-v2__card:hover {
  border-color: var(--accent-color);
}
.testimonials-v2__quote {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
}
.testimonials-v2__content p {
  color: var(--default-color);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonials-v2__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.testimonials-v2__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--accent-color);
}
.testimonials-v2__info h4 {
  color: var(--heading-color);
  font-size: 16px;
  margin-bottom: 4px;
}
.testimonials-v2__info span {
  color: var(--nav-color);
  font-size: 14px;
}
.testimonials-v2__pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.testimonials-v2__next,
.testimonials-v2__prev {
  color: var(--accent-color);
  background: var(--surface-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.testimonials-v2__next:hover,
.testimonials-v2__prev:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1rem;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.feature-content i {
  font-size: 1.5rem;
  color: #8100f5;
  flex-shrink: 0;
}

.read-more {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent-color);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  width: 100%;
}

.read-more:hover {
  background-color: var(--accent-color);
}

footer div a {
  display: inline-block;
  margin-right: 1.5rem;
  font-size: 0.95rem;
  color: var(--default-color);
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

footer div a:last-child {
  margin-right: 0;
}

footer div a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* ========================================
   MOBILE MENU STYLES
   ======================================== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 10001;
  position: relative;
}

.hamburger {
  display: flex;
  flex-direction: column;
  width: 24px;
  height: 18px;
  justify-content: space-between;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--heading-color);
  transition: all 0.3s ease;
  border-radius: 1px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 90vw;
  height: 100vh;
  background: var(--background-color);
  z-index: 9999;
  transition: right 0.3s ease, opacity 0.3s ease;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  transform: translateZ(0);
  display: none;
  opacity: 0;
}

.mobile-menu.active {
  right: 0;
  display: block;
  opacity: 1;
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: white;
}

.mobile-menu-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
  padding: 20px 0;
}

.mobile-menu-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-nav li {
  margin: 0;
}

.mobile-menu-link {
  display: block;
  padding: 15px 20px;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  background: rgba(34, 211, 238, 0.1);
  color: var(--accent-color);
  border-left-color: var(--accent-color);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  border-top: 1px solid var(--border-color);
  background: var(--background-color);
}

.mobile-menu-contact p {
  margin: 8px 0;
  color: var(--text-color);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-contact i {
  color: var(--accent-color);
  width: 16px;
}

/* Ensure mobile menu is not constrained by header container */
.header {
  position: relative;
  z-index: 1000;
}

/* Force mobile menu to be positioned relative to viewport, not container */
.mobile-menu-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 9998 !important;
  overflow: hidden;
}

.mobile-menu {
  position: fixed !important;
  top: 0 !important;
  right: -100% !important;
  width: 320px !important;
  max-width: 90vw !important;
  height: 100vh !important;
  z-index: 9999 !important;
  transform: translateZ(0);
  display: none !important;
  opacity: 0;
}

.mobile-menu.active {
  right: 0 !important;
  display: block !important;
  opacity: 1;
}

/* Hide desktop menu on mobile */
@media (max-width: 1199px) {
  .navmenu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 1200px) {
  .mobile-menu-toggle {
    display: none;
  }
}
