/* Fonts */
:root {
  --default-font: "Shafarik", system-ui, -apple-system, "Segoe UI", Shafarik, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Shafarik", sans-serif;
  --nav-font: "Shafarik", sans-serif;
}

/* Global Colors - Light Color Scheme */
:root {
  --background-color: #ffffff;
  --default-color: #1a1a2e;
  --heading-color: #0f0f23;
  --accent-color: #00d4ff;
  --surface-color: #f8fafc;
  --contrast-color: #ff6b6b;
  --bg-color: #f1f5f9;
  --nav-color: #475569;
  --nav-hover-color: #00d4ff;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #f8fafc;
  --nav-dropdown-color: #475569;
  --nav-dropdown-hover-color: #00d4ff;
  
  /* New Light Colors */
  --primary-gradient: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  --secondary-gradient: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --info-color: #3b82f6;
  --light-text: #64748b;
  --border-color: #e2e8f0;
  --shadow-color: rgba(0, 0, 0, 0.08);
  --card-bg: #ffffff;
  --section-bg: #f8fafc;
  --footer-bg: #1e293b;
  
  /* Additional Colors */
  --purple-accent: #8b5cf6;
  --pink-accent: #ec4899;
  --orange-accent: #f97316;
  --yellow-accent: #eab308;
}

/* Color Presets */
.light-background {
  --background-color: #ffffff;
  --surface-color: #f8fafc;
  --section-bg: #f1f5f9;
}

.dark-background {
  --background-color: #1e293b;
  --default-color: #f1f5f9;
  --heading-color: #ffffff;
  --surface-color: #334155;
  --contrast-color: #00d4ff;
  --section-bg: #475569;
  --card-bg: #334155;
  --border-color: #64748b;
}

/* 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);
  line-height: 1.6;
}

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

a:hover {
  color: var(--contrast-color);
  text-decoration: none;
  transform: translateY(-1px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.2;
}

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

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: var(--success-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 8px;
}

.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;
  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: var(--card-bg);
  padding: 20px 0;
  transition: all 0.5s ease;
  z-index: 997;
  box-shadow: 0 4px 20px var(--shadow-color);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header .logo {
  line-height: 1;
  display: flex;
  align-items: center;
}

.header .logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

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

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

.header .btn-getstarted {
  background: var(--primary-gradient);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .btn-getstarted:hover {
  background: var(--secondary-gradient);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
  color: #ffffff;
  text-decoration: none;
}

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

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

  .header .navbar {
    order: 3;
  }
}

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
.navbar {
  display: flex;
  align-items: center;
}

.navmenu {
  padding: 0;
  display: flex;
  flex-direction: row !important;
}

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

.navmenu li {
  position: relative;
  list-style: none;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  padding: 10px 20px;
  font-size: 16px;
  font-family: var(--nav-font);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 25px;
  margin: 0 5px;
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-hover-color);
  border-color: var(--accent-color);
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
}

.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;
  z-index: 99;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  min-width: 200px;
}

.navmenu .dropdown ul li {
  list-style: none;
}

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

.navmenu .dropdown ul a:hover,
.navmenu .dropdown ul .active:hover,
.navmenu .dropdown ul li:hover>a {
  color: var(--nav-dropdown-hover-color);
  background: rgba(0, 212, 255, 0.05);
}

.navmenu .dropdown:hover>ul {
  opacity: 1;
  top: 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;

    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;

    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

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

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

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

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

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

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

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

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

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

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

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

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 28px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 8px;
  position: relative;
  background-color: var(--surface-color);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  transition: all 0.3s ease;
  border-radius: 25px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 8px 15px;
  width: 100%;
  background-color: transparent;
  color: var(--default-color);
  border-radius: 20px;
  font-size: 14px;
}

.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: 12px 25px;
  margin: -7px -8px -7px 0;
  background: var(--primary-gradient);
  color: #ffffff;
  transition: all 0.3s ease;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: var(--secondary-gradient);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

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

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 15px;
  transition: all 0.3s ease;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.footer h4 {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
  color: #ffffff;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: 1px;
}

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

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
  transition: all 0.3s ease;
}

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

.footer .footer-about a {
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  font-family: var(--heading-font);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer .footer-contact p {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.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;
  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;
  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: 60px 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: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.section-title p {
  margin-bottom: 0;
  color: var(--light-text);
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
  background: var(--section-bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--contrast-color) 100%);
  opacity: 0.05;
}

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

.hero p {
  color: var(--light-text);
  margin: 5px 0 10px 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

.hero .download-btn {
  color: #ffffff;
  background: var(--primary-gradient);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 35px;
  border-radius: 25px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  text-decoration: none;
}

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

.hero .download-btn:hover {
  background: var(--secondary-gradient);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.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: var(--section-bg);
  padding: 80px 0;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--contrast-color) 100%);
  opacity: 0.05;
}

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

.about ul li {
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  color: var(--default-color);
  line-height: 1.6;
}

.about ul li p {
  margin: 0;
  color: var(--light-text);
  font-size: 1rem;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about .read-more {
  background: var(--primary-gradient);
  color: #ffffff;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.2px;
  padding: 15px 35px;
  border-radius: 25px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  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: var(--secondary-gradient);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

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


/*--------------------------------------------------------------
# Features Section - New Design
--------------------------------------------------------------*/
#features {
  background: var(--section-bg);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, rgba(255, 107, 107, 0.03) 100%);
  z-index: 1;
}

#features .container {
  position: relative;
  z-index: 2;
}

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

.feature-card {
  background: var(--card-bg);
  border-radius: 25px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px var(--shadow-color);
  border: 2px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  text-align: center;
  height: 100%;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 212, 255, 0.15);
  border-color: var(--accent-color);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
}

.feature-icon-wrapper::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: var(--primary-gradient);
  border-radius: 50%;
  opacity: 0.3;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-icon-wrapper::before {
  transform: scale(1.2);
  opacity: 0.5;
}

.feature-icon {
  font-size: 2.5rem;
  color: #ffffff;
  z-index: 2;
  position: relative;
}

.feature-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  position: relative;
}

.feature-content h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.feature-card:hover .feature-content h4::after {
  width: 60px;
}

.feature-content p {
  color: var(--light-text);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-content p {
  color: var(--default-color);
}

.feature-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary-gradient);
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-badge {
  opacity: 1;
  transform: translateY(0);
}

.feature-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--border-color);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-stats {
  opacity: 1;
  transform: translateY(0);
}

.feature-stat {
  text-align: center;
}

.feature-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
}

.feature-stat-label {
  font-size: 0.8rem;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .feature-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon {
    font-size: 2rem;
  }
}

/* Animation Classes */
.feature-card.animate-in {
  animation: featureCardIn 0.6s ease forwards;
}

@keyframes featureCardIn {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

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

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

.feature-item-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 5px 15px;
  border: 1px solid #e0e0e0;
  ;
  background-color: var(--background-color);
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 40px;
  color: var(--accent-color);
  margin-right: 15px;
}

.feature-text {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

.feature-item strong {
  font-size: 18px;
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

/* Styles pour le bloc Témoignages */
.testimonials-section {
  padding: 100px 0;
  background: var(--section-bg);
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--contrast-color) 100%);
  opacity: 0.05;
}


.testimonial-card {
  background: var(--card-bg);
  padding: 40px 30px;
  box-shadow: 0 8px 30px var(--shadow-color);
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
  border-color: var(--accent-color);
}

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

.testimonial-quote {
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-img {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid var(--accent-color);
}

.testimonial-author-name {
  font-weight: 600;
  margin-bottom: 3px;
}

.testimonial-author-title {
  font-size: 0.9rem;
  opacity: 0.7;
}

.testimonial-rating {
  display: flex;
  margin-bottom: 15px;
}

.rating-star {
  color: var(--accent-color);
  margin-right: 3px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {

  .pricing-section,
  .testimonials-section {
    padding: 70px 0;
  }

  .pricing-card.featured {
    transform: scale(1);
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 767.98px) {
  .pricing-price {
    font-size: 2rem;
  }

  .pricing-title {
    font-size: 1.3rem;
  }

  .testimonial-card {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  background: var(--section-bg);
  padding: 80px 0;
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--contrast-color) 100%);
  opacity: 0.05;
}

.pricing .pricing-item {
  background: var(--card-bg);
  padding: 50px 30px;
  box-shadow: 0 8px 30px var(--shadow-color);
  height: 100%;
  position: relative;
  border-radius: 20px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  overflow: hidden;
}

.pricing .pricing-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing .pricing-item:hover::before {
  opacity: 1;
}

.pricing .pricing-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3);
  border-color: var(--accent-color);
}

.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: 600;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.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: var(--light-text);
  text-align: left;
  line-height: 1.6;
}

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

.pricing ul i {
  color: var(--success-color);
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: var(--light-text);
  opacity: 0.5;
}

.pricing ul .na i {
  color: var(--light-text);
  opacity: 0.5;
}

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

.pricing .buy-btn {
  color: #ffffff;
  background: var(--primary-gradient);
  display: inline-block;
  padding: 15px 40px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing .buy-btn:hover {
  background: var(--secondary-gradient);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

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

.pricing .featured .pricing-item {
  background: var(--primary-gradient);
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.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: #ffffff;
}

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

.pricing .featured .buy-btn:hover {
  background: var(--surface-color);
  color: var(--accent-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  background: var(--section-bg);
  padding: 80px 0;
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(135deg, var(--contrast-color) 0%, var(--accent-color) 100%);
  opacity: 0.05;
}

.faq .faq-container {
  margin-top: 15px;
}

.faq-item {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
  border-color: var(--accent-color);
}

.faq-icon {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.5rem;
  margin-right: 20px;
}

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

.faq-card {
  display: flex;
  align-items: start;
  gap: 15px;
  height: 100%;
}

.faq-text {
  flex-grow: 1;
}

.faq-text h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.faq-text p {
  font-size: 14px;
  color: var(--light-text);
  line-height: 1.6;
  margin: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: var(--section-bg);
  padding: 80px 0;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(135deg, var(--contrast-color) 0%, var(--accent-color) 100%);
  opacity: 0.05;
}

.contact .info-item {
  background: var(--card-bg);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact .info-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact .info-item:hover::before {
  opacity: 1;
}

.contact .info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
  border-color: var(--accent-color);
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
  color: var(--heading-color);
}

.contact .info-item p {
  padding: 0;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 0;
  color: var(--light-text);
}

.contact .php-email-form {
  background: var(--card-bg);
  padding: 30px;
  height: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 30px var(--shadow-color);
  border: 1px solid var(--border-color);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 15px 20px;
  box-shadow: none;
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  transition: all 0.3s ease;
  width: 100%;
}

.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);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
  outline: none;
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: var(--light-text);
  opacity: 0.7;
}

.contact .php-email-form button[type=submit] {
  background: var(--primary-gradient);
  color: #ffffff;
  border: 0;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  cursor: pointer;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--secondary-gradient);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

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

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

#cookie-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 15px 15px 0 0;
}

#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(--primary-gradient);
  color: white;
  border: none;
  padding: 12px 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

#cookie-popup button:hover {
  background: var(--secondary-gradient);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

#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: var(--accent-color);
}

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

.footer .copyright a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer .copyright a:hover {
  color: var(--contrast-color);
}

.footer .copyright {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.about_elem {
  margin-bottom: 2rem;
  background: var(--card-bg);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.about_elem:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.2);
  border-color: var(--accent-color);
}

.about_elem .d-flex {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.about_elem i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 15px;
  background: linear-gradient(135deg, var(--accent-color), var(--contrast-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}



.swiper-slide {
  opacity: 0.4;
  transform: scale(0.92);
  transition: all 0.3s ease-in-out;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.swiper-pagination-bullet {
  background-color: var(--light-text);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.0);
  border: 1px solid var(--bg-color);
  color: var(--accent-color);
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--bg-color);
  color: var(--accent-color);
}

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

.swiper-pagination {
  position: absolute;
  bottom: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: var(--light-text);
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 0.5;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary-gradient);
  opacity: 1;
  transform: scale(1.2);
}

.swiper-pagination .swiper-pagination-bullet:hover {
  background: var(--accent-color);
  opacity: 0.8;
  transform: scale(1.1);
}

.swiper-button-next,
.swiper-button-prev {
  background-color: rgba(0, 212, 255, 0.1);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: #ffffff;
  transform: scale(1.1);
}

.swiper-pagination.hidden {
  display: none;
}

.swiper-pagination .swiper-pagination-button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.swiper-pagination .swiper-pagination-button-prev,
.swiper-pagination .swiper-pagination-button-next {
  font-size: 20px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.swiper-pagination .swiper-pagination-button-prev:hover,
.swiper-pagination .swiper-pagination-button-next:hover {
  color: var(--contrast-color);
  transform: scale(1.1);
}

.testimonial-img {
  width: 100%;
  max-width: 350px;
  max-height: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.growth {
  background: var(--primary-gradient);
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.growth::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.9) 0%, rgba(0, 212, 255, 0.2) 100%);
  z-index: 1;
}

.growth-content {
  position: relative;
  z-index: 2;
}

.growth h2 {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.growth .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.6;
}

.growth .btn {
  background: #ffffff;
  color: var(--background-color);
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.growth .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 255, 136, 0.4);
  background: var(--surface-color);
}

.lead {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.6;
  background: linear-gradient(135deg, var(--accent-color), var(--contrast-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*--------------------------------------------------------------
# Testimonials Styling
--------------------------------------------------------------*/
.testimonial-item {
  text-align: center;
  padding: 30px;
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 8px 30px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-item:hover::before {
  opacity: 1;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
  border-color: var(--accent-color);
}

.testimonial-item h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 15px 0 5px 0;
}

.testimonial-item h4 {
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonial-item .stars i {
  color: var(--warning-color);
  font-size: 1.2rem;
  margin: 0 2px;
}

.testimonial-item p {
  color: var(--default-color);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.testimonial-item .quote-icon-left,
.testimonial-item .quote-icon-right {
  color: var(--accent-color);
  font-size: 1.5rem;
  opacity: 0.3;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
  margin: 0 auto 15px;
}

.testimonial-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Swiper Customization for Testimonials */
.testimonials .swiper-slide {
  height: auto;
}

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

.testimonials .swiper-pagination-bullet-active {
  background: var(--primary-gradient);
  opacity: 1;
}

/*--------------------------------------------------------------
# Mobile Navigation Menu
--------------------------------------------------------------*/
.mobile-nav-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--nav-color);
  transition: all 0.3s ease;
  z-index: 10001;
  position: relative;
}

.mobile-nav-toggle:hover {
  color: var(--accent-color);
}

.mobile-nav-toggle .bi-list {
  transition: transform 0.3s ease;
}

.mobile-nav-toggle.active .bi-list {
  transform: rotate(90deg);
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Mobile Menu Container */
.mobile-nav-container {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--card-bg);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
}

.mobile-nav-container.active {
  right: 0;
  visibility: visible;
  opacity: 1;
}

/* Mobile Menu Header */
.mobile-nav-header {
  background: var(--primary-gradient);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-header h3 {
  color: #ffffff;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.mobile-nav-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

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

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

.mobile-nav-menu li {
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-menu a {
  display: flex;
  align-items: center;
  padding: 20px;
  color: var(--default-color);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-gradient);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.mobile-nav-menu a:hover::before,
.mobile-nav-menu a.active::before {
  transform: scaleY(1);
}

.mobile-nav-menu a:hover {
  background: rgba(0, 212, 255, 0.05);
  color: var(--accent-color);
  padding-left: 25px;
}

.mobile-nav-menu i {
  margin-right: 15px;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
  color: var(--accent-color);
}

/* Mobile Menu Footer */
.mobile-nav-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  background: var(--section-bg);
}

.mobile-nav-footer .btn {
  width: 100%;
  background: var(--primary-gradient);
  color: #ffffff;
  border: none;
  padding: 15px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.mobile-nav-footer .btn:hover {
  background: var(--secondary-gradient);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Mobile Menu Social Links */
.mobile-nav-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.mobile-nav-social a {
  width: 45px;
  height: 45px;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
  transition: all 0.3s ease;
  background: var(--card-bg);
}

.mobile-nav-social a:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-3px);
}

/* Mobile Menu Dropdown */
.mobile-nav-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--section-bg);
}

.mobile-nav-dropdown.active {
  max-height: 300px;
}

.mobile-nav-dropdown a {
  padding-left: 55px;
  font-size: 1rem;
  color: var(--light-text);
}

.mobile-nav-dropdown a:hover {
  color: var(--accent-color);
}

/* Mobile Menu Toggle Button */
.mobile-nav-toggle-btn {
  position: relative;
  width: 30px;
  height: 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-nav-toggle-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: currentColor;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 2px;
  transform-origin: center;
}

.mobile-nav-toggle.active .mobile-nav-toggle-btn span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-nav-toggle.active .mobile-nav-toggle-btn span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-nav-toggle.active .mobile-nav-toggle-btn span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Design */
@media (max-width: 1199px) {
  .mobile-menu-toggle-wrapper {
    display: block !important;
  }
  
  .header .btn-getstarted {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-nav-container {
    max-width: 100%;
  }
  
  .mobile-nav-menu a {
    padding: 18px 20px;
    font-size: 1rem;
  }
  
  .mobile-nav-header {
    padding: 15px 20px;
  }
  
  .mobile-nav-header h3 {
    font-size: 1.3rem;
  }
}

/* Body scroll lock handled by JavaScript */

/* Animation for mobile menu items */
.mobile-nav-menu li {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.3s ease;
}

.mobile-nav-container.active .mobile-nav-menu li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav-container.active .mobile-nav-menu li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-container.active .mobile-nav-menu li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-container.active .mobile-nav-menu li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-container.active .mobile-nav-menu li:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav-container.active .mobile-nav-menu li:nth-child(5) { transition-delay: 0.5s; }
.mobile-nav-container.active .mobile-nav-menu li:nth-child(6) { transition-delay: 0.6s; }

/*--------------------------------------------------------------
# Main Content
--------------------------------------------------------------*/
.main {
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

/*--------------------------------------------------------------
# Mobile Navigation Menu
--------------------------------------------------------------*/
.header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 30px;
}

/* Hide desktop navmenu on mobile */
@media (max-width: 1199px) {
  .navmenu {
    display: none !important;
  }
  
  .navbar {
    display: none !important;
  }
}

/* Desktop Navigation Styles */
@media (min-width: 1200px) {
  .navbar {
    display: flex !important;
    align-items: center;
  }
  
  .navmenu {
    display: flex !important;
    flex-direction: row !important;
  }
  
  .navmenu ul {
    display: flex !important;
    flex-direction: row !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 10px;
    align-items: center;
  }
  
  .navmenu li {
    list-style: none !important;
    margin: 0;
    padding: 0;
  }
  
  .navmenu a {
    color: var(--nav-color);
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }
  
  .navmenu a:hover,
  .navmenu .active {
    color: var(--nav-hover-color);
    border-color: var(--accent-color);
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
  }
  
  .header .btn-getstarted {
    display: block !important;
  }
}

/* Mobile Menu Toggle Wrapper */
.mobile-menu-toggle-wrapper {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 10002;
  display: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-menu-toggle-wrapper.active {
  left: auto;
  right: 20px;
}

.mobile-menu-toggle-wrapper .mobile-nav-toggle {
  background: var(--default-color);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: #ffffff;
}

.mobile-menu-toggle-wrapper .mobile-nav-toggle:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
  transform: scale(1.1);
  color: var(--default-color);
}

/* Mobile Menu Toggle Button */