/* Fonts */
:root {
  --default-font: "Fugaz One", system-ui, -apple-system, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Fugaz One", sans-serif;
  --nav-font: "Fugaz One", 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: #f8fafc;
--default-color: #3b82f6;
--heading-color: #1e40af;
--accent-color: #60a5fa;
--surface-color: #ffffff;
--contrast-color: #1f2937;
--bg-color: #f1f5f9;
--nav-color: #3b82f6;
--nav-hover-color: #1e40af;
--nav-mobile-background-color: #ffffff;
--nav-dropdown-background-color: #ffffff;
--nav-dropdown-color: #374151;
--nav-dropdown-hover-color: #3b82f6;


}

/* Color Presets */

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

.dark-background {
  --background-color: #1e293b;
  --default-color: #3b82f6;
  --heading-color: #1e40af;
  --surface-color: #334155;
  --contrast-color: #f8fafc;
}


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

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

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

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

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

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

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

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

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  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: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header .logo {
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header .logo:hover {
  transform: translateY(-2px);
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.logo-icon i {
  font-size: 24px;
  color: white;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 15px;
}

.logo-text h2 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

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

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

.header-actions .btn {
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-actions .btn-primary {
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.header-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  color: white;
}

@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 {
    padding: 8px 11px;
    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 a {
    border-bottom: 1px solid var(--accent-color);

    margin: 0 1rem;
  }

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;

    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: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 80px 20px 20px 20px;
    margin: 0;
    width: 100%;
    height: 100vh;

    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: 15px 20px;
    font-family: var(--nav-font);
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .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 {
    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;
    z-index: 9997;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    padding: 80px 20px 20px 20px;
    background-color: var(--nav-mobile-background-color);
    z-index: 9998;
  }

  .mobile-nav-active .navmenu>ul li:last-child a {
    border-bottom: none;
  }
}

/* Mobile Menu - Extra Small Screens */
@media (max-width: 480px) {
  .navmenu ul {
    padding: 70px 15px 15px 15px;
  }

  .navmenu a,
  .navmenu a:focus {
    padding: 12px 15px;
    font-size: 16px;
  }

  .mobile-nav-active .navmenu>ul {
    padding: 70px 15px 15px 15px;
  }
}

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

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

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

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  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;
  ;
}

.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: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  ;
}

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

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

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  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;
}

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

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

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

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

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

.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;
  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: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 0 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: linear-gradient(135deg, var(--accent-color), var(--default-color));
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 30px 10px 30px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

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

.hero .download-btn:hover {
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 170, 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 ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  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;
  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 {
  background: linear-gradient(135deg, var(--bg-color), #e2e8f0);
  color: var(--contrast-color);
}

.features .icon-box {
  display: flex;
  align-items: center;
  width: 30%;
  margin: 1rem;
}

.features .icon-box {
  background: rgba(0, 212, 170, 0.1);
  border: 2px solid var(--accent-color);
  border-radius: 1rem;
  padding: 0.5rem 0;
  backdrop-filter: blur(10px);
}

.features .icon-box:hover {
  border-color: var(--default-color);
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
  transform: translateY(-3px);
  background: rgba(0, 212, 170, 0.2);
}

.faq-elem:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.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;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# 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;;
  border-radius: 1rem;
  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: linear-gradient(135deg, #f0fdfa, #e6fffa);
  position: relative;
}


.testimonial-card {
  background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
  padding: 40px 30px;
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.2);
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid var(--accent-color);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 212, 170, 0.3);
  border-color: var(--default-color);
}

.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);
  border-radius: 1rem;
}

.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 .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;
  border-radius: 1rem;
}

.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: var(--contrast-color);
  background: linear-gradient(135deg, var(--accent-color), var(--default-color));
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border: none;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.pricing .buy-btn:hover {
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
  color: var(--contrast-color);
}

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

.pricing .featured .pricing-item {
  background: linear-gradient(135deg, var(--accent-color), var(--default-color));
  box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.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;
  border-radius: 1rem
  ;
}


.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 .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;
  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: linear-gradient(135deg, var(--accent-color), var(--default-color));
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.contact .php-email-form button[type=submit]:hover {
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
}

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

#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  color: var(--heading-color);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 0;
  font-family: var(--default-font);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  max-width: 500px;
  width: calc(100% - 40px);
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

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

#cookie-popup .popup-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px;
  position: relative;
}

#cookie-popup .popup-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--default-color));
}

#cookie-popup .popup-message {
  flex: 1;
}

#cookie-popup .popup-message p {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: var(--contrast-color);
  font-size: 15px;
}

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

#cookie-popup .popup-message a:hover {
  color: var(--default-color);
}

#cookie-popup .popup-message a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

#cookie-popup .popup-message a:hover::after {
  width: 100%;
}

#cookie-popup button {
  background: linear-gradient(135deg, var(--accent-color), var(--default-color));
  color: white;
  border: none;
  padding: 14px 28px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  align-self: flex-end;
  min-width: 120px;
  position: relative;
  overflow: hidden;
}

#cookie-popup button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

#cookie-popup button:hover {
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

#cookie-popup button:hover::before {
  left: 100%;
}

#cookie-popup button:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Cookie Popup - Mobile Responsive */
@media (max-width: 768px) {
  #cookie-popup {
    bottom: 15px;
    left: 15px;
    right: 15px;
    width: auto;
    max-width: none;
    transform: translateY(100px);
  }

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

  #cookie-popup .popup-content {
    padding: 20px;
    gap: 15px;
  }

  #cookie-popup .popup-message p {
    font-size: 14px;
  }

  #cookie-popup button {
    padding: 12px 24px;
    font-size: 14px;
    align-self: stretch;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  #cookie-popup {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }

  #cookie-popup .popup-content {
    padding: 15px;
    gap: 12px;
  }

  #cookie-popup .popup-message p {
    font-size: 13px;
  }

  #cookie-popup button {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* New Section Styles */
.section-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--accent-color), var(--default-color));
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.section-description {
  font-size: 1.1rem;
  color: var(--contrast-color);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.text-gradient {
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.05));
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -5%;
  animation-delay: 7s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 20%;
  animation-delay: 14s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-30px) rotate(120deg); }
  66% { transform: translateY(15px) rotate(240deg); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.hero-description {
  font-size: 1.3rem;
  color: var(--contrast-color);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 50px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--default-color);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  color: var(--contrast-color);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-buttons .btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  color: white;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
  color: white;
}

.hero-buttons .btn-outline-primary {
  background: transparent;
  color: var(--default-color);
  border-color: var(--default-color);
}

.hero-buttons .btn-outline-primary:hover {
  background: var(--default-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

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

.hero-image-container {
  position: relative;
  width: 100%;
  height: 600px;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.05));
  z-index: 1;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: floatCard 6s ease-in-out infinite;
  transition: all 0.3s ease;
  max-width: 400px;
}


.floating-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon i {
  font-size: 20px;
  color: white;
}

.card-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 5px 0;
  line-height: 1.2;
}

.card-content p {
  font-size: 12px;
  color: var(--contrast-color);
  margin: 0;
  line-height: 1.3;
}

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

.card-2 {
  top: 20%;
  right: -15%;
  animation-delay: 1.5s;
}

.card-3 {
  bottom: 30%;
  left: -5%;
  animation-delay: 3s;
}

.card-4 {
  bottom: 10%;
  right: -10%;
  animation-delay: 4.5s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

/* About Section */
.about-stats {
  display: flex;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon i {
  font-size: 1.2rem;
  color: white;
}

.stat-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 5px 0;
  line-height: 1;
}

.stat-info p {
  font-size: 0.9rem;
  color: var(--contrast-color);
  margin: 0;
  font-weight: 500;
}

.about-features {
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.feature-content p {
  color: var(--contrast-color);
  line-height: 1.6;
  margin: 0;
}

.about-cta {
  margin-top: 40px;
}

.about-cta .btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  color: white;
  border: none;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.about-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
  color: white;
}

.about-visual {
  position: relative;
  height: 500px;
}

.about-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.05));
  z-index: 1;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: floatBadge 4s ease-in-out infinite;
  transition: all 0.3s ease;
}

.floating-badge:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.floating-badge i {
  font-size: 16px;
  color: var(--default-color);
}

.floating-badge span {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.badge-1 {
  top: 15%;
  left: -10%;
  animation-delay: 0s;
}

.badge-2 {
  top: 50%;
  right: -15%;
  animation-delay: 1.5s;
}

.badge-3 {
  bottom: 20%;
  left: -5%;
  animation-delay: 3s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

/* Features Section */
.features-slider-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.features-slider {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  min-height: 400px;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.feature-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}

.feature-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  display: block;
  width: 100%;
}

.feature-slide:first-child {
  display: block;
  opacity: 1;
  transform: translateX(0);
  position: relative;
  width: 100%;
}

.feature-card {
  background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
  border: 2px solid var(--accent-color);
  border-radius: 30px;
  padding: 50px 40px;
  text-align: center;
  height: 100%;
  width: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(96, 165, 250, 0.02));
  z-index: 1;
}

.feature-card > * {
  position: relative;
  z-index: 2;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
  border-color: var(--default-color);
}

.feature-card .feature-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

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

.feature-card .feature-icon i {
  font-size: 2.5rem;
  color: white;
}

.feature-card h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.feature-card p {
  color: var(--contrast-color);
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.feature-tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-tags .tag {
  background: rgba(59, 130, 246, 0.1);
  color: var(--default-color);
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.feature-tags .tag:hover {
  background: var(--default-color);
  color: white;
  transform: translateY(-2px);
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.slider-btn {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.slider-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.slider-btn:active {
  transform: translateY(-1px) scale(1.05);
}

.slider-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--default-color);
  transform: scale(1.3);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.dot:hover {
  background: var(--accent-color);
  transform: scale(1.2);
}

.tag {
  background: linear-gradient(135deg, var(--accent-color), var(--default-color));
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* FAQ Section */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
  border: 2px solid var(--accent-color);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-header {
  padding: 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-header:hover {
  background: rgba(59, 130, 246, 0.05);
}

.faq-header h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.faq-header i {
  font-size: 1.2rem;
  color: var(--default-color);
  transition: transform 0.3s ease;
}

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

.faq-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-content {
  padding: 0 25px 25px;
  max-height: 200px;
}

.faq-content p {
  color: var(--contrast-color);
  line-height: 1.6;
  margin: 0;
}

/* How It Works Section */
.step-card {
  background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.step-card.featured {
  border-color: var(--default-color);
  transform: scale(1.05);
}

.step-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon i {
  font-size: 2rem;
  color: white;
}

.step-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.step-card p {
  color: var(--contrast-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.step-feature {
  background: rgba(59, 130, 246, 0.1);
  color: var(--default-color);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Contact Section */
.contact-form {
  background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid var(--accent-color);
  border-radius: 10px;
  color: var(--contrast-color);
  padding: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--default-color);
  box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
  color: var(--contrast-color);
}

.contact-form .form-control::placeholder {
  color: rgba(31, 41, 55, 0.6);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
  border: 2px solid var(--accent-color);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.5rem;
  color: white;
}

.contact-details h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

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

/* Testimonials Section */
.testimonial-card {
  background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
  border-color: var(--default-color);
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #ffd700;
  font-size: 1.1rem;
}

.testimonial-text {
  color: var(--contrast-color);
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
}

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

.author-avatar i {
  font-size: 2.5rem;
  color: var(--default-color);
}

.author-info h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.author-info span {
  color: var(--contrast-color);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    margin-top: 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-buttons .btn {
    justify-content: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-image-container {
    height: 400px;
    margin-top: 50px;
  }
  
  .floating-card {
    position: relative;
    margin-bottom: 20px;
    max-width: 100%;
  }
  
  .card-1, .card-2, .card-3, .card-4 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .logo-text h2 {
    font-size: 24px;
  }
  
  .logo-text span {
    font-size: 10px;
  }
  
  .header-actions {
    display: none;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-box {
    justify-content: center;
    text-align: center;
  }
  
  .feature-slide {
    transform: translateY(30px);
  }
  
  .feature-slide.active {
    transform: translateY(0);
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .feature-card h4 {
    font-size: 1.5rem;
  }
  
  .feature-card p {
    font-size: 1rem;
  }
  
  .slider-controls {
    gap: 20px;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}


/* Footer */
.footer {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: var(--contrast-color);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--default-color), transparent);
}

.footer-content {
  margin-bottom: 60px;
}

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

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

.footer-logo .logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.footer-logo .logo-icon i {
  font-size: 24px;
  color: white;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 15px;
}

.footer-logo .logo-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 1;
}

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

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

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

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: var(--default-color);
  border-color: var(--default-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  color: white;
}

.footer-links h4 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--default-color);
  border-radius: 2px;
}

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

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

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

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

.footer-contact h4 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--default-color);
  border-radius: 2px;
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer-contact .contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.footer-contact .contact-item i {
  font-size: 18px;
  color: var(--default-color);
  width: 20px;
  text-align: center;
}

.footer-contact .contact-item span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 2px;
}

.footer-contact .contact-item p {
  color: white;
  font-size: 14px;
  margin: 0;
  font-weight: 500;
}

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

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

.made-with-love {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

.made-with-love i {
  color: var(--default-color);
  margin: 0 5px;
}

/* Hero Section for Policy Pages */
.hero {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.05));
  animation: float 20s ease-in-out infinite;
}

.hero-shapes .shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: -5%;
  animation-delay: 0s;
}

.hero-shapes .shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: -5%;
  animation-delay: 7s;
}

.hero-shapes .shape-3 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 20%;
  animation-delay: 14s;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--contrast-color);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section for Policy Pages */
.about {
  position: relative;
  background: var(--light-background);
  padding: 80px 0;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-description {
  font-size: 1.1rem;
  color: var(--contrast-color);
  margin-bottom: 40px;
  line-height: 1.6;
}

.text-gradient {
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Contact Section - Complete Redesign */
.contact {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 100px 0;
  overflow: hidden;
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.contact-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.contact-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.05));
  animation: float 20s ease-in-out infinite;
}

.contact-shapes .shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: -5%;
  animation-delay: 0s;
}

.contact-shapes .shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: -5%;
  animation-delay: 7s;
}

.contact-shapes .shape-3 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 20%;
  animation-delay: 14s;
}

/* Contact Methods Tabs */
.contact-methods {
  margin-bottom: 60px;
}

.method-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.method-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  color: var(--contrast-color);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.method-tab:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.method-tab.active {
  background: var(--default-color);
  color: white;
  border-color: var(--default-color);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.method-tab i {
  font-size: 18px;
}

/* Contact Content Wrapper */
.contact-content-wrapper {
  position: relative;
  z-index: 2;
}

.contact-tab-content {
  display: none;
  animation: fadeInUp 0.5s ease-in-out;
}

.contact-tab-content.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Form Styles */
.contact-form-container {
  height: 100%;
  display: flex;
  align-items: center;
}

.contact-form {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--accent-color);
  border-radius: 30px;
  padding: 50px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.contact-form h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.contact-form p {
  color: var(--contrast-color);
  margin-bottom: 40px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.form-group {
  flex: 1;
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--accent-color);
  border-radius: 15px;
  color: var(--contrast-color);
  padding: 18px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 1);
  border-color: var(--default-color);
  box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
  color: var(--contrast-color);
  outline: none;
}

.contact-form .form-control::placeholder {
  color: rgba(31, 41, 55, 0.6);
  font-weight: 500;
}

.contact-form .btn {
  width: 100%;
  padding: 18px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 15px;
  border: none;
  transition: all 0.3s ease;
}

/* Contact Visual */
.contact-visual {
  position: relative;
  height: 500px;
}

.contact-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.contact-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.05));
  z-index: 1;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.floating-contact-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: floatContactBadge 4s ease-in-out infinite;
  transition: all 0.3s ease;
}

.floating-contact-badge:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.floating-contact-badge i {
  font-size: 16px;
  color: var(--default-color);
}

.floating-contact-badge span {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.badge-1 {
  top: 15%;
  left: -10%;
  animation-delay: 0s;
}

.badge-2 {
  top: 50%;
  right: -15%;
  animation-delay: 1.5s;
}

.badge-3 {
  bottom: 20%;
  left: -5%;
  animation-delay: 3s;
}

@keyframes floatContactBadge {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

/* Call Tab Styles */
.contact-info-visual {
  text-align: center;
  padding: 50px 0;
}

.phone-animation {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
}

.phone-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.phone-icon i {
  font-size: 2rem;
  color: white;
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid var(--default-color);
  border-radius: 50%;
  animation: phoneRing 2s ease-in-out infinite;
}

.ring-1 {
  width: 120px;
  height: 120px;
  animation-delay: 0s;
}

.ring-2 {
  width: 160px;
  height: 160px;
  animation-delay: 0.5s;
}

.ring-3 {
  width: 200px;
  height: 200px;
  animation-delay: 1s;
}

@keyframes phoneRing {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.contact-info-visual h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.contact-info-visual p {
  color: var(--contrast-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  padding: 25px;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-detail-item:hover {
  transform: translateX(10px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
  border-color: var(--default-color);
}

.detail-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.detail-icon i {
  font-size: 1.5rem;
  color: white;
}

.detail-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.phone-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 5px;
}

.availability {
  font-size: 0.9rem;
  color: var(--contrast-color);
  font-weight: 500;
}

/* Meeting Tab Styles */
.meeting-visual {
  text-align: center;
  padding: 50px 0;
}

.calendar-animation {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
}

.calendar-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.calendar-icon i {
  font-size: 2rem;
  color: white;
}

.calendar-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.calendar-dots .dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--default-color);
  border-radius: 50%;
  animation: calendarPulse 2s ease-in-out infinite;
}

.dot-1 {
  top: -30px;
  left: -20px;
  animation-delay: 0s;
}

.dot-2 {
  top: -20px;
  right: -30px;
  animation-delay: 0.5s;
}

.dot-3 {
  bottom: -30px;
  left: 0;
  animation-delay: 1s;
}

@keyframes calendarPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

.meeting-visual h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.meeting-visual p {
  color: var(--contrast-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

.meeting-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.meeting-option {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  padding: 25px;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.meeting-option:hover {
  transform: translateX(10px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
  border-color: var(--default-color);
}

.option-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.option-icon i {
  font-size: 1.5rem;
  color: white;
}

.option-content {
  flex: 1;
}

.option-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.option-content p {
  color: var(--contrast-color);
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.duration {
  font-size: 0.9rem;
  color: var(--default-color);
  font-weight: 600;
}

.meeting-option .btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  white-space: nowrap;
}

/* Quick Contact Info */
.quick-contact-info {
  margin-top: 80px;
}

.quick-contact-card {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quick-contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
  border-color: var(--default-color);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.card-icon i {
  font-size: 1.8rem;
  color: white;
}

.card-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.card-content p {
  color: var(--contrast-color);
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 600;
}

.card-content span {
  color: var(--default-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.contact-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.floating-contact-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: floatContactBadge 4s ease-in-out infinite;
  transition: all 0.3s ease;
}

.floating-contact-badge:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.floating-contact-badge i {
  font-size: 16px;
  color: var(--default-color);
}

.floating-contact-badge span {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.badge-1 {
  top: 15%;
  left: -10%;
  animation-delay: 0s;
}

.badge-2 {
  top: 50%;
  right: -15%;
  animation-delay: 1.5s;
}

.badge-3 {
  bottom: 20%;
  left: -5%;
  animation-delay: 3s;
}

@keyframes floatContactBadge {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

.contact-content {
  height: 100%;
  display: flex;
  align-items: center;
}

.contact-form h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.contact-form p {
  color: var(--contrast-color);
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 25px;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
  border-color: var(--default-color);
}

.info-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.info-icon i {
  font-size: 1.8rem;
  color: white;
}

.info-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.info-content p {
  color: var(--contrast-color);
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.about_elem {
  margin-bottom: 2rem;
}


.swiper-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    padding: 0 3%;
}

.swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease;
}

.swiper-slide {
    width: 33.33%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.swiper-slide-active {
    opacity: 1;
}

.swiper-slide-next,
.swiper-slide-prev {
    opacity: 0.5;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 50%;
    font-size: 24px;
    z-index: 10;
    cursor: pointer;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


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

.growth {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(96, 165, 250, 0.8)), url('assets/img/main.jpg');
  background-size: cover;
  background-position: center;
  color: var(--contrast-color);
  padding: 100px 0;
}

.lead  {
  color: var(--contrast-color);
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}