* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth !important;
}

:root {
  --bg-body: #fff;
  --bg-dark: #0a121e;
  --bg-header: #0a121e;
  --bg-header-scroll: #0a121e;
  --bg-header-fixed: #0a121e;
  --bg-second: #79788c;
  --bg-hover: rgba(1, 1, 1, 0.5);
  --bg-deployment: #c5e1ff4a;
  --bg-pricing: #fff;
  --bg-subscribe: #0a121e;
  --bg-demo: #fff;
  --bg-footer: #0a121e;
  --bg--days-hover: #f2f2f2;
  --color-hover: #323048;
  --color-text: #fff;
  --color-text-scrolled: #fff;
  --color-white: #fff;
  --text-dark: #000;
  --text-secondary: #79788c;
  --text-border: #ccc;
  --text-how-title: #ff0077;
  --bg-home: #4caf50;
  --bg-btn: #4caf50;
  --demo-shadow: rgba(0, 0, 0, 0.175);
  --header-underline: #4caf50;
  --services-bg: #4caf50;
  --services-border: #504f93dd;
  --bg-btn-hover: #fff;
  --color-icon: rgb(5, 83, 160);
  --color-gray: #333;
  --shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  --tw-bg-opacity: 1;
  --pr-white: #000;
  --second-color: #0a0a0a;
  --color-des: #1a1a1a;
  --color-1-1: #BE2518;
  --color-1-2: #ff6b4f;
  /* --cubicbz: cubic-bezier(.9, 0, .1, 1);
  --fz-big: 60px;
  --pd: 50px; */
}

ol,
ul {
  padding-left: 0;
  margin-bottom: 0;
}

a {
  text-decoration: none;
  font-weight: 600 !important;
}

/* body {
  background-color: var(--bg-body);
} */

/* scroll */
*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

*::-webkit-scrollbar-thumb {
  background: var(--bg-btn);
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--bg-btn);
}

/* =================== ENHANCED HEADER SECTION =================== */

/* Header Slide Down Animation */
@keyframes headerSlideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header Glow Animation */
@keyframes headerGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.1);
  }
  50% {
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.2);
  }
}

/* Logo Shimmer Animation */
@keyframes logoShimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Main Header Container */
.header {
  display: block;
  width: 100%;
  z-index: 999;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* background: rgba(10, 18, 30, 0.1); */
  /* backdrop-filter: blur(20px); */
  /* -webkit-backdrop-filter: blur(20px); */
  /* border-bottom: 1px solid rgba(76, 175, 80, 0.1); */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: headerSlideDown 0.8s ease-out;
}

/* Header Background States */
.bg-dark-header {
  background: linear-gradient(135deg, var(--bg-header-fixed), rgba(76, 175, 80, 0.1));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.header.scrolled {
  background: rgba(10, 18, 30, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(76, 175, 80, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.header.scrolled::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(76, 175, 80, 0.05) 50%, 
    transparent 100%);
  pointer-events: none;
}

/* Header Text Colors When Scrolled */
header.scrolled .menu>ul>li>a,
header.scrolled .logo a,
header.scrolled #dark-mode-toggle,
.header.scrolled .mobile-menu-trigger {
  color: var(--color-text-scrolled);
}

/* Header Row Layout */
.header .row {
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  display: flex;
}

/* Header Sections */
.header .item-left {
  flex: 0 0 20%;
}

.header .item-center {
  flex: 0 0 60%;
  display: flex;
  justify-content: center;
}

.header .item-right {
  flex: 0 0 20%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

/* Enhanced Logo Design */
.header .logo {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  padding: 5px 15px;
  /* background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(76, 175, 80, 0.2); */
  transition: all 0.4s ease;
}

.header .logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(76, 175, 80, 0.3) 50%, 
    transparent 100%);
  transition: left 0.6s ease;
}

.header .logo:hover::before {
  left: 100%;
}

/* .header .logo:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
  border-color: var(--bg-btn);
} */

.header .logo a {
  font-size: clamp(24px, 3vw, 35px);
  font-weight: 800;
  text-decoration: none;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--bg-btn) 50%, var(--color-icon) 100%);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: logoShimmer 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.header .logo a:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 2px 8px rgba(76, 175, 80, 0.4));
}

/* Enhanced Menu Design */
.header .menu>ul {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header .menu>ul>li {
  position: relative;
  margin: 0;
}

.header .menu>ul>li>a {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  padding: 12px 20px;
  border-radius: 50px;
  text-transform: capitalize;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(76, 175, 80, 0.2);
  display: block;
}

.header .menu>ul>li>a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-btn), var(--color-icon));
  transition: left 0.4s ease;
  z-index: -1;
}

.header .menu>ul>li>a:hover::before {
  left: 0;
}

.header .menu>ul>li>a:hover {
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
  border-color: var(--bg-btn);
}

/* Enhanced Sub Menu */
.header .menu>ul>li .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 18, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(76, 175, 80, 0.2);
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 20px;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 250px;
  z-index: 1000;
}

.header .menu>ul>li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.header .menu>ul>li .sub-menu>ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header .menu>ul>li .sub-menu>ul>li {
  margin: 0;
  padding: 8px 0;
}

.header .menu>ul>li .sub-menu>ul>li>a {
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  font-size: 14px;
  display: block;
}

.header .menu>ul>li .sub-menu>ul>li>a:hover {
  background: rgba(76, 175, 80, 0.2);
  color: var(--color-white);
  transform: translateX(5px);
  box-shadow: none;
}

.header .menu>ul>li .single-column-menu {
  min-width: 280px;
  max-width: 350px;
}

.header .menu>ul>li .sub-menu.mega-menu {
  left: 50%;
  transform: translateX(-50%);
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4 {
  max-width: 1225px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 15px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
  flex: 0 0 25%;
  padding: 0 15px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
  text-align: center;
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 15px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  margin-top: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img:hover {
  transform: scale(1.05);
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li {
  line-height: 1.5;
  display: block;
}

/* Enhanced Request Button */
.btn-request {
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--bg-btn), var(--color-icon));
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.btn-request::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-icon), var(--color-1-2));
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-request:hover::before {
  left: 0;
}

.btn-request:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 30px rgba(76, 175, 80, 0.5);
  border-color: var(--bg-btn);
}

.request-mobile {
  display: none;
}

/* Enhanced Dark Mode Toggle */
.header #dark-mode-toggle {
  padding: 10px;
  cursor: pointer;
  font-size: 20px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(76, 175, 80, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header #dark-mode-toggle:hover {
  background: rgba(76, 175, 80, 0.2);
  transform: rotate(180deg) scale(1.1);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
  border-color: var(--bg-btn);
}

/* Banner Section */
.banner-section {
  background-image: url('../img/banner.jpg');
  background-size: cover;
  background-position: center;
  height: 700px;
  width: 100%;
  display: block;
}

/* Mobile Menu Elements Hidden by Default */
.mobile-menu-head,
.mobile-menu-trigger {
  display: none;
}

/* =================== RESPONSIVE DESIGN =================== */

/* Tablet and Mobile Styles */
@media(max-width: 991px) {
  .header {
    padding: 15px 0;
  }

  .header .row {
    flex-wrap: wrap;
    padding: 0 15px;
  }

  .header .item-center {
    order: 3;
    flex: 0 0 100%;
    margin-top: 15px;
  }

  .header .item-left,
  .header .item-right {
    flex: 1;
  }

  .v-center {
    justify-content: space-between;
  }

  /* Enhanced Mobile Menu Trigger */
  .header .mobile-menu-trigger {
    display: flex;
    height: 44px;
    width: 44px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .header .mobile-menu-trigger:hover {
    background: rgba(76, 175, 80, 0.2);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  }

  .header .mobile-menu-trigger span {
    display: block;
    height: 2px;
    background: linear-gradient(90deg, var(--bg-btn), var(--color-icon));
    width: 20px;
    position: relative;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .header .mobile-menu-trigger span:before,
  .header .mobile-menu-trigger span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg-btn), var(--color-icon));
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .header .mobile-menu-trigger span:before {
    top: -6px;
  }

  .header .mobile-menu-trigger span:after {
    top: 6px;
  }

  /* Animated Hamburger to X */
  .header .mobile-menu-trigger.active span {
    background: transparent;
  }

  .header .mobile-menu-trigger.active span:before {
    transform: rotate(45deg);
    top: 0;
    background: linear-gradient(45deg, var(--bg-btn), var(--color-icon));
  }

  .header .mobile-menu-trigger.active span:after {
    transform: rotate(-45deg);
    top: 0;
    background: linear-gradient(-45deg, var(--bg-btn), var(--color-icon));
  }

  header.scrolled .mobile-menu-trigger {
    color: var(--color-text-scrolled);
  }

  /* Enhanced Mobile Menu */
  .header .menu {
    position: fixed;
    width: 100%;
    max-width: 380px;
    background: rgba(10, 18, 30, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    left: 0;
    top: 0;
    height: 100vh;
    overflow: hidden;
    transform: translateX(-100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1099;
    border-right: 1px solid rgba(76, 175, 80, 0.3);
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.3);
  }

  .header .menu::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
      rgba(76, 175, 80, 0.05) 0%, 
      transparent 50%, 
      rgba(5, 83, 160, 0.03) 100%);
    pointer-events: none;
  }

  .header .menu.active {
    transform: translateX(0);
  }

  .header .menu>ul {
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    align-items: stretch;
  }

  .header .menu>ul>li {
    width: 100%;
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
  }

  .header .menu>ul>li>a {
    width: 100%;
    padding: 18px 25px;
    border-radius: 0;
    background: transparent;
    border: none;
    text-align: left;
    position: relative;
    overflow: hidden;
    font-size: 16px;
  }

  .header .menu>ul>li>a::before {
    background: linear-gradient(90deg, 
      rgba(76, 175, 80, 0.2) 0%, 
      rgba(5, 83, 160, 0.1) 100%);
    left: -100%;
  }

  .header .menu>ul>li>a:hover::before {
    left: 0;
  }

  .header .menu>ul>li>a:hover {
    transform: translateX(10px);
    box-shadow: none;
  }

  .header .menu>ul>li>a i {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 50%;
    right: 15px;
    transform: translateY(-50%) rotate(-90deg);
    text-align: center;
    line-height: 50px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
  }

  /* Enhanced Mobile Menu Head */
  .header .menu .mobile-menu-head {
    display: flex;
    height: 70px;
    background: rgba(10, 18, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(76, 175, 80, 0.2);
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 501;
  }

  .mobile-menu-head a {
    color: var(--color-white);
    text-decoration: none;
  }

  .header .menu .mobile-menu-head .go-back {
    height: 40px;
    width: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.3);
  }

  .header .menu .mobile-menu-head.active .go-back {
    display: flex;
  }

  .header .menu .mobile-menu-head .go-back:hover {
    background: rgba(76, 175, 80, 0.2);
    transform: scale(1.05);
  }

  .header .menu .mobile-menu-head .current-menu-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-white), var(--bg-btn));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .header .menu .mobile-menu-head .mobile-menu-close {
    height: 40px;
    width: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.3);
  }

  .header .menu .mobile-menu-head .mobile-menu-close:hover {
    background: rgba(76, 175, 80, 0.2);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  }

  .header .menu .menu-main {
    height: calc(100% - 70px);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10px 0;
  }

  header.scrolled .menu>ul>li {
    color: var(--color-white);
  }

  /* Mobile Sub Menus */
  .header .menu>ul>li .sub-menu.mega-menu,
  .header .menu>ul>li .sub-menu {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin: 0;
    padding: 15px 20px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 80px;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
    background: rgba(10, 18, 30, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
  }

  .header .menu>ul>li .sub-menu.active {
    display: block;
    animation: slideLeft 0.3s ease-out;
  }

  @keyframes slideLeft {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0%);
    }
  }

  @keyframes slideRight {
    0% {
      opacity: 1;
      transform: translateX(0%);
    }
    100% {
      opacity: 0;
      transform: translateX(100%);
    }
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
    margin-top: 0;
    border-radius: 8px;
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
    margin-bottom: 20px;
    color: var(--color-white);
    font-size: 16px;
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center:last-child .title {
    margin-bottom: 0px;
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
    flex: 0 0 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
  }

  .header .menu>ul>li .sub-menu>ul>li>a,
  .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
    display: block;
    padding: 12px 15px;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    margin: 5px 0;
    transition: all 0.3s ease;
  }

  .header .menu>ul>li .sub-menu>ul>li>a:hover,
  .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a:hover {
    background: rgba(76, 175, 80, 0.2);
    color: var(--color-white);
    transform: translateX(5px);
  }

  .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul {
    margin-bottom: 15px;
  }

  /* Enhanced Menu Overlay */
  .menu-overlay {
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
  }

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

  /* Mobile Request Button */
  .request-mobile {
    display: block;
    font-weight: 600;
    color: var(--bg-btn);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 14px;
  }

  .request-mobile:hover {
    background: rgba(76, 175, 80, 0.2);
    transform: scale(1.05);
    color: var(--color-white);
  }

  .btn-request {
    display: none;
  }
}

/* Additional Mobile Responsive Styles */
@media(max-width: 768px) {
  .header .logo a {
    font-size: 24px;
  }

  .header .menu {
    max-width: 320px;
  }

  .header .menu>ul>li>a {
    font-size: 15px;
    padding: 15px 20px;
  }

  .header #dark-mode-toggle {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media(max-width: 480px) {
  .header {
    padding: 12px 0;
  }

  .header .row {
    padding: 0 15px;
  }

  .header .logo {
    padding: 3px 10px;
  }

  .header .logo a {
    font-size: 22px;
  }

  .header .menu {
    max-width: 280px;
  }

  .header .menu>ul>li>a {
    font-size: 14px;
    padding: 12px 15px;
  }

  .header #dark-mode-toggle {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .btn-request {
    padding: 8px 16px;
    font-size: 12px;
  }

  .request-mobile {
    padding: 8px 15px;
    font-size: 13px;
  }
}

/* Header Loading State */
.header.loading {
  animation: headerGlow 2s ease-in-out infinite;
}

/* =================== END ENHANCED HEADER =================== */

.header-section {
  margin-bottom: 10px;
}

.header-section .title {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: var(--text-dark);
}

.header-section .title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-55%);
  width: 50px;
  height: 3px;
  background-color: var(--header-underline);
  border-radius: 3px;
}

.header-section .title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(30px);
  width: 10px;
  height: 3px;
  background-color: var(--services-border);
  border-radius: 3px;
}

/*  end header section */
/*  start home section */
section {
  padding: 100px 200px;
}

.home {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--bg-dark);
  overflow: hidden;
}

.home:before {
  z-index: 1;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: var(--bg-hover);
  background-size: 400% 400%;
  width: 100%;
  height: 100%;
  animation: backgroundGradient 8s ease infinite;
}

.home::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  /* background: 
    radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(5, 83, 160, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 20%, rgba(255, 107, 79, 0.04) 0%, transparent 50%); */
  animation: rotateBackground 20s linear infinite;
  z-index: 1;
}

@keyframes backgroundGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes rotateBackground {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.home .content {
  z-index: 10;
  color: var(--color-white);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  animation: contentFadeIn 1.2s ease both;
}

.home .content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  /* background: radial-gradient(circle, rgba(76, 175, 80, 0.05) 0%, transparent 70%); */
  border-radius: 50%;
  z-index: -1;
  animation: pulseGlow 4s ease-in-out infinite;
}

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

@keyframes pulseGlow {
  0%, 100% { 
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% { 
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.home .content h1 {
  font-size: clamp(3rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-white);
  /* text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3); */
  position: relative;
  animation: titleSlideIn 1s ease 0.2s both;
}

@keyframes titleSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.home .content h1 .purple-text {
  background: linear-gradient(135deg, var(--color-icon), var(--bg-btn), var(--color-1-2));
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientAnimation 3s ease infinite;
  display: inline-block;
  font-weight: 900;
  position: relative;
}

.home .content h1 .purple-text::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, var(--color-icon), var(--bg-btn), var(--color-1-2));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(3px);
  opacity: 0.7;
  z-index: -1;
}

@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.home .content p {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 800px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: fadeInUp 1s ease 0.3s both;
}

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

.home .content .free-trial {
  padding: 15px 35px;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.home .content .free-trial i {
  font-size: 15px;
  margin-right: 10px;
  background: var(--bg-btn-hover);
  color: var(--bg-dark);
  transition: 0.3s ease;
  border-radius: 50%;
  padding: 5px;
  width: 25px;
  height: 25px;
}

.home .content .btn {
  background: var(--bg-btn-hover);
  padding: 15px 35px;
  color: var(--text-dark);
  font-size: 25px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  transition: 0.3s ease;
}

.home .media-icon {
  z-index: 888;
  position: absolute;
  right: 30px;
  bottom: 40%;
  display: flex;
  flex-direction: column;
  transition: 0.5s ease;
}

.home .media-icon a {
  color: var(--color-white);
  font-size: 25px;
  transition: 0.5s ease;
}

.home .media-icon a:not(:last-child) {
  margin-bottom: 20px;
}

.home .media-icon a:hover {
  transform: scale(1.3);
}

.home video {
  z-index: 000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounceUpDown 2s infinite;
}

.home .scroll-indicator .scroll-arrow {
  width: 30px;
  height: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

/* .home .scroll-indicator .scroll-arrow span {
  display: block;
  width: 15px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-icon), var(--bg-btn), var(--color-1-2));
  border-radius: 1px;
  animation: arrowMove 2s infinite;
} */

.home .scroll-indicator .scroll-arrow span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
  animation-delay: 0s;
}

.home .scroll-indicator .scroll-arrow span:nth-child(2) {
  width: 20px;
  animation-delay: 0.2s;
}

.home .scroll-indicator .scroll-arrow span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
  animation-delay: 0.4s;
}

.home .scroll-indicator .scroll-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.home .scroll-indicator:hover .scroll-text {
  color: var(--color-white);
}

.home .scroll-indicator:hover .scroll-arrow span {
  background: linear-gradient(90deg, var(--bg-btn), var(--color-1-2), var(--color-icon));
}

@keyframes bounceUpDown {
  0%, 20%, 50%, 80%, 100% { 
    transform: translateX(-50%) translateY(0); 
  }
  40% { 
    transform: translateX(-50%) translateY(-10px); 
  }
  60% { 
    transform: translateX(-50%) translateY(-5px); 
  }
}

@keyframes arrowMove {
  0%, 100% { 
    opacity: 0.6;
    transform: scale(1);
  }
  50% { 
    opacity: 1;
    transform: scale(1.1);
  }
}

/* animation text in home section */
.sp-intro {
  width: 100%;
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
}

.sp-intro h4,
.sp-intro b,
.sp-intro i,
.sp-intro p,
.sp-intro span {
  color: #111111;
}

.sp-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.sp-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: wrap;
  left: 0;
  top: 0;
  width: auto !important;
}

.sp-words-wrapper b.is-visible {
  position: relative;
}

.no-js .sp-words-wrapper b {
  opacity: 0;
}

.no-js .sp-words-wrapper b.is-visible {
  opacity: 1;
}

.sp-headline.slide span {
  display: inline-block;
  padding: 0;
}

.sp-headline.slide .sp-words-wrapper {
  overflow: hidden;
  vertical-align: bottom;
}

.sp-headline.slide b {
  opacity: 0;
  top: .2em;
}

.sp-headline.slide b.is-visible {
  top: 0;
  opacity: 1;
  -webkit-animation: slide-in 0.6s;
  -moz-animation: slide-in 0.6s;
  animation: slide-in 0.6s;
}

.sp-headline.slide b.is-hidden {
  -webkit-animation: slide-out 0.6s;
  -moz-animation: slide-out 0.6s;
  animation: slide-out 0.6s;
}

@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(20%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes slide-in {
  0% {
    opacity: 0;
    -moz-transform: translateY(-100%);
  }

  60% {
    opacity: 1;
    -moz-transform: translateY(20%);
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(20%);
    -moz-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -o-transform: translateY(20%);
    transform: translateY(20%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slide-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }

  60% {
    opacity: 0;
    -webkit-transform: translateY(120%);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }
}

@-moz-keyframes slide-out {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }

  60% {
    opacity: 0;
    -moz-transform: translateY(120%);
  }

  100% {
    opacity: 0;
    -moz-transform: translateY(100%);
  }
}

@keyframes slide-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  60% {
    opacity: 0;
    -webkit-transform: translateY(120%);
    -moz-transform: translateY(120%);
    -ms-transform: translateY(120%);
    -o-transform: translateY(120%);
    transform: translateY(120%);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.sp-words-wrapper small {
  font-weight: 400 !important;
  font-size: 25px !important;
  line-height: 0;

}

.home .buttons-hero {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  animation: fadeInUp 1s ease 0.6s both;
}

.buttons-hero a {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid rgba(76, 175, 80, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  z-index: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.buttons-hero a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-icon), var(--bg-btn), var(--color-1-2));
  transition: left 0.5s ease;
  z-index: -1;
}

.buttons-hero a:hover::before {
  left: 0;
}

.buttons-hero a:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(76, 175, 80, 0.4);
  border-color: var(--bg-btn);
  color: var(--color-white);
}

.buttons-hero a.discover {
  background: linear-gradient(45deg, var(--color-icon), var(--bg-btn));
  border: 2px solid var(--bg-btn);
}

.buttons-hero a i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.buttons-hero a:hover i {
  transform: translateX(3px);
}

/* animation text in home section */

/* Responsive Design */
@media screen and (max-width: 1200px) {
  header {
    padding: 10px 100px;
  }
  
  .home .content {
    max-width: 1000px;
    padding: 1.5rem;
}

  .home .media-icon {
    right: 1.5rem;
  }
}

@media (max-width: 1024px) {
  section {
    padding: 100px 20px;
  }

  .home {
    min-height: 100vh;
  }

  .home .content {
    max-width: 900px;
    padding: 1rem;
  }

  .home .content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
  }

  .home .content p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
  }

  .home .buttons-hero {
    gap: 1rem;
  }

  .home .buttons-hero a {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .home .media-icon {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 3rem;
    gap: 1.5rem;
  }

  .home .media-icon a:hover {
    transform: translateY(-5px) scale(1.1);
  }
}

@media screen and (max-width: 768px) {
  .home {
    min-height: 100vh;
    padding: 1rem;
  }

  .home .content {
    max-width: 100%;
    padding: 1rem 0.5rem;
  }

  .home .content h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 1.2rem;
  }

  .home .content p {
    font-size: clamp(1rem, 3.5vw, 1.2rem);
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .home .buttons-hero {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .home .buttons-hero a {
    width: 80%;
    max-width: 300px;
    padding: 1rem 1.5rem;
    text-align: center;
  }

  .home .media-icon {
    margin-top: 2rem;
  }

  .home .media-icon a {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .home {
    min-height: 100vh;
  }

  .home .content {
    padding: 0.5rem 0.25rem;
  }

  .home .content h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .home .content p {
    font-size: clamp(0.9rem, 4.5vw, 1.1rem);
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .home .buttons-hero {
    gap: 0.8rem;
  }

  .home .buttons-hero a {
    width: 80%;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .home .media-icon a {
    font-size: 1.1rem;
  }

  .sp-words-wrapper small {
    font-weight: 400 !important;
    font-size: 15px !important;
    line-height: .2;
  }
}

/*  end home section */

/* start about section */

/* about us section */
.about-us {
  padding: 0 40px;
  margin: 70px 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  justify-items: center;
  align-items: center;
  /* Add fade-in animation to the entire section */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}

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

.about-us .main-img img {
  width: 100%;
  max-width: 540px;
  height: auto;
  border-radius: 5px;
  /* Add scaling animation to the image */
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--bg-btn-hover);
  padding: 10px;
  background: var(--bg-btn-hover); 
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: contain;
  transition: 0.3s ease;
  margin-top: 20px;
}

.about-us .main-img img:hover {
  transform: scale(1.01);
  opacity: 0.9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);


}

.about-us .about-content {
  padding: 6% 0;
  /* Fade-in animation for text content */
  opacity: 0;
  animation: fadeInText 1s ease-out forwards 0.5s;
  
}

@keyframes fadeInText {
  to {
    opacity: 1;
  }
}

.about-content h4 {
  color: var(--text-warning);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeInText 1s ease-out forwards 0.5s;
}

.about-content h1 {
  color: var(--text-color);
  line-height: 40px;
  text-transform: capitalize;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
  animation: fadeInText 1s ease-out forwards 0.5s;
  transform: translateY(20px);



}

.about-content hr {
  width: 30%;
  border: none;
  height: 3px;
  background-color: var(--bg-btn);
  margin-bottom: 20px;
  animation: fadeInText 1s ease-out forwards 0.5s;
}

.about-content p {
  max-width: 600px;
  color: #222;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

/* Media query for small screens */
@media (max-width: 768px) {
  .about-us {
    margin: 35px 0;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out forwards;
  }

  .about-us .main-img img {
    max-width: 100%;
  }

  .about-content {
    padding: 4% 0;
  }

  .about-content h1 {
    font-size: 20px;
  }

  .about-content p {
    font-size: 15px;
    margin-bottom: 30px;
    text-align: inherit;
  }

  .about-content hr {
    width: 50%;
    margin-bottom: 30px;
  }

  /* info event  */
  .info-event {
    margin: 30px 0;
  }

  .info-event h1 hr {
    width: 20% !important;
  }
}

/* start about section */

/* Trusted Companies Section */
.trusted-section {
  /* background-color: var(--bg-header-scroll); */
  padding: 3rem 1.5rem;
  width: 100%;
  /* max-width: 1400px; */
  margin: 50px auto;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); */
}

.trusted-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 10px;
}

.trusted-section .container .trusted-heading {
  text-align: center;
  color: #555;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Inter', Arial, sans-serif;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

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

/* Logo Container */
.trusted-section .container .logo-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: slideRow 25s linear infinite;
  padding: 1rem 0;
}

.trusted-section .container .logo-container .logo-item {
  width: 200px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
  transition: all 0.4s ease;
  opacity: 0.75;
  margin: 10px 0;
  animation: fadeIn 1.2s ease-out forwards;
}

.trusted-section .container .logo-container .logo-item:hover {
  opacity: 1;
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.trusted-section .container .logo-container .logo-item img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.trusted-section .container .logo-container .logo-item:hover img {
  transform: scale(1.03);
}

/* Seamless Scrolling Animation */
@keyframes slideRow {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.trusted-section .container .logo-container:hover {
  animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .trusted-section {
    width: 96%;
  }

  .trusted-section .container .logo-container {
    gap: 2rem;
  }

  .trusted-section .container .logo-container .logo-item {
    width: 180px;
    height: 90px;
  }

  .trusted-section .container .trusted-heading {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .trusted-section {
    padding: 2rem 1rem;
    width: 96%;
  }

  .trusted-section .container .logo-container {
    gap: 1.5rem;
  }

  .trusted-section .container .logo-container .logo-item {
    width: 150px;
    height: 75px;
  }

  .trusted-section .container .logo-container .logo-item img {
    max-height: 80px;
  }

  .trusted-section .container .trusted-heading {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 480px) {
  .trusted-section {
    padding: 2.5rem 0.5rem;
    width: 96%;
  }

  .trusted-section .container .logo-container {
    gap: 1rem;
  }

  .trusted-section .container .logo-container .logo-item {
    width: 100px;
    height: 70px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  }

  .trusted-section .container .logo-container .logo-item img {
    max-height: 70px;
  }

  .trusted-section .container .trusted-heading {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

/* iPad-specific adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
  .trusted-section {
    width: 96%;
    padding: 3rem 1.5rem;
  }

  .trusted-section .container .logo-container {
    gap: 2rem;
  }

  .trusted-section .container .logo-container .logo-item {
    width: 170px;
    height: 85px;
  }

  .trusted-section .container .logo-container .logo-item img {
    max-height: 85px;
  }

  .trusted-section .container .trusted-heading {
    font-size: 1.4rem;
  }
}

/* Fade-in animation for elements */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Trusted companies */

/* section modules */

.section_modules-new {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 40px 0;
}

.section_modules-new .container-module {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3% 80px;
  position: relative;
  z-index: 2;
  background-color: #0a121e;
  border-radius: 15px;
  animation: fadeIn 2s ease-in-out;
  animation-delay: 0.5s;
}

/* Tag Styles */
.section_modules-new .tag {
  color: #4caf50;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  display: inline-block;
  position: relative;
  animation: slideInLeft 0.8s ease-out;
  font-weight: bold;
}

.section_modules-new .tag::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  width: 40px;
  height: 2px;
  background-color: #4caf50;
  transform: translateY(-50%);
  animation: expandWidth 1s ease-out;
}

/* Slider Container Styles */
.section_modules-new .slider-container {
  width: 100%;
  position: relative;
}

.section_modules-new .slider {
  width: 100%;
  overflow: hidden;
}

.section_modules-new .slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

/* Individual Slide Styles */
.section_modules-new .slide {
  min-width: 100%;
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 20px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.section_modules-new .slide.active {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.8s ease forwards;
}

.section_modules-new .slide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

/* Left Side Slide Content */
.section_modules-new .slide-left h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease forwards;
  color: #fff;
  font-weight: bold;

}

.section_modules-new .tabs {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  animation: fadeInUp 1.2s ease forwards;
}

.section_modules-new .tab {
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.section_modules-new .tab.active {
  background-color: rgba(76, 175, 80, 0.2);
  box-shadow: 0 0 15px rgba(76, 175, 80, 0.3);
}

.section_modules-new .tab:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Right Side Slide Content */
.section_modules-new .slide-right {
  animation: fadeInRight 1s ease forwards;
}

.section_modules-new .slide-right h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.section_modules-new .slide-right h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #4caf50;
  margin-top: 5px;
}

.section_modules-new .slide-right p {
  line-height: 1.6;
  margin-bottom: 1.2rem;
  color: #dedede;
  font-size: 1rem;
  font-weight: 400;
}

.section_modules-new .slide-right ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

.section_modules-new .slide-right li {
  margin-bottom: 0.5rem;
  color: #dedede;
  line-height: 1.5;
  font-size: 1.2rem;
  list-style: disc;
}

/* Navigation Controls */
.section_modules-new .navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  gap: 1rem;
}

.section_modules-new .nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.section_modules-new .nav-btn:hover {
  background-color: rgba(76, 175, 80, 0.2);
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
  transform: scale(1.05);
}

.section_modules-new .nav-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* Slide Indicators */
.section_modules-new .indicators {
  display: flex;
  gap: 8px;
}

.section_modules-new .indicator {
  width: 30px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.section_modules-new .indicator.active {
  background-color: #4caf50;
  width: 50px;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }

  to {
    width: 40px;
  }

}

/* Responsive Styles */
@media (max-width: 1440px) {
  .section_modules-new .container-module {
    width: 90%;
    padding: 3% 30px;
  }
}

@media (max-width: 992px) {
  .section_modules-new {
    margin: 30px 0;
  }

  .section_modules-new .container-module {
    width: 95%;
    padding: 5% 20px;
  }

  .section_modules-new .slide-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding:  0 10px;
  }

  .section_modules-new .slide-left h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .section_modules-new {
    margin: 25px 0;
  }

  .section_modules-new .container-module {
    width: 95%;
    padding: 7% 15px;
  }

  .section_modules-new .tag::before {
    width: 30px;
    left: -40px;
  }

  .section_modules-new .slide-left h1 {
    font-size: 1.8rem;
  }

  .section_modules-new .tabs {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .section_modules-new {
    margin: 15px 0;
  }

  .section_modules-new .container-module {
    width: 96%;
    padding: 8% 10px;
  }

  .section_modules-new .slide-right h3 {
    font-size: 1.4rem;
  }

  .section_modules-new .slide-right p {
    font-size: 1rem;
  }

  .section_modules-new .slide-right li {
    font-size: 1rem;
  }
  .section_modules-new .tag {
    margin-bottom: .5rem;
  }
  .section_modules-new .tag::before {
    display: none;
  }

  .section_modules-new .slide-left h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .section_modules-new .navigation {
    margin-top: .5rem;
  }

  .section_modules-new .nav-btn {
    width: 36px;
    height: 36px;
  }

  .section_modules-new .indicator {
    width: 20px;
  }

  .section_modules-new .indicator.active {
    width: 35px;
  }
}

/* section modules */

/* timeline */
/* how it works */
.section-how-work {
  width: 1400px;
  max-width: 96%;
  padding: 30px 0;
  background-color: #0a121e;
  margin: 50px auto;
  border-radius: 15px;
}

.section-how-work .header-section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
}

.section-how-work .header-section .title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-55%);
  width: 50px;
  height: 3px;
  background-color: #4caf50;
  border-radius: 3px;
}

.section-how-work .header-section .description {
  text-align: center;
  margin-bottom: 10px;
  color: #fff;
}

.container-how-it-works {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  margin: 20px 0;
}

.container-how-it-works .timeline {
  width: 80%;
  height: auto;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.container-how-it-works .timeline ul {
  list-style: none;
}

.container-how-it-works .timeline ul li {
  padding: 10px 15px;
  background-color: #162337;
  color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  border-radius: 10px;
  margin-bottom: 5px;
}

.container-how-it-works .timeline ul li:last-child {
  margin-bottom: 0;
}

.timeline-content h1 {
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 10px;
  color: #fff;
}

.timeline-content p {
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
  color: #fff;
}

.timeline-content .date {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 10px;
  /* letter-spacing: 2px; */
  color: #4caf50;
}

@media only screen and (min-width: 768px) {


  .timeline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: gray;
  }

  .timeline ul li {
    width: 50%;
    position: relative;
    margin-bottom: 50px;
  }

  .timeline ul li:nth-child(odd) {
    float: left;
    clear: right;
    transform: translateX(-30px);
    border-radius: 20px 0px 20px 20px;
  }

  .timeline ul li:nth-child(even) {
    float: right;
    clear: left;
    transform: translateX(30px);
    border-radius: 0px 20px 20px 20px;
  }

  .timeline ul li::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #4caf50;
    top: 0px;
  }

  .timeline ul li:nth-child(odd)::before {
    transform: translate(50%, -50%);
    right: -30px;
  }

  .timeline ul li:nth-child(even)::before {
    transform: translate(-50%, -50%);
    left: -30px;
  }

  .timeline-content .date {
    position: absolute;
    top: -30px;
  }

  .timeline ul li:hover::before {
    background-color: #4caf50;
  }
}

@media screen and (max-width: 768px) {
  .container-how-it-works .timeline {
    width: 95%;
  }

  .container-how-it-works .timeline ul li {
    margin-bottom: 15px;
  }

  .section-how-work .header-section h2 {
    font-size: 1.6rem;
  }

  .section-how-work {
    padding: 20px 0;
    margin: 40px auto;
  }

  .container-how-it-works {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    margin: 10px 0;
  }
}

@media screen and (max-width: 500px) {
  .timeline-content h1 {
    font-size: 16px;
  }

  .timeline-content p {
    font-size: 14px;
    line-height: 25px;
  }
}

/* timeline */

/* start section integration */
/* Integration Section */
.integration {
  font-family: Arial, sans-serif;
  background-color: var(--bg-dark);
  color: var(--color-text);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px 0;
  width: 96%;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 15px;
}

.integration-section {
  width: 100%;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.integration-content {
  max-width: 1350px;
  margin: 0 auto;
  text-align: left;
}

.integration-content h2 {
  color: var(--color-white);
  font-size: 45px;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  margin-bottom: 50px;
}

.integration-content貨 h2 span {
  color: var(--color-white);
  font-size: 45px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.integration-content p {
  color: var(--color-white);
  font-size: 1.2em;
  margin-bottom: 40px;
  text-align: justify;
}

.wizard-progress {
  margin-top: 20px;
}

.wizard-progress img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.subscribe-section {
  background-color: var(--bg-subscribe);
  min-height: 300px;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  margin: 20px;
}

.subscribe-section .subscribe-title {
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.2;
  max-width: 800px;
}

.cta-button {
  background: linear-gradient(to right, #FF3366, #9933FF);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .integration {
    width: 96%;
  }

  .integration-content h2 {
    font-size: 40px;
  }

  .integration-content h2 span {
    font-size: 40px;
  }

  .subscribe-section {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .integration {
    width: 96%;
    padding: 30px 0;
  }

  .integration-section {
    padding: 30px 15px;
  }

  .integration-content h2 {
    font-size: 35px;
  }

  .integration-content h2 span {
    font-size: 35px;
  }

  .integration-content p {
    font-size: 1em;
  }

  .wizard-progress img {
    max-width: 100%;
  }

  .subscribe-section {
    margin: 10px;
    min-height: 300px;
    max-width: 90%;
  }

  .subscribe-section .subscribe-title {
    font-size: 2.5rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .integration {
    width: 96%;
    padding: 20px 0;
  }

  .integration-content h2 {
    font-size: 25px;
  }

  .integration-content h2 span {
    font-size: 25px;
  }

  .integration-content p {
    font-size: 0.9em;
  }

  .subscribe-section {
    padding: 3rem 1rem;
    max-width: 90%;
  }

  .subscribe-section .subscribe-title {
    font-size: 2rem;
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* iPad-specific adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
  .integration {
    width: 96%;
    padding: 35px 0;
  }

  .integration-section {
    padding: 40px 20px;
  }

  .integration-content h2 {
    font-size: 38px;
  }

  .integration-content h2 span {
    font-size: 38px;
  }

  .integration-content p {
    font-size: 1.1em;
  }

  .subscribe-section {
    max-width: 90%;
    margin: 15px;
  }

  .subscribe-section .subscribe-title {
    font-size: 2.3rem;
  }
}

/* End section integration */


/* Demo Now */
.demo-now-section {
  /* background-color: red; */
  padding: 2rem 5rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.demo-now-section .info {
  width: 30%;
  padding: 0 30px;
  border-left: 5px solid #6B4CF5;
  border-radius: 7px;
}

.demo-now-section .info h2 {
  font-size: 3.5rem;
  line-height: 1.4;
  text-transform: uppercase;
}

.demo-now-section .info p {
  font-size: 1.5rem;
  text-transform: uppercase;
}

.chat-demo-now {
  width: 55%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chat-section {
  background-color: #ffffff;
  color: #1A1A1A;
  line-height: 1.5;
  height: 60vh;
  width: 100%;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
}

.chat-section .chat-container {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1rem;
  position: relative;
}

.chat-section .chat-container .no-data {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #6B4CF5;
  font-weight: 500;
}

.chat-section .chat-container .no-data h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.chat-section .chat-container .no-data i {
  font-size: 1.2rem;
  opacity: 0.8;
}

.message {
  max-width: 48rem;
  margin: 1rem auto;
  display: flex;
  gap: 1rem;
}

.message.human-message {
  flex-direction: row-reverse;
}

.avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background-color: #F0F0F0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.human-avatar {
  background-color: #E6E6E6;
}

.assistant-avatar {
  background-color: #EEEDFC;
  color: #6B4CF5;
}

.message-content {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  max-width: 80%;
}

.human-message .message-content {
  background-color: #F4F3FF;
  margin-left: auto;
}

.assistant-message .message-content {
  background-color: #F5F5F5;
}

.input-container {
  /* border-top: 1px solid #E5E5E5; */
  padding: 1rem;
  background: #ffffff;
  border-radius: 20px;
}

.input-container .input-wrapper {
  max-width: 48rem;
  margin: 0 auto;
  position: relative;
}

.input-container .input-wrapper .input-form {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 0.75rem;
  padding: 0.5rem;
}

#chat-form .input-textarea {
  flex-grow: 1;
  resize: none;
  border: none;
  padding: 0.25rem;
  font-size: 1rem;
  line-height: 1.5;
  max-height: 200px;
  min-height: 20px;
  font-family: inherit;
}

#chat-form .input-textarea:focus {
  outline: none;
  border: none !important;
  box-shadow: none !important;
  border-color: #E5E5E5 !important;
  color: #1A1A1A !important;
}

.button-group {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.action-button {
  padding: 0.5rem;
  background: none;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  color: #6B6B6B;
  transition: background-color 0.2s;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-button:hover {
  background-color: #F0F0F0;
}

.send-button {
  padding: 0.5rem;
  background-color: #F4F3FF;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  color: #6B4CF5;
  transition: all 0.2s;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.send-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.send-button:not(:disabled):hover {
  background-color: #EEEDFC;
}

.file-input {
  display: none;
}

.file-preview {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background-color: #F4F4F4;
  border-radius: 0.375rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

.file-preview button {
  background: none;
  border: none;
  color: #6B6B6B;
  cursor: pointer;
  padding: 0.25rem;
}

.file-preview button:hover {
  color: #FF4444;
}

.upload-progress {
  height: 3px;
  background-color: #E5E5E5;
  border-radius: 1.5px;
  overflow: hidden;
  margin-top: 0.25rem;
}

.upload-progress-bar {
  height: 100%;
  background-color: #6B4CF5;
  transition: width 0.3s ease;
}

@media screen and (max-width: 1024px) {
  .demo-now-section {
    padding: 2rem;
  }

  .demo-now-section .info {
    width: 100%;
    padding: 0 30px;
    border-left: 5px solid #6B4CF5;
    border-radius: 7px;
  }

  .demo-now-section .info h2 {
    font-size: 2.5rem;
  }

  .demo-now-section .info p {
    font-size: 1.5rem;
  }

  .chat-demo-now {
    width: 100%;
    margin: 0 auto;
  }

  .chat-section {

    height: 50vh;
  }

}

@media (max-width: 640px) {
  .demo-now-section {
    padding: 1rem;
  }

  .demo-now-section .info p {
    font-size: 1rem;
  }

  .input-container {
    padding: 0.75rem;
  }

  .message {
    margin: 1rem auto;
  }

  .message-content {
    max-width: 90%;
  }
}

/* Demo Now */
/* footer */

.copyright-area {
  padding: 25px 0;
  text-align: center;
  background-color: #0a121e;
}

.copyright-text p {
  margin: 0;
  font-size: 16px;
  color: #EEEDFC;
}

.copyright-text p a {
  color: var(--bg-btn);
}

@media (max-width: 480px) {
  .copyright-text p {
    font-size: 14px;
  }
}

/* icon Back to top */
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 45px;
  z-index: 99;
  background-color: var(--bg-btn) !important;
  color: var(--color-text) !important;
}

/* End section footer */

/* Enhanced Request Demo Section */
.requsetDemo-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 30px 0;
  padding: 120px 0;
  background: #ffffff;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(76, 175, 80, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 20%, rgba(30, 144, 255, 0.06) 0%, transparent 50%);
  background-size: 100% 100%;
  animation: backgroundPulse 8s ease-in-out infinite;
}

.requsetDemo-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(76, 175, 80, 0.02) 49%, rgba(76, 175, 80, 0.02) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(138, 43, 226, 0.02) 49%, rgba(138, 43, 226, 0.02) 51%, transparent 52%);
  background-size: 80px 80px;
  animation: patternFloat 20s linear infinite;
  z-index: 1;
}

.requsetDemo-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(76, 175, 80, 0.03) 0%, transparent 25%),
    radial-gradient(circle at 75% 75%, rgba(138, 43, 226, 0.03) 0%, transparent 25%);
  animation: floatingOrbs 12s ease-in-out infinite;
  z-index: 1;
}

.requsetDemo-section .row {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.requsetDemo-section .requsetDemo-item {
  text-align: center;
  position: relative;
  animation: sectionSlideIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Enhanced Header Section */
.requsetDemo-section .header-section {
  margin-bottom: 2rem;
  position: relative;
}



.requsetDemo-section .header-section .title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.2;
  position: relative;
  animation: titleFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s backwards;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 50%, #1a1a1a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.requsetDemo-section .header-section .title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #4caf50, #81c784, #4caf50);
  border-radius: 2px;
  animation: underlineGrow 1s ease 0.8s forwards;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

/* Enhanced Description */
.requsetDemo-section .requsetDemo-description {
  font-size: 1.3rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  animation: descriptionSlideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s backwards;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Enhanced Effect Card */
.requsetDemo-section .effect-card {
  position: relative;
  margin-top: 2rem;
  animation: cardFloat 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s backwards;
}

.requsetDemo-section .effect-card::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: cardGlow 3s ease-in-out infinite;
  z-index: -1;
}

/* Enhanced Request Button for White Background */
.requsetDemo-section .btn-request {
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #4caf50, #66bb6a, #4caf50);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 30px rgba(76, 175, 80, 0.3),
    0 4px 15px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid transparent;
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 1;
}

.requsetDemo-section .btn-request::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #66bb6a, #81c784, #66bb6a);
  transition: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.requsetDemo-section .btn-request::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
}

.requsetDemo-section .btn-request:hover::before {
  left: 0;
}

.requsetDemo-section .btn-request:hover::after {
  width: 300px;
  height: 300px;
}

.requsetDemo-section .btn-request:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 15px 45px rgba(76, 175, 80, 0.4),
    0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: rgba(76, 175, 80, 0.2);
  color: #fff;
}

.requsetDemo-section .btn-request:active {
  transform: translateY(-1px) scale(1.02);
  transition: all 0.1s ease;
}

/* Button Arrow Animation */
.requsetDemo-section .btn-request .btn-arrow {
  display: inline-block;
  margin-left: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.requsetDemo-section .btn-request:hover .btn-arrow {
  transform: translateX(5px);
}

/* Enhanced Animations */
@keyframes backgroundPulse {
  0%, 100% { 
    background-size: 100% 100%; 
    opacity: 1;
  }
  50% { 
    background-size: 110% 110%; 
    opacity: 0.9;
  }
}

@keyframes patternFloat {
  0% { 
    background-position: 0px 0px, 0px 0px; 
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(1deg);
  }
  100% { 
    background-position: 80px 80px, -80px 80px; 
    transform: rotate(0deg);
  }
}

@keyframes floatingOrbs {
  0%, 100% { 
    transform: translate(0, 0) scale(1); 
    opacity: 0.6;
  }
  33% { 
    transform: translate(20px, -20px) scale(1.1); 
    opacity: 0.8;
  }
  66% { 
    transform: translate(-20px, 20px) scale(0.9); 
    opacity: 0.7;
  }
}

@keyframes sectionSlideIn {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes topLineExpand {
  0% { 
    width: 0; 
    opacity: 0; 
  }
  100% { 
    width: 100px; 
    opacity: 1; 
  }
}

@keyframes titleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes underlineGrow {
  0% { 
    width: 0; 
  }
  100% { 
    width: 120px; 
  }
}

@keyframes descriptionSlideUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardFloat {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cardGlow {
  0%, 100% { 
    opacity: 0.3; 
    transform: translateX(-50%) scale(1);
  }
  50% { 
    opacity: 0.6; 
    transform: translateX(-50%) scale(1.1);
  }
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
  .requsetDemo-section {
    padding: 100px 0;
    margin: 60px 0;
  }
  
  .requsetDemo-section .header-section .title {
    font-size: 2.5rem;
  }
  
  .requsetDemo-section .requsetDemo-description {
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {
  .requsetDemo-section {
    padding: 80px 0;
    margin: 50px 0;
  }
  
  .requsetDemo-section .header-section .title {
    font-size: 2.2rem;
  }
  
  .requsetDemo-section .requsetDemo-description {
    font-size: 1.1rem;
    max-width: 600px;
  }
  
  .requsetDemo-section .btn-request {
    padding: 16px 35px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .requsetDemo-section {
    padding: 60px 0;
    margin: 40px 0;
  }
  
  .requsetDemo-section .row {
    padding: 0 15px;
  }
  
  .requsetDemo-section .header-section .title {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .requsetDemo-section .requsetDemo-description {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
  }
  
  .requsetDemo-section .btn-request {
    padding: 15px 30px;
    font-size: 14px;
    min-width: 200px;
  }
  
  .requsetDemo-section .header-section::before {
    width: 80px;
  }
  
  .requsetDemo-section .header-section .title::after {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .requsetDemo-section {
    padding: 50px 0;
    margin: 30px 0;
  }
  
  .requsetDemo-section .row {
    padding: 0 10px;
  }
  
  .requsetDemo-section .header-section .title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .requsetDemo-section .requsetDemo-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
  }
  
  .requsetDemo-section .btn-request {
    padding: 14px 25px;
    font-size: 13px;
    min-width: 180px;
    letter-spacing: 1px;
  }
  
  .requsetDemo-section .header-section::before {
    width: 60px;
    height: 3px;
  }
  
  .requsetDemo-section .header-section .title::after {
    width: 80px;
    height: 2px;
  }
  
  .requsetDemo-section .effect-card::before {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 320px) {
  .requsetDemo-section .header-section .title {
    font-size: 1.6rem;
  }
  
  .requsetDemo-section .requsetDemo-description {
    font-size: 0.9rem;
  }
  
  .requsetDemo-section .btn-request {
    padding: 12px 20px;
    font-size: 12px;
    min-width: 160px;
  }
}

/* ===== PRICING PAGE STYLES ===== */

/* Pricing Hero Section */
.pricing-hero-section {
  width: 100%;
  height: 60vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a121e 0%, #1a2332 25%, #0f1924 50%, #1e2a3a 75%, #0a121e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 45px 0;
}

.pricing-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(76, 175, 80, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(138, 43, 226, 0.12) 0%, transparent 50%),
    linear-gradient(45deg, rgba(76, 175, 80, 0.05) 0%, transparent 30%, rgba(138, 43, 226, 0.08) 70%, transparent 100%);
  animation: heroFloat 20s ease-in-out infinite;
  z-index: 1;
}

.pricing-hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 98px,
      rgba(76, 175, 80, 0.03) 100px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 98px,
      rgba(138, 43, 226, 0.03) 100px
    );
  z-index: 1;
  opacity: 0.6;
}

.pricing-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  animation: heroContentSlide 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  padding-top: 30px;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(76, 175, 80, 0.3);
}

.hero-title .highlight {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
}

.hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4caf50, #66bb6a);
  border-radius: 2px;
  animation: highlightGrow 1s ease 0.5s backwards;
}

.hero-subtitle {
  font-size: 3.5rem;
  font-weight: 700;
  color: #e0e0e0;
  margin-bottom: 2rem;
  animation: subtitleSlide 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s backwards;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.2rem;
  color: #b0b0b0;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  animation: descriptionFade 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s backwards;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Decorations */
.hero-decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-decorations::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 20%;
  width: 60px;
  height: 60px;
  background: rgba(138, 43, 226, 0.3);
  border-radius: 50%;
  animation: floatUpDown 4s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.4);
}

.hero-decorations::after {
  content: "";
  position: absolute;
  bottom: 30%;
  right: 5%;
  width: 40px;
  height: 40px;
  background: rgba(30, 144, 255, 0.3);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphShape 8s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(30, 144, 255, 0.3);
}

.decoration-wave {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, rgba(76, 175, 80, 0.3), rgba(138, 43, 226, 0.25));
  border-radius: 50%;
  animation: waveFloat 8s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(76, 175, 80, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.decoration-dots {
  position: absolute;
  bottom: 20%;
  left: 15%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(30, 144, 255, 0.4) 2px, transparent 2px);
  background-size: 20px 20px;
  animation: dotsRotate 12s linear infinite;
  filter: drop-shadow(0 0 10px rgba(30, 144, 255, 0.3));
}

.decoration-plus {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 80px;
  height: 80px;
  opacity: 0.4;
  animation: plusBounce 6s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(76, 175, 80, 0.4));
}

.decoration-plus::before,
.decoration-plus::after {
  content: "";
  position: absolute;
  background: #66bb6a;
  border-radius: 4px;
}

.decoration-plus::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 8px;
  transform: translateY(-50%);
}

.decoration-plus::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 8px;
  transform: translateX(-50%);
}

/* Pricing Section */
.pricing-section {
  width: 100%;
  padding: 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(76, 175, 80, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(138, 43, 226, 0.03) 0%, transparent 40%);
  animation: backgroundShift 20s ease-in-out infinite;
  z-index: 1;
}

.pricing-section .pricing-container {
  position: relative;
  z-index: 2;
}

.pricing-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: pricingHeaderSlide 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.pricing-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #4caf50 50%, #1a1a1a 100%);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleShimmer 3s ease-in-out infinite;
}

.pricing-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #4caf50, #66bb6a);
  border-radius: 2px;
}

.pricing-subtitle {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* Pricing Toggle Switch */
.pricing-toggle-container {
  margin-top: 3rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  animation: toggleSlideIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s backwards;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(76, 175, 80, 0.1);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.08),
    0 4px 20px rgba(76, 175, 80, 0.1);
  position: relative;
  overflow: hidden;
}

.pricing-toggle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(76, 175, 80, 0.02) 50%, transparent 70%);
  animation: shimmerEffect 3s ease-in-out infinite;
}

.toggle-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #666;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toggle-label.active {
  color: #4caf50;
  transform: scale(1.05);
}

.discount-badge {
  background: linear-gradient(135deg, #ff4757, #ff6b7a);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: badgePulse 2s ease-in-out infinite;
  box-shadow: 0 2px 10px rgba(255, 71, 87, 0.3);
}

.toggle-switch {
  position: relative;
  display: inline-block;
}

.toggle-input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-slider {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 35px;
  background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
  border-radius: 35px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 
    inset 0 2px 8px rgba(0, 0, 0, 0.1),
    0 2px 10px rgba(0, 0, 0, 0.05);
}

.toggle-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
  border-radius: 35px;
  pointer-events: none;
}

.toggle-button {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 29px;
  height: 29px;
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-button::before {
  content: "";
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #e0e0e0, #bdbdbd);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.toggle-input:checked + .toggle-slider {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  box-shadow: 
    inset 0 2px 8px rgba(76, 175, 80, 0.3),
    0 2px 15px rgba(76, 175, 80, 0.2);
}

.toggle-input:checked + .toggle-slider .toggle-button {
  transform: translateX(35px);
  background: linear-gradient(135deg, #ffffff, #e8f5e8);
}

.toggle-input:checked + .toggle-slider .toggle-button::before {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
}

.toggle-slider:hover {
  transform: scale(1.05);
  box-shadow: 
    inset 0 2px 8px rgba(0, 0, 0, 0.15),
    0 4px 20px rgba(0, 0, 0, 0.1);
}

.toggle-input:checked + .toggle-slider:hover {
  box-shadow: 
    inset 0 2px 8px rgba(76, 175, 80, 0.4),
    0 4px 25px rgba(76, 175, 80, 0.3);
}

/* Enhanced Pricing Cards */
.pricing-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
  animation: cardsSlideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s backwards;
  padding: 0 1rem;
}

.pricing-card {
  background: linear-gradient(145deg, #ffffff, #fafafa);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.08),
    0 4px 15px rgba(0, 0, 0, 0.04);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  background-clip: padding-box;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #e0e0e0, #f5f5f5);
  transition: all 0.5s ease;
  border-radius: 25px 25px 0 0;
}

.pricing-card::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(145deg, transparent, rgba(0, 0, 0, 0.02));
  border-radius: 25px;
  z-index: -1;
  transition: all 0.5s ease;
}

.pricing-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.08);
}

.pricing-card:hover::after {
  background: linear-gradient(145deg, rgba(76, 175, 80, 0.1), rgba(138, 43, 226, 0.05));
}

/* Enhanced Featured Card */
.pricing-card.featured {
  transform: scale(1.08);
  border: 3px solid transparent;
  background: 
    linear-gradient(145deg, #ffffff, #fafafa),
    linear-gradient(145deg, #4caf50, #66bb6a, #81c784);
  background-clip: padding-box, border-box;
  background-origin: border-box;
  box-shadow: 
    0 20px 60px rgba(76, 175, 80, 0.2),
    0 8px 30px rgba(76, 175, 80, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
}

.pricing-card.featured::before {
  background: linear-gradient(90deg, #4caf50, #66bb6a, #81c784);
  height: 10px;
  box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}

.pricing-card.featured::after {
  background: linear-gradient(145deg, rgba(76, 175, 80, 0.05), rgba(129, 199, 132, 0.03));
}

.pricing-card.featured:hover {
  transform: translateY(-18px) scale(1.08);
  box-shadow: 
    0 30px 90px rgba(76, 175, 80, 0.25),
    0 15px 40px rgba(76, 175, 80, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pricing-card.featured:hover::after {
  background: linear-gradient(145deg, rgba(76, 175, 80, 0.1), rgba(129, 199, 132, 0.05));
}

/* Enhanced Featured Badge */
.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4caf50, #66bb6a, #81c784);
  color: white;
  padding: 10px 28px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  box-shadow: 
    0 6px 20px rgba(76, 175, 80, 0.4),
    0 3px 10px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
  animation: badgeGlow 2s ease-in-out infinite;
}

.featured-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.8s ease;
}

.featured-badge:hover::before {
  left: 100%;
}

/* Card Variations */
.basic-card::before {
  background: linear-gradient(90deg, #2196f3, #64b5f6);
}

.basic-card:hover {
  border-color: #2196f3;
  box-shadow: 0 20px 60px rgba(33, 150, 243, 0.15);
}

.business-card::before {
  background: linear-gradient(90deg, #4caf50, #66bb6a);
}

.enterprise-card::before {
  background: linear-gradient(90deg, #9c27b0, #ba68c8);
}

.enterprise-card:hover {
  border-color: #9c27b0;
  box-shadow: 0 20px 60px rgba(156, 39, 176, 0.15);
}

/* Card Header */
.card-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f5f5f5;
}

.plan-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.plan-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.plan-price {
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: #666;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0.2rem;
}

.price-period {
  font-size: 1.2rem;
  color: #666;
  font-weight: 500;
}

.employee-price {
  font-size: 0.95rem;
  color: #888;
  font-style: italic;
}

/* Card Body */
.card-body {
  margin-bottom: 2rem;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.feature-item i {
  color: #4caf50;
  font-size: 1rem;
  margin-right: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

/* Card Footer */
.card-footer {
  text-align: center;
}

.plan-btn {
  display: inline-block;
  width: 100%;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.4s ease;
  z-index: -1;
}

.plan-btn:hover::before {
  left: 0;
}

/* Button Variations */
.basic-btn {
  background: linear-gradient(135deg, #2196f3, #64b5f6);
  color: white;
  border: 2px solid transparent;
}

.basic-btn::before {
  background: linear-gradient(135deg, #1976d2, #42a5f5);
}

.basic-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}

.business-btn {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  color: white;
  border: 2px solid transparent;
}

.business-btn::before {
  background: linear-gradient(135deg, #388e3c, #57bb5a);
}

.business-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.enterprise-btn {
  background: linear-gradient(135deg, #9c27b0, #ba68c8);
  color: white;
  border: 2px solid transparent;
}

.enterprise-btn::before {
  background: linear-gradient(135deg, #7b1fa2, #ab47bc);
}

.enterprise-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(156, 39, 176, 0.3);
}

/* Pricing Note */
.pricing-note {
  text-align: center;
  animation: noteSlide 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s backwards;
}

.note-text {
  font-size: 1rem;
  color: #666;
  padding: 1.2rem 1.8rem;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(138, 43, 226, 0.03));
  border-radius: 12px;
  border: 1px solid rgba(76, 175, 80, 0.15);
  display: inline-block;
  margin: 0;
  position: relative;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
  transition: all 0.3s ease;
}

.note-text i {
  color: #4caf50;
  margin-right: 0.5rem;
}

/* Contact Section */
.contact-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
  animation: contactFloat 12s ease-in-out infinite;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: contactSlide 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-header {
  margin-bottom: 2.5rem;
}

.contact-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #e0e0e0);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.8;
}

.contact-cta {
  animation: ctaFloat 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s backwards;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 20px 40px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #128c7e, #075e54);
  transition: left 0.4s ease;
  z-index: -1;
}

.contact-btn:hover::before {
  left: 0;
}

.contact-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 45px rgba(37, 211, 102, 0.4);
  color: white;
}

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

/* Enhanced Animations */
@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(10px, -10px) rotate(1deg); }
}

@keyframes heroContentSlide {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes subtitleSlide {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes descriptionFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes highlightGrow {
  0% { width: 0; }
  100% { width: 100%; }
}

@keyframes waveFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(20px, -20px) rotate(180deg) scale(1.1); }
}

@keyframes dotsRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes plusBounce {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10px, -10px) scale(1.2); }
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(90deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
  75% { transform: translateY(-20px) rotate(270deg); }
}

@keyframes morphShape {
  0% { 
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(0deg) scale(1);
  }
  25% { 
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    transform: rotate(90deg) scale(1.1);
  }
  50% { 
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    transform: rotate(180deg) scale(0.9);
  }
  75% { 
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    transform: rotate(270deg) scale(1.05);
  }
  100% { 
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(360deg) scale(1);
  }
}

@keyframes pricingHeaderSlide {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardsSlideUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes noteSlide {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes contactSlide {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ctaFloat {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* New Animations for Enhanced Features */
@keyframes backgroundShift {
  0%, 100% { 
    transform: translate(0, 0) scale(1); 
    opacity: 0.5;
  }
  50% { 
    transform: translate(10px, -10px) scale(1.05); 
    opacity: 0.8;
  }
}

@keyframes toggleSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes shimmerEffect {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes badgePulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 2px 10px rgba(255, 71, 87, 0.3);
  }
  50% { 
    transform: scale(1.05); 
    box-shadow: 0 4px 20px rgba(255, 71, 87, 0.5);
  }
}

@keyframes badgeGlow {
  0%, 100% { 
    box-shadow: 
      0 6px 20px rgba(76, 175, 80, 0.4),
      0 3px 10px rgba(0, 0, 0, 0.1);
  }
  50% { 
    box-shadow: 
      0 8px 30px rgba(76, 175, 80, 0.6),
      0 4px 15px rgba(0, 0, 0, 0.15);
  }
}

@keyframes titleShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Enhanced Responsive Design for All Devices */

/* Extra Large Screens (1400px+) */
@media (min-width: 1400px) {
  .pricing-hero-container,
  .pricing-container,
  .contact-container {
    max-width: 1300px;
  }
  
  .pricing-cards-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

/* Large Screens (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 3rem;
  }
  
  .pricing-cards-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Medium-Large Screens (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 2.8rem;
  }
  
  .pricing-cards-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    padding: 0 0.5rem;
  }
  
  .pricing-card {
    padding: 2.5rem 2rem;
  }
  
  .pricing-toggle {
    gap: 1.2rem;
    padding: 0.8rem 1.5rem;
  }
}

/* Tablet Portrait & Small Laptops (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .pricing-hero-section {
    padding: 90px 0 50px;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .hero-subtitle {
    font-size: 2.5rem;
  }
  
  .pricing-section {
    padding: 80px 0;
  }
  
  .pricing-title {
    font-size: 2.5rem;
  }
  
  .pricing-cards-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 0;
  }
  
  .pricing-card {
    padding: 2.5rem 2rem;
  }
  
  .pricing-card.featured {
    transform: scale(1.04);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-12px) scale(1.04);
  }
  
  .pricing-toggle {
    gap: 1rem;
    padding: 0.8rem 1.2rem;
  }
  
  .toggle-label {
    font-size: 1rem;
  }
  
  .contact-section {
    padding: 80px 0;
  }
  
  .contact-title {
    font-size: 2.5rem;
  }
  
  .hero-decorations .decoration-wave,
  .hero-decorations .decoration-dots {
    display: none;
  }
}

/* Large Mobile & Small Tablets (481px - 767px) */
@media (max-width: 767px) and (min-width: 481px) {
  .pricing-hero-section {
    padding: 80px 0 40px;
  }
  
  .hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
  
  .pricing-section {
    padding: 70px 0;
  }
  
  .pricing-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
  }
  
  .pricing-card {
    padding: 2.5rem 2rem;
    margin: 0 auto;
    max-width: 400px;
  }
  
  .pricing-card.featured {
    transform: scale(1.02);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-12px) scale(1.02);
  }
  
  .pricing-toggle-container {
    margin-top: 2rem;
  }
  
  .pricing-toggle {
    gap: 1rem;
    padding: 0.7rem 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .toggle-label {
    font-size: 0.95rem;
  }
  
  .discount-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }
  
  .pricing-title {
    font-size: 2.2rem;
  }
  
  .plan-name {
    font-size: 1.6rem;
  }
  
  .price-amount {
    font-size: 2.8rem;
  }
  
  .contact-section {
    padding: 70px 0;
  }
  
  .contact-title {
    font-size: 2.2rem;
  }
  
  .contact-btn {
    padding: 18px 35px;
    font-size: 1.1rem;
  }
  
  .hero-decorations {
    display: none;
  }
}

/* Standard Mobile Devices (321px - 480px) */
@media (max-width: 480px) and (min-width: 321px) {
  .pricing-hero-container,
  .pricing-container,
  .contact-container {
    padding: 0 15px;
  }
  
  .pricing-hero-section {
    padding: 60px 0 30px;
    min-height: 50vh;
  }
  
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
  
  .pricing-section {
    padding: 60px 0;
  }
  
  .pricing-toggle-container {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .pricing-toggle {
    gap: 0.8rem;
    padding: 0.6rem 0.8rem;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
  }
  
  .toggle-switch {
    order: 2;
  }
  
  .toggle-label {
    font-size: 0.9rem;
  }
  
  .discount-badge {
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
  }
  
  .pricing-cards-wrapper {
    gap: 1.5rem;
  }
  
  .pricing-card {
    padding: 2rem 1.5rem;
    margin: 0 auto;
    max-width: 350px;
    border-radius: 20px;
  }
  
  .pricing-card.featured {
    transform: scale(1.01);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-8px) scale(1.01);
  }
  
  .featured-badge {
    top: -12px;
    padding: 8px 20px;
    font-size: 0.8rem;
  }
  
  .plan-name {
    font-size: 1.4rem;
  }
  
  .price-amount {
    font-size: 2.3rem;
  }
  
  .feature-item {
    margin-bottom: 0.8rem;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
  
  .plan-btn {
    padding: 14px 25px;
    font-size: 0.95rem;
  }
  
  .pricing-title {
    font-size: 1.9rem;
  }
  
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-title {
    font-size: 1.9rem;
  }
  
  .contact-btn {
    padding: 16px 28px;
    font-size: 1rem;
    gap: 0.8rem;
  }
  
  .hero-decorations {
    display: none;
  }
}

/* Small Mobile Devices (≤320px) */
@media (max-width: 320px) {
  .pricing-hero-container,
  .pricing-container,
  .contact-container {
    padding: 0 10px;
  }
  
  .pricing-hero-section {
    padding: 50px 0 25px;
    min-height: 50vh;
  }
  
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .pricing-section {
    padding: 50px 0;
  }
  
  .pricing-toggle {
    gap: 0.6rem;
    padding: 0.5rem 0.6rem;
  }
  
  .toggle-label {
    font-size: 0.85rem;
  }
  
  .toggle-slider {
    width: 60px;
    height: 30px;
  }
  
  .toggle-button {
    width: 24px;
    height: 24px;
  }
  
  .toggle-input:checked + .toggle-slider .toggle-button {
    transform: translateX(30px);
  }
  
  .discount-badge {
    font-size: 0.6rem;
    padding: 0.1rem 0.4rem;
  }
  
  .pricing-cards-wrapper {
    gap: 1.2rem;
  }
  
  .pricing-card {
    padding: 1.5rem 1rem;
    max-width: 300px;
    border-radius: 18px;
  }
  
  .featured-badge {
    top: -10px;
    padding: 6px 16px;
    font-size: 0.75rem;
  }
  
  .plan-name {
    font-size: 1.2rem;
  }
  
  .plan-subtitle {
    font-size: 0.85rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .currency, .price-period {
    font-size: 0.9rem;
  }
  
  .employee-price {
    font-size: 0.8rem;
  }
  
  .feature-item span {
    font-size: 0.85rem;
  }
  
  .plan-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .pricing-title {
    font-size: 1.6rem;
  }
  
  .pricing-subtitle {
    font-size: 1rem;
  }
  
  .contact-title {
    font-size: 1.6rem;
  }
  
  .contact-subtitle {
    font-size: 1rem;
  }
  
  .contact-btn {
    padding: 14px 24px;
    font-size: 0.9rem;
  }
}