/* Fonts */
:root {
  --default-font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Manrope", sans-serif;
  --nav-font: "Manrope", sans-serif;
}

/* Global Colors */
:root {
  --background-color: #ffffff;
  --default-color: #212529;
  --heading-color: #0f172a;
  --accent-color: #e59d02;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  
  --nav-color: #334155;
  --nav-hover-color: #e59d02;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #334155;
  --nav-dropdown-hover-color: #e59d02;
}

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

.dark-background {
  --background-color: #0f172a;
  --default-color: #f1f5f9;
  --heading-color: #ffffff;
}

/* Premium Components Refinement */
:root {
  --primary-gradient: linear-gradient(135deg, #e59d02 0%, #f59e0b 100%);
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.premium-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

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

.premium-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(229, 157, 2, 0.3);
}

/* Scrolled Header Styling */
/* Header & Navbar Refinement */
.header {
  height: 90px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
}

.scrolled .header {
  height: 75px;
  /* background: rgba(255, 255, 255, 0.85); */
  /* backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px); */
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); */
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.5); */
}

/* Yellow & Black Brand Buttons */
.btn-brand-primary {
  background: #ffcc00;
  color: #000000;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  border: 2px solid #ffcc00;
  transition: all 0.3s ease;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.btn-brand-primary:hover {
  background: #e6b800;
  border-color: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2);
  color: #000;
}

.btn-brand-dark {
  background: #000000;
  color: #ffcc00;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  border: 2px solid #000000;
  transition: all 0.3s ease;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.btn-brand-dark:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  color: #ffcc00;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-free-audit {
  background: #ffcc00;
  color: #000;
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  transition: 0.3s;
  cursor: pointer;
}
.btn-free-audit:hover {
  background: #000;
  color: #ffcc00;
}

.navmenu a, 
.navmenu a:focus {
  color: #1e293b;
  font-weight: 600;
  transition: 0.3s;
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: #e59d02;
}

/* Connect Button UI */
.btn-connect {
  background: #ffcc00;
  color: #000000;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 18px;
  border: 2px solid #ffcc00;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(255, 204, 0, 0.15);
  cursor: pointer;
}
 
/* Light version of brand button */
.btn-connect-light {
  background: #ffcc00;
  color: #000000;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  cursor: pointer;
}
.btn-connect-light:hover {
  background: #000;
  color: #ffcc00;
}

.btn-connect:hover {
  background: #000000;
  color: #ffcc00;
  border-color: #000000;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-connect i {
  transition: transform 0.3s ease;
}

.btn-connect:hover i {
  transform: translateX(5px);
}

/* FAQ Grouped Styling */
.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 0;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: #0f172a;
  font-size: 1.1rem;
}

.faq-icon {
  color: #ff6a39; /* Use an accent color */
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #475569;
  padding-top: 0;
}

.faq-item.active .faq-answer {
  max-height: none; /* Let JS handle it or allow expansion */
  padding-top: 15px;
  padding-bottom: 10px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.certification-badge {
  text-align: center;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  margin-bottom: 20px;
}
.equal-height-card { 
  height: 100%; 
  display: flex; 
  flex-direction: column; 
}
/* Modern Exit/Interest Popup */
.interest-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.interest-popup-overlay.show {
  display: flex;
  opacity: 1;
}

.interest-popup-card {
  background: #ffffff;
  width: 95%;
  max-width: 800px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.interest-popup-overlay.show .interest-popup-card {
  transform: scale(1);
}

.popup-image-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  background: #f8fafc;
}

.popup-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-content {
  padding: 50px;
  text-align: left;
}

.popup-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #0f172a;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.popup-close-btn:hover {
  background: #000;
  color: #fff;
}
.max-width-800 { max-width: 800px; }

/*--------------------------------------------------------------
# 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;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

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

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

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

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

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

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

  .header .navmenu {
    order: 3;
  }
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  z-index: -1;
  pointer-events: none;
  transition: all 0.4s ease-in-out;
  border-bottom: 1px solid transparent;
}

.scrolled .header::before {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgb(255, 255, 255);
}

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

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

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

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

  .navmenu .dropdown:hover > ul:not(.mega-menu-content) {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown:hover > ul:not(.mega-menu-content) {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  /* Mega Menu Styles */
  .navmenu .mega-menu {
    position: static !important;
  }

  .navmenu .mega-menu-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 900px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-top: 4px solid #ffcc00;
    border-radius: 0 0 32px 32px;
    padding: 50px 40px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 999;
    box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.15);
    display: block !important;
  }

  .navmenu .mega-menu:hover > .mega-menu-content {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0);
  }

  .mega-menu-content .row {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
  }

  .service-menu-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 18px !important;
    padding: 20px !important;
    background: transparent !important;
    border-radius: 16px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    border: 1px solid transparent !important;
    height: 100%;
    width: 100% !important;
  }

  .service-menu-item:hover {
    background: rgba(255, 204, 0, 0.05) !important;
    border-color: rgba(255, 204, 0, 0.2) !important;
    transform: translateY(-5px);
  }

  .service-menu-item .icon-box {
    width: 56px;
    height: 56px;
    background: rgba(255, 204, 0, 0.1);
    color: #b48a00;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.4s ease;
  }

  .service-menu-item:hover .icon-box {
    background: #ffcc00;
    color: #0f172a;
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.3);
  }

  .service-menu-item .content {
    flex: 1;
    min-width: 0; /* Critical for text wrapping in flexbox */
  }

  .service-menu-item .content h4 {
    color: #0f172a;
    font-size: 1.15rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
    white-space: normal !important;
    line-height: 1.2;
  }

  .service-menu-item .content p {
    color: #475569;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    white-space: normal !important;
    overflow-wrap: break-word;
  }
}

@media (max-width: 1199px) {
  .mega-menu-content {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .mega-menu-content {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .mega-menu-content {
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .mega-menu-content {
    display: none;
  }
  .mega-menu.active .mega-menu-content {
    display: block;
    position: static;
    width: 100%;
    transform: none;
    padding: 20px;
  }
}

/* Navmenu - Mobile Styling Fix */
.mobile-nav-active .navmenu .mega-menu-content ul {
  display: block;
}
.mobile-nav-active .navmenu .mega-menu-content ul li a {
  padding: 10px 0;
}

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

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer .footer-top {
  background-color: color-mix(in srgb, var(--background-color), white 5%);
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

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

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

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

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

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

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

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

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

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

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

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

.footer .copyright {
  padding: 30px 0;
}

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

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

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: var(--accent-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  text-decoration: none;
}

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

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

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

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

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

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

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  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: 100px 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;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--background-color);
  padding-bottom: 60px;
  overflow: hidden;
}

/* Premium Noise Overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  filter: url(#noiseFilter);
  opacity: 0.3;
  z-index: 2;
  pointer-events: none;
}

/* Modern Glow Background */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 10% 20%,
      color-mix(in srgb, var(--accent-color), transparent 85%) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      color-mix(in srgb, #4f46e5, transparent 90%) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 50%,
      color-mix(in srgb, var(--accent-color), transparent 97%) 0%,
      transparent 60%
    );
  z-index: 1;
  filter: blur(80px);
}

.hero-glow-1,
.hero-glow-2,
.hero-glow-3,
.hero-glow-4 {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  will-change: transform;
  transition: transform 0.2s cubic-bezier(0.2, 0, 0.2, 1);
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: drift 20s ease-in-out infinite alternate;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #6366f1 0%, transparent 70%);
  bottom: -50px;
  left: -100px;
  animation: drift 25s ease-in-out infinite alternate-reverse;
}

.hero-glow-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #f43f5e 0%, transparent 70%);
  top: 30%;
  left: 10%;
  opacity: 0.2;
  animation: drift 30s ease-in-out infinite alternate;
}

.hero-glow-4 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #22d3ee 0%, transparent 70%);
  bottom: 20%;
  right: 15%;
  opacity: 0.15;
  animation: drift 18s ease-in-out infinite alternate-reverse;
}

.hero .hero-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.hero .hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  color: var(--heading-color);
  line-height: 1.2;
  margin-bottom: 30px;
  letter-spacing: -0.04em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero .hero-title .underline-wrapper {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.hero .hero-title .curved-underline {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 105%;
  height: 20px;
  opacity: 0;
  animation: drawUnderline 1.2s ease-out 0.6s forwards;
  filter: drop-shadow(0 1px 2px rgba(229, 157, 2, 0.3));
}

@keyframes drawUnderline {
  0% {
    opacity: 0;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
  }
  100% {
    opacity: 1;
    stroke-dasharray: 400;
    stroke-dashoffset: 0;
  }
}

.hero .hero-title .typed {
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    color-mix(in srgb, var(--accent-color), #8b5cf6 50%) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  text-decoration: none !important;
}

.typed {
  text-decoration: none !important;
}

/* Remove underline from the cursor */
.typed-cursor {
  text-decoration: none !important;
}

.hero .hero-description {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


.hero .hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}

.hero .hero-actions .action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.hero .hero-actions .action-btn.primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}



@keyframes orbit-tight {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(15px, 10px) rotate(3deg); }
  50% { transform: translate(0, 20px) rotate(0deg); }
  75% { transform: translate(-15px, 10px) rotate(-3deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes float-around {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -30px) rotate(5deg);
  }
  50% {
    transform: translate(-10px, 40px) rotate(-5deg);
  }
  75% {
    transform: translate(-30px, -10px) rotate(8deg);
  }
}

/* Responsive adjustment for icons */
@media (max-width: 992px) {
  .floating-brand-icon {
    width: 40px;
    height: 40px;
    opacity: 0.1;
  }
}

.hero .hero-actions .action-btn.primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), #8b5cf6 30%) 0%,
    var(--accent-color) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero .hero-actions .action-btn.primary span,
.hero .hero-actions .action-btn.primary i {
  position: relative;
  z-index: 1;
}

.hero .hero-actions .action-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero .hero-actions .action-btn.primary:hover::before {
  opacity: 1;
}

.hero .hero-actions .action-btn.secondary {
  background: transparent;
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.hero .hero-actions .action-btn.secondary:hover {
  background: var(--surface-color);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .hero-image-showcase {
  position: relative;
}

.hero .hero-image-showcase .image-wrapper {
  position: relative;
  background: rgba(25, 25, 25, 0.5);
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 0 50px color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.hero .hero-image-showcase .image-wrapper img {
  border-radius: 12px;
  width: 100%;
  height: auto;
}

.hero .hero-image-showcase .floating-card {
  position: absolute;
  background: rgba(40, 40, 40, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 15px 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  z-index: 10;
}

.hero .hero-image-showcase .floating-card.card-1 {
  top: 15%;
  left: -40px;
  animation: float 4s ease-in-out infinite;
}

.hero .hero-image-showcase .floating-card.card-2 {
  bottom: 20%;
  right: -40px;
  animation: float 4s ease-in-out infinite reverse;
}

.hero .hero-image-showcase .floating-card .card-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero .hero-image-showcase .floating-card .card-content .card-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .hero-image-showcase .floating-card .card-content .card-icon i {
  color: var(--accent-color);
  font-size: 20px;
}

.hero .hero-image-showcase .floating-card .card-content .card-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1;
}

.hero .hero-image-showcase .floating-card .card-content .card-info p {
  margin: 5px 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.85rem;
  white-space: nowrap;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.8;
  }
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
  }

  .hero .floating-card.card-1 {
    left: -30px;
    top: 10%;
  }

  .hero .floating-card.card-2 {
    right: -30px;
    bottom: 10%;
  }

  .hero .hero-actions {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .hero .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero .hero-actions .action-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero .floating-card {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 100px 0 30px;
  }

  .hero .hero-badge {
    margin-bottom: 20px;
  }

  .hero .hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .hero .hero-actions {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.about .image-wrapper:hover {
  transform: translateY(-5px);
}

.about .content h2 {
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.about .content h2:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  left: 0;
  bottom: -10px;
}

.about .content h5 {
  font-weight: 500;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.about .content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about .features-list {
  margin-top: 2rem;
}

.about .features-list .feature-item {
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.about .features-list .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about .features-list .feature-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: block;
}

.about .features-list .feature-item h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.about .features-list .feature-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.about .btn {
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.about .btn.btn-outline-primary {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.about .btn.btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .about .image-wrapper {
    margin-bottom: 2rem;
  }

  .about .content {
    text-align: center;
  }

  .about .content h2:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about .signature-area {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .about .features-list .feature-item {
    margin-bottom: 1.5rem;
  }
}

/* Smooth transitions for content changes */
.content-transition {
  transition: opacity 0.3s ease;
}

.content-transition.fade-out {
  opacity: 0;
}

/* Typed.js cursor styling */
.typed-cursor {
  color: var(--accent-color);
  font-weight: 400;
}

/* Gradient styling for About section typed text */
.typed-text {
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    color-mix(in srgb, var(--accent-color), #8b5cf6 50%) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  text-decoration: none !important;
}


/* Icon glow effect on hover */
.about .features-list .feature-item i {
  transition: all 0.3s ease;
}

.about .features-list .feature-item:hover i {
  text-shadow: 0 0 10px color-mix(in srgb, var(--accent-color), transparent 30%),
    0 0 20px color-mix(in srgb, var(--accent-color), transparent 50%),
    0 0 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .intro-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--heading-color);
  line-height: 1.3;
}

.features .intro-content p {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 35px;
  line-height: 1.6;
}

.features .intro-content .feature-stats {
  display: flex;
  gap: 30px;
}

.features .intro-content .feature-stats .stat-item {
  text-align: center;
}

.features .intro-content .feature-stats .stat-item .stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.features .intro-content .feature-stats .stat-item .stat-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  margin-top: 5px;
  display: block;
}

.features .intro-image {
  position: relative;
}

.features .intro-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.features .intro-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 40%)
  );
  border-radius: 50%;
  z-index: -1;
  opacity: 0.7;
}

.features .intro-image::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--heading-color),
    color-mix(in srgb, var(--heading-color), transparent 40%)
  );
  border-radius: 20px;
  z-index: -1;
  opacity: 0.5;
}

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

.features .feature-item {
  position: relative;
  background: var(--surface-color);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
}

.features .feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 50%)
  );
  transition: left 0.5s ease;
}

.features .feature-item .feature-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 48px;
  font-weight: 900;
  color: color-mix(in srgb, var(--accent-color), transparent 90%);
  line-height: 1;
  z-index: 1;
}

.features .feature-item .feature-content {
  position: relative;
  z-index: 2;
}

.features .feature-item .feature-content .feature-icon {
  margin-bottom: 25px;
}

.features .feature-item .feature-content .feature-icon i {
  font-size: 32px;
  color: var(--contrast-color);
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 30%)
  );
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .feature-item .feature-content h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--heading-color);
  line-height: 1.3;
}

.features .feature-item .feature-content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 25px;
  line-height: 1.6;
}

.features .feature-item .feature-content .feature-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.features .feature-item .feature-content .feature-tags .tag {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.features .feature-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.features .feature-item:hover::before {
  left: 0;
}

.features .feature-item:hover .feature-number {
  color: color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: scale(1.1);
}

.features .feature-item:hover .feature-icon i {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.features .feature-item:hover .feature-tags .tag {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 991px) {
  .features .intro-content {
    margin-bottom: 40px;
  }

  .features .intro-content h2 {
    font-size: 32px;
  }

  .features .intro-content .feature-stats {
    justify-content: center;
    gap: 25px;
  }

  .features .features-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 25px;
  }
}

@media (max-width: 767px) {
  .features .intro-content .feature-stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .features .intro-content .feature-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .features .intro-content .feature-stats .stat-item .stat-number {
    font-size: 24px;
  }

  .features .intro-content .feature-stats .stat-item .stat-label {
    margin-top: 0;
  }

  .features .feature-item {
    padding: 25px;
  }

  .features .feature-item .feature-number {
    font-size: 36px;
    top: 15px;
    right: 20px;
  }

  .features .feature-item .feature-content h4 {
    font-size: 20px;
  }

  .features .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .features .intro-content h2 {
    font-size: 28px;
  }

  .features .intro-content p {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Features Tabs Section
--------------------------------------------------------------*/
.features-tabs {
  position: relative;
  padding: 100px 0;
}

.features-tabs .tabs-wrapper {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  overflow: visible;
}

.features-tabs .nav-tabs {
  border: 0;
  gap: 0;
  margin: 0 0 60px 0;
  display: flex;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0.03);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  width: 100%;
}

@media (max-width: 992px) {
  .features-tabs .nav-tabs {
    display: flex;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .features-tabs .nav-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .features-tabs .nav-tabs::-webkit-scrollbar {
    display: none;
  }
}

.features-tabs .nav-item {
  flex: 1;
}

.features-tabs .nav-link {
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  position: relative;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .features-tabs .nav-link {
    padding: 10px 20px;
    font-size: 13px;
  }
}

.features-tabs .nav-link .tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.features-tabs .nav-link .tab-icon i {
  font-size: 16px;
  color: currentColor;
  transition: all 0.2s ease;
}

@media (max-width: 768px) {
  .features-tabs .nav-link .tab-icon i {
    font-size: 15px;
  }
}

.features-tabs .nav-link .tab-content {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .features-tabs .nav-link .tab-content {
    display: none;
  }
}

.features-tabs .nav-link .tab-content h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: currentColor;
  transition: color 0.2s ease;
  line-height: 1;
}

.features-tabs .nav-link .tab-content span {
  display: none;
}

.features-tabs .nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.features-tabs .nav-link.active {
  background: #fff;
  color: #000;
}

.features-tabs .nav-link.active .tab-icon i {
  color: #000;
}

.features-tabs .tab-content .tab-pane {
  padding: 0;
  animation: fadeInContent 0.3s ease;
}

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

.features-tabs .content-wrapper {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .features-tabs .content-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.features-tabs .content-wrapper .tab-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.features-tabs .content-wrapper .tab-heading i {
  width: 56px;
  height: 56px;
  background: rgba(229, 157, 2, 0.1);
  border: 2px solid rgba(229, 157, 2, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-color);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.features-tabs .content-wrapper .tab-heading span {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.5px;
  line-height: 1.2;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .features-tabs .content-wrapper .tab-heading span {
    font-size: 24px;
  }
  .features-tabs .content-wrapper .tab-heading i {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .features-tabs .content-wrapper h3 {
    font-size: 24px;
  }
}

.features-tabs .content-wrapper p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 30px;
  font-weight: 400;
}

.features-tabs .content-wrapper .feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 35px;
}

@media (max-width: 576px) {
  .features-tabs .content-wrapper .feature-grid {
    gap: 14px;
  }
}

.features-tabs .content-wrapper .feature-grid .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
}

.features-tabs .content-wrapper .feature-grid .feature-item i {
  font-size: 18px;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.features-tabs .content-wrapper .feature-grid .feature-item span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 1.6;
  font-weight: 400;
}

.features-tabs .content-wrapper .stats-row {
  display: flex;
  gap: 40px;
  margin-bottom: 35px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 576px) {
  .features-tabs .content-wrapper .stats-row {
    gap: 20px;
  }
}

.features-tabs .content-wrapper .stats-row .stat-item {
  text-align: left;
}

.features-tabs .content-wrapper .stats-row .stat-item .stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

@media (max-width: 576px) {
  .features-tabs .content-wrapper .stats-row .stat-item .stat-number {
    font-size: 1.5rem;
  }
}

.features-tabs .content-wrapper .stats-row .stat-item .stat-label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.features-tabs .content-wrapper .btn-primary {
  background: var(--accent-color);
  color: #000;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
}

.features-tabs .content-wrapper .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), white 15%);
  transform: translateY(-1px);
  color: #000;
}

.features-tabs .content-wrapper .btn-primary:hover i {
  transform: translateX(3px);
}

.features-tabs .content-wrapper .btn-primary i {
  transition: transform 0.3s ease;
}

.features-tabs .visual-content {
  position: relative;
}

.features-tabs .visual-content .main-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.features-tabs .visual-content .main-image img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.features-tabs .visual-content .main-image:hover img {
  transform: scale(1.02);
}

.features-tabs .visual-content .floating-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--surface-color);
  padding: 18px 22px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

@media (max-width: 576px) {
  .features-tabs .visual-content .floating-card {
    bottom: 20px;
    left: 20px;
    padding: 15px 20px;
    gap: 10px;
  }
}

.features-tabs .visual-content .floating-card i {
  font-size: 28px;
  color: var(--accent-color);
}

@media (max-width: 576px) {
  .features-tabs .visual-content .floating-card i {
    font-size: 24px;
  }
}

.features-tabs .visual-content .floating-card .card-content span {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.features-tabs .visual-content .floating-card .card-content strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

@media (max-width: 576px) {
  .features-tabs .visual-content .floating-card .card-content strong {
    font-size: 14px;
  }
}

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 80px 0;
}

.services .intro-content .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services .intro-content .section-badge i {
  font-size: 12px;
}

.services .intro-content .section-heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .services .intro-content .section-heading {
    font-size: 2.2rem;
  }
}

.services .intro-content .section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
}

.services .intro-content .cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .intro-content .cta-button:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.services .hero-visual {
  position: relative;
}

.services .hero-visual img {
  border-radius: 20px;
  box-shadow: 0 20px 60px
    color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 991px) {
  .services .hero-visual {
    margin-top: 3rem;
  }
}

.services .services-grid .service-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  overflow: hidden;
}

.services .services-grid .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.services .services-grid .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px
    color-mix(in srgb, var(--default-color), transparent 80%);
}

.services .services-grid .service-card:hover::before {
  transform: scaleX(1);
}

.services .services-grid .service-card:hover .card-number span {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .services-grid .service-card .card-number {
  margin-bottom: 1.5rem;
}

.services .services-grid .service-card .card-number span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.services .services-grid .service-card .card-content .service-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.services .services-grid .service-card .card-content .service-title a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.services .services-grid .service-card .card-content .service-title a:hover {
  color: var(--accent-color);
}

.services .services-grid .service-card .card-content .service-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }

  .services .intro-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .services .services-grid .service-card {
    padding: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 100px 0;
  background: var(--background-color);
  position: relative;
}

.testimonials .testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  padding: 85px 40px 60px 40px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  position: relative;
  transition: all 0.3s ease;
}

.testimonials .testimonial-item .testimonial-metric {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  padding: 8px 25px;
  border-radius: 0 0 20px 20px;
  display: flex;
  flex-direction: column;
  min-width: 140px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.testimonials .testimonial-item .metric-value {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.testimonials .testimonial-item .metric-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  margin-top: 2px;
}

.testimonials .testimonial-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 90, 31, 0.2);
  transform: translateY(-5px);
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 90, 31, 0.3);
  font-size: 32px;
}

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

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

.testimonials .testimonial-item p {
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.7;
  margin: 0 auto 30px auto;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
}

.testimonials .testimonial-item h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff5a1f;
  width: 30px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }

  .testimonials .testimonial-item {
    padding: 40px 20px;
  }

  .testimonials .testimonial-item p {
    font-size: 1.1rem;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  background: #0a0a0a;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 90, 31, 0.05) 0%,
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
}

.stats .stats-overview h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.stats .stats-overview p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  line-height: 1.7;
}

.stats .stats-overview .badge {
  background: rgba(255, 90, 31, 0.1);
  color: #ff5a1f;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stats .avatars-group p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
}

.stats .avatars img {
  width: 54px;
  height: 54px;
  border: 3px solid #0a0a0a;
  margin-right: -18px;
  transition: all 0.3s ease;
  position: relative;
}

.stats .avatars img:hover {
  transform: translateY(-8px) scale(1.1);
  z-index: 5;
  border-color: #ff5a1f;
}

.stats .avatar-plus {
  width: 54px;
  height: 54px;
  background: #ff5a1f;
  border: 3px solid #0a0a0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-left: 10px;
  box-shadow: 0 0 20px rgba(255, 90, 31, 0.3);
}

.stats .stat-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 30px;
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
}

.stats .stat-card:hover {
  transform: translateY(-12px) scale(1.02);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 90, 31, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.stats .stat-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    rgba(255, 90, 31, 1) 0%,
    rgba(255, 148, 114, 1) 100%
  );
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(255, 90, 31, 0.2);
}

.stats .stat-info h2 {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.stats .stat-info p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 991px) {
  .stats .stat-card {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .stats {
    padding: 60px 0;
  }

  .stats .avatars {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stats .avatars img {
    margin: 0 -8px;
  }
}
/*--------------------------------------------------------------
# Modern Pricing Section - Complete Styles
--------------------------------------------------------------*/
/* This is the complete CSS for the modern pricing section with:
   - Gradient backgrounds and floating orbs
   - Monthly/Yearly toggle switch
   - Animated pricing cards with hover effects
   - Plan badges and popular ribbons
   - Feature lists with icons
   - CTA buttons with gradients
   - Custom quote footer section
   - Full responsive design
*/
/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  --bg: var(--background-color);
  --card-bg: #010105;
  --color: #d1d1d6;
  --border-size: -2px;
  --card-width: 320px;
  --border-radius: 20px;
  --outer-border-radius: 22px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  --spotlight-size: 200;
  --active: 1;

  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  color: var(--color);
}

.pricing .section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.pricing .section-header span {
  text-transform: uppercase;
  display: block;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.pricing .section-header h2 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
}

.pricing .section-header p {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
}

.pricing .bg-watermark {
  color: rgba(255, 255, 255, 0.03);
  font-size: clamp(6rem, 15vw, 18rem);
  font-weight: 900;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  user-select: none;
  letter-spacing: 1rem;
  text-transform: uppercase;
}

.pricing .cards-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 50px;
}

/* Old pricing styles removed to prevent conflicts */

.pricing .card-heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.pricing .card-title {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.6;
}

.pricing .card-2 .card-title {
  color: #ffd700;
  opacity: 1;
}

.pricing .card-price {
  display: flex;
  align-items: flex-start;
  font-weight: 700;
  font-size: 3.5rem;
  color: #fff;
  line-height: 0.8;
}

.pricing .currency {
  font-size: 1.5rem;
  margin-top: 8px;
  margin-right: 4px;
}

.pricing .period {
  font-size: 1rem;
  opacity: 0.5;
  margin-left: 5px;
  font-weight: 400;
}

.pricing .card-content {
  flex-grow: 1;
}

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

.pricing .benefits-list li {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.pricing .benefits-list li.disabled {
  opacity: 0.3;
}

.pricing .benefits-list li i {
  color: hsl(var(--hue-val), 70%, 50%);
  font-size: 1.1rem;
}

.pricing .card button {
  width: 100%;
  margin-top: 30px;
  padding: 15px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.pricing .card:hover button {
  background: hsl(var(--hue-val), 60%, 50%);
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.pricing .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

@media (max-width: 991px) {
  .pricing .cards-container {
    gap: 2rem;
  }
}

.pricing .pricing-card.popular:hover {
  transform: translateY(-15px) scale(1.08);
}

/* Plan Badges */
.pricing .plan-badge {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  text-align: center;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing .plan-badge.recommended {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #8b5cf6 50%)
  );
  color: white;
}

.pricing .popular-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #8b5cf6 50%)
  );
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 45px;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pricing .popular-badge i {
  font-size: 10px;
}

/* Plan Header */
.pricing .plan-header {
  padding: 35px 30px 25px;
  text-align: center;
}

.pricing .plan-header .plan-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 85%) 0%,
    color-mix(in srgb, var(--accent-color), transparent 92%) 100%
  );
  position: relative;
  transition: all 0.4s ease;
}

.pricing .pricing-card:hover .plan-icon {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #8b5cf6 50%)
  );
}

.pricing .plan-header .plan-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.pricing .pricing-card:hover .plan-icon i {
  color: white;
}

.pricing .plan-header h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(
    135deg,
    var(--heading-color),
    color-mix(in srgb, var(--heading-color), var(--accent-color) 30%)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing .plan-header p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
}

/* Plan Pricing */
.pricing .plan-pricing {
  text-align: center;
  padding: 15px 30px 25px;
  position: relative;
}

.pricing .plan-pricing .price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
}

.pricing .plan-pricing .currency {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  margin-top: 8px;
}

.pricing .plan-pricing .amount {
  font-size: 68px;
  font-weight: 900;
  color: var(--heading-color);
  line-height: 1;
  letter-spacing: -2px;
}

.pricing .plan-pricing .period {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  align-self: flex-end;
  margin-bottom: 10px;
}

.pricing .plan-pricing .billing-note {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-top: 8px;
  font-style: italic;
}

/* Plan Features */
.pricing .plan-features {
  padding: 25px 30px;
  flex: 1;
  background: color-mix(in srgb, var(--accent-color), transparent 98%);
}

.pricing .plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing .plan-features ul li {
  padding: 14px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--default-color);
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
}

.pricing .plan-features ul li:last-child {
  border-bottom: none;
}

.pricing .plan-features ul li:hover {
  padding-left: 8px;
}

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

.pricing .plan-features ul li strong {
  color: var(--accent-color);
  font-weight: 700;
}

.pricing .plan-features ul li i {
  font-size: 20px;
  flex-shrink: 0;
}

.pricing .plan-features ul li i.bi-check-circle-fill {
  color: var(--accent-color);
}

.pricing .plan-features ul li i.bi-x-circle-fill {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/* Plan CTA */
.pricing .plan-cta {
  padding: 15px 30px 35px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pricing .plan-cta .btn-plan {
  display: inline-block;
  width: 100%;
  padding: 16px 32px;
  background: var(--accent-color);
  color: white;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px
    color-mix(in srgb, var(--accent-color), transparent 60%);
  border: 2px solid var(--accent-color);
  position: relative;
  overflow: hidden;
}

.pricing .plan-cta .btn-plan::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.pricing .plan-cta .btn-plan:hover::before {
  width: 300px;
  height: 300px;
}

.pricing .plan-cta .btn-plan:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 50%);
}

.pricing .pricing-card.popular .plan-cta .btn-plan {
  background: white;
  color: var(--accent-color);
  border-color: white;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.pricing .pricing-card.popular .plan-cta .btn-plan:hover {
  background: color-mix(in srgb, white, var(--accent-color) 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

.pricing .plan-cta .btn-details {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease;
  padding: 8px;
}

.pricing .plan-cta .btn-details:hover {
  color: var(--accent-color);
  gap: 10px;
}

.pricing .plan-cta .btn-details i {
  transition: transform 0.3s ease;
  font-size: 16px;
}

.pricing .plan-cta .btn-details:hover i {
  transform: translateX(4px);
}

.pricing-footer {
  margin-top: 100px;
  padding: 0;
  position: relative;
  z-index: 2;
}

.pricing-footer .footer-content {
  background: radial-gradient(
      circle at 15% 0%,
      rgba(229, 157, 2, 0.15) 0%,
      transparent 300px
    ),
    #010105;
  padding: 80px 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.pricing-footer .footer-content:hover {
  border-color: rgba(229, 157, 2, 0.3);
  transform: translateY(-5px);
}

.pricing-footer .footer-content h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: -0.01em;
}

.pricing-footer .footer-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.6;
}

.pricing-footer .btn-custom-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 45px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #8b5cf6 50%)
  );
  color: white;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 60%);
  border: 2px solid transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0 auto;
}

.pricing-footer .btn-custom-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), #000 20%),
    color-mix(in srgb, var(--accent-color), #8b5cf6 70%)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.pricing-footer .btn-custom-quote:hover::before {
  opacity: 1;
}

.pricing-footer .btn-custom-quote:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px
    color-mix(in srgb, var(--accent-color), transparent 50%);
  gap: 18px;
}

.pricing-footer .btn-custom-quote i {
  transition: transform 0.4s ease;
  font-size: 20px;
  font-weight: bold;
}

.pricing-footer .btn-custom-quote:hover i {
  transform: translateX(6px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 992px) {
  .pricing .pricing-card.popular {
    transform: scale(1);
  }

  .pricing .pricing-card.popular:hover {
    transform: translateY(-15px) scale(1.02);
  }

  .pricing .pricing-card {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .pricing .plan-pricing .amount {
    font-size: 52px;
  }

  .pricing .plan-header {
    padding: 25px 20px 20px;
  }

  .pricing .plan-features,
  .pricing .plan-pricing,
  .pricing .plan-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pricing-footer .footer-content {
    padding: 50px 30px;
  }

  .pricing-footer .footer-content h3 {
    font-size: 28px;
    flex-direction: column;
    gap: 8px;
  }

  .pricing-footer .footer-content h3::after {
    font-size: 28px;
  }

  .pricing-footer .footer-content p {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .pricing-footer .btn-custom-quote {
    padding: 16px 35px;
    font-size: 15px;
    width: 100%;
    max-width: 300px;
  }

  .pricing-toggle {
    margin-bottom: 50px;
  }
}

/* Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-card {
  height: fit-content;
  position: sticky;
  top: 120px;
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
}

.faq .faq-card i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.faq .faq-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.faq .faq-card p {
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-card .btn-primary {
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-card .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.faq .faq-list {
  padding: 0;
}

.faq .faq-list .faq-item {
  position: relative;
  margin-bottom: 25px;
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  cursor: pointer;
}

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

.faq .faq-list .faq-item h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding-right: 40px;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
}

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

.faq .faq-list .faq-item .faq-content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 24px;
  overflow: hidden;
}

.faq .faq-list .faq-item .faq-toggle {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 24px;
  color: var(--accent-color);
  transition: transform 0.2s ease;
}

.faq .faq-list .faq-item.faq-active h3 {
  color: var(--accent-color);
}

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

.faq .faq-list .faq-item.faq-active .faq-toggle {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq .faq-list .faq-item {
    padding: 20px;
  }

  .faq .faq-list .faq-item h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .faq .faq-list .faq-item .faq-toggle {
    right: 20px;
    top: 20px;
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
  background: #111111;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  font-family: "Manrope", sans-serif;
}

.team .section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.team .section-header span {
  text-transform: uppercase;
  display: block;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.team .section-header h2 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.team .section-header p {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.team .bg-watermark {
  color: rgba(255, 255, 255, 0.03);
  font-size: clamp(6rem, 15vw, 18rem);
  font-weight: 900;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%);
  user-select: none;
  letter-spacing: 1rem;
  text-transform: uppercase;
}

.team .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 3;
}

.team .card {
  position: relative;
  cursor: pointer;
  background: #1a1a1a;
  overflow: visible; /* To allow accent to show */
  transition: all 0.5s ease;
}

.team .card::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 120px;
  z-index: -1;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: linear-gradient(to left, #ff9472, #ff5a1f);
  top: -8px;
  left: -8px;
}

.team .card:nth-child(2)::before {
  top: auto;
  bottom: -8px;
  left: -8px;
}

.team .card:nth-child(2) {
  transform: translateY(30px);
}

@media (max-width: 991px) {
  .team .card:nth-child(2) {
    transform: translateY(0);
  }
}

.team .card::after {
  position: absolute;
  inset: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 1;
}

.team .card-image-wrap {
  width: 100%;
  height: 480px;
  overflow: hidden;
}

.team .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team .card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.team .card:hover::before {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.team .card-content {
  position: absolute;
  bottom: 0;
  z-index: 2;
  left: 0;
  color: #fff;
  width: 100%;
  padding: 30px;
  text-align: center;
  transition: 0.4s ease;
}

.team .card-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.team .card-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: capitalize;
  letter-spacing: 0.1rem;
}

.team .card-content ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.team .card-content ul li a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: 0.3s;
  font-size: 16px;
  backdrop-filter: blur(5px);
}

.team .card-content ul li a:hover {
  background: #ff5a1f;
  transform: translateY(-5px);
  color: white;
  box-shadow: 0 5px 15px rgba(255, 90, 31, 0.4);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-section {
  height: 100%;
}

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

.contact .contact-info-section .info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  display: inline-block;
}

.contact .contact-info-section .info-header h3:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 50%)
  );
  border-radius: 2px;
}

.contact .contact-info-section .info-header p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-info-section .contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.contact .contact-info-section .info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(
    135deg,
    var(--surface-color),
    color-mix(in srgb, var(--surface-color), var(--accent-color) 3%)
  );
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease;
}

.contact .contact-info-section .info-item:hover {
  transform: translateX(10px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-info-section .info-item:hover .info-icon {
  background-color: var(--accent-color);
}

.contact .contact-info-section .info-item:hover .info-icon i {
  color: var(--contrast-color);
}

.contact .contact-info-section .info-item .info-icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.contact .contact-info-section .info-item .info-icon i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.contact .contact-info-section .info-item .info-content {
  flex: 1;
}

.contact .contact-info-section .info-item .info-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-info-section .info-item .info-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-info-section .social-contact {
  padding: 30px;
  background: var(--surface-color);
  border-radius: 20px;
  text-align: center;
}

.contact .contact-info-section .social-contact h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.contact .contact-info-section .social-contact .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.contact .contact-info-section .social-contact .social-icons .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--surface-color);
  color: var(--accent-color);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px
    color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact
  .contact-info-section
  .social-contact
  .social-icons
  .social-icon:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .contact-form-wrapper {
  background: linear-gradient(
    135deg,
    var(--surface-color),
    color-mix(in srgb, var(--surface-color), var(--background-color) 50%)
  );
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 40px
    color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .contact-form-wrapper .form-header {
  text-align: center;
  margin-bottom: 35px;
}

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

.contact .contact-form-wrapper .form-header p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-wrapper .php-email-form .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.contact .contact-form-wrapper .php-email-form .form-control {
  height: 50px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-wrapper .php-email-form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px;
}

.contact .contact-form-wrapper .php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
  background-color: var(--surface-color);
  outline: none;
}

.contact .contact-form-wrapper .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-wrapper .php-email-form .message-textarea {
  height: 120px;
  resize: vertical;
  font-family: inherit;
}

.contact .contact-form-wrapper .php-email-form .submit-btn {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #000 20%)
  );
  color: var(--contrast-color);
  border: none;
  padding: 18px 30px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact .contact-form-wrapper .php-email-form .submit-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--contrast-color), transparent 80%),
    transparent
  );
  transition: left 0.5s ease;
}

.contact .contact-form-wrapper .php-email-form .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .php-email-form .submit-btn:hover:before {
  left: 100%;
}

.contact .contact-form-wrapper .php-email-form .submit-btn:hover i {
  transform: translateX(5px);
}

.contact .contact-form-wrapper .php-email-form .submit-btn span {
  position: relative;
  z-index: 1;
}

.contact .contact-form-wrapper .php-email-form .submit-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .contact .contact-info-section {
    margin-bottom: 40px;
  }

  .contact .contact-info-section .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-section .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact .contact-info-section .info-item {
    padding: 20px;
  }

  .contact .contact-info-section .info-item:hover {
    transform: translateY(-5px);
  }

  .contact .contact-form-wrapper {
    padding: 30px 25px;
  }

  .contact .contact-form-wrapper .form-header h3 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-hero {
  position: relative;
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.service-details .service-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-details .service-hero .service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
}

.service-details .service-content .service-header {
  margin-bottom: 40px;
}

.service-details .service-content .service-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.service-details .service-content .service-header .service-intro {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-content h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.service-details .service-features {
  margin-bottom: 50px;
}

.service-details .service-features .feature-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.service-details .service-features .feature-item:hover {
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--default-color), transparent 90%);
  transform: translateY(-2px);
}

.service-details .service-features .feature-item .feature-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

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

.service-details .service-features .feature-item .feature-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.service-details .service-features .feature-item .feature-content p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-process {
  margin-bottom: 50px;
}

.service-details .service-process .process-steps .process-step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.service-details
  .service-process
  .process-steps
  .process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 60px;
  width: 2px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-details .service-process .process-steps .process-step .step-number {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 25px;
  flex-shrink: 0;
  font-size: 16px;
}

.service-details
  .service-process
  .process-steps
  .process-step
  .step-content
  h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.service-details .service-process .process-steps .process-step .step-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-gallery {
  margin-bottom: 30px;
}

.service-details .service-gallery img {
  transition: transform 0.3s ease;
}

.service-details .service-gallery img:hover {
  transform: scale(1.05);
}

.service-details .service-sidebar .service-menu {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-menu h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-menu .menu-list .menu-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-details
  .service-sidebar
  .service-menu
  .menu-list
  .menu-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active {
  color: var(--accent-color);
  padding-left: 10px;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover i,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active i {
  color: var(--accent-color);
}

.service-details .service-sidebar .service-menu .menu-list .menu-item i {
  margin-right: 12px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s ease;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item span {
  font-weight: 500;
}

.service-details .service-sidebar .service-info {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-info .info-list .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details
  .service-sidebar
  .service-info
  .info-list
  .info-item:last-child {
  border-bottom: none;
}

.service-details
  .service-sidebar
  .service-info
  .info-list
  .info-item
  .info-label {
  font-weight: 500;
  color: var(--default-color);
}

.service-details
  .service-sidebar
  .service-info
  .info-list
  .info-item
  .info-value {
  font-weight: 600;
  color: var(--accent-color);
}

.service-details .service-sidebar .contact-card {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #000 20%)
  );
  padding: 30px;
  border-radius: 10px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content p {
  margin-bottom: 20px;
  opacity: 0.9;
  font-size: 14px;
  line-height: 1.6;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info {
  margin-bottom: 25px;
}

.service-details
  .service-sidebar
  .contact-card
  .contact-content
  .contact-info
  .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.service-details
  .service-sidebar
  .contact-card
  .contact-content
  .contact-info
  .contact-item
  i {
  margin-right: 10px;
  opacity: 0.8;
}

.service-details
  .service-sidebar
  .contact-card
  .contact-content
  .contact-info
  .contact-item
  span {
  font-size: 14px;
}

.service-details .service-sidebar .contact-card .contact-content .btn {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .contact-card .contact-content .btn:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .service-details .service-hero img {
    height: 250px;
  }

  .service-details .service-hero .service-badge {
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    font-size: 12px;
  }

  .service-details .service-content .service-header h2 {
    font-size: 24px;
  }

  .service-details .feature-item {
    padding: 15px !important;
  }

  .service-details .feature-item .feature-icon {
    width: 50px !important;
    height: 50px !important;
    margin-right: 15px !important;
  }

  .service-details .feature-item .feature-icon i {
    font-size: 20px !important;
  }

  .service-details .service-sidebar {
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/* .starter-section {} */

/* --- Chatbot Styles --- */
.chat-widget { position: fixed; bottom: 30px; right: 30px; z-index: 1000; font-family: 'Manrope', sans-serif; }
.chat-button { width: 64px; height: 64px; background: #e59d02; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 8px 32px rgba(229, 157, 2, 0.3); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.chat-widget.open .chat-button { transform: rotate(90deg) scale(0.9); background: #1a1a1a; }
.chat-button svg { width: 30px; height: 30px; fill: white; }
.chat-button .close-icon { display: none; }
.chat-widget.open .chat-icon { display: none; }
.chat-widget.open .close-icon { display: block; }

.chat-label { position: absolute; right: 80px; top: 10px; background: #1a1a1a; padding: 12px 20px; border-radius: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); font-size: 15px; font-weight: 600; color: #fff; white-space: nowrap; transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); pointer-events: none; border: 1px solid rgba(255,255,255,0.05); }
.chat-widget.open .chat-label { opacity: 0; visibility: hidden; transform: translateX(10px); }

.chat-popup { position: absolute; bottom: 85px; right: 0; width: 400px; height: 680px; background: #0f1115; border-radius: 24px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(30px); transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); border: 1px solid rgba(255,255,255,0.08); }
.chat-widget.open .chat-popup { opacity: 1; visibility: visible; transform: translateY(0); }

/* Home Screen */
.chat-home { display: flex; flex-direction: column; height: 100%; overflow: hidden; background: #0f1115; }
.home-header { 
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%), 
                url('https://images.unsplash.com/photo-1521791136064-7986c29596ba?auto=format&fit=crop&w=500&q=80'); 
    background-size: cover; 
    background-position: center; 
    padding: 60px 28px 70px; 
    color: white; 
    position: relative;
}
.header-avatars { display: flex; margin-bottom: 20px; }
.header-avatars img { width: 44px; height: 44px; border-radius: 50%; border: 3px solid #1a1a1a; margin-right: -12px; background: #222; box-shadow: 0 4px 8px rgba(0,0,0,0.3); }
.home-header h2 { font-size: 32px; font-weight: 700; margin-bottom: 10px; line-height: 1.2; letter-spacing: -0.5px; color: #fff; }
.home-header p { font-size: 15px; opacity: 0.9; line-height: 1.4; font-weight: 400; max-width: 90%; color: #ccc; }

.home-content { padding: 0 16px; margin-top: -40px; flex: 1; display: flex; flex-direction: column; gap: 15px; position: relative; z-index: 2; }
.question-list { background: #1a1c21; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.05); }
.question-item { padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.05); cursor: pointer; transition: all 0.2s; text-decoration: none; color: #e0e0e0; }
.question-item:last-child { border-bottom: none; }
.question-item:hover { background: rgba(255,255,255,0.03); padding-left: 24px; color: #e59d02; }
.question-item span { font-weight: 500; font-size: 14px; }
.question-item svg { width: 14px; height: 14px; fill: #666; transition: transform 0.2s; }
.question-item:hover svg { transform: translateX(3px); fill: #e59d02; }

.chat-with-us { background: #e59d02; border-radius: 16px; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 10px 20px rgba(229, 157, 2, 0.2); cursor: pointer; border: none; transition: all 0.2s; color: #000; }
.chat-with-us:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(229, 157, 2, 0.3); filter: brightness(1.1); }
.chat-with-us-info h4 { font-size: 16px; color: #000; margin-bottom: 4px; font-weight: 700; }
.chat-with-us-info p { font-size: 14px; color: rgba(0,0,0,0.7); font-weight: 500; }
.chat-with-us svg { width: 28px; height: 28px; fill: #000; }

/* Chat Screen */
.chat-screen { display: none; flex-direction: column; height: 100%; background: #0f1115; }
.chat-header-mini { padding: 18px 24px; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; background: #1a1c21; }
.mini-agent { display: flex; align-items: center; gap: 12px; }
.mini-avatar { width: 38px; height: 38px; background: #e59d02; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #000; font-size: 14px; font-weight: bold; }
.mini-info h4 { font-size: 15px; color: #fff; font-weight: 600; }
.mini-info p { font-size: 12px; color: #10b981; font-weight: 500; display: flex; align-items: center; gap: 4px; }
.mini-info p::before { content: ''; width: 8px; height: 8px; background: #10b981; border-radius: 50%; display: inline-block; }

.close-btn { background: rgba(255,255,255,0.05); border: none; border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; }
.close-btn:hover { background: rgba(255,255,255,0.1); transform: rotate(90deg); }
.close-btn svg { width: 16px; height: 16px; fill: #999; }

.chat-messages { flex: 1; padding: 24px; overflow-y: auto; background: #0f1115; display: flex; flex-direction: column; gap: 16px; scroll-behavior: smooth; }
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

.message { max-width: 85%; animation: messageFadeIn 0.3s ease-out; }
@keyframes messageFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.message-content { padding: 14px 18px; border-radius: 18px; font-size: 14.5px; line-height: 1.6; }
.message.agent { align-self: flex-start; }
.message.agent .message-content { background: #1a1c21; color: #e0e0e0; border: 1px solid rgba(255,255,255,0.05); border-bottom-left-radius: 4px; }
.message.user { align-self: flex-end; }
.message.user .message-content { background: #e59d02; color: #000; border-bottom-right-radius: 4px; font-weight: 500; }
.message-time { font-size: 11px; color: #666; margin-top: 6px; margin-left: 4px; font-weight: 500; }

.chat-input-area { padding: 18px 24px; background: #1a1c21; border-top: 1px solid rgba(255,255,255,0.05); }
.input-wrapper { display: flex; gap: 12px; align-items: center; background: rgba(255,255,255,0.03); padding: 10px 18px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.05); transition: all 0.2s; }
.input-wrapper:focus-within { background: rgba(255,255,255,0.05); border-color: #e59d02; }
.chat-input { flex: 1; border: none; background: transparent; outline: none; font-size: 15px; color: #fff; }
.chat-input::placeholder { color: #666; }
.send-btn { border: none; background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0.8; transition: opacity 0.2s; }
.send-btn:hover { opacity: 1; }
.send-btn svg { width: 24px; height: 24px; fill: #e59d02; }

/* Navigation Footer */
.chat-footer-nav { height: 65px; background: #1a1c21; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-around; align-items: center; }
.nav-item { display: flex; flex-direction: column; align-items: center; gap: 5px; cursor: pointer; color: #666; transition: all 0.2s; }
.nav-item.active { color: #e59d02; transform: translateY(-2px); }
.nav-item svg { width: 22px; height: 22px; fill: currentColor; }
.nav-item span { font-size: 12px; font-weight: 600; }

.powered-by { text-align: center; padding: 12px; font-size: 11px; color: #444; background: #1a1c21; border-top: 1px solid rgba(255,255,255,0.02); letter-spacing: 0.5px; font-weight: 600; text-transform: uppercase; }

/* Hide Scroll Top Button */
.scroll-top {
  display: none !important;
}



/* --- New Pricing Design (Match Pricing Page) --- */
.package-card {
  position: relative;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 32px;
  padding: 50px 40px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.package-card.popular {
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(229, 157, 2, 0.1);
  transform: scale(1.05);
  z-index: 2;
}

.package-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.package-card.popular:hover {
  transform: scale(1.06) translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--accent-color);
  color: #000;
  padding: 8px 45px;
  transform: rotate(45deg);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  z-index: 10;
  letter-spacing: 1px;
}

.package-price {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 5px;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.package-price span.currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-color);
}

.package-price span:not(.currency):not(.amount) {
  font-size: 14px;
  font-weight: 400;
  color: #888;
  margin-left: 5px;
}

.package-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: -0.02em;
}

.package-card p.text-secondary {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.5) !important;
}

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

.feature-list li {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.feature-list li i {
  color: var(--accent-color);
  font-size: 16px;
}

/* Premium Button Overrides for Pricing */
.package-card .premium-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  text-decoration: none;
  border: none;
}

.premium-btn-primary {
  background: var(--accent-color);
  color: #000;
}

.premium-btn-primary:hover {
  background: #fff;
  color: #000;
  transform: scale(1.02);
}

.premium-btn-secondary {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1) !important;
}

.premium-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent-color) !important;
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .package-card.popular {
    transform: none;
    margin: 20px 0;
  }
  .package-card.popular:hover {
    transform: translateY(-10px);
  }
}
