@font-face {
  font-family: 'Hacen Liner XL';
  src: url('../fonts/subset-HacenLinerXL.woff2') format('woff2'),
    url('../fonts/subset-HacenLinerXL.woff') format('woff'),
    url('../fonts/Hacen Liner XL.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}



/* 🔵 الخطوة 2: تعيين الخط الافتراضي */
:root {
  --default-font: 'Hacen Liner XL', sans-serif;
  --heading-font: 'Hacen Liner XL', sans-serif;
  --nav-font: 'Hacen Liner XL', sans-serif;
}

body {
  font-family: var(--default-font);
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #212529;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0d83fd;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;
  /* The default color of the main navmenu links */
  --nav-hover-color: #0d83fd;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0d83fd;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
* {
  font-family: 'Hacen Liner XL', sans-serif !important;
}

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

.dark-background {
  --background-color: #0d83fd;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #409dfd;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  font-family: 'Hacen Liner XL', sans-serif;
  direction: rtl;
  text-align: right;
  color: var(--default-color);
  background-color: var(--background-color);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: black;
  font-family: 'Hacen Liner XL', sans-serif;
}

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

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

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

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

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

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

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

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

.header .logo {
  line-height: 1;
  padding-right: 5px;
}

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

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

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

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

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

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

  .header .navmenu {
    order: 3;
  }
}

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

  html[dir="rtl"] .mobile-nav-active .navmenu>ul {
    left: 0;
    right: auto;
  }

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

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

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

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

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

.btn-animated {
  position: relative;
  padding: 14px 28px;
  min-width: 220px;
  font-size: 20px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.btn-animated:hover {
  transform: translateY(-3px);
}

/* لما يصير hover على الزر يتغير النص للون أسود */
.btn-animated:hover span {
  color: #000 !important;
  text-shadow: none !important;
  /* حتى يروح تأثير الظل ويبين النص أوضح */
}

.btn-animated .call-to-action .shape-1 {
  width: 120%;
  height: 200%;
  background: rgba(53, 43, 24, 0.15);
  transform: rotate(25deg);
  top: -50%;
  left: -10%;
  animation: shine 3s infinite linear;
}

@keyframes shine {
  0% {
    transform: translateX(-150%) rotate(25deg);
  }

  100% {
    transform: translateX(150%) rotate(25deg);
  }
}

.btn-animated .btn-3d-edge {
  bottom: -8px;
  left: 0;
  right: 0;
  height: 8px;
  border-radius: 0 0 18px 18px;
  z-index: -1;
  transition: all 0.3s ease;
}

.btn-android {
  background: #1dc6a1;
  color: #fff;
}

.btn-android .btn-3d-edge {
  background: #1dc6a1;
}

.btn-windows {
  background: #044e89;
  color: #fff;
}

.btn-windows .btn-3d-edge {
  background: #044e89;
}

.btn-ios {
  background: #808080;
  color: #fff;
}

/* رصاصي */
.btn-ios .btn-3d-edge {
  background: #555;
}

#downloadProgressContainer {
  align-items: center;
  gap: 8px;
}

#progressBar {
  width: 0%;
  height: 12px;
  transition: width 0.3s ease;
  background: linear-gradient(to right, #1dc6a1, #17a085);
  position: relative;
}

/* وضع indeterminate إذا ماكو content-length */
#progressBar.indeterminate {
  width: 100% !important;
  overflow: hidden;
}

#progressBar.indeterminate::before {
  content: "";
  position: absolute;
  left: -30%;
  top: 0;
  height: 100%;
  width: 30%;
  background: rgba(255, 255, 255, 0.35);
  animation: progressInd 1.1s infinite linear;
  border-radius: 6px;
}

@keyframes progressInd {
  0% {
    left: -30%;
  }

  100% {
    left: 100%;
  }
}

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

  #overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, visibility 220ms ease;
    z-index: 9998;
  }

  #overlay.open {
    opacity: 1;
    visibility: visible;
  }

  /* نافذة الدialog */
  #comingSoonDialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    opacity: 0;
    visibility: hidden;
    background: #fff;
    border: 2px solid #1dc6a1;
    border-radius: 12px;
    padding: 20px 30px;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.20);
    transition:
      opacity 220ms ease,
      transform 260ms cubic-bezier(.2, .8, .2, 1),
      visibility 220ms ease;
    will-change: opacity, transform;
  }

  #comingSoonDialog.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
  }

  /* تحسين وصول/إمكانية */
  #comingSoonDialog:focus {
    outline: none;
  }

  /* احترام تقليل الحركة */
  @media (prefers-reduced-motion: reduce) {

    #overlay,
    #comingSoonDialog {
      transition: none !important;
    }

    #comingSoonDialog {
      transform: translate(-50%, -50%) scale(1);
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: 'Hacen Liner XL', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: 'Hacen Liner XL', sans-serif;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

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

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

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

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

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

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

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

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

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

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

.footer .copyright {
  padding: 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: 8px;
  font-size: 13px;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* اجعل سكشن الهيرو يملأ طول الشاشة ويصير Flex للتوسيط العمودي */
.hero {
  position: relative;
  min-height: 100vh;
  /* ياخذ ارتفاع كامل النافذة */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  /* نشيل البادينغ القديم */
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--accent-color), transparent 90%) 50%,
      color-mix(in srgb, var(--accent-color), transparent 98%) 25%,
      transparent 50%);
  overflow: hidden;
  /* يمنع أي خلفية من الخروج */
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* يغطي الطول كامل */
  background: radial-gradient(circle at 90% 10%,
      color-mix(in srgb, var(--accent-color), transparent 92%),
      transparent 40%);
  z-index: 0;
  /* خلف المحتوى */
}

.hero .container {
  position: relative;
  z-index: 1;
  /* يخلي النص والأزرار فوق الخلفية */
  text-align: center;
}

.hero .hero-content,
.hero .hero-buttons,
.hero .company-badge {
  position: relative;
  z-index: 1;
  /* فوق التراكبات */
}

/* لو عندك هيدر ثابت وتحتاج مسافة صغيرة فوق/تحت على الشاشات الصغيرة */
@media (max-width: 992px) {
  .hero {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}


.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
}

.hero .company-badge i {
  font-size: 1.25rem;
}

.hero .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.hero .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-link:hover {
  color: var(--accent-color);
}

.hero .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero .hero-image img {
  max-width: 100%;
  height: auto;
}

.hero .customers-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero .customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero .customers-badge .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
}

.hero .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero .customers-badge .avatar.more {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero .customers-badge p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .hero .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
}

.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon {
  background-color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero .stat-item .stat-content {
  flex-grow: 1;
}

.hero .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

@media (max-width: 575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/* حركة الكتابة المحسنة مع تأثيرات 3D */
.typewriter-container {
  perspective: 1000px;
  display: inline-block;
}

.typewriter-text {
  display: inline-block;
  border-right: 3px solid var(--accent-color);
  white-space: nowrap;
  overflow: hidden;
  font-family: inherit;
  font-size: inherit;
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.typewriter-text.typing {
  animation:
    typing 3s steps(40, end) 1 forwards,
    blinkCursor 0.75s step-end infinite,
    subtleBounce 0.5s ease-in-out 3.5s 3 alternate;
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blinkCursor {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: var(--accent-color);
  }
}

/* تأثير التوهج واللون */
.highlight-target {
  color: inherit;
  position: relative;
  transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.highlight-target.animated {
  color: #ff4d4d;
  text-shadow:
    0 0 5px rgba(255, 77, 77, 0.5),
    0 0 10px rgba(255, 77, 77, 0.3),
    0 0 px rgba(255, 77, 77, 0.1);
  animation:
    pulse 1.5s infinite alternate,
    float 3s ease-in-out infinite;
}

/* تأثيرات الحركة والثلاثي الأبعاد */
@keyframes subtleBounce {

  0%,
  100% {
    transform: translateY(0) translateZ(0);
  }

  50% {
    transform: translateY(-5px) translateZ(10px);
  }
}

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

  100% {
    transform: scale(1.05);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

/* تأثير الظل المتحرك */
.typewriter-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 90%;
  height: 5px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, transparent 80%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.typewriter-text.typing::after {
  opacity: 1;
  animation: shadowFade 3.5s forwards;
}

@keyframes shadowFade {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta {
  color: var(--accent-color);
  font-weight: 200;
  margin-bottom: 1rem;
  display: inline-block;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

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

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about .image-wrapper .experience-badge {
  position: static;
  /* ✅ تجعل العنصر داخل التدفق الطبيعي */
  width: fit-content;
  margin: 20px auto 0 auto;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  /* animation: experience-float 3s ease-in-out infinite; */
  /* ← احذفها إذا ما تريد تحريك */
}

@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.features .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.features .nav-item:last-child {
  padding-right: 0;
}

.features .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .features .nav-link {
    padding: 8px 20px;
  }
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.features .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover h4 {
  color: var(--accent-color);
}

.features .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}



.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 8px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 8px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards {
  --default-color: #555;
  --heading-color: #333;
}

.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
}

.features-cards .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 20px;
}

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

.features-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.features-cards .feature-box.orange {
  background-color: #fff3e2;
}

.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}

.features-cards .feature-box.blue i {
  color: #20a5f8;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red i {
  color: #f28484;
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

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

.features-2 .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

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

.features-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.features-2 .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
  .features-2 .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .features-2 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .features-2 .phone-mockup {
    margin: 3rem 0;
  }
}

/* =================== */
/* ✨ Pricing Section ✨ */
/* =================== */

.pricing {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.pricing .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-item {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.pricing-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.pricing-item h4 {
  font-size: 1.8rem;
  color: #0078d4;
  margin-bottom: 25px;
}

.pricing-item h4 span {
  font-size: 0.9rem;
  color: #666;
}

.pricing-item ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
}

.pricing-item ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
}

.pricing-item ul li i {
  margin-left: 8px;
  font-size: 1.1rem;
  color: #28a745;
}

.pricing-item ul li.na i {
  color: #dc3545;
}

.pricing-item ul li.na span {
  color: #999;
  text-decoration: line-through;
}

.pricing-item .buy-btn {
  background-color: #0078d4;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.pricing-item .buy-btn:hover {
  background-color: #005fa3;
}

.pricing-item.featured {
  border: 2px solid #0078d4;
  background: #e6f2ff;
  transform: scale(1.02);
}

/* ✅ Responsive adjustments */
@media (max-width: 768px) {
  .pricing-item {
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .pricing-item h4 {
    font-size: 1.6rem;
  }

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

  .pricing-item .buy-btn {
    width: 100%;
  }
}


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

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  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;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 15px 0;
}

.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(--accent-color), transparent 50%);
  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;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

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

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

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

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

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

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

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

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

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

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

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

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


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p {
  color: black;
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.call-to-action .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.btn-teal {
  /* الألوان الأساسية مع تدرج متحرك */
  background: linear-gradient(145deg, #20c997, #1bb38d);
  color: white !important;
  border: none;

  /* الشكل ثلاثي الأبعاد */
  border-radius: 18px;
  padding: 16px 28px;
  font-size: 17px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;

  /* تأثيرات الإضاءة والظل */
  box-shadow:
    0 6px 0 #169e82,
    0 12px 30px rgba(32, 201, 151, 0.4),
    inset 0 4px 8px rgba(255, 255, 255, 0.2);

  /* تحضير للتحولات ثلاثية الأبعاد */
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);

  /* تأثير الجسيمات المتحركة */
  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 20%),
      radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.6) 0%, transparent 20%);
    z-index: -1;
    animation: particle-float 8s infinite linear;
    opacity: 0.5;
  }

  /* تأثير اللمعان الدوار */
  &::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0) 45%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 55%);
    transform: rotate(45deg);
    animation: shine-rotate 6s infinite linear;
    z-index: -1;
  }

  /* تأثير النبض الخفيف */
  animation: pulse-glow 3s infinite ease-in-out;
}

/* تأثيرات التحويم */
.btn-teal:hover {
  transform: translateY(-4px) rotateX(15deg) scale(1.02);
  box-shadow:
    0 10px 0 #138f74,
    0 20px 40px rgba(32, 201, 151, 0.6),
    inset 0 4px 8px rgba(255, 255, 255, 0.3);

  &::before {
    opacity: 0.7;
    animation-duration: 5s;
  }

  &::after {
    animation-duration: 4s;
  }
}

/* تأثير الضغط */
.btn-teal:active {
  transform: translateY(2px) rotateX(0deg);
  box-shadow:
    0 3px 0 #117b64,
    0 5px 15px rgba(32, 201, 151, 0.3);
  animation: none;
}

/* أنيميشن الجسيمات العائمة */
@keyframes particle-float {
  0% {
    transform: translate(0, 0);
    background-position: 20% 30%, 80% 70%;
  }

  25% {
    transform: translate(-5px, -3px);
    background-position: 30% 40%, 70% 60%;
  }

  50% {
    transform: translate(5px, -5px);
    background-position: 25% 35%, 75% 65%;
  }

  75% {
    transform: translate(-3px, 3px);
    background-position: 35% 25%, 65% 75%;
  }

  100% {
    transform: translate(0, 0);
    background-position: 20% 30%, 80% 70%;
  }
}

/* أنيميشن اللمعان الدوار */
@keyframes shine-rotate {
  0% {
    transform: rotate(45deg) translateX(-100%);
  }

  100% {
    transform: rotate(45deg) translateX(100%);
  }
}

/* أنيميشن النبض */
@keyframes pulse-glow {

  0%,
  100% {
    box-shadow:
      0 6px 0 #169e82,
      0 12px 30px rgba(32, 201, 151, 0.4),
      inset 0 4px 8px rgba(255, 255, 255, 0.2);
  }

  50% {
    box-shadow:
      0 6px 0 #169e82,
      0 12px 40px rgba(32, 201, 151, 0.7),
      inset 0 4px 10px rgba(255, 255, 255, 0.3);
  }
}

/* تأثير الشكل السحري العائم */
.call-to-action .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.2;
  transform: rotate(45deg);
  animation:
    shapes-float 8s ease-in-out infinite,
    shape-pulse 4s ease-in-out infinite alternate;
  background: radial-gradient(circle, #20c997 0%, transparent 70%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  filter: blur(10px);
  z-index: -1;
}

@keyframes shapes-float {

  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
  }

  50% {
    transform: rotate(50deg) translate(20px, 20px);
  }
}

@keyframes shape-pulse {
  0% {
    opacity: 0.15;
    transform: rotate(45deg) scale(0.95);
  }

  100% {
    opacity: 0.25;
    transform: rotate(45deg) scale(1.05);
  }
}

.call-to-action .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {

  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action .dots-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .call-to-action .container {
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

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

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

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.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(--accent-color), transparent 50%);
  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: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: 'Hacen Liner XL', sans-serif;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  height: 100%;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

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

.services .service-card:hover .read-more {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.services .service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
}

.services .service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

.services .service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-card .read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services .service-card .read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  height: 100%;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.pricing .pricing-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li i {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .btn-light {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.pricing .pricing-card.popular .btn-light:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .price {
  margin-bottom: 1.5rem;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}

.pricing .pricing-card .price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing .pricing-card .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .pricing-card .description {
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

.pricing .pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list li i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing .pricing-card .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 50px;
}

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

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

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Call To Action 2 Section
/* تصميم ثلاثي الأبعاد عصري مع أنيميشنات */
.call-to-action-3d {
  padding: 50px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  overflow: hidden;
}

.cta-3d-container {
  perspective: 10000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-3d-card {
  width: 100%;
  max-width: 800px;
  transform-style: preserve-3d;
  animation: float 6s ease-in-out infinite;
  transition: all 0.5s ease;
}

.cta-3d-card:hover {
  transform: translateY(-10px) rotateX(5deg);
}

.cta-3d-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  transform-style: preserve-3d;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.cta-3d-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: 0.5s;
}

.cta-3d-content:hover::before {
  left: 100%;
}

.cta-3d-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: translateZ(50px);
  animation: textGlow 3s ease-in-out infinite alternate;
}

.cta-3d-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  transform: translateZ(30px);
}

.cta-3d-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  border-radius: 50px;
  background: linear-gradient(45deg, #00b4db, #0083b0);
  color: white;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 180, 219, 0.3);
  transform: translateZ(40px);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.cta-3d-btn svg {
  margin-left: px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.3s ease;
}

.cta-3d-btn:hover {
  color: white;
  /* اجعل النص أبيض */

  transform: translateY(-5px) translateZ(40px);
  box-shadow: 0 15px 30px rgba(0, 180, 219, 0.5);
  background: linear-gradient(45deg, #0083b0, #00b4db);
}

.cta-3d-btn:hover svg {
  transform: translateX(px);
}

.cta-3d-btn:active {
  transform: translateY(0) translateZ(40px);
}

.cta-3d-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: 0.6s;
}

.cta-3d-btn:hover::before {
  transform: translateX(100%);
}

/* الأنيميشنات */
@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotateY(0);
  }

  50% {
    transform: translateY(-20px) rotateY(5deg);
  }
}

@keyframes textGlow {
  0% {
    text-shadow: 0 5px 15px rgba(0, 180, 219, 0.3);
  }

  100% {
    text-shadow: 0 5px 25px rgba(5, 89, 102, 0.7);
  }
}

/* تأثيرات ثلاثية الأبعاد عند التحريك */
@media (hover: hover) {
  .cta-3d-card {
    transition: transform 0.3s ease;
  }

  .cta-3d-card:hover {
    transform: rotateY(10deg) rotateX(5deg) translateY(-10px);
  }
}

/* Gallery 3D Styles */
/* خلفية السكشن */
.gallery {
  overflow: hidden;
}

/* إعداد السلايدر الأساسي */
.gallery .swiper-wrapper {
  height: auto;
}

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

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

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

/* تنسيق الصور بشكل عام */
.gallery-img {
  width: 100%;
  height: auto;
  max-width: 500px;
  /* سطح المكتب */
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: block;
  margin: 0 auto;
}

/* مظهر السلايد */
.gallery .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
  width: auto;
  max-width: 100%;
}

/* السلايد النشط */
.gallery .swiper-slide-active {
  text-align: center;
}

/* إعدادات خاصة بالشاشات الكبيرة */
@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 30px 0;
  }

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

/* إعدادات خاصة بالهواتف */
@media (max-width: 768px) {
  .gallery-img {
    max-width: 280px;
    /* تقليل حجم الصورة على الهاتف */
    border-radius: 16px;
  }

  .gallery .swiper-slide {
    padding: 5px !important;
  }
}

/* إصلاح تمدد السلايدر على الهاتف */
.gallery .swiper {
  overflow: visible !important;
}

/* ✅ تأكد من أن السلايد لا يجبر الصورة على التمدد */
.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}



.gallery .swiper-slide-active {
  background: var(--background-color);
  padding: 20px;
  z-index: 1;
  transform: scale(1.05);
  border-radius: 20px;
  transition: none;

  max-width: 90vw;
  /* لا يتجاوز عرض الشاشة */
  box-sizing: border-box;
  margin: 0 auto;
  /* ⬅️ توسيط الإطار داخل السلايدر */
}

.gallery .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  /* ⬅️ هذا يمنع الامتداد الكامل */
  max-width: 100%;
  /* ⬅️ يمنع كسر التصميم */
  padding: 10px;
  box-sizing: border-box;
}

/* الخلفية + تمركز الصندوق */
.cs-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99990;
  /* رفعت z-index */
}

.cs-modal.open {
  display: flex;
}

/* الصندوق نفسه */
.cs-dialog {
  position: relative;
  /* ضروري لتفعيل z-index */
  z-index: 99999;
  /* أعلى من الخلفية */
  background: #fff;
  border: 2px solid #1dc6a1;
  border-radius: 12px;
  padding: 22px 26px;
  width: min(90vw, 520px);
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 12px 42px rgba(0, 0, 0, .25);

  /* أنيميشن + تحسين للموبايل */
  opacity: 0;
  transform: scale(.96) translateZ(0);
  /* translateZ(0) يحل مشاكل تركيب الطبقات */
  transition: opacity 220ms ease, transform 260ms cubic-bezier(.2, .8, .2, 1);
  -webkit-transform: scale(.96) translateZ(0);
  -webkit-overflow-scrolling: touch;
  /* سلاسة تمرير داخل المودال على iOS */
}

.cs-modal.open .cs-dialog {
  opacity: 1;
  transform: scale(1) translateZ(0);
  -webkit-transform: scale(1) translateZ(0);
}

/* أثناء الفتح، امنع تمرير خلفية الصفحة */
body.cs-modal-open {
  overflow: hidden;
  touch-action: none;
}

@media (prefers-reduced-motion: reduce) {
  .cs-dialog {
    transition: none !important;
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cs-dialog {
    transition: none !important;
    transform: none !important;
  }
}

.social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
  margin-bottom: 6px;
}

.social-label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-left: 12px;
  white-space: nowrap;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f5f6;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  text-decoration: none;
}

.social-btn img {
  width: 24px;
  height: 24px;
  display: block;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}

/* ألوان مميزة لكل منصة */
.social-btn.fb:hover {
  background: #1877f2;
}

.social-btn.ig:hover {
  background: #e1306c;
}

.social-btn.wa:hover {
  background: #25d366;
}

.social-btn.fb:hover img,
.social-btn.ig:hover img,
.social-btn.wa:hover img {
  filter: brightness(0) invert(1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: black;
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

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

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Redesigned Hero Section & Modals
--------------------------------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px 0;
  /* background-color: var(--background-color); */
  background: linear-gradient(135deg, #f0faff 0%, #ffffff 100%);
}

.hero-bg {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(13, 131, 253, 0.03) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

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

.company-badge {
  display: inline-flex;
  /* Fix for centering */
  align-items: center;
  padding: 8px 16px;
  background: rgba(13, 131, 253, 0.08);
  /* Light accent bg */
  color: var(--accent-color);
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid rgba(13, 131, 253, 0.1);
  margin-left: auto;
  margin-right: auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--heading-color);
}

.gradient-text {
  background: linear-gradient(120deg, var(--accent-color), #20c997);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Modern Buttons */
.hero-buttons {
  margin-top: 2rem;
}

.btn-modern {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 24px;
  min-width: 200px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.btn-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

.btn-modern .icon-wrapper {
  font-size: 28px;
  margin-left: 12px;
  display: flex;
  align-items: center;
}

.btn-modern .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.btn-modern .small-text {
  font-size: 0.75rem;
  opacity: 0.9;
  font-weight: 400;
}

.btn-modern .large-text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Android Theme */
.btn-android {
  background: linear-gradient(145deg, #1dc6a1, #17a085);
  color: white;
}

.btn-android:hover {
  color: white;
}

/* Windows Theme */
.btn-windows {
  background: white;
  color: #044e89;
  border: 1px solid rgba(4, 78, 137, 0.1);
}

.btn-windows:hover {
  background: #f8fbff;
  border-color: #044e89;
}

/* iOS Theme */
.btn-ios {
  background: #f1f3f5;
  color: #495057;
}

.btn-ios:hover {
  background: #e9ecef;
  color: #212529;
}


/* Download Overlay */
.download-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.download-card {
  background: white;
  width: 90%;
  max-width: 400px;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.download-overlay.active .download-card {
  transform: scale(1);
}

.download-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.app-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.btn-close-custom {
  background: transparent;
  border: none;
  font-size: 24px;
  color: #adb5bd;
  margin-right: auto;
  /* Push to left in RTL */
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.btn-close-custom:hover {
  color: #dc3545;
}

.progress-wrapper {
  background: #e9ecef;
  border-radius: 10px;
  height: 8px;
  overflow: hidden;
}

.progress-bar-custom {
  background: linear-gradient(90deg, #1dc6a1, #20c997);
  height: 100%;
  width: 0%;
  transition: width 0.2s linear;
  border-radius: 10px;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero {
    padding: 100px 0 60px 0;
  }

  .btn-modern {
    width: 100%;
    justify-content: center;
  }
}

/* Social Links in Hero */
.hero-social-links {
  margin-top: 2rem;
}

.social-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.25rem;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none !important;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  color: white;
}

.social-icon.yt {
  background: #ff0000;
}

.social-icon.fb {
  background: #1877f2;
}

.social-icon.ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.wa {
  background: #25d366;
}


/* Choice Modal Buttons */
.choice-btn {
  display: flex;
  align-items: center;
  width: 100%;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 16px;
  text-decoration: none !important;
  color: inherit;
  transition: all 0.2s ease;
  cursor: pointer;
}

.choice-btn:hover {
  background: white;
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.choice-btn.google-play:hover i.text-success {
  color: #0F9D58 !important;
  /* Google Play Green */
}

.choice-btn.direct:hover i.text-primary {
  color: var(--accent-color) !important;
}

/*--------------------------------------------------------------
# Debt Notebooks Section
--------------------------------------------------------------*/
.debt-notebooks {
  padding: 80px 0;
  background-color: #fff;
  overflow: hidden;
}

.sub-title-badge {
  display: inline-block;
  background: rgba(13, 131, 253, 0.1);
  color: var(--accent-color);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.debt-notebooks .features-list .icon-box {
  width: 48px;
  height: 48px;
  background: #f8f9fa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.4rem;
  transition: 0.3s;
}

.debt-notebooks .features-list .feature-item:hover .icon-box {
  background: var(--accent-color);
  color: #fff;
}

/* Notebook Visual Mockup */
.notebook-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.notebook-cover {
  width: 320px;
  height: 440px;
  background: #3e2c2c;
  /* Leather brown */
  border-radius: 10px 20px 20px 10px;
  position: relative;
  box-shadow:
    0 20px 30px rgba(0, 0, 0, 0.15),
    inset 5px 0 10px rgba(0, 0, 0, 0.2);
  display: flex;
  padding: 15px 5px 15px 20px;
  z-index: 2;
  transform: rotateY(-5deg) rotateZ(2deg);
  transition: transform 0.4s ease;
}

.notebook-cover:hover {
  transform: rotateY(0deg) rotateZ(0deg) translateY(-5px);
}

.notebook-page {
  flex: 1;
  background: #fffdf5;
  /* Paper off-white */
  border-radius: 5px 15px 15px 5px;
  box-shadow: inset 2px 0 5px rgba(0, 0, 0, 0.05);
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Paper Grid Lines */
.notebook-lines {
  flex: 1;
  background-image: linear-gradient(#e1e6ea 1px, transparent 1px);
  background-size: 100% 30px;
  /* Line height */
  margin-top: 10px;
}

.line-item {
  height: 30px;
  /* Match background size */
  line-height: 30px;
  padding: 0 5px;
  border-bottom: 2px solid transparent;
  /* Placeholder */
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
}

.line-item.highlight {
  background-color: rgba(255, 255, 0, 0.15);
  /* Highlighter effect */
}

/* Notebook Binding/Spine */
.notebook-spine {
  position: absolute;
  left: 50%;
  top: 10px;
  bottom: 0;
  transform: translateX(-175px) rotateZ(2deg);
  /* Adjust based on cover rotation */
  width: 30px;
  height: 430px;
  background: linear-gradient(to right, #2c1e1e, #5a4242, #2c1e1e);
  border-radius: 5px 0 0 5px;
  z-index: 1;
  box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.2);
  display: none;
  /* Simplified for now, cover handles outline */
}

/* A simpler binding effect directly on cover */
.notebook-cover::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 15px;
  bottom: 15px;
  width: 15px;
  background: #2a1d1d;
  border-radius: 5px 0 0 5px;
  margin-right: -2px;
}

/* Pen Mockup */
.notebook-pen {
  position: absolute;
  right: -20px;
  bottom: 40px;
  width: 12px;
  height: 180px;
  background: linear-gradient(to right, #ddd, #fff, #bbb);
  border-radius: 6px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  transform: rotate(-15deg);
  z-index: 5;
}

.notebook-pen::before {
  /* Pen cap/tip */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--accent-color);
  border-radius: 6px 6px 2px 2px;
}

/* Animation Classes */
.notebook-front-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3e2c2c;
  /* Same leather color */
  border-radius: 10px 20px 20px 10px;
  transform-origin: left center;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    5px 5px 15px rgba(0, 0, 0, 0.1),
    inset 2px 0 5px rgba(255, 255, 255, 0.1);
  /* Subtle light on edge */
}

/* Texture effect */
.notebook-front-cover::before {
  content: '';
  position: absolute;
  right: 15px;
  /* Spine side */
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0, 0, 0, 0.2);
  /* Crease line */
}

.brand-emboss {
  color: rgba(230, 200, 150, 0.6);
  /* Gold/Embossed look */
  text-align: center;
  transform: rotateZ(-2deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.1), -1px -1px 0 rgba(0, 0, 0, 0.5);
}

.notebook-mockup-wrapper.opened .notebook-front-cover {
  transform: rotateY(-180deg);
  box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.1);
  /* Shadow flips */
}

/* Ensure the back cover (content) stays in place */
.notebook-cover {
  /* Existing styles are fine, but let's make sure z-index is lower than front cover initially */
  z-index: 1;
  /* Also animate the whole book slightly to accommodate the opening */
  transition: transform 1.2s ease;
}

.notebook-mockup-wrapper.opened .notebook-cover {
  /* Slight tilt correction when open */
  transform: rotateY(0deg) rotateZ(0deg) translateX(20px);
}

/* Hide spine when open or adjust */
.notebook-spine {
  z-index: 20;
  /* Keep spine on top of binding area */
}

/*--------------------------------------------------------------
# Contact Hub Section (New Design)
--------------------------------------------------------------*/
.contact-hub {
  position: relative;
  background-color: #0c121d;
  /* Deep Dark Background */
  padding: 80px 0;
  color: #fff;
  z-index: 1;
}

/* Animated Blobs Background */
.blob {
  position: absolute;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.6;
  animation: floatBlob 10s infinite ease-in-out alternate;
}

.blob-1 {
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: var(--accent-color);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.blob-2 {
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: #7b2cbf;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation-delay: -5s;
}

.blob-3 {
  top: 40%;
  left: 40%;
  width: 200px;
  height: 200px;
  background: #ff006e;
  border-radius: 50%;
  opacity: 0.4;
  animation-duration: 15s;
}

.glass-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 29, 0.7);
  /* Darken overlay */
  backdrop-filter: blur(10px);
  /* Frosted effect base */
  z-index: -1;
}

@keyframes floatBlob {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(30px, 50px) rotate(20deg);
  }
}

/* Glass Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(5px);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  transform: translateX(-10px) translateY(-5px);
  /* Lift and move left */
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.glass-card:hover::before {
  left: 150%;
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), #2a5298);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-left: 20px;
  box-shadow: 0 5px 15px rgba(13, 131, 253, 0.3);
}

.card-content h5 {
  color: #fff;
  margin-bottom: 5px;
  font-weight: 600;
}

.card-content p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9rem;
}

.card-action {
  margin-right: auto;
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
  transition: 0.3s;
}

.glass-card:hover .card-action {
  color: var(--accent-color);
  transform: translateX(-5px);
}

/* Glass Form Panel */
.glass-form-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.glass-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 12px;
  transition: 0.3s;
}

.glass-input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(13, 131, 253, 0.15);
}

.form-floating label {
  color: rgba(255, 255, 255, 0.5);
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
  color: var(--accent-color);
  background: transparent;
  /* Fix bootstrap default */
}

/* Submit Button */
.btn-glass-submit {
  background: linear-gradient(135deg, var(--accent-color), #00d2ff);
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(13, 131, 253, 0.3);
}

.btn-glass-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(13, 131, 253, 0.4);
}

.btn-glass-submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.btn-glass-submit:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Form Helper Fix */
.glass-input::placeholder {
  color: transparent;
  /* For floating label to work */
}

@media (max-width: 991px) {
  .blob {
    width: 200px;
    height: 200px;
  }

  .glass-form-panel {
    padding: 25px;
  }
}

/* Update Body/Global if needed, but specifically target contact hub */
.contact-hub {
  background-color: #ffffff;
  /* White Theme */
  color: #333;
}

/* Adjust Blobs for White Background */
.blob {
  opacity: 0.3;
  /* Lighter blobs */
}

/* Remove Dark Overlay or make it very light */
.glass-overlay {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
}

/* Glass Cards on White */
.glass-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.05);
  /* Subtle dark border */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  /* Soft shadow */
}

.glass-card:hover {
  background: #ffffff;
  border-color: var(--accent-color);
  box-shadow: 0 15px 30px rgba(13, 131, 253, 0.15);
  /* Accent shadow */
  transform: translateY(-5px);
}

.card-content h5 {
  color: #2c3e50;
  /* Dark heading */
}

.card-content p {
  color: #6c757d;
  /* Muted text */
}

.card-action {
  color: #adb5bd;
}

/* Glass Form Panel on White */
.glass-form-panel {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.glass-form-panel h3 {
  color: #2c3e50;
}

.glass-input {
  background: #f8f9fa !important;
  border: 1px solid #dee2e6 !important;
  color: #333 !important;
}

.glass-input:focus {
  background: #fff;
  border-color: var(--accent-color);
  color: #333;
  box-shadow: 0 0 0 4px rgba(13, 131, 253, 0.1);
}

.form-floating label {
  color: #999;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
  color: var(--accent-color);
  background: #fff;
  padding: 0 5px;
}

/* Phone Modal Styles */
.phone-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.phone-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.phone-modal-card {
  background: #fff;
  width: 90%;
  max-width: 400px;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.phone-modal-overlay.active .phone-modal-card {
  transform: scale(1);
}

.modal-icon-wrapper {
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  /* Light accent bg could be better */
  background: rgba(13, 131, 253, 0.1);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto;
}

.phone-option-btn {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.2s;
  border: 2px solid transparent;
}

.phone-option-btn.admin {
  background: #eefcf6;
  color: #0d8a55;
  border-color: #c3e6cb;
}

.phone-option-btn.admin:hover {
  background: #dbf2e3;
  transform: translateX(-3px);
}

.phone-option-btn.admin .icon {
  background: #0d8a55;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-left: 15px;
}

.phone-option-btn.support {
  background: #f0f7ff;
  color: #0d6efd;
  border-color: #cff4fc;
}

.phone-option-btn.support:hover {
  background: #e0efff;
  transform: translateX(-3px);
}

.phone-option-btn.support .icon {
  background: #0d6efd;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-left: 15px;
}
/*--------------------------------------------------------------
# Pricing Tech Section
--------------------------------------------------------------*/
.pricing-tech {
  background-color: #f9fbfd;
  padding: 80px 0;
  overflow: hidden;
}

/* Tech Grid Background */
.tech-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(13, 110, 253, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 110, 253, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
  pointer-events: none;
}

.sub-title-item {
  display: inline-block;
  background: rgba(13, 110, 253, 0.1);
  color: var(--accent-color);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Toggle Switch Styles */
.pricing-toggle-wrapper {
  background: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  display: inline-flex;
  border: 1px solid #eee;
}

.toggle-label {
  font-weight: 600;
  color: #777;
  transition: 0.3s;
}

.toggle-label.active {
  color: var(--heading-color);
}

.badge-save {
  background: #d1fae5;
  color: #059669;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 10px;
  margin-right: 5px;
}

/* The Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  margin: 0 10px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

input:checked + .slider {
  background-color: var(--accent-color);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--accent-color);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Tech Pricing Card */
.pricing-card-tech {
  background: #fff;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid #eff2f7;
  height: 100%;
}

.pricing-card-tech:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(13, 110, 253, 0.1);
  border-color: rgba(13, 110, 253, 0.2);
}

.card-border-top {
  height: 6px;
  background: linear-gradient(90deg, #e0e6ed, #e0e6ed); /* Default gray */
  width: 100%;
}

.pricing-card-tech.featured .card-border-top {
  background: linear-gradient(90deg, var(--accent-color), #00d2ff);
}

.pricing-card-tech.featured {
  border: 1px solid rgba(13, 110, 253, 0.2);
}

.card-body {
  padding: 40px 30px;
}

.featured-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color);
  color: #fff;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}

.plan-title {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 1.5rem;
}

.price-wrapper {
  display: flex;
  align-items: baseline;
  margin: 15px 0;
  color: var(--heading-color);
}

.currency {
  font-size: 1.2rem;
  font-weight: 600;
  margin-left: 5px;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--heading-font);
}

.period {
  color: #adb5bd;
  margin-right: 5px;
}

.plan-desc {
  color: #6c757d;
  font-size: 0.95rem;
}

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

.feature-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  color: #555;
  font-size: 0.95rem;
}

.feature-list li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-left: 10px;
  flex-shrink: 0;
}

.feature-list li.disabled {
  color: #ccc;
  text-decoration: line-through;
}

.feature-list li.disabled i {
  color: #e0e6ed;
}

/* Buttons */
.btn-tech-outline {
  display: inline-block;
  padding: 12px 20px;
  border: 2px solid #e0e6ed;
  border-radius: 12px;
  color: var(--heading-color);
  font-weight: 600;
  text-align: center;
  transition: 0.3s;
}

.btn-tech-outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: rgba(13, 110, 253, 0.05);
}

.btn-tech-solid {
  display: inline-block;
  padding: 12px 20px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-tech-solid:hover {
  background: #0b5ed7;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
}

/*--------------------------------------------------------------
# Features Bento Section
--------------------------------------------------------------*/
.features-bento {
  padding: 60px 0;
  background-color: #fcfcfc;
}

.bento-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.08);
}

/* Hero Badge */
.badge-tech {
  display: inline-block;
  padding: 6px 14px;
  background: #eef2ff;
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Typography */
.bento-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.bento-card p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.bento-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
  margin-top: 20px;
}

/* Hero Feature Specifics */
.bento-hero {
  flex-direction: row;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 60%, #f0f7ff 100%);
}

.bento-hero .card-content {
  flex: 1;
  padding-right: 20px;
  z-index: 2;
}

.bento-hero .card-visual {
  flex: 0 0 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.visual-circle {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--accent-color), #4f96ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  box-shadow: 0 15px 35px rgba(13, 110, 253, 0.3);
  animation: pulseGlow 3s infinite ease-in-out;
}

.feature-tags {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.feature-tags span {
  font-size: 0.9rem;
  color: #555;
  background: #fff;
  padding: 5px 12px;
  border-radius: 8px;
  border: 1px solid #eee;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.feature-tags i {
  color: var(--accent-color);
  margin-left: 5px;
}

/* Tall Card Specifics */
.bento-tall.highlight-blue {
  background: linear-gradient(180deg, #1e2a3b, #0f172a);
  color: #fff;
}

.bento-tall h3, .bento-tall h4 {
  color: #fff;
}

.bento-tall p {
  color: rgba(255, 255, 255, 0.7);
}

.icon-box-floating {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #60a5fa;
  margin-bottom: 20px;
}

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

.mini-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.mini-list li i {
  color: #60a5fa;
  margin-left: 10px;
  font-size: 1rem;
}

/* Standard Bento Cards (Small) */
.bento-standard {
  text-align: center;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 10px;
  transition: transform 0.3s;
}

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

.icon-wrapper.orange {
  background: #fff7ed;
  color: #f97316;
}

.icon-wrapper.green {
  background: #f0fdf4;
  color: #22c55e;
}

.icon-wrapper.purple {
  background: #fbf5ff;
  color: #a855f7;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(13, 110, 253, 0); }
  100% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0); }
}

@media (max-width: 991px) {
  .bento-hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 20px;
  }
  .bento-hero .card-content {
    padding-right: 0;
    margin-top: 20px;
  }
  .feature-tags {
    justify-content: center;
  }
}
