:root {
  --primary-blue: #1a237e;
    --brand-orange: #ff9800;
    --bg-dark: #050510;
    --bg-dark-accent: #0a0a20;
    --glass-white: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --primary-color: var(--primary-blue);
    --secondary-color: var(--brand-orange);
    --accent-color: var(--brand-orange);
    --heading-color: var(--primary-blue);
    --nav-color: #ffffff;
    --nav-hover-color: var(--brand-orange);
    --default-font: 'Inter', sans-serif;
    --heading-font: 'Cairo', 'Montserrat', sans-serif;
    --nav-font: 'Montserrat', sans-serif;
    --background-color: #ffffff;
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.4);
    --shadow-inset: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    /* Background Gradients */  --grad-premium-dark: linear-gradient(135deg, #050510 0%, #1a237e 100%);
    --grad-premium-light: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --grad-accent: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  }
.light-background {
  --background-color: #f8fafc;
    --surface-color: #ffffff;
  }
.dark-background {
  --background-color: #1A237E;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: rgba(255, 255, 255, 0.05);
    --contrast-color: #ffffff;
  }
/* Smooth scroll */:root {
  scroll-behavior: smooth;
  }
/*--------------------------------------------------------------# General Styling & Shared Classes--------------------------------------------------------------*/body {
  color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    line-height: 1.6;
  }
a {
  color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
  }
a:hover {
  color: var(--brand-orange);
    text-decoration: none;
  }
h1,h2,h3,h4,h5,h6 {
  color: var(--heading-color);
    font-family: var(--heading-font);
    font-weight: 700;
  }
.glass-card {
  background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
  }
.bg-premium-dark {
  background: var(--grad-premium-dark);
  }
.bg-premium-light {
  background: var(--grad-premium-light);
  }
/* 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);
    }
}
.header {
  --background-color: rgba(1, 10, 61, 0.7);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}
.header.scrolled {
  padding: 10px 0;
    background: rgba(5, 5, 16, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  }
.btn-nav-cta {
  background: var(--brand-orange);
    color: #050510;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }
.btn-nav-cta:hover {
  background: #ffffff;
    color: var(--brand-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 152, 0, 0.3);
  }
/*--------------------------------------------------------------# Navigation Menu--------------------------------------------------------------*//* Desktop Navigation */@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>ul>li {
    white-space: nowrap;
      padding: 15px 14px;
    }
  .navmenu>ul>li:last-child {
    padding-right: 0;
    }
  .navmenu a,  .navmenu a:focus {
    color: rgba(255, 255, 255, 0.8);
      font-size: 0.9rem;
      padding: 8px 14px;
      font-family: var(--nav-font);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
      position: relative;
    }
  .navmenu a i,  .navmenu a:focus i {
    font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      transition: 0.3s;
    }
  .navmenu>ul>li>a:before {
    content: "";
      position: absolute;
      height: 2px;
      bottom: -6px;
      left: 0;
      background-color: var(--nav-hover-color);
      visibility: hidden;
      width: 0px;
      transition: all 0.3s ease-in-out 0s;
    }
  .navmenu a:hover:before,  .navmenu li:hover>a:before,  .navmenu .active:before {
    visibility: visible;
      width: 100%;
    }
  .navmenu li:hover>a,  .navmenu .active,  .navmenu .active:focus {
    color: var(--nav-color);
    }
  .navmenu .dropdown ul {
    margin: 0;
      padding: 10px 0;
      background: var(--nav-dropdown-background-color);
      display: block;
      position: absolute;
      visibility: hidden;
      left: 14px;
      top: 130%;
      opacity: 0;
      transition: 0.3s;
      border-radius: 4px;
      z-index: 99;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
  .navmenu .dropdown ul li {
    min-width: 200px;
    }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      color: var(--nav-dropdown-color);
    }
  .navmenu .dropdown ul a i {
    font-size: 12px;
    }
  .navmenu .dropdown ul a:hover,  .navmenu .dropdown ul .active:hover,  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
    }
  .navmenu .dropdown:hover>ul {
    opacity: 1;
      top: 100%;
      visibility: visible;
    }
  .navmenu .dropdown .dropdown ul {
    top: 0;
      left: -90%;
      visibility: hidden;
    }
  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
      top: 0;
      left: -100%;
      visibility: visible;
    }
}
/* Mobile Navigation */@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #ffffff;
      background: var(--brand-orange);
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 24px;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border: 2px solid rgba(255, 255, 255, 0.1);
      z-index: 9999;
    }
  .mobile-nav-active .navmenu {
    background: rgba(1, 10, 60, 0.98);
      backdrop-filter: blur(20px);
      display: flex !important;
      align-items: center;
      justify-content: center;
      position: fixed;
      inset: 0;
      z-index: 9997;
      transition: 0.3s;
    }
  .nav-list-premium {
    display: flex !important;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      gap: 25px;
      padding: 0;
      margin: 0;
      list-style: none;
    }
  .nav-list-premium li {
    width: 100%;
      text-align: center;
      opacity: 0;
      transform: translateY(20px);
      animation: menuItemFadeIn 0.5s ease forwards;
    }
  .nav-link-custom {
    font-size: 1.5rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.9);
      text-transform: uppercase;
      letter-spacing: 2px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 10px 20px;
      transition: 0.3s;
    }
  .nav-link-custom.active {
    color: var(--brand-orange);
    }
  .mobile-lang-dropdown .lang-menu {
    position: relative;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      padding: 10px;
      display: none;
      flex-direction: row;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
      width: 100%;
    }
  .mobile-lang-dropdown.active .lang-menu {
    display: flex;
    }
  .mobile-lang-dropdown .lang-menu a {
    color: #fff;
      font-size: 0.9rem;
      padding: 8px 12px;
      border-radius: 10px;
    }
  @keyframes menuItemFadeIn {
    to {
      opacity: 1;
        transform: translateY(0);
      }
  }

  /* Mobile Controls Layering */
  .mobile-controls {
    display: flex !important;
    align-items: center;
    gap: 1.5rem;
    z-index: 10000;
  }

  .mobile-lang-dropdown {
    position: relative;
    z-index: 10001;
  }

  .mobile-lang-dropdown .lang-menu {
    top: 120% !important;
    right: 0 !important;
    left: auto !important;
    background: rgba(1, 10, 61, 0.98) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
  }
}
/*--------------------------------------------------------------# Global Footer--------------------------------------------------------------*/.footer {
  color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
  }
.footer .footer-top {
  padding-top: 50px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
.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 {
  font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    color: var(--heading-color);
  }
.footer .footer-about p {
  font-size: 14px;
    font-family: var(--heading-font);
  }
.footer .social-links a {
  display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-right: 10px;
    transition: 0.3s;
  }
.footer .social-links a:hover {
  color: var(--accent-color);
    border-color: var(--accent-color);
  }
.footer h4 {
  font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
  }
.footer .footer-links {
  margin-bottom: 30px;
  }
.footer .footer-links ul {
  list-style: none;
    padding: 0;
    margin: 0;
  }
.footer .footer-links ul i {
  padding-right: 2px;
    font-size: 12px;
    line-height: 0;
  }
.footer .footer-links ul li {
  padding: 10px 0;
    display: flex;
    align-items: center;
  }
.footer .footer-links ul li:first-child {
  padding-top: 0;
  }
.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
  }
.footer .footer-links ul a:hover {
  color: var(--accent-color);
  }
.footer .footer-contact p {
  margin-bottom: 5px;
  }
.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    border-radius: 4px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    display: flex;
    background-color: var(--background-color);
    transition: 0.3s;
  }
.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
  }
.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
    padding: 4px;
    width: 100%;
    background-color: var(--background-color);
    color: var(--default-color);
  }
.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
  }
.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: -7px -8px -7px 0;
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
  }
.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  }
.footer .copyright {
  padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
.footer .copyright p {
  margin-bottom: 0;
  }
.footer .credits {
  margin-top: 6px;
    font-size: 13px;
  }
/*--------------------------------------------------------------# Preloader--------------------------------------------------------------*/#preloader {
  position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
  }
#preloader:before {
  content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
  }
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
    }
  100% {
    transform: rotate(360deg);
    }
}
/*--------------------------------------------------------------# Scroll Top Button--------------------------------------------------------------*/.scroll-top {
  position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
  }
.scroll-top i {
  font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
  }
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
  }
.scroll-top.active {
  visibility: visible;
    opacity: 1;
  }
/*--------------------------------------------------------------# Disable aos animation delay on mobile devices--------------------------------------------------------------*/@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
    }
}
/*--------------------------------------------------------------# Global Page Titles & Breadcrumbs--------------------------------------------------------------*/.page-title {
  color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
  }
.page-title .heading {
  padding: 160px 0 80px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
.page-title .heading h1 {
  font-size: 38px;
    font-weight: 700;
  }
.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 88%);
    padding: 20px 0;
  }
.page-title nav ol {
  display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
  }
.page-title nav ol li+li {
  padding-left: 10px;
  }
.page-title nav ol li+li::before {
  content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
  }
/*--------------------------------------------------------------# Global Sections--------------------------------------------------------------*/section,.section {
  color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 100px;
    overflow: clip;
  }
@media (max-width: 1199px) {
  section,  .section {
    scroll-margin-top: 66px;
    }
}
/*--------------------------------------------------------------# Global Section Titles--------------------------------------------------------------*/.section-title {
  padding-bottom: 60px;
    position: relative;
  }
.section-title h2 {
  font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    position: relative;
  }
.section-title h2::after {
  content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 10px;
  }
.section-title div {
  color: var(--heading-color);
    margin: 0;
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--heading-font);
  }
/*--------------------------------------------------------------# Hero Section--------------------------------------------------------------*/.hero {
  width: 100%;
    min-height: 70vh;
    position: relative;
    padding: 120px 0 120px 0;
    display: flex;
    align-items: center;
  }
.hero .hero-bg {
  position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
.hero:before {
  content: "";
    background: color-mix(in srgb, #11754800, transparent 10%);
    position: absolute;
    inset: 0;
    z-index: 2;
  }
.hero .container {
  position: relative;
    z-index: 20;
  }
.hero h1 {
  margin: 0 0 15px 0;
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
    color: color-mix(in srgb, var(--heading-color), transparent 30%);
  }
.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 20px 0;
    font-size: 18px;
    font-weight: 400;
  }
.hero .btn-get-started {
  color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 24px 10px 24px;
    border-radius: 50px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  }
.hero .btn-get-started:hover {
  color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  }
.hero .btn-watch-video {
  font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: var(--default-color);
    font-weight: 600;
  }
.hero .btn-watch-video i {
  color: var(--accent-color);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
  }
.hero .btn-watch-video:hover {
  color: var(--accent-color);
  }
.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
  }
.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
  }
@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
      line-height: 36px;
    }
  .hero p {
    font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
  .hero .btn-get-started,  .hero .btn-watch-video {
    font-size: 13px;
    }
}
.hero .hero-waves {
  display: block;
    width: 100%;
    height: 60px;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 3;
  }
.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
    animation-delay: -2s;
    fill: var(--default-color);
    opacity: 0.6;
  }
.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
    animation-delay: -2s;
    fill: var(--default-color);
    opacity: 0.4;
  }
.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
    animation-delay: -2s;
    fill: var(--default-color);
  }
@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
    }
  100% {
    transform: translate(-90px, 0%);
    }
}
@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
    }
  100% {
    transform: translate(85px, 0%);
    }
}
@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
    }
  100% {
    transform: translate(85px, 0%);
    }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
    }
  100% {
    transform: translateY(-10px);
    }
}
/*--------------------------------------------------------------# About Section--------------------------------------------------------------*/.about {
  padding-top: 100px;
  }
.about .content h3 {
  font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    padding: 10px 20px;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: var(--accent-color);
    border-radius: 7px;
    display: inline-block;
  }
.about .content h2 {
  font-weight: 700;
  }
.about .content p:last-child {
  margin-bottom: 0;
  }
.about .content .read-more {
  background: var(--accent-color);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
.about .content .read-more i {
  font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
  }
.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
    padding-right: 19px;
  }
.about .content .read-more:hover i {
  margin-left: 10px;
  }
.about .icon-box {
  background-color: var(--surface-color);
    padding: 50px 40px;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease-out 0s;
  }
.about .icon-box i {
  width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 0;
    transition: all 0.4s ease-out 0s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: var(--accent-color);
  }
.about .icon-box h3 {
  margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
  }
.about .icon-box p {
  margin-bottom: 0;
  }
.about .icon-box:hover i {
  background-color: var(--accent-color);
    color: var(--contrast-color);
  }
.about .icon-boxes .col-md-6:nth-child(2) .icon-box,.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
  }
@media (max-width: 768px) {
  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
    }
}
/*--------------------------------------------------------------# Features Section--------------------------------------------------------------*/.features .features-item {
  background-color: var(--surface-color);
    display: flex;
    align-items: center;
    padding: 20px;
    transition: 0.3s;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    position: relative;
  }
.features .features-item i {
  font-size: 32px;
    padding-right: 10px;
    line-height: 0;
  }
.features .features-item h3 {
  font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 16px;
  }
.features .features-item h3 a {
  color: var(--heading-color);
    transition: 0.3s;
  }
.features .features-item:hover {
  border-color: var(--accent-color);
  }
.features .features-item:hover h3 a {
  color: var(--accent-color);
  }
/*--------------------------------------------------------------# Stats Section--------------------------------------------------------------*/.stats i {
  background-color: var(--surface-color);
    color: var(--accent-color);
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    width: 54px;
    height: 54px;
    font-size: 24px;
    border-radius: 50px;
    border: 2px solid var(--background-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
.stats .stats-item {
  background-color: var(--surface-color);
    margin-top: -27px;
    padding: 30px 30px 25px 30px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 0;
  }
.stats .stats-item span {
  font-size: 36px;
    display: block;
    font-weight: 700;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
  }
.stats .stats-item p {
  padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 16px;
  }
/*--------------------------------------------------------------# Details Section--------------------------------------------------------------*/.details .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  }
.details .features-item+.features-item {
  margin-top: 100px;
  }
@media (max-width: 640px) {
  .details .features-item+.features-item {
    margin-top: 40px;
    }
}
.details .features-item h3 {
  font-weight: 700;
    font-size: 26px;
  }
.details .features-item ul {
  list-style: none;
    padding: 0;
  }
.details .features-item ul li {
  padding-bottom: 10px;
    display: flex;
    align-items: center;
  }
.details .features-item ul li:last-child {
  padding-bottom: 0;
  }
.details .features-item ul i {
  font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
  }
.details .features-item p:last-child {
  margin-bottom: 0;
  }
/*--------------------------------------------------------------# Gallery Section--------------------------------------------------------------*/.gallery .gallery-item {
  overflow: hidden;
    border-right: 3px solid var(--background-color);
    border-bottom: 3px solid var(--background-color);
  }
.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
  }
.gallery .gallery-item:hover img {
  transform: scale(1.1);
  }
/*--------------------------------------------------------------# Testimonials Section--------------------------------------------------------------*/.testimonials {
  padding: 80px 0;
    position: relative;
  }
.testimonials:before {
  content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 2;
  }
.testimonials .testimonials-bg {
  position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
.testimonials .container {
  position: relative;
    z-index: 3;
  }
.testimonials .testimonials-carousel,.testimonials .testimonials-slider {
  overflow: hidden;
  }
.testimonials .testimonial-item {
  text-align: center;
  }
.testimonials .testimonial-item .testimonial-img {
  width: 100px;
    border-radius: 50%;
    border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
    margin: 0 auto;
  }
.testimonials .testimonial-item h3 {
  font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
  }
.testimonials .testimonial-item h4 {
  font-size: 14px;
    margin: 0 0 15px 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
  }
.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
  }
.testimonials .testimonial-item .stars i {
  color: #ffc107;
    margin: 0 1px;
  }
.testimonials .testimonial-item .quote-icon-left,.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 26px;
    line-height: 0;
  }
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
    left: -5px;
    position: relative;
  }
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
  }
.testimonials .testimonial-item p {
  font-style: italic;
    margin: 0 auto 15px auto;
  }
.testimonials .swiper-wrapper {
  height: auto;
  }
.testimonials .swiper-pagination {
  margin-top: 20px;
    position: relative;
  }
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 50%);
    opacity: 0.5;
  }
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
    opacity: 1;
  }
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
    }
}
/*--------------------------------------------------------------# Team Section--------------------------------------------------------------*/.team .member {
  position: relative;
  }
.team .member .pic {
  overflow: hidden;
    margin-bottom: 50px;
  }
.team .member .member-info {
  background-color: var(--surface-color);
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: -50px;
    left: 20px;
    right: 20px;
    padding: 20px 15px;
    overflow: hidden;
    transition: 0.5s;
  }
.team .member h4 {
  font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    position: relative;
    padding-bottom: 10px;
  }
.team .member h4::after {
  content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    bottom: 0;
    left: 0;
  }
.team .member span {
  font-style: italic;
    display: block;
    font-size: 13px;
  }
.team .member .social {
  position: absolute;
    right: 15px;
    bottom: 15px;
  }
.team .member .social a {
  transition: color 0.3s;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
  }
.team .member .social a:hover {
  color: var(--accent-color);
  }
.team .member .social i {
  font-size: 16px;
    margin: 0 2px;
  }
/*--------------------------------------------------------------# Pricing Section--------------------------------------------------------------*/.pricing .pricing-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
    padding: 40px 40px;
    height: 100%;
    border-radius: 15px;
  }
.pricing h3 {
  font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
  }
.pricing h4 {
  color: var(--accent-color);
    font-size: 48px;
    font-weight: 700;
    font-family: var(--heading-font);
    margin-bottom: 0;
  }
.pricing h4 sup {
  font-size: 28px;
  }
.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 18px;
    font-weight: 500;
  }
.pricing .description {
  font-size: 14px;
  }
.pricing .cta-btn {
  border: 1px solid var(--default-color);
    color: var(--default-color);
    display: block;
    text-align: center;
    padding: 10px 35px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--heading-font);
    transition: 0.3s;
    margin-top: 20px;
    margin-bottom: 6px;
  }
.pricing .cta-btn:hover {
  background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
  }
.pricing ul {
  padding: 0;
    list-style: none;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    text-align: left;
    line-height: 20px;
  }
.pricing ul li {
  padding: 10px 0;
    display: flex;
    align-items: center;
  }
.pricing ul li:last-child {
  padding-bottom: 0;
  }
.pricing ul i {
  color: #059652;
    font-size: 24px;
    padding-right: 3px;
  }
.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  }
.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  }
.pricing ul .na span {
  text-decoration: line-through;
  }
.pricing .featured {
  position: relative;
  }
.pricing .featured .popular {
  position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 4px 15px 6px 15px;
    margin: 0;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
  }
.pricing .featured .cta-btn {
  background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
  }
/* ============================================================   MERGED CUSTOM STYLES   ============================================================ *//* ─── Premium UI Components & Animations ─── *//* ------------------ *//* ------------------ *//* Unified Badge Styles */.section-badge {
  letter-spacing: 2px;
    font-weight: 700;
  }
/* Italic Font Class */.italic-font {
  font-style: italic;
  }
section.about,section.features,section.details,section.team,section.contact {
  background: linear-gradient(180deg, var(--body-bg) 0%, #f1f5f9 100%);
    padding: 100px 0;
  }
.info-item {
  background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    margin-bottom: 24px;
  }
.info-item:hover {
  transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
.info-item i {
  font-size: 24px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-inline-end: 20px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  }
/* Premium Testimonials Section Styles */.testimonial-card-premium {
  background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
    position: relative;
    margin-bottom: 20px;
  }
.testimonial-card-premium:hover {
  transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
  }
.testimonial-img-wrapper {
  position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
  }
.testimonial-img-premium {
  width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }
.quote-badge {
  position: absolute;
    bottom: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: var(--secondary-color);
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  }
.testimonial-content-premium {
  font-size: 1.05rem;
    line-height: 1.7;
    color: #334155;
    font-style: italic;
    margin-bottom: 25px;
  }
.testimonial-author-premium h6 {
  font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    font-size: 1.1rem;
  }
.testimonial-author-premium p {
  font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0;
  }
.stars-premium {
  color: #f59e0b;
    font-size: 14px;
    margin-top: 15px;
  }
/* Premium Process Section Styles */.process-step {
  position: relative;
    padding: 40px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
    z-index: 1;
  }
.process-step:hover {
  transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
  }
.step-number {
  position: absolute;
    top: -20px;
    right: 30px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(1, 10, 94, 0.15);
    line-height: 1;
    z-index: -1;
    transition: all 0.4s ease;
  }
.process-step:hover .step-number {
  color: rgba(59, 130, 246, 0.25);
    transform: scale(1.1);
  }
.step-icon {
  width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
  }
.step-content h3 {
  font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
.step-content p {
  color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
  }
.process-connector {
  position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    z-index: 0;
  }
@media (max-width: 991px) {
  .process-connector {
    display: none;
    }
  .process-step {
    margin-bottom: 30px;
    }
}
/* Premium <?= __('contact_title') ?> Section Styles */.info-card {
  background: #fff;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
.info-card:hover {
  transform: translateX(12px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  }
.info-icon {
  width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 24px;
    margin-inline-end: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }
.info-card:hover .info-icon {
  background: var(--primary-color);
    color: #fff;
    transform: rotate(10deg);
  }
.info-text h4 {
  margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
  }
.info-text p {
  margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
  }
.contact-form-card {
  background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
  }
.form-group-custom {
  margin-bottom: 5px;
  }
.form-label {
  font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: block;
  }
.submit-btn-premium {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 15px 30px rgba(1, 10, 94, 0.2);
  }
.submit-btn-premium:hover {
  transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(1, 10, 94, 0.3);
    filter: brightness(1.1);
  }
.map-container {
  border: 10px solid #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  }
.icon-phone {
  color: #8b5cf6;
    background: #f5f3ff;
  }
.icon-email {
  color: #ec4899;
    background: #fdf2f8;
  }
.icon-clock {
  color: #f59e0b;
    background: #fffbeb;
  }
.newsletter-content {
  position: relative;
    background: rgba(1, 10, 94, 0.4) !important;
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    overflow: hidden;
  }
.newsletter-content::before {
  content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,      rgba(59, 130, 246, 0.3),      transparent 30%);
    animation: rotate-glow 10s linear infinite;
    z-index: -1;
  }
@keyframes rotate-glow {
  from {
    transform: rotate(0deg);
    }
  to {
    transform: rotate(360deg);
    }
}
.newsletter-large-form input {
  background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }
.newsletter-large-form button {
  background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    border: none !important;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3) !important;
    transition: all 0.4s ease !important;
  }
.newsletter-large-form button:hover {
  transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.5) !important;
  }
/* ------------------ */.member-card:hover .member-social-overlay {
  opacity: 1 !important;
  }
.member-image-wrapper {
  overflow: hidden;
  }
.member-card:hover .member-img {
  transform: scale(1.1);
    transition: 0.5s ease;
  }
.about-card {
  background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
.about-card:hover {
  transform: translateY(-12px);
    background: rgba(26, 35, 126, 0.4);
    border-color: var(--brand-orange);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 152, 0, 0.3);
  }
.about-card:hover img {
  transform: scale(1.05) !important;
  }
.icon-wrapper-small {
  width: 50px;
    height: 50px;
    background: rgba(26, 35, 126, 0.8);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
.about-card:hover .icon-wrapper-small {
  background: var(--brand-orange);
    color: var(--bg-black);
    transform: scale(1.1) translateY(-5px);
    border-color: var(--brand-orange);
    box-shadow: 0 10px 20px rgba(255, 152, 0, 0.4);
  }
.about-link {
  color: var(--brand-orange);
    position: relative;
    overflow: hidden;
    padding-bottom: 5px;
    font-size: 0.95rem;
  }
.about-link::after {
  content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-white);
    transition: width 0.3s ease;
  }
.about-link:hover {
  color: var(--text-white);
  }
.about-link:hover::after {
  width: 100%;
  }
/* ------------------ */.team.section {
  background: radial-gradient(circle at 10% 20%, rgba(26, 35, 126, 0.05) 0%, transparent 40%),    radial-gradient(circle at 90% 80%, rgba(255, 152, 0, 0.05) 0%, transparent 40%);
    padding: 100px 0;
  }
.member-card {
  background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
  }
.member-card:hover {
  transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(26, 35, 126, 0.15);
    border-color: rgba(255, 152, 0, 0.3);
  }
.member-image-wrapper {
  position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: #f8fafc;
  }
.member-img {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
  }
.member-card:hover .member-img {
  transform: scale(1.1) rotate(1deg);
  }
.member-social-overlay {
  position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 35, 126, 0.85), transparent);
    padding: 35px 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
.member-card:hover .member-social-overlay {
  transform: translateY(0);
  }
.glass-icon {
  width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    transition: all 0.3s ease;
    text-decoration: none;
  }
.glass-icon:hover {
  background: #fff;
    color: var(--primary-color) !important;
    transform: scale(1.1) translateY(-3px);
  }
.member-content {
  padding: 30px;
    text-align: center;
    flex-grow: 1;
  }
.member-name {
  font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 4px;
  }
.member-role {
  font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    display: block;
  }
.member-bio {
  font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
@media (max-width: 576px) {
  .team.section {
    padding: 60px 0;
    }
  .member-card:hover {
    transform: translateY(-8px);
    }
}
/* ------------------ *//* Custom Styles for FAQ Section */.faq {
  position: relative;
    overflow: hidden;
  }
.accordion-button:not(.collapsed) {
  color: #fff;
    background-color: rgba(0, 0, 0, 0.3) !important;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  }
.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    border-color: transparent;
  }
.faq-img-wrapper {
  position: relative;
    padding: 20px;
  }
.faq-shape {
  position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 30px;
    transform: rotate(45deg);
    z-index: -1;
    top: -30px;
    right: -30px;
  }
.icon-circle {
  display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
  }
.faq-shape-1 {
  position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    left: -150px;
  }
.faq-shape-2 {
  position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(253, 230, 138, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
  }
@media (max-width: 991.98px) {
  .faq-img-wrapper {
    margin-bottom: 40px;
    }
}
/* ------------------ */.toast-notification {
  position: fixed;
    top: 20px;
    right: 20px;
    background-color: #323232;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    z-index: 9999;
    animation: fadeInOut 4s forwards;
  }
.toast-success {
  background-color: #28a745;
  }
.toast-error {
  background-color: #dc3545;
  }
@keyframes fadeInOut {
  0% {
    opacity: 0;
      transform: translateY(-10px);
    }
  10%,  90% {
    opacity: 1;
      transform: translateY(0);
    }
  100% {
    opacity: 0;
      transform: translateY(-10px);
    }
}
/* ------------------ */.footer {
  padding: 60px 0 30px;
    color: #fff;
  }
.footer-logo {
  max-height: 60px;
  }
.footer h4 {
  color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
.footer h4:after {
  content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
  }
.footer-about p {
  line-height: 1.8;
  }
.social-links a {
  display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-inline-end: 10px;
    transition: all 0.3s;
    text-decoration: none;
  }
.social-links a:hover {
  background: var(--primary-color);
    transform: translateY(-3px);
  }
.feature-list {
  list-style: none;
    padding-inline-start: 0;
  }
.feature-list li {
  margin-bottom: 10px;
  }
/* === NEW PREMIUM STYLES === *//* Navbar & Logo */.logo-icon {
  margin-inline-end: 12px;
    filter: drop-shadow(0 0 12px rgba(255, 152, 0, 0.4));
    transition: all 0.5s ease;
  }
.logo:hover .logo-icon {
  transform: rotate(15deg) scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 152, 0, 0.6));
  }
.logo-text {
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
    transition: all 0.3s ease;
  }
/* Hero Section 2.0 */.hero-overlay-premium {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(26, 35, 126, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
  }
.hero-title-premium {
  background: linear-gradient(to bottom, #ffffff 30%, #a5a5a5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
.hero-desc-premium {
  color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.8;
    max-width: 800px;
  }
.hero-main-img {
  max-height: 50vh;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
    z-index: 2;
    position: relative;
  }
.img-glow-effect {
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(26, 35, 126, 0.3) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite;
  }
@keyframes pulse-glow {
  0%,  100% {
    opacity: 0.5;
      transform: translate(-50%, -50%) scale(1);
    }
  50% {
    opacity: 0.8;
      transform: translate(-50%, -50%) scale(1.1);
    }
}
.btn-get-started-premium {
  background: var(--grad-accent);
    color: var(--bg-black) !important;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
  }
.btn-get-started-premium:hover {
  transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 152, 0, 0.5);
    color: var(--bg-black) !important;
  }
.btn-secondary-premium {
  background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff !important;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
  }
.btn-secondary-premium:hover {
  background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
  }
/* === ABOUT & PILLAR STYLES === */.ambient-glow-1 {
  position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 35, 126, 0.08), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
  }
.ambient-glow-2 {
  position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.08), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
  }
.premium-badge {
  background: rgba(26, 35, 126, 0.1);
    color: var(--primary-blue);
    padding: 8px 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(26, 35, 126, 0.2);
    font-size: 0.75rem;
  }
.premium-title {
  color: var(--primary-blue);
    letter-spacing: -1px;
  }
.highlight-text {
  color: var(--brand-orange);
    position: relative;
    display: inline-block;
  }
.highlight-text::after {
  content: "";
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 152, 0, 0.1);
    z-index: -1;
  }
.text-muted-premium {
  color: #475569;
    line-height: 1.8;
  }
/* Pillar Cards */.pillar-card {
  border-radius: 30px;
    padding: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  }
.premium-glass {
  backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
.pillar-card:hover {
  transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(26, 35, 126, 0.12);
    border-color: rgba(26, 35, 126, 0.1);
  }
.featured-pillar {
  border-color: rgba(255, 152, 0, 0.2);
    box-shadow: 0 15px 35px rgba(255, 152, 0, 0.05);
  }
.pillar-img-container {
  height: 240px;
    position: relative;
    background: #f8fafc;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
.pillar-img {
  max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.6s ease;
  }
.pillar-card:hover .pillar-img {
  transform: scale(1.1) translateY(-10px);
  }
.pillar-icon-badge {
  position: absolute;
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 2;
  }
.grad-blue {
  background: var(--grad-premium);
  }
.grad-orange {
  background: var(--grad-accent);
  }
.pillar-body {
  padding: 40px;
  }
.pillar-title {
  font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
  }
.pillar-subtitle {
  font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
  }
.pillar-text {
  color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
  }
.pillar-btn {
  display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
  }
.pillar-btn::after {
  content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-orange);
    transition: width 0.3s ease;
  }
.pillar-btn:hover {
  color: var(--brand-orange);
    gap: 18px;
  }
.pillar-btn:hover::after {
  width: 100%;
  }
/* === TESTIMONIALS PREMIUM STYLES === */.testi-bg-grid {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: radial-gradient(var(--brand-orange) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    pointer-events: none;
  }
.testi-glow-1 {
  position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-blue), transparent 70%);
    opacity: 0.2;
    filter: blur(120px);
  }
.testi-glow-2 {
  position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--brand-orange), transparent 70%);
    opacity: 0.1;
    filter: blur(120px);
  }
.premium-badge-alt {
  background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
  }
.text-muted-light {
  color: rgba(255, 255, 255, 0.6) !important;
  }
.testi-card-premium {
  background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 30px;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
.testi-card-premium:hover {
  background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    border-color: rgba(255, 152, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }
.featured-testi {
  border-color: rgba(255, 152, 0, 0.4);
    background: rgba(255, 152, 0, 0.02);
  }
.testi-quote-icon {
  font-size: 40px;
    color: var(--brand-orange);
    opacity: 0.3;
    margin-bottom: 20px;
  }
.testi-content {
  color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 30px;
  }
.testi-footer {
  display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
  }
.testi-avatar {
  width: 50px;
    height: 50px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
  }
.testi-avatar img {
  width: 100%;
    height: 100%;
    object-fit: cover;
  }
.testi-info h4 {
  color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
  }
.testi-info p {
  color: var(--brand-orange);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0;
  }
.testi-stars {
  color: #f59e0b;
    font-size: 14px;
  }
/* === TEAM PREMIUM STYLES === */.team-bg-ambient {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(26, 35, 126, 0.03) 0%, transparent 40%),    radial-gradient(circle at 90% 80%, rgba(255, 152, 0, 0.03) 0%, transparent 40%);
    pointer-events: none;
  }
.member-card-premium {
  background: #fff;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  }
.member-card-premium:hover {
  transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(26, 35, 126, 0.12);
    border-color: rgba(255, 152, 0, 0.2);
  }
.member-header {
  position: relative;
    overflow: hidden;
  }
.member-img-box {
  aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8fafc;
  }
.member-img-fluid {
  width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
  }
.member-card-premium:hover .member-img-fluid {
  transform: scale(1.1) rotate(2deg);
  }
.member-social-premium {
  position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(26, 35, 126, 0.9), transparent);
    display: flex;
    justify-content: center;
    gap: 12px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
.member-card-premium:hover .member-social-premium {
  transform: translateY(0);
  }
.social-btn {
  width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
  }
.social-btn:hover {
  background: #fff;
    color: var(--primary-blue) !important;
    transform: translateY(-5px) scale(1.1);
  }
.member-body {
  padding: 30px;
    text-align: center;
  }
.member-name-premium {
  font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 5px;
  }
.member-role-premium {
  font-size: 0.85rem;
    color: var(--brand-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
  }
.member-bio-premium {
  font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0;
  }
/* Hero Title */.hero-title-clean {
  font-family: var(--heading-font);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -1px;
  }
[dir="rtl"] .hero-title-clean {
  letter-spacing: 0;
  }
/* Hero Entrance Animation System */.hero-entrance {
  opacity: 0;
    transform: translateY(30px);
    animation: hero-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
.hero-delay-1 {
  animation-delay: 0.1s;
  }
.hero-delay-2 {
  animation-delay: 0.4s;
  }
.hero-delay-3 {
  animation-delay: 0.7s;
  }
.hero-delay-4 {
  animation-delay: 1.0s;
  }
.hero-delay-5 {
  animation-delay: 1.3s;
  }
@keyframes hero-reveal {
  to {
    opacity: 1;
      transform: translateY(0);
    }
}
/* Hero Logo Mark */.hero-logo-mark {
  margin-bottom: 24px;
    filter: drop-shadow(0 0 20px rgba(255, 152, 0, 0.3));
    animation: hero-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards,    logo-float 4s ease-in-out 1.5s infinite;
    opacity: 0;
  }
@keyframes logo-float {
  0%,  100% {
    transform: translateY(0);
    }
  50% {
    transform: translateY(-8px);
    }
}
/* Hero Description */.hero-desc-text {
  font-size: 1.35rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    max-width: 750px;
    font-weight: 400;
  }
/* Hero Product Image */.hero-product-img {
  max-height: 40vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    margin-bottom: 24px;
  }
/* Typewriter Cursor */.typewriter {
  border: none;
    padding-right: 0;
    animation: none;
  }
@keyframes cursor-blink {
  0%,  100% {
    border-color: rgba(255, 255, 255, 0.8);
    }
  50% {
    border-color: transparent;
    }
}
/* Language Dropdown */.lang-dropdown {
  position: relative;
  }
.lang-menu {
  position: absolute;
    top: 100%;
    right: 0;
    min-width: 140px;
    background: rgba(5, 5, 16, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    list-style: none;
    padding: 6px 0;
    margin: 10px 0 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 1000;
  }
.lang-dropdown:hover .lang-menu,.lang-dropdown.open .lang-menu {
  opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
.lang-menu li a {
  display: block;
    padding: 10px 18px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
  }
.lang-menu li a:hover {
  background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
  }
[dir="rtl"] .lang-menu {
  right: auto;
    left: 0;
  }
/* ============================================================   MOBILE OPTIMIZATION & RESPONSIVENESS OVERHAUL   ============================================================ *//* === COMPREHENSIVE MOBILE OPTIMIZATION === */@media (max-width: 991px) {
  .section {
    padding: 60px 0 !important;
    }
  .display-1 {
    font-size: 3rem !important;
    }
  .display-2 {
    font-size: 2.5rem !important;
    }
  .display-3 {
    font-size: 2.2rem !important;
    }
  .display-4 {
    font-size: 2rem !important;
    }
  .display-5 {
    font-size: 1.8rem !important;
    }
  /* Header Optimization */  .logo img:first-child {
    width: 60px !important;
      height: 60px !important;
    }
  .logo img:last-child {
    height: 40px !important;
    }
  /* Hero Section Optimization */  .hero-title-clean {
    font-size: 2rem !important;
      line-height: 1.3 !important;
      margin-bottom: 20px !important;
    }
  .hero-desc-text {
    font-size: 1.1rem !important;
      max-width: 100% !important;
      margin-bottom: 30px !important;
    }
  .hero-product-img {
    max-height: 40vh !important;
      margin-top: 30px !important;
    }
  /* Contact Section Optimization */  .contact-header {
    text-align: center !important;
    }
  .contact-header h2 {
    font-size: 2.5rem !important;
    }
  .contact-info-list {
    margin-top: 30px !important;
    }
  .info-item-v2 {
    justify-content: center !important;
      text-align: center !important;
    }
  .info-item-v2 .ms-4 {
    margin-left: 0 !important;
      margin-top: 15px !important;
    }
  .contact-form-premium {
    padding: 30px 20px !important;
      border-radius: 30px !important;
    }
  .map-wrapper-premium {
    height: 300px !important;
      border-radius: 30px !important;
    }
}
@media (max-width: 575px) {
  .hero-title-clean {
    font-size: 1.75rem !important;
    }
  .btn-premium-submit {
    padding: 1.25rem !important;
    }
  .info-item-v2 h4 {
    font-size: 0.75rem !important;
    }
  .info-item-v2 p {
    font-size: 0.9rem !important;
    }
}
@media (max-width: 768px) {
  .lead {
    font-size: 1rem !important;
    }
  .member-card-premium {
    margin-bottom: 20px;
    }
  .testimonial-card-premium {
    padding: 25px !important;
    }
  .contact-form-card {
    padding: 25px !important;
    }
  .submit-btn-premium {
    padding: 12px !important;
      font-size: 1rem !important;
    }
  .newsletter-large-form button {
    width: 100%;
      height: 60px !important;
    }
  .newsletter-large-form input {
    height: 60px !important;
    }
  /* Fix RTL spacing on mobile */  [dir="rtl"] .info-card-premium .icon-box-premium {
    margin-left: 15px !important;
      margin-right: 0 !important;
    }
}
/* Fix for overlapping elements in Hero */#hero {
  padding-bottom: 100px !important;
  }
/* Ensure images don't overflow */img {
  max-width: 100%;
    height: auto;
  }
/* Improve tap targets */.nav-list-premium {
  display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
  }
@media (max-width: 991px) {
  .nav-list-premium {
    display: block;
      gap: 0;
    }
}
/* === PREMIUM FOOTER STYLES === */footer#footer.footer {
  background-color: #010a3d !important;
    background: linear-gradient(135deg, #010a3d 0%, #0a1547 50%, #010a3d 100%) !important;
    color: #ffffff !important;
    padding: 80px 0 30px 0 !important;
    position: relative !important;
    overflow: hidden !important;
  }
#footer.footer .footer-top {
  border-top: none !important;
    background: transparent !important;
  }
.footer h4 {
  color: #fff !important;
    font-family: var(--heading-font);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
.footer h4::after {
  content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--brand-orange);
    border-radius: 2px;
  }
[dir="rtl"] .footer h4::after {
  left: auto;
    right: 0;
  }
.footer-description p {
  color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.8 !important;
  }
.footer-contact-info .contact-item {
  display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
  }
.footer-contact-info .contact-item i {
  color: var(--brand-orange) !important;
    font-size: 1.2rem;
    margin-inline-end: 15px;
  }
.footer-services .feature-item {
  background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: all 0.3s ease;
  }
.footer-services .feature-item:hover {
  background: rgba(255, 255, 255, 0.07) !important;
    transform: translateX(5px);
  }
[dir="rtl"] .footer-services .feature-item:hover {
  transform: translateX(-5px);
  }
.footer-cta .contact-cta {
  background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px);
  }
.stat-item {
  text-align: center;
  }
.stat-val {
  font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-orange);
    display: block;
  }
.stat-label {
  font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
.copyright {
  border-color: rgba(255, 255, 255, 0.05) !important;
    color: rgba(255, 255, 255, 0.4) !important;
  }
.social-icon-footer {
  display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
  }
.social-icon-footer:hover {
  background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #fff;
    transform: translateY(-3px);
  }
@media (max-width: 991px) {
  .footer {
    text-align: center;
    }
  .footer h4::after {
    left: 50% !important;
      transform: translateX(-50%);
    }
  .footer-contact-info .contact-item {
    justify-content: center;
    }
  .footer-services .feature-item {
    text-align: start;
    }
}
/* === FAQ PREMIUM STYLES === */.faq-img-wrapper-premium {
  position: relative;
    padding: 20px;
    z-index: 1;
  }
.faq-img-glow {
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(26, 35, 126, 0.2) 0%, transparent 70%);
    z-index: -1;
  }
.premium-faq-img {
  border: 4px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
  }
.faq-img-wrapper-premium:hover .premium-faq-img {
  transform: scale(1.02) rotate(-1deg);
    border-color: var(--brand-orange);
  }
.premium-accordion .accordion-item {
  background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px !important;
    margin-bottom: 20px;
    overflow: hidden;
  }
/* === CREATIVE OUT-OF-THE-BOX HERO === */.hero {
  min-height: auto;
    padding: 110px 0 50px;
    background: #010a3d !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
.bg-premium-dark {
  background: radial-gradient(circle at 50% 50%, #0a1547 0%, #010a3d 100%) !important;
  }
.hero-blobs {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
  }
.blob {
  position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: blob-move 25s infinite alternate;
  }
.blob-1 {
  width: 500px;
    height: 500px;
    background: var(--brand-orange);
    top: -100px;
    left: -100px;
  }
.blob-2 {
  width: 400px;
    height: 400px;
    background: #3b82f6;
    bottom: -50px;
    right: -50px;
    animation-delay: -7s;
  }
@keyframes blob-move {
  0% {
    transform: translate(0, 0) scale(1);
    }
  100% {
    transform: translate(100px, 150px) scale(1.2);
    }
}
.hero-content-v3 {
  position: relative;
    z-index: 20;
  }
.hero-title-clean {
  font-size: 2.8rem !important;
    font-weight: 800 !important;
    letter-spacing: -1px !important;
    line-height: 1.1 !important;
    margin-bottom: 12px !important;
    text-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    text-decoration: none !important;
    border: none !important;
  }
.gradient-text-ai {
  background: linear-gradient(90deg, #ff9800, #ffc107, #00d2ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    text-decoration: none !important;
  }
.hero-desc-premium {
  font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 700px !important;
    margin: 0 auto 20px !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
  }
.btn-hero-creative {
  background: linear-gradient(45deg, var(--brand-orange) 0%, #ffc107 100%) !important;
    color: #010a3d !important;
    padding: 16px 40px !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    text-decoration: none !important;
  }
.btn-hero-creative:hover {
  transform: translateY(-10px) scale(1.05) !important;
    box-shadow: 0 25px 50px rgba(255, 152, 0, 0.6) !important;
    background: #fff !important;
    color: var(--brand-orange) !important;
  }
.hero-product-wrapper {
  perspective: 2000px;
    margin-top: 20px;
  }
.hero-product-img-v3 {
  max-height: 280px;
    transform: rotateX(15deg) translateY(0);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  }
.hero-product-wrapper:hover .hero-product-img-v3 {
  transform: rotateX(0deg) translateY(-20px);
  }
@media (max-width: 991px) {
  .hero-title-clean {
    font-size: 2.2rem !important;
      letter-spacing: 0 !important;
    }
  .hero-desc-premium {
    font-size: 0.95rem !important;
    }
  .hero-product-img-v3 {
    max-height: 220px;
    }
}
.premium-accordion .accordion-button {
  background: transparent !important;
    color: #fff !important;
    padding: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: none !important;
  }
.premium-accordion .accordion-button:not(.collapsed) {
  background: rgba(255, 255, 255, 0.05) !important;
    color: var(--brand-orange) !important;
  }
.faq-icon-box {
  width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange);
    transition: all 0.3s ease;
  }
.accordion-button:not(.collapsed) .faq-icon-box {
  background: var(--brand-orange);
    color: #fff;
  }
.premium-accordion .accordion-body {
  padding: 0 25px 25px 80px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
  }
.premium-list {
  list-style: none;
    padding: 0;
  }
.premium-list li {
  position: relative;
    padding-inline-start: 25px;
    margin-bottom: 12px;
  }
.premium-list li::before {
  content: "?";
    position: absolute;
    left: 0;
    color: var(--brand-orange);
    font-weight: 900;
  }
.faq-info-box {
  background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border-inline-start: 3px solid var(--brand-orange);
  }
.highlight-orange {
  color: var(--brand-orange);
    font-weight: 700;
  }
.progress-premium {
  height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
.progress-segment {
  display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    transition: all 1s ease-in-out;
  }
.p1 {
  background: #10b981;
  }
.p2 {
  background: #3b82f6;
  }
.p3 {
  background: #f59e0b;
  }
.faq-stat-card {
  background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
  }
.x-small {
  font-size: 0.7rem;
  }
/* === NEW PREMIUM CONTACT SECTION === */.info-item-v2 {
  transition: all 0.3s ease;
  }
.icon-box-v2 {
  width: 50px;
    height: 50px;
    background: rgba(26, 35, 126, 0.05);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }
.info-item-v2:hover .icon-box-v2 {
  background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
  }
.icon-phone-v2 {
  background: rgba(76, 175, 80, 0.05);
    color: #2e7d32;
  }
.info-item-v2:hover .icon-phone-v2 {
  background: #2e7d32;
  }
.icon-email-v2 {
  background: rgba(255, 152, 0, 0.05);
    color: #ef6c00;
  }
.info-item-v2:hover .icon-email-v2 {
  background: #ef6c00;
  }
.icon-clock-v2 {
  background: rgba(156, 39, 176, 0.05);
    color: #7b1fa2;
  }
.info-item-v2:hover .icon-clock-v2 {
  background: #7b1fa2;
  }
.contact-form-premium {
  border: 1px solid rgba(0, 0, 0, 0.05);
  }
.form-decoration {
  position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26, 35, 126, 0.03) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
  }
.form-floating-custom {
  position: relative;
  }
.form-control-premium {
  width: 100%;
    padding: 1.5rem 1rem 0.5rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    background: #f8fafc;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--primary-color);
  }
.form-control-premium:focus {
  outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.05);
  }
.form-floating-custom label {
  position: absolute;
    left: 1rem;
    top: 1.3rem;
    font-size: 0.95rem;
    color: #94a3b8;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    text-transform: none;
  }
.form-control-premium:focus~label,.form-control-premium:not(:placeholder-shown)~label {
  top: 0.4rem;
    left: 0.8rem;
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
.btn-premium-submit {
  background: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
.btn-premium-submit:hover {
  background: #1a237e;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(26, 35, 126, 0.2) !important;
  }
.map-wrapper-premium {
  transition: transform 0.5s ease;
  }
.map-wrapper-premium:hover {
  transform: scale(1.01);
  }
/* RTL Support for Contact */[dir="rtl"] .form-floating-custom label {
  left: auto;
    right: 1rem;
  }
[dir="rtl"] .info-item-v2 .ms-4 {
  margin-left: 0 !important;
    margin-right: 1.5rem !important;
  }
/* === CONTACT PREMIUM STYLES === */.info-card-premium {
  background: #fff;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
  }
.info-card-premium:hover {
  transform: translateX(10px);
    border-color: var(--brand-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
.info-icon-premium {
  width: 54px;
    height: 54px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    margin-inline-end: 20px;
    flex-shrink: 0;
  }
.info-text-premium h4 {
  font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 4px;
  }
.info-text-premium p {
  font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0;
  }
.contact-form-card-premium {
  background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
  }
.premium-input {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 12px !important;
    padding: 1rem !important;
    background-color: #fcfdfe !important;
    transition: all 0.3s ease !important;
  }
.premium-input:focus {
  border-color: var(--brand-orange) !important;
    box-shadow: 0 0 0 4px rgba(255, 152, 0, 0.1) !important;
    background-color: #fff !important;
  }
.form-floating>label {
  padding-inline-start: 1rem !important;
    color: #94a3b8;
  }
.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label {
  color: var(--brand-orange);
  }
/* === FOOTER PREMIUM STYLES === */.footer {
  background: var(--bg-black) !important;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
  }
/* Footer Background Decorations */.footer-bg-decoration {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }
.footer-glow-1 {
  position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(77, 171, 247, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    animation: float-glow 8s ease-in-out infinite;
  }
.footer-glow-2 {
  position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    animation: float-glow 10s ease-in-out infinite reverse;
  }
.footer-pattern {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:    radial-gradient(circle at 20% 80%, rgba(77, 171, 247, 0.03) 0%, transparent 50%),    radial-gradient(circle at 80% 20%, rgba(255, 152, 0, 0.03) 0%, transparent 50%),    radial-gradient(circle at 40% 40%, rgba(77, 171, 247, 0.02) 0%, transparent 50%);
  }
@keyframes float-glow {
  0%,  100% {
    transform: translate(0, 0) scale(1);
    }
  33% {
    transform: translate(30px, -30px) scale(1.1);
    }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
    }
}
.footer h4 {
  font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    color: #ffffff;
  }
/* Logo hover effects */.footer-logo:hover {
  transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 12px rgba(77, 171, 247, 0.8));
  }
/* Social icons enhanced */.social-icon {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
.social-icon:hover {
  background: var(--primary-color) !important;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(77, 171, 247, 0.4);
    border-color: var(--primary-color) !important;
  }
.social-icon:hover i {
  transform: scale(1.2);
  }
/* Feature items enhanced */.feature-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
  }
.feature-item:hover {
  background: rgba(77, 171, 247, 0.1) !important;
    border-color: rgba(77, 171, 247, 0.2) !important;
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }
.feature-item:hover i {
  color: #ff9800 !important;
    transform: scale(1.2) rotate(5deg);
  }
/* Contact items enhanced */.contact-item {
  transition: all 0.3s ease;
    padding: 8px 0;
  }
.contact-item:hover {
  transform: translateX(5px);
  }
.contact-item:hover i {
  color: #ff9800 !important;
    transform: scale(1.1);
  }
/* CTA buttons enhanced */.contact-cta {
  transition: all 0.3s ease;
  }
.contact-cta:hover {
  transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(77, 171, 247, 0.2);
    border-color: rgba(77, 171, 247, 0.3) !important;
  }
.contact-cta .btn:hover {
  transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(77, 171, 247, 0.4) !important;
  }
/* Quick stats enhanced */.quick-stats {
  transition: all 0.3s ease;
  }
.quick-stats:hover {
  transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
.stat-item {
  transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
  }
.stat-item:hover {
  background: rgba(77, 171, 247, 0.05);
    transform: scale(1.05);
  }
/* Footer bottom links */.footer-bottom-links a {
  position: relative;
    transition: all 0.3s ease;
  }
.footer-bottom-links a::after {
  content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #4dabf7;
    transition: width 0.3s ease;
  }
.footer-bottom-links a:hover {
  color: #4dabf7 !important;
  }
.footer-bottom-links a:hover::after {
  width: 100%;
  }
/* Footer links general */.footer-links ul {
  list-style: none;
    padding: 0;
    margin: 0;
  }
.footer-links ul li {
  padding: 10px 0;
    display: flex;
    align-items: center;
  }
.footer-links ul li a {
  color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }
.footer-links ul li a:hover {
  color: var(--brand-orange);
    padding-inline-start: 10px;
  }
/* Newsletter form enhanced */.newsletter-form-premium {
  background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 15px;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    transition: all 0.3s ease;
  }
.newsletter-form-premium:hover {
  border-color: rgba(77, 171, 247, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }
.newsletter-form-premium input {
  background: transparent;
    border: none;
    padding: 10px 15px;
    color: #fff;
    flex-grow: 1;
    transition: all 0.3s ease;
  }
.newsletter-form-premium input:focus {
  outline: none;
    background: rgba(255, 255, 255, 0.05);
  }
.newsletter-form-premium button {
  background: var(--grad-accent);
    border: none;
    padding: 10px 25px;
    border-radius: 10px;
    color: var(--bg-black);
    font-weight: 700;
    transition: all 0.3s ease;
  }
.newsletter-form-premium button:hover {
  transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 152, 0, 0.4);
  }
/* Responsive improvements */@media (max-width: 768px) {
  .footer {
    padding: 60px 0 20px;
    }
  .footer h4 {
    font-size: 1.1rem;
      margin-bottom: 20px;
    }
  .social-icon {
    width: 38px !important;
      height: 38px !important;
    }
  .feature-item {
    padding: 12px !important;
    }
  .contact-cta {
    padding: 20px !important;
    }
  .quick-stats .stat-item div:first-child {
    font-size: 1.2rem !important;
    }
}
@media (max-width: 576px) {
  .footer {
    padding: 40px 0 15px;
    }
  .footer-logo {
    width: 60px !important;
      height: 60px !important;
    }
  .footer-bottom-links {
    flex-direction: column;
      gap: 10px;
    }
  .footer-bottom-links span {
    display: none;
    }
}
/* === PREMIUM MOBILE NAVIGATION OVERHAUL === *//* Hide default mobile toggle if any */.mobile-nav-toggle.d-lg-none {
  display: flex !important;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff !important;
    font-size: 28px !important;
    cursor: pointer;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10000 !important;
    position: relative;
  }
.mobile-nav-toggle:hover {
  background: var(--brand-orange);
    border-color: var(--brand-orange);
    transform: scale(1.1);
  }
body.mobile-nav-active {
  overflow: hidden !important;
  }
body.mobile-nav-active .mobile-nav-toggle {
  color: #fff !important;
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    position: fixed;
    top: 20px;
    right: 20px;
  }
/* RTL adjustment for toggle button when active */[dir="rtl"].mobile-nav-active .mobile-nav-toggle {
  right: auto;
    left: 20px;
  }
.navmenu {
  transition: all 0.5s ease;
  }
@media (max-width: 991px) {
  .navmenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(1, 10, 61, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 9998;
      display: flex !important;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: 0.5s;
    }
  body.mobile-nav-active .navmenu {
    opacity: 1;
      visibility: visible;
    }
  body.mobile-nav-active .header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
  }
  .navmenu ul {
    display: flex !important;
      flex-direction: column;
      align-items: center;
      padding: 0;
      margin: 0;
      list-style: none;
      width: 100%;
    }
  .navmenu ul li {
    width: 80%;
      text-align: center;
      margin-bottom: 25px;
      opacity: 0;
      transform: translateY(20px);
    }
  body.mobile-nav-active .navmenu ul li {
    animation: mobileMenuItemIn 0.5s ease forwards;
    }
  .navmenu ul li:nth-child(1) {
    animation-delay: 0.1s;
    }
  .navmenu ul li:nth-child(2) {
    animation-delay: 0.15s;
    }
  .navmenu ul li:nth-child(3) {
    animation-delay: 0.2s;
    }
  .navmenu ul li:nth-child(4) {
    animation-delay: 0.25s;
    }
  .navmenu ul li:nth-child(5) {
    animation-delay: 0.3s;
    }
  .navmenu ul li:nth-child(6) {
    animation-delay: 0.35s;
    }
  .navmenu ul li:nth-child(7) {
    animation-delay: 0.4s;
    }
  @keyframes mobileMenuItemIn {
    to {
      opacity: 1;
        transform: translateY(0);
      }
  }
  .navmenu a {
    color: #fff !important;
      font-size: 1.6rem !important;
      font-weight: 800 !important;
      text-decoration: none;
      display: block;
      padding: 10px;
      transition: 0.3s;
      letter-spacing: -1px;
      text-transform: uppercase;
    }
  .navmenu a:hover,  .navmenu a.active {
    color: var(--brand-orange) !important;
      transform: scale(1.05);
    }
  .navmenu .btn-nav-cta {
    background: var(--brand-orange) !important;
      color: #010a3d !important;
      padding: 15px 40px !important;
      border-radius: 50px !important;
      font-size: 1.1rem !important;
      margin-top: 20px !important;
      width: auto !important;
      display: inline-block !important;
    }
  .navmenu .lang-dropdown .lang-menu {
    position: static;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 15px;
      margin-top: 10px;
      padding: 10px;
      display: none;
      width: 100%;
    }
  .navmenu .lang-dropdown.active .lang-menu {
    display: block;
    }
  .navmenu .lang-dropdown .lang-menu li {
    margin-bottom: 5px;
      width: 100%;
    }
  .navmenu .lang-dropdown .lang-menu a {
    font-size: 1.1rem !important;
      opacity: 0.7;
    }
  /* Explicit fix for the external mobile header language switcher */  .mobile-lang-dropdown .lang-menu {
    position: absolute !important;
      top: 100% !important;
      right: 0 !important;
      left: auto !important;
      background: #010a3d !important;
      border: 1px solid rgba(255, 255, 255, 0.1) !important;
      border-radius: 12px !important;
      padding: 10px !important;
      display: none !important;
      flex-direction: column !important;
      min-width: 140px !important;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
      z-index: 9999 !important;
    }
  [dir="rtl"] .mobile-lang-dropdown .lang-menu {
    right: auto !important;
      left: 0 !important;
    }
  .mobile-lang-dropdown.active .lang-menu {
    display: flex !important;
    }
  .mobile-lang-dropdown .lang-menu li {
    width: 100%;
      margin-bottom: 5px;
    }
  .mobile-lang-dropdown .lang-menu a {
    color: #fff !important;
      font-size: 1rem !important;
      padding: 8px 15px !important;
      display: block !important;
      border-radius: 8px !important;
      text-align: start !important;
    }
  .mobile-lang-dropdown .lang-menu a:hover {
    background: rgba(255, 152, 0, 0.2) !important;
      color: var(--brand-orange) !important;
    }
}
/* === ULTRA-PREMIUM NOTIFICATION SYSTEM (TOASTS) === */#notification-container {
  position: fixed;
    top: 30px;
    right: 30px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
  }
[dir="rtl"] #notification-container {
  right: auto;
    left: 30px;
  }
.premium-toast {
  min-width: 340px;
    max-width: 420px;
    padding: 20px 25px;
    background: rgba(1, 10, 61, 0.8);
    backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 18px;
    pointer-events: all;
    opacity: 0;
    transform: translateX(50px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  }
[dir="rtl"] .premium-toast {
  transform: translateX(-50px) scale(0.9);
  }
.premium-toast.show {
  opacity: 1;
    transform: translateX(0) scale(1);
  }
/* Status-specific Glow & Borders */.premium-toast.success {
  border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.25);
  }
.premium-toast.error {
  border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.25);
  }
.premium-toast.warning {
  border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.25);
  }
.premium-toast.info {
  border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.25);
  }
/* Toast Progress Bar */.toast-progress {
  position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    width: 100%;
  }
.toast-progress-fill {
  height: 100%;
    width: 100%;
    background: var(--brand-orange);
    transition: width 5s linear;
  }
.premium-toast.success .toast-progress-fill {
  background: #10b981;
  }
.premium-toast.error .toast-progress-fill {
  background: #ef4444;
  }
.premium-toast.warning .toast-progress-fill {
  background: #f59e0b;
  }
.premium-toast.info .toast-progress-fill {
  background: #3b82f6;
  }
.toast-icon {
  font-size: 1.8rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
  }
.premium-toast.success .toast-icon {
  color: #10b981;
    background: rgba(16, 185, 129, 0.1);
  }
.premium-toast.error .toast-icon {
  color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
  }
.premium-toast.warning .toast-icon {
  color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
  }
.premium-toast.info .toast-icon {
  color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
  }
.toast-content {
  flex-grow: 1;
  }
.toast-title {
  font-weight: 800;
    font-size: 1rem;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }
.toast-message {
  font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.4;
  }
@media (max-width: 576px) {
  #notification-container {
    top: auto;
      bottom: 30px;
      right: 20px;
      left: 20px;
      align-items: center;
    }
  .premium-toast {
    min-width: 100%;
      transform: translateY(50px) scale(0.9);
    }
  [dir="rtl"] .premium-toast {
    transform: translateY(50px) scale(0.9);
    }
  .premium-toast.show {
    transform: translateY(0) scale(1);
    }
}
/* === BUTTON LOADING STATES === */.btn-premium-submit {
  position: relative;
    transition: all 0.3s ease !important;
  }
.btn-premium-submit.loading {
  pointer-events: none;
    opacity: 0.8;
  }
.btn-premium-submit .btn-text {
  transition: all 0.3s ease;
    display: inline-block;
  }
.btn-premium-submit.loading .btn-text {
  opacity: 0.5;
    transform: translateX(12px);
  }
.btn-premium-submit .spinner-premium {
  position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%) scale(0);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: premium-spin 0.8s linear infinite;
    transition: all 0.3s ease;
  }
.btn-premium-submit.loading .spinner-premium {
  transform: translate(-50%, -50%) scale(1);
  }
@keyframes premium-spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
    }
}
@media (max-width: 768px) {
  #notification-container {
    top: auto;
      bottom: 30px;
      left: 20px !important;
      right: 20px !important;
      width: calc(100% - 40px);
    }
  .premium-toast {
    min-width: 100%;
    }
}
/* === PREMIUM FAQ (ACCORDION) SYSTEM === */.faq-premium {
  padding: 120px 0;
    position: relative;
    overflow: hidden;
  }
.faq-item-premium {
  background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 24px !important;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
  }
.faq-item-premium:hover {
  background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }
.faq-header-premium .accordion-button {
  background: transparent !important;
    color: #fff !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    padding: 25px 30px !important;
    box-shadow: none !important;
    border: none !important;
    display: flex;
    align-items: center;
  }
.faq-header-premium .accordion-button:not(.collapsed) {
  color: var(--brand-orange) !important;
  }
.faq-header-premium .accordion-button i.bi-main {
  font-size: 1.4rem;
    margin-inline-end: 20px;
    color: var(--brand-orange);
    transition: all 0.3s ease;
  }
.faq-header-premium .accordion-button::after {
  background-image: none !important;
    content: "\F282";
    /* bi-plus-lg */  font-family: "bootstrap-icons";
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    transform: rotate(0);
  }
.faq-header-premium .accordion-button:not(.collapsed)::after {
  content: "\F2F4";
    /* bi-dash-lg */  color: var(--brand-orange);
    transform: rotate(180deg);
  }
.faq-body-premium {
  background: transparent !important;
    padding: 0 30px 30px 80px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1rem;
    line-height: 1.8;
  }
[dir="rtl"] .faq-body-premium {
  padding: 0 80px 30px 30px !important;
  }
.faq-img-premium {
  position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  }
.faq-img-premium::after {
  content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 10, 61, 0.8), transparent);
  }
/* Custom internal elements for FAQ */.faq-stat-pill {
  background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
  }
.faq-stat-pill:hover {
  background: rgba(255, 255, 255, 0.1);
    border-color: var(--brand-orange);
  }
/* Logo Tagline Styles */.logo-tagline {
  display: block;
    line-height: 1;
  }
@media (max-width: 768px) {
  .logo-tagline {
    display: none;
      /* Hide on small mobile to avoid clutter */  }
}
/* Animated Waves CSS */.hero-waves-container {
  position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25vh;
    min-height: 150px;
    max-height: 250px;
    overflow: hidden;
    z-index: 10;
  }
.hero-waves {
  position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: -7px;
    /* Fix for safari gap */}
/* Animation */.parallax>use {
  animation: move-forever 20s cubic-bezier(.55, .5, .45, .5) infinite;
  }
.parallax>use:nth-child(1) {
  animation-delay: -2s;
    animation-duration: 5s;
  }
.parallax>use:nth-child(2) {
  animation-delay: -3s;
    animation-duration: 7s;
  }
.parallax>use:nth-child(3) {
  animation-delay: -4s;
    animation-duration: 10s;
  }
.parallax>use:nth-child(4) {
  animation-delay: -5s;
    animation-duration: 15s;
  }
@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
    }
  100% {
    transform: translate3d(85px, 0, 0);
    }
}
/* Shrink waves on mobile */@media (max-width: 768px) {
  .hero-waves-container {
    height: 40px;
      min-height: 40px;
    }
}
/* ─── Ultra-Premium Bento Services (Light Theme) ─── */.bento-grid {
  display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 30px;
    padding: 20px 0;
  }
.bento-card-premium {
  background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    z-index: 1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
  }
.bento-card-premium::after {
  content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 3px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  
  -webkit-mask-composite: xor;
  
  mask-composite: exclude;
    pointer-events: none;
  }
.bento-card-premium:hover {
  transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px var(--card-accent);
  }
.bento-item-1 {
  grid-column: span 4;
    grid-row: span 1;
    --card-accent: #0ea5e9;
  }
.bento-item-1 .bento-card-premium {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  }
.bento-item-2 {
  grid-column: span 4;
    grid-row: span 1;
    --card-accent: #f59e0b;
  }
.bento-item-2 .bento-card-premium {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  }
.bento-item-3 {
  grid-column: span 4;
    grid-row: span 1;
    --card-accent: #6366f1;
  }
.bento-item-3 .bento-card-premium {
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  }
.bento-step-num {
  position: absolute;
    top: -15px;
    inset-inline-start: 30px;
    font-size: 160px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    line-height: 1;
    pointer-events: none;
    z-index: -1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: 0.5s;
  }
.bento-card-premium:hover .bento-step-num {
  color: rgba(0, 0, 0, 0.04);
    transform: scale(1.05);
  }
.bento-premium-tag {
  display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--card-accent);
    background: rgba(0, 0, 0, 0.02);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
.bento-premium-title {
  font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
  }
.bento-premium-subtitle {
  font-size: 1rem;
    color: var(--card-accent);
    font-weight: 700;
    margin-bottom: 20px;
  }
.bento-premium-desc {
  font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 450px;
  }
.bento-premium-link {
  margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #1e293b;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 1rem;
    transition: 0.3s;
  }
.bento-premium-link i {
  width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.04);
    color: var(--card-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
.bento-premium-link::after {
  content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
  }
.bento-card-premium:hover .bento-premium-link {
  color: var(--card-accent);
  }
.bento-card-premium:hover .bento-premium-link i {
  transform: translateX(8px);
    background: var(--card-accent);
    color: #fff;
  }
[dir="rtl"] .bento-card-premium:hover .bento-premium-link i {
  transform: translateX(-8px);
  }
.bento-premium-visual {
  position: relative;
    width: 100%;
    height: 220px;
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    background: rgba(255, 255, 255, 0.5);
    border: 2px dashed var(--card-accent);
    border-radius: 20px;
    padding: 15px;
  }
.bento-card-premium:hover .bento-premium-visual {
  transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.9);
    border-style: solid;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  }
.bento-visual-tall {
  margin-top: auto;
    position: relative;
    width: 100%;
    height: 220px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
@media (max-width: 1200px) {
  .bento-item-1,  .bento-item-2,  .bento-item-3 {
    grid-column: span 12;
    }
  .bento-premium-title {
    font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
    }
  .bento-card-premium {
    padding: 15px;
      border-radius: 20px;
    }
  .bento-premium-visual {
    height: 140px;
      margin-top: 15px;
      padding: 10px;
    }
  .bento-premium-title {
    font-size: 1.3rem;
    }
  .bento-premium-desc {
    font-size: 0.9rem;
    }
  section,  .section {
    padding: 60px 0 !important;
    }
  .hero.section {
    padding: 140px 0 60px !important;
  }
}
/* ─── Premium Section Backgrounds ─── */.bg-section-about {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%) !important;
  }
.bg-section-team {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%) !important;
  }
.bg-section-testimonials {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce3 100%) !important;
  }


