:root {
  /* Colors */
  --main-color: #025bff;
  --main-color-hover: #0047cc;
  --accent-color: #00a8ff;
  --success-color: #00d4aa;
  --text-lighter: #d0d0d0;
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-subtle: rgba(255, 255, 255, 0.5);
  --bg-dark: #050a16;
  --bg-darker: #030a15;
  --bg-card: rgba(10, 20, 40, 0.9);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-pill: 50px;

  /* Typography Scale - Montserrat */
  --font-family: 'Montserrat', sans-serif;
  --font-xs: 12px;
  --font-sm: 14px;
  --font-base: 15px;
  --font-md: 16px;
  --font-lg: 18px;
  --font-xl: 20px;
  --font-2xl: 24px;
  --font-3xl: 32px;
  --font-4xl: 42px;
  --font-5xl: 52px;

  /* Font Weights */
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  /* Line Heights */
  --leading-tight: 1.2;
  --leading-snug: 1.4;
  --leading-normal: 1.6;
  --leading-relaxed: 1.7;

  /* Spacing Scale */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;
  --space-5xl: 100px;

  /* Section Padding */
  --section-padding: 100px;
  --section-padding-mobile: 60px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ================================
   GLOBAL RESET & BASE STYLES
================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overscroll-behavior: none;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-base);
  font-weight: var(--weight-normal);
  line-height: var(--leading-normal);
  color: #fff;
  background-color: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 120% 80% at 20% 80%, rgba(2, 91, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 100% 60% at 80% 20%, rgba(2, 91, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 60% 60%, rgba(10, 80, 180, 0.06) 0%, transparent 40%);
  z-index: -1;
  pointer-events: none;
}

/* Section Divider - Apple Style */
.section-divider {
  position: relative;
  height: 1px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(2, 91, 255, 0.3) 20%,
    rgba(2, 91, 255, 0.5) 50%,
    rgba(2, 91, 255, 0.3) 80%,
    transparent 100%
  );
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(2, 91, 255, 0.15) 0%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

/* Disable AOS animations - show all elements immediately */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: #fff;
  margin: 0;
}

h1 { font-size: var(--font-5xl); }
h2 { font-size: var(--font-4xl); }
h3 { font-size: var(--font-2xl); }
h4 { font-size: var(--font-xl); }
h5 { font-size: var(--font-lg); }
h6 { font-size: var(--font-md); }

p {
  font-family: var(--font-family);
  font-size: var(--font-base);
  line-height: var(--leading-normal);
  color: var(--text-muted);
  margin: 0;
}

a {
  font-family: var(--font-family);
  text-decoration: none;
  transition: var(--transition-base);
}

/* ================================
   STANDARDIZED SECTION STYLES
================================ */
section {
  padding: var(--section-padding) 0;
}

@media (max-width: 768px) {
  section {
    padding: var(--section-padding-mobile) 0;
  }

  h1 { font-size: var(--font-3xl); }
  h2 { font-size: var(--font-2xl); }
  h3 { font-size: var(--font-xl); }
}

/* Section Titles */
.section-title {
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.section-title h2 {
  font-size: var(--font-4xl);
  font-family: var(--font-family);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-sm);
}

.section-title span {
  display: block;
  font-size: var(--font-md);
  font-family: var(--font-family);
  font-weight: var(--weight-normal);
  color: var(--text-muted);
  line-height: var(--leading-normal);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: var(--font-2xl);
  }

  .section-title span {
    font-size: var(--font-sm);
  }
}

/* ================================
   STANDARDIZED BUTTON STYLES
================================ */
.btn-animated {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 24px;
  font-family: var(--font-family);
  font-size: var(--font-sm);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--transition-bounce),
              box-shadow var(--transition-base),
              background var(--transition-base);
}

.btn-animated .btn-text {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  transition: transform var(--transition-bounce),
              opacity var(--transition-base);
}

.btn-animated .btn-icon {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-bounce);
}

.btn-animated .btn-arrow {
  position: absolute;
  right: 18px;
  opacity: 0;
  transform: translateX(-10px);
  width: 18px;
  height: 18px;
  z-index: 2;
  transition: opacity var(--transition-base),
              transform var(--transition-bounce);
}

.btn-animated .btn-arrow svg {
  width: 100%;
  height: 100%;
  stroke-width: 2;
}

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

.btn-animated:hover .btn-text {
  transform: translateX(-8px);
}

.btn-animated:hover .btn-arrow {
  opacity: 1;
  transform: translateX(0);
}

.btn-animated:active {
  transform: translateY(0);
}

/* Primary Button */
.btn-primary-animated {
  background: var(--main-color);
  color: #fff;
}

.btn-primary-animated:hover {
  background: var(--main-color-hover);
  box-shadow: 0 10px 30px rgba(2, 91, 255, 0.4);
  color: #fff;
}

/* Secondary Button */
.btn-secondary-animated {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  color: #fff;
}

.btn-secondary-animated:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  color: #fff;
}

/* Outline Button */
.btn-outline-animated {
  background: transparent;
  border: 1px solid var(--border-light);
  color: #fff;
}

.btn-outline-animated:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Simple Arrow Button (no text shift) */
.btn-arrow-right {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 24px;
  font-family: var(--font-family);
  font-size: var(--font-sm);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.btn-arrow-right svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-base);
}

.btn-arrow-right:hover svg {
  transform: translateX(4px);
}

/* ================================
   STANDARDIZED CARD STYLES
================================ */
.card-standard {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--transition-smooth);
}

.card-standard:hover {
  transform: translateY(-4px);
  border-color: rgba(2, 91, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-featured {
  border-color: rgba(2, 91, 255, 0.4);
  background: linear-gradient(180deg, rgba(2, 91, 255, 0.1) 0%, var(--bg-card) 100%);
}

/* Global container margins */
.container {
  padding-left: 48px !important;
  padding-right: 48px !important;
}

@media (max-width: 768px) {
  .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/*--------------------------------------------------------------
# Announcement Banner
--------------------------------------------------------------*/
.announcement-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: #025bff;
  height: 38px;
}

.announcement-banner .container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}

.announcement-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  transition: all 0.2s ease;
}

.announcement-link:hover {
  opacity: 0.8;
}

.announcement-link:hover svg {
  transform: translateX(4px);
}

.announcement-text {
  color: #fff;
}

.announcement-link svg {
  color: #fff;
  transition: transform 0.2s ease;
}

.announcement-close {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.announcement-close:hover {
  color: #fff;
}

/*--------------------------------------------------------------
# Navbar - Clean & Centered
--------------------------------------------------------------*/
header.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 10, 22, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0;
  width: 100%;
  height: auto;
}

header.navbar .navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo - aligned with hero text (col padding 12px + hero-content padding 40px) */
header.navbar .navbar-logo {
  flex-shrink: 0;
  margin-left: 21px;
}

header.navbar .navbar-logo img {
  height: 28px;
  width: auto;
}

/* Navigation - Centered */
header.navbar .navbar-nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 4px;
  position: static;
  background: none;
  padding: 0;
  margin: 0;
  list-style: none;
  width: auto;
  height: auto;
  line-height: normal;
}

header.navbar .navbar-nav .nav-item {
  position: static;
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex !important;
  align-items: center;
}

header.navbar .navbar-nav .nav-link,
header.navbar .navbar-nav a.nav-link,
header.navbar .navbar-nav button.nav-link {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease;
  white-space: nowrap;
}

header.navbar .navbar-nav .nav-link:focus {
  outline: none;
}

header.navbar .navbar-nav .nav-item:hover .nav-link,
header.navbar .navbar-nav .nav-item.active .nav-link {
  color: #fff;
}

header.navbar .navbar-nav .nav-link svg {
  width: 10px;
  height: 10px;
  opacity: 0.5;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

header.navbar .navbar-nav .nav-item:hover .nav-link svg,
header.navbar .navbar-nav .nav-item.active .nav-link svg {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown Menu - Full Width Mega Menu (Stripe-style) */
header.navbar .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  padding: 28px 0;
  background: rgba(8, 15, 30, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  pointer-events: none;
}

header.navbar .dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(2, 91, 255, 0.4), transparent);
}

header.navbar .nav-item:hover .dropdown-menu,
header.navbar .nav-item.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Dropdown items stagger animation */
header.navbar .dropdown-menu-inner {
  display: flex;
  gap: 32px;
  padding: 0 24px;
  justify-content: center;
}

header.navbar .dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

header.navbar .dropdown-item:hover {
  background: rgba(2, 91, 255, 0.1);
  border-color: rgba(2, 91, 255, 0.25);
  transform: translateY(-2px) scale(1.02);
}

header.navbar .dropdown-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 91, 255, 0.1);
  border-radius: 8px;
  flex-shrink: 0;
}

header.navbar .dropdown-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

header.navbar .dropdown-icon svg {
  width: 20px;
  height: 20px;
  stroke: #4d9fff;
}

header.navbar .dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

header.navbar .dropdown-title {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

header.navbar .dropdown-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.4;
}

/* Action Buttons */
header.navbar .navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-right: 42px;
}

header.navbar .btn-login {
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s ease;
}

header.navbar .btn-login:hover {
  color: #fff;
}

header.navbar .btn-signup {
  padding: 10px 20px;
  color: #fff;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: var(--main-color);
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

header.navbar .btn-signup:hover {
  background: #0050e0;
  color: #fff;
}

/* Mobile Toggle */
header.navbar .navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

header.navbar .navbar-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Navbar Responsive */
@media (max-width: 991px) {
  header.navbar .navbar-container {
    height: 60px;
  }

  header.navbar .navbar-nav {
    display: none;
  }

  header.navbar .navbar-toggle {
    display: flex;
  }

  header.navbar .btn-login {
    display: none;
  }

  header.navbar .btn-signup {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  header.navbar .navbar-logo img {
    height: 24px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-top-color: #d2f9eb;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fw-500 {
  font-weight: 600;
}
#hero .footer-cta .btn {
  font-size: 15px;
}
.footer_logo {
  position: relative;
}
.contact-us {
  color: #fff;
}
.contact-us:hover {
  color: var(--main-color);
}
.cta-holder {
  color: #fff;
  background: url(../img/cta-bg-image.png);
  background-size: cover;
  padding: 30px;
  display: flex;
  gap: 30px;
  align-items: center;
  background-position: center center;
  border-radius: var(--radius-lg);
  background-repeat: no-repeat;
  border: 1px solid #025BFF;
  justify-content: space-between;
}
.cta-action {
  display: flex;
  align-items: center;
  gap: 40px;
}
.cta-action .btn {
  white-space: nowrap;
  width: 140px;
  font-size: 16px;
}
.cta-content p {
  margin-bottom: 0px;
  font-weight: 500;
}
/* .cta-content p span{
display: block;
} */
.cta-content h3 {
  margin-bottom: 15px;
}
.cta-action img {
  width: 70px;
}
/* custom styles */
ul#pills-tab {
  border-radius: 10px;
  border: 1px solid #025bff;
  padding: 10px;
  gap: 10px;
  display: inline-flex;
}
.nav-pills .nav-link {
  border-radius: 10px;
  border: 1px solid #025bff;
  padding: 4px 40px;
  font-weight: 500;
  color: #fff;
  font-size: 1rem;
}
.tab-content {
  padding: 30px;
  margin-top: 30px;
  border-radius: 10px;
  background: linear-gradient(180deg, #050a16 0.13%, #025bff 123.85%);
}

.tab-content p {
  font-size: var(--font-md);
  line-height: 1.6;
  font-weight: lighter;
}

.footer-cta-container {
  background-image: url(../img/unlock-bg.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.footer-cta-container h2 {
  text-align: center;
  display: flex;
  font-weight: 600;
  color: #fff;
  justify-content: center;
  margin-bottom: 55px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  justify-content: space-between;
}

.user-name {
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: flex-start;
  gap: 10px;
}
.user-name img {
  height: 45px;
}
.user-name span {
}
span.divider-sml {
  height: 30px;
  background: #fff;
  display: block;
  margin: 0px 10px;
  width: 1px;
}
.dater {
  color: #e1e1e1;
  font-size: 12px;
  font-weight: 300;
}
.dater.mobile {
  display: none;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #2be4a2;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: auto;
  transition: all 0.5s;
  z-index: 997;
  padding-bottom: 20px;
  padding-top: 20px;
  border-bottom: 1px solid #025bff;
  background: #050a16;
}

#header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.right_dash button {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 6px;
  padding: 8px 35px;
  font-size: 16px;
  font-weight: 500;
}

.right_dash button a {
  color: #121118;
}

.login_a {
  color: #ffffff;
  margin-right: 25px;
}

.login_a:hover {
  color: #fff;
}

a {
  text-decoration: none;
}

.header_small #header.header-transparent {
  background: #1f2a32;
}

.header_small #blogs {
  background-color: #fff;
  padding-top: 100px;
}

#header.header-scrolled {
  box-shadow: 0 0 16px 0 rgb(0 0 0 / 15%);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  margin-top: 0px;
  max-height: 32px;
  margin-top: 5px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
  margin-top: 0;
  padding-left: 10px;
  padding-right: 10px;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 19px 0px 18px;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: none;
  text-decoration: none;
}

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

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 30px;
  background-color: transparent;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 25px;
}

.navbar a:hover,
.navbar .active:focus,
.navbar li:hover > a {
  color: #fff;
}

.navbar .active {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #01036f;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #fff;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

@media (max-width: 1000px) {
  .padding-top3 {
    margin-top: 2em;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 3, 91, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile > ul > li > a:before {
  left: 20px;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #0205a1;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #3f43fd;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #1acc8d;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background: #070c18;
  overflow: hidden;
}

/* Background glow */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  top: -150px;
  left: -50px;
  background: radial-gradient(circle, rgba(2, 91, 255, 0.12) 0%, transparent 70%);
}

/* Subtle grid background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.008) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.008) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 100%);
}

#hero > .container {
  width: 100%;
  position: relative;
  z-index: 1;
}

.residential #hero {
  min-height: auto;
  padding: 120px 0 60px;
}

.line_bg {
  border-radius: 655px;
  background: #025bff;
  filter: blur(100px);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: -100%;
}

.hero_flex {
  display: flex;
}

/* Hero Two-Column Layout */
.hero-content {
  text-align: left;
  padding-left: 40px;
}

/* Hero Pill Badge */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  margin-bottom: 28px;
  font-size: 13px;
  font-family: var(--font-family);
  color: rgba(255, 255, 255, 0.6);
}

.hero-pill-tp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.hero-pill-tp .tp-logo {
  height: 15px;
  width: auto;
}

/* Ghost button */
.btn-hero.btn-hero-ghost {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  padding: 14px 20px;
  font-size: 15px;
  font-family: var(--font-family);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.btn-hero.btn-hero-ghost:hover {
  color: #fff;
}

/* Mac Window in Hero */
.hero-dashboard-wrapper {
  position: relative;
  margin-right: 40px;
}

.hero-dashboard-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(2, 91, 255, 0.25) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

.hero-mac-window {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 120px rgba(2, 91, 255, 0.08);
}

.mac-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #1e1e1e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mac-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mac-dot-red { background: #ff5f57; }
.mac-dot-yellow { background: #febc2e; }
.mac-dot-green { background: #28c840; }

.mac-content img {
  width: 100%;
  display: block;
}

/* Mac URL bar */
.mac-url {
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-family: var(--font-family);
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.3px;
}

/* Hero Proof Bar */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-proof-item strong {
  font-size: 20px;
  font-family: var(--font-family);
  font-weight: 700;
  color: #fff;
}

.hero-proof-item span {
  font-size: 12px;
  font-family: var(--font-family);
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-proof-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-badge {
  display: inline-block;
  margin-bottom: 24px;
}

.hero-badge .tp-logo {
  height: 28px;
  width: auto;
}

#hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  color: #fff;
  text-align: left;
  margin-bottom: 24px;
}

#hero h1 span {
  background: linear-gradient(135deg, #4d9fff 0%, #025bff 50%, #0040b0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 440px;
  text-align: left;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: flex-start;
}

.hero-cta .btn {
  font-size: 16px;
  padding: 14px 28px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.hero-feature img {
  width: 16px;
  height: 16px;
}

.hero-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero Graphic with Atom Background */
.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
}

.hero-atom-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  max-width: 750px;
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
}

.hero-atom-bg img {
  width: 100%;
  height: auto;
  animation: atomFloat 8s ease-in-out infinite;
}

/* Hero Image (Mac mockup) */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(2, 91, 255, 0.45) 0%, rgba(2, 91, 255, 0.2) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.hero-image img {
  width: 140%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 25px 70px rgba(2, 91, 255, 0.25));
}

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

.dashboard-screenshot {
  position: relative;
  z-index: 1;
}

.dashboard-screenshot .dashboard-img {
  width: 100%;
  max-width: 680px;
  height: auto;
  border-radius: 16px;
  box-shadow:
    0 25px 80px rgba(2, 91, 255, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* ===== Phone Scene Mockup ===== */
.phone-scene {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  perspective: 1000px;
}

.phone-mockup {
  position: relative;
  z-index: 2;
  transform: rotateY(-8deg) rotateX(5deg);
  transition: transform 0.4s ease;
}

.phone-mockup:hover {
  transform: rotateY(-3deg) rotateX(2deg);
}

.phone-frame {
  position: relative;
  width: 280px;
  height: 580px;
  background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 100%);
  border-radius: 45px;
  padding: 12px;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border-radius: 35px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #0a0a12;
  border-radius: 20px;
  z-index: 10;
}

.phone-notch::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #1a1a2e, #2a2a4e);
  border-radius: 50%;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0d1829;
  border-radius: 35px;
  overflow: hidden;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone-shadow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(2, 91, 255, 0.3) 0%, transparent 70%);
  filter: blur(10px);
}

/* Floating 3D Elements */
.floating-element {
  position: absolute;
  z-index: 1;
  animation: float3d 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(2, 91, 255, 0.3));
}

.globe-element {
  width: 100px;
  height: 100px;
  top: 5%;
  left: 5%;
  animation-delay: 0s;
}

.shield-element {
  width: 70px;
  height: 85px;
  bottom: 15%;
  left: 0;
  animation-delay: -2s;
}

.node-element {
  width: 50px;
  height: 50px;
  top: 20%;
  right: 5%;
  animation-delay: -4s;
}

@keyframes float3d {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(5deg);
  }
  50% {
    transform: translateY(-5px) rotate(-3deg);
  }
  75% {
    transform: translateY(-20px) rotate(3deg);
  }
}

/* Phone Scene Responsive */
@media (max-width: 992px) {
  .phone-scene {
    min-height: 400px;
    margin-top: 40px;
  }

  .phone-frame {
    width: 220px;
    height: 460px;
    border-radius: 35px;
    padding: 10px;
  }

  .phone-screen {
    border-radius: 28px;
  }

  .phone-notch {
    width: 80px;
    height: 22px;
    top: 14px;
  }

  .globe-element {
    width: 70px;
    height: 70px;
  }

  .shield-element {
    width: 50px;
    height: 60px;
  }

  .node-element {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 576px) {
  .phone-mockup {
    transform: rotateY(0) rotateX(0);
  }

  .floating-element {
    display: none;
  }

  .phone-frame {
    width: 200px;
    height: 420px;
  }
}

/* Hero Graphic Responsive */
@media (max-width: 992px) {
  .hero-graphic {
    margin-top: 40px;
  }

  .hero-atom-bg {
    width: 100%;
    max-width: 400px;
  }

  .dashboard-screenshot .dashboard-img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-atom-bg {
    opacity: 0.25;
  }
}

/* ================================
   SUBPAGE HERO STYLES
================================ */
.hero-subpage {
  min-height: auto;
  padding: 160px 0 80px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}


.hero-subpage .hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}

.hero-subpage .hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-family);
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-subpage .hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.hero-isp-graphic {
  width: 100%;
  max-width: 450px;
  height: auto;
}

@media (max-width: 992px) {
  .hero-subpage .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subpage .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subpage .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-subpage .hero-visual {
    order: -1;
    margin-bottom: 30px;
  }
}

/* ================================
   USE CASES SECTION
================================ */
.use-cases-section {
  padding: var(--section-padding) 0;
  background: transparent;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.use-case-card {
  padding: 32px 24px;
  background: linear-gradient(180deg, rgba(12, 24, 45, 0.95) 0%, rgba(8, 18, 35, 0.98) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: transform var(--transition-base),
              border-color var(--transition-base),
              box-shadow var(--transition-base);
}

.use-case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(2, 91, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.use-case-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 91, 255, 0.1);
  border-radius: 16px;
  color: var(--accent-color);
}

.use-case-card h4 {
  font-size: var(--font-md);
  font-weight: var(--weight-bold);
  color: #fff;
  margin: 0 0 12px 0;
}

.use-case-card p {
  font-size: var(--font-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1100px) {
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
}

/* Hero Buttons - Animated Send Style */
.btn-hero {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 32px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease,
              background 0.3s ease;
}

.btn-hero .btn-text {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.3s ease;
}

.btn-hero .btn-icon {
  position: relative;
  z-index: 2;
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-hero .btn-arrow {
  position: absolute;
  right: 14px;
  opacity: 0;
  transform: translateX(-10px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.3s ease;
  z-index: 2;
}

.btn-hero .btn-arrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* Shine effect overlay */
.btn-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
  z-index: 1;
}

/* Hover states */
.btn-hero:hover {
  transform: translateY(-3px);
}

.btn-hero:hover::before {
  left: 100%;
}

.btn-hero:hover .btn-arrow {
  opacity: 1;
  transform: translateX(0);
}

.btn-hero:hover .btn-text {
  transform: translateX(-6px);
}

/* Active/Click state */
.btn-hero:active {
  transform: translateY(-1px) scale(0.98);
}

/* Sending animation class */
.btn-hero.sending {
  pointer-events: none;
}

.btn-hero.sending .btn-text {
  transform: translateX(-20px);
  opacity: 0;
}

.btn-hero.sending .btn-arrow {
  opacity: 1;
  animation: sendArrow 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes sendArrow {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(30px) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translateX(60px);
    opacity: 0;
  }
}

/* Success state */
.btn-hero.success .btn-text {
  transform: translateX(0);
  opacity: 1;
}

.btn-hero.success .btn-arrow {
  opacity: 0;
}

/* Primary button */
.btn-hero-primary {
  background: linear-gradient(135deg, var(--main-color) 0%, #0050e0 100%);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 4px 15px rgba(2, 91, 255, 0.3),
              0 0 0 0 rgba(2, 91, 255, 0);
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #0066ff 0%, #0040c0 100%);
  color: #fff;
  box-shadow: 0 8px 25px rgba(2, 91, 255, 0.4),
              0 0 30px rgba(2, 91, 255, 0.2);
}

.btn-hero-primary:active {
  box-shadow: 0 4px 15px rgba(2, 91, 255, 0.3);
}

/* Secondary button */
.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3),
              0 0 30px rgba(255, 255, 255, 0.05);
}

.btn-hero-secondary:active {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Button icon (Google logo etc) */
.btn-hero .btn-icon img {
  width: 18px;
  height: 18px;
}

/* Dashboard Screenshot */
.dashboard-screenshot {
  perspective: 1000px;
}

.dashboard-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(2, 91, 255, 0.3);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(2, 91, 255, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dashboard-img:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  box-shadow:
    0 30px 60px -15px rgba(0, 0, 0, 0.6),
    0 0 100px rgba(2, 91, 255, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.dashboard-title {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 500;
}

.dashboard-content {
  padding: 20px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.stat-card {
  background: rgba(2, 91, 255, 0.1);
  border: 1px solid rgba(2, 91, 255, 0.2);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.stat-trend {
  font-size: 11px;
  font-weight: 500;
}

.stat-trend.up { color: #28c840; }
.stat-trend.neutral { color: rgba(255, 255, 255, 0.5); }

.chart-area {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 16px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.chart-period {
  color: rgba(255, 255, 255, 0.4);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}

.chart-bars .bar {
  flex: 1;
  background: linear-gradient(180deg, rgba(2, 91, 255, 0.6), rgba(2, 91, 255, 0.2));
  border-radius: 4px 4px 0 0;
  transition: all 0.3s ease;
}

.chart-bars .bar.active {
  background: linear-gradient(180deg, var(--main-color), rgba(2, 91, 255, 0.5));
}

.chart-bars .bar:hover {
  background: linear-gradient(180deg, var(--main-color), rgba(2, 91, 255, 0.4));
}

.location-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.location-pills .pill {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  transition: all 0.2s ease;
}

.location-pills .pill.active {
  background: rgba(2, 91, 255, 0.2);
  border-color: var(--main-color);
  color: #fff;
}

@media (max-width: 991px) {
  .dashboard-window {
    transform: none;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .hero-content {
    text-align: center;
    margin-bottom: 40px;
  }

  #hero h1 {
    text-align: center;
  }

  .hero-content p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-graphic {
    margin-top: 20px;
  }

  .hero-image {
    margin-top: 40px;
    text-align: center;
  }

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

.proxies_buttons {
  display: flex;
  margin: auto;
  margin-top: 45px;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.proxies_buttons1 {
  margin: auto;
  margin-top: auto;
  margin-top: 4em;
}

.proxies_buttons {
  max-width: 1000px;
}
.residential-block {
  position: relative;
  text-align: center;
}
img.residential {
  max-width: 1000px;
  width: 100%;
  position: relative;
  margin-top: -30px;
}
/* .residential-block::before {
  content: "";
  filter: blur(100px);
  width: 352px;
  height: 90px;
  border-radius: 655px;
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  margin: auto;
  background: rgb(2, 91, 255);
} */
.residential-block::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(5, 10, 22, 0) 6.67%, #050a16 53.03%);
  bottom: 0px;
  right: 0px;
  left: 0px;
  top: auto;
  height: 82px;
  width: 100%;
}

.mob_display {
  display: none;
  margin-top: 2em;
}
.proxies_buttons .flex_btn {
  max-height: 110px;
  min-height: 110px;
  background-color: transparent;
  color: #fff;
  border-radius: 6px;
  padding: 15px;
  border: none;
  font-size: 17px;
  font-weight: 500;
  background-image: url("../img/resi_boxbg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 0 0;
  text-align: center;
  position: relative;
  width: 22%;
  margin-right: 20px;
  margin-left: 20px;
}

.proxies_buttons1 .flex_btn1 {
  color: #fff;
  border-radius: 6px;
  padding: 15px 0px;
  border: none;
  font-size: 17px;
  font-weight: 500;
  background-image: url("../img/resi_boxbg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 0 0;
  text-align: center;
  width: 200px;
}

.resi1 {
  background-color: #d9d9d93b;
  height: 43px;
  width: 43px;
  text-align: center;
  padding: 10px 0px;
  border-radius: 50px;
  margin: auto;
  font-size: 15px;
  font-weight: 500;
}

.position_relative {
  position: relative;
}

.margin_proxy {
  margin-top: 60px;
}

.resi_gb {
  background-color: #484b54;
  border: 2px solid #31343f;
  height: 37px;
  width: 37px;
  border-radius: 50%;
  text-align: center;
  padding: 6px;
  font-size: 15px;
  font-weight: 600;
  position: absolute;
  top: 35px;
  right: 48px;
}

.one {
  background-color: #fff;
  height: 45px;
  width: 45px;
  text-align: center;
  padding: 8px;
  border-radius: 50px;
  margin: auto;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #0000001c;
}

.two {
  background-color: #00b67a;
  border: 2px solid #00b67a;
  height: 37px;
  width: 37px;
  border-radius: 50%;
  text-align: center;
  padding: 6px;
  font-size: 15px;
  font-weight: 600;
  position: absolute;
  top: 5px;
  right: -26px;
  color: #fff;
}

.one_ {
  width: 54px;
  position: relative;
}

.product_page .proxies_buttons1 h3 {
  color: #2de397;
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 10px;
}

.product_page .proxies_buttons1 p {
  font-size: 15px !important;
  margin-top: 0 !important;
  margin-bottom: 0;
  color: rgb(255, 255, 255) !important;
  opacity: 0.6 !important;
}

.product_page .proxies_buttons1 h3 span {
  color: rgba(45, 227, 151, 0.44);
  font-size: 25px;
  position: relative;
  top: -12px;
}

.product_page .proxies_buttons1 img {
  width: 6px;
  margin-bottom: 0px;
  margin-left: 6px;
}

#adventur .proxies_buttons a {
  margin-right: 40px;
  margin-left: 40px;
  background-image: none;
  background-color: #fff;
  padding: 5px 10px 0px 10px;
  border-radius: 6px;
  color: #121118;
  font-size: 17px;
  font-weight: 500;
  border: 1px solid #fff;
  display: flex;
}

.adv_dv {
  padding-top: 5px;
  padding-left: 5px;
}

#adventur .proxies_buttons {
  max-width: 1130px;
}

.trustship {
  margin-top: 2em;
  margin-bottom: 16px;
}

#hero h2 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 20px;
  line-height: 30px;
}

#hero .btn-get-started {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #1acc8d;
}

#hero .btn-get-started:hover {
  background: #17b57d;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.block_mobile {
  display: none;
}

#hero ul {
  display: flex;
  padding: 0;
  max-width: 650px;
  margin: auto;
  margin-top: 2em;
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

.hero-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.section-bg {
  background-color: #f5f5ff;
}

.section-title {
  padding-bottom: var(--space-2xl);
}

/*--------------------------------------------------------------
# font sizes
--------------------------------------------------------------*/

.section-title h2 {
  font-size: var(--font-4xl);
  font-family: var(--font-family);
  font-weight: var(--weight-bold);
}
.section-title span {
  display: block;
  font-size: var(--font-md);
  font-family: var(--font-family);
  font-weight: var(--weight-normal);
  color: var(--text-muted);
  line-height: var(--leading-normal);
  max-width: 600px;
  margin: 0 auto;
}

.about .icon-boxes h3,
.icon-box-style-2 h3,
.hom_fx h3,
.cta-content h3 {
  font-size: var(--font-md);
  font-family: var(--font-family);
}

.icon-box-style-3 h3,
.text-md,
.user-name span:not(.dater),
.user_feedback h4,
.footer-cta .btn,
.about_boxes .btn {
  font-size: var(--font-md);
}

.pricing h5 {
  font-size: var(--font-xl);
}
.footer-cta-container h2 {
  font-size: var(--font-2xl);
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafaff;
  min-height: 40px;
  margin-top: 80px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 64px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

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

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.blur-shadow {
  position: relative;
}
/* .blur-shadow:after {
  background-color: #025bff;
  opacity: 1;
  filter: blur(100px);
  content: "";
  width: 110px;
  height: 141px;
  position: absolute;
  margin: AUTO;
  top: 20px;
  left: 0px;
  right: 0px;
  pointer-events: none;
} */
section#feature {
  overflow: visible;
  background: transparent;
}


.resi_bg {
  background-image: url("../img/groupbg.png");
  background-position: center;
  background-size: 100% 100%;
  border-radius: 5px;
  padding: 20px;
  min-height: 180px;
}

.resi_bg h3{
  color: #fff;
  font-family: "Space Mono", monospace;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 15px;
  margin-top: 10px;
}

.resi_bg p{
  color:#fff;
  font-family: "Space Mono", monospace;
  font-size: 14px !important;
}

.resi_bg img{
  margin-bottom:5px;
  width: 22px;
}

.qty {
  padding: 20px 0;
}

.residential #hero::before
{
  background-image: url("../img/resi_ellip.png");
  background-position:104px 0;
}

.resi_proxy {
  padding-left: 0;
  position: relative;
  z-index: 9;
  margin-top: 50px;
}



.resi_proxy h3{
  color: #fff;
  margin-bottom: 25px;
  font-size: var(--font-2xl);
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 0;

}

.resi_proxy p{
  color:#AEADAD;
  text-align: left!important;
  font-style: normal;
  font-weight: 300 !important;
  line-height: normal;
  font-size: 24px !important;
  padding-right: 65px;
  margin-top: 10px !important;
}

.resi_proxy  .btn{
  border: 1px solid #025BFF;
  width: 150px;
  padding: 8px;
  font-size: 15px;
  font-weight: 300;
}

.residential .tp-logo{
   max-width: 280px;
}

.qty  p{
  color: #D7D2D2;
  font-size: 22px;
  line-height: 33px;  
  padding-left: 7%;
  padding-right: 7%;
  text-align: center;
}

.qty h2{
  font-size: 34px;
  margin-bottom: 25px;
}

.planss 
{
  background-image: none !important;
  background-blend-mode: luminosity;
  background-size: cover;
  background-color: #050a16 !important;
  background-blend-mode: luminosity;
  padding: 0 !important;
  margin-bottom:5em;
}

.planss h2{
  text-align: center;
}

.br0{
  border:none;
}

.resi_about {
  padding: 30px !important;
}

.resi_about h3{
  font-size: 20px;
}

 .resi_about .pricing {
  padding: 10px 10px;
  width: 130px;
  margin: 20px 0;
  gap: 0;
 }

 .resi_about .pricing h5 {
  font-size:18px;
}

.resi_about p{
  color: #fff;
  font-size: 15px;
}

.about_boxes .btn {
  width: 170px;
  border-radius: 10px;
  padding: 4px;
  font-weight: 500;
  font-size: 16px;
  margin: auto;
}

.data_consum {
  border-radius: 10px;
  border: 1px solid rgba(2, 91, 255, 0.5);
  background: linear-gradient(180deg, #050a16 0%, #033082 100%);
  box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.63);
  padding: 20px;
  text-align: center;
  margin-top: 35px;
}

.data_consum h2{
  font-size: var(--font-2xl);
  margin-bottom: 0;
  font-weight: bold;
  color: #ffffffb0;
}

.data_consum h5{
  font-size: var(--font-xl);
  font-weight: bold;
  color: #ffffffb0;
}

 .residential #hero
{
  min-height: 100%;
  background-image: url("../img/Residential-Proxies.png");
  background-size: 100% auto;
}

.resi_boxes {
  padding: 30px 0;
  margin-bottom: 20px;
  background-image: url("../img/Residential Proxies.png") !important;
  background-size: 100% auto;
}


#feature p {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0px;
}

#feature button {
  margin-top: 10px;
  min-width: 120px;
}

.view_trust {
  width: 100%;
  text-align: center;
  margin-top: 35px;
}

.view_trust button {
  background-color: #121118;
  border: 1px solid #121118;
  border-radius: 6px;
  padding: 13px 40px;
  font-size: 18px;
  font-weight: 500;
}

.view_trust button a {
  color: #fff;
}

.view_trust img {
  margin-right: 3px;
  margin-left: 3px;
  margin-top: -4px;
}

#feature h2 {
  color: #121118;
}

.about .icon-boxes h3,
.icon-box-style-2 h3 {
  font-weight: 500;
  color: #fff;
}
.icon-box-style-3 h3 {
  font-weight: 500;
  color: #fff;
  margin: 0px 0px 10px;
}
.icon-box-style-3 p {
  color: #fff;
}
.icon-box-style-3 img {
  width: 70px;
  position: relative;
  top: -10px;
}
.center_imgs {
  text-align: center;
}

.about .icon-box-style-2 {
  margin-top: 25px;
  padding: 25px;
  border: 1px solid #000;
  background: url(../img/mask-group.png);
  background-blend-mode: color;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 10px;
  height: auto;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
  cursor: pointer;
  justify-content: center;
  flex:1;

}
.about .icon-box-style-2.active {
  background: linear-gradient(
    90deg,
    rgba(2, 91, 255, 0) 0%,
    #025bff 100%
  ) !important;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) !important;
  min-height: 270px;
}
.data-content{
  display: none;
}
.data-content.active{
  display: flex;
}


.about .icon-box-style-2.active p {
  display: block;
}
.icon-box-style-2 p {
  display: none;
  text-align: left;
  margin-top: 10px;
}
.about .icon-box-style-3 {
  padding: 15px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid #025bff;
  background: linear-gradient(
    180deg,
    rgba(2, 91, 255, 0.5) 0%,
    rgba(1, 55, 153, 0.5) 100%
  );
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ===== CLEAN SERVICES SECTION ===== */

.services-category {
  margin-bottom: 48px;
}

.services-category:last-child {
  margin-bottom: 0;
}

.services-category-title {
  font-size: 14px;
  font-family: var(--font-family);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.svc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  height: 100%;
}

.svc-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(2, 91, 255, 0.3);
  text-decoration: none;
}

.svc-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.svc-info {
  flex: 1;
  min-width: 0;
}

.svc-info h4 {
  font-size: 16px;
  font-family: var(--font-family);
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px 0;
}

.svc-info p {
  font-size: 13px;
  font-family: var(--font-family);
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.4;
}

.svc-arrow {
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.svc-item:hover .svc-arrow {
  color: #025bff;
  transform: translateX(3px);
}

/* Legacy services CSS kept below for other pages */

/* Services Tabs Wrapper */
.services-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.services-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 8px;
  background: rgba(2, 91, 255, 0.08);
  border-radius: 16px;
  border: 1px solid rgba(2, 91, 255, 0.15);
  backdrop-filter: blur(20px);
  position: relative;
}

.service-tab {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: transparent;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.service-tab:hover {
  background: rgba(2, 91, 255, 0.1);
}

.service-tab.active {
  background: linear-gradient(135deg, var(--main-color) 0%, #0147cc 100%);
  box-shadow: 0 8px 32px rgba(2, 91, 255, 0.35);
}

.service-tab .tab-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.service-tab.active .tab-icon {
  background: rgba(255, 255, 255, 0.2);
}

.service-tab .tab-icon svg {
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-base);
}

.service-tab.active .tab-icon svg {
  color: #fff;
}

.service-tab .tab-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.service-tab .tab-title {
  font-size: var(--font-base);
  font-family: var(--font-family);
  font-weight: var(--weight-semibold);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-base);
}

.service-tab.active .tab-title {
  color: #fff;
}

.service-tab .tab-subtitle {
  font-size: var(--font-xs);
  font-family: var(--font-family);
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
  transition: all var(--transition-base);
}

.service-tab.active .tab-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* Services Content Wrapper */
.services-content-wrapper {
  position: relative;
}

/* Modern Service Cards */
.service-card {
  position: relative;
  padding: var(--space-xl);
  background: linear-gradient(180deg, rgba(10, 20, 40, 0.9) 0%, rgba(5, 15, 35, 0.95) 100%);
  border: 1px solid rgba(2, 91, 255, 0.2);
  border-radius: var(--radius-xl);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-bounce),
              border-color var(--transition-base),
              box-shadow var(--transition-base);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #025bff, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(2, 91, 255, 0.5);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(2, 91, 255, 0.15);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  border-color: rgba(2, 91, 255, 0.4);
  background: linear-gradient(180deg, rgba(2, 91, 255, 0.15) 0%, rgba(5, 15, 35, 0.95) 100%);
}

.service-card.featured::before {
  opacity: 1;
  background: linear-gradient(90deg, #025bff, #00a8ff, #025bff);
}

/* Service Card Badge */
.service-card-badge {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  padding: 6px var(--space-sm);
  font-size: 10px;
  font-family: var(--font-family);
  font-weight: var(--weight-bold);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card-badge.popular {
  background: linear-gradient(135deg, #025bff 0%, #00a8ff 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(2, 91, 255, 0.4);
}

.service-card-badge.premium {
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.service-card-badge.coming-soon {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Service Card Header */
.service-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(2, 91, 255, 0.2) 0%, rgba(2, 91, 255, 0.05) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(2, 91, 255, 0.2);
  flex-shrink: 0;
}

.service-card-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.service-card-header h3 {
  font-size: var(--font-xl);
  font-weight: var(--weight-semibold);
  font-family: var(--font-family);
  color: #fff;
  margin: 0;
}

/* Service Card Description */
.service-card-desc {
  font-size: var(--font-sm);
  font-family: var(--font-family);
  line-height: var(--leading-normal);
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  flex-grow: 0;
}

/* Service Card Features */
.service-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg) 0;
  flex-grow: 1;
}

.service-card-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) 0;
  font-size: 13px;
  font-family: var(--font-family);
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card-features li:last-child {
  border-bottom: none;
}

.service-card-features li svg {
  color: #00d4aa;
  flex-shrink: 0;
}

/* Service Card Button */
.service-card-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--main-color) 0%, #0147cc 100%);
  border: none;
  border-radius: var(--radius-md);
  color: #fff;
  font-size: var(--font-sm);
  font-family: var(--font-family);
  font-weight: var(--weight-semibold);
  cursor: pointer;
  transition: transform var(--transition-bounce),
              box-shadow var(--transition-base),
              background var(--transition-base);
  margin-top: auto;
  overflow: hidden;
}

.service-card-btn:hover {
  background: linear-gradient(135deg, #0066ff 0%, #0052d9 100%);
  box-shadow: 0 12px 30px rgba(2, 91, 255, 0.45);
  transform: translateY(-3px);
}

.service-card-btn span {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card-btn:hover span {
  transform: translateX(-6px);
}

.service-card-btn svg {
  position: absolute;
  right: 24px;
  opacity: 0;
  transform: translateX(-10px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.3s ease;
}

.service-card-btn:hover svg {
  opacity: 1;
  transform: translateX(0);
}

.service-card-btn.disabled {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}

/* Data Content Animation */
.services-redesign .data-content {
  display: none;
  animation: fadeInUp 0.4s ease forwards;
}

.services-redesign .data-content.active {
  display: flex;
  flex-wrap: wrap;
}

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

/* Services Tabs Responsive */
@media (max-width: 992px) {
  .services-tabs {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
  }

  .service-tab {
    width: 100%;
    justify-content: flex-start;
  }
}

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

  .service-tab {
    padding: 12px 16px;
  }

  .service-tab .tab-icon {
    width: 36px;
    height: 36px;
  }

  .service-tab .tab-title {
    font-size: 14px;
  }

  .service-tab .tab-subtitle {
    font-size: 11px;
  }

  .service-card {
    padding: 20px;
  }

  .service-card-header h3 {
    font-size: 18px;
  }

  .service-card-icon {
    width: 48px;
    height: 48px;
  }
}

/* ========================================
   STATS SECTION - PROFESSIONAL
======================================== */
.stats-section-pro {
  position: relative;
  padding: var(--space-lg) 0;
  background: transparent;
  border-top: 1px solid rgba(2, 91, 255, 0.1);
  border-bottom: 1px solid rgba(2, 91, 255, 0.1);
  overflow: hidden;
}

/* Diagonal lines pattern */
.stats-section-pro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(2, 91, 255, 0.03) 40px,
    rgba(2, 91, 255, 0.03) 41px
  );
  z-index: 0;
}

/* Center glow effect */
.stats-section-pro::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(2, 91, 255, 0.15) 0%, rgba(2, 91, 255, 0.05) 40%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* Top line accent */
.stats-section-pro .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(2, 91, 255, 0.4), transparent);
}

/* Decorative floating orbs */
.stats-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
  animation: float-orb 8s ease-in-out infinite;
}

.stats-orb-1 {
  width: 150px;
  height: 150px;
  background: rgba(2, 91, 255, 0.5);
  top: -30px;
  left: 10%;
  animation-delay: 0s;
}

.stats-orb-2 {
  width: 100px;
  height: 100px;
  background: rgba(99, 102, 241, 0.4);
  bottom: -20px;
  right: 15%;
  animation-delay: -3s;
}

.stats-orb-3 {
  width: 80px;
  height: 80px;
  background: rgba(2, 91, 255, 0.35);
  top: 20%;
  right: 5%;
  animation-delay: -5s;
}

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

/* Stats Bar - Centered Horizontal Layout */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: var(--space-sm) var(--space-md);
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(2, 91, 255, 0.4), transparent);
  flex-shrink: 0;
}

.stat-number {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  font-family: var(--font-family);
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: var(--font-xs);
  font-family: var(--font-family);
  color: var(--text-subtle);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Stats Bar Responsive */
@media (max-width: 768px) {
  .stats-bar {
    flex-wrap: wrap;
    padding: 0 var(--space-md);
  }

  .stat-item {
    flex: 0 0 50%;
    padding: var(--space-md);
  }

  .stat-divider {
    display: none;
  }

  /* First row items (1st and 2nd stat-item) */
  .stat-item:nth-of-type(1),
  .stat-item:nth-of-type(2) {
    border-bottom: 1px solid rgba(2, 91, 255, 0.2);
  }

  /* Left column items (1st and 3rd stat-item) */
  .stat-item:nth-of-type(1),
  .stat-item:nth-of-type(3) {
    border-right: 1px solid rgba(2, 91, 255, 0.2);
  }
}

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

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 11px;
  }
}

/* Stats Container - Card Grid Layout (for subpages) */
.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: transform var(--transition-bounce),
              background var(--transition-base),
              border-color var(--transition-base);
}

.stat-card:hover {
  background: linear-gradient(180deg, rgba(2, 91, 255, 0.08) 0%, rgba(2, 91, 255, 0.02) 100%);
  border-color: rgba(2, 91, 255, 0.2);
  transform: translateY(-3px);
}

/* Stats Container Responsive */
@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

@media (max-width: 576px) {
  .stats-container {
    gap: 12px;
  }

  .stat-card {
    padding: 18px 12px;
  }
}

/* ===== Why Quantum - Clean Card Layout ===== */
.why-us-section {
  padding: var(--section-padding) 0;
  background: transparent;
  position: relative;
}

/* Why Cards Grid - 3 columns */
.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}

/* Why Card - Clean minimalist style */
.why-card {
  position: relative;
  background: linear-gradient(180deg, rgba(12, 24, 45, 0.95) 0%, rgba(8, 18, 35, 0.98) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) 28px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-bounce),
              border-color var(--transition-base),
              box-shadow var(--transition-base);
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Featured card variant */
.why-card.featured {
  border-color: rgba(2, 91, 255, 0.2);
}

.why-card.featured:hover {
  border-color: rgba(2, 91, 255, 0.35);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(2, 91, 255, 0.08);
}

/* Card Text Section */
.why-card-text {
  margin-bottom: var(--space-lg);
}

.why-card-text h3 {
  font-family: var(--font-family);
  font-size: var(--font-xl);
  font-weight: var(--weight-bold);
  color: #fff;
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--leading-snug);
}

.why-card-text h3.featured-title {
  color: inherit;
}

.why-card-text p {
  font-family: var(--font-family);
  font-size: var(--font-sm);
  font-weight: var(--weight-normal);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* Card Illustration Section */
.why-card-illustration {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 140px;
  margin-top: auto;
}

.why-card-illustration svg {
  width: 100%;
  max-width: 200px;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.why-card:hover .why-card-illustration svg {
  opacity: 1;
  transform: scale(1.02);
}

/* Why Cards Responsive */
@media (max-width: 1100px) {
  .why-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .why-us-section {
    padding: var(--section-padding-mobile) 0;
  }

  .why-cards-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .why-card {
    padding: var(--space-xl) var(--space-lg);
  }

  .why-card-text h3 {
    font-size: var(--font-lg);
  }

  .why-card-illustration {
    min-height: 120px;
  }
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50px;
  transition: 0.5s;
}
.about p {
  color: #fff;
  font-size: 17px;
}
.about .icon-box .icon i {
  font-size: 32px;
}

.icon img {
  height: 62px;
  width: auto;
}

.about .icon-box .title a {
  color: #a963f4 !important;
}

.feature_box {
  margin-bottom: 30px;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  color: #a963f4;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #1acc8d;
}
#contact p {
  color: #fff;
}

#contact {
  background-color: #0a080e;
  color: #fff;
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
}

.about .video-box {
  min-height: 300px;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#3f43fd 50%, rgba(63, 67, 253, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(63, 67, 253, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.text_left {
  text-align: center;
  padding-left: 25px;
}

.text_right {
  text-align: center;
  padding-right: 25px;
}

.feature_box .title {
  color: #a963f4 !important;
}

.second_about .feature_box {
  margin-bottom: 80px;
}

.second_about .icon .fa {
  margin-bottom: 15px;
}

.second_about .feature_box .title {
  margin-bottom: 10px;
}

.feature_box .title {
  color: #fff !important;
  font-size: 30px;
  font-weight: 500;
}

.icon .fa {
  background: linear-gradient(180deg, #ccf 30%, #c294f1 50%, #430a80 100%);
  background-clip: border-box;
  font-size: 30px;
  margin-bottom: 10px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.max-wid {
  max-width: 70%;
  height: auto;
  margin-top: 90px;
}

.max-wid2 {
  max-width: 80%;
  height: auto;
}

.about .play-btn:hover::after {
  border-left: 15px solid #3f43fd;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f5f5ff;
  transition: ease-in-out 0.3s;
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: #010483;
  transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
  color: #01036f;
}

.features .icon-box:hover {
  background: #ebebff;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: #f5f5ff;
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  background: #1acc8d;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  width: 48px;
  height: 48px;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #010483;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details .content + .content {
  margin-top: 100px;
}

.details .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #010483;
}

.details .content ul {
  list-style: none;
  padding: 0;
}

.details .content ul li {
  padding-bottom: 10px;
}

.details .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #1acc8d;
}

.details .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/cta-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(1, 3, 111, 0.8);
}

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

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

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

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

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

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

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

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1acc8d;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
}

.team .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  border-radius: 4px;
  overflow: hidden;
}

.team .member img {
  transition: all ease-in-out 0.4s;
}

.team .member:hover img {
  transform: scale(1.1);
}

.team .member .member-info {
  position: absolute;
  bottom: -80px;
  left: 0px;
  right: 0px;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #01036f;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #0d12fc;
  bottom: 0;
  left: calc(50% - 25px);
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #01036f;
}

.team .member .social {
  margin-top: 10px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #01036f;
}

.team .member .social a:hover {
  color: #1acc8d;
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 30px;
  background: transparent;
  text-align: left;
  box-shadow: none;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  margin-bottom: 3em;
}

.pricing h3 {
  font-weight: 400;
  margin: 0;
  padding: 20px 0px 30px 0;
  font-size: 20px;
  font-weight: 600;
  color: #777777;
  background: transparent;
}

.pricing h4 {
  font-size: 40px;
  color: #a963f4;
  font-weight: 600;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #e6e6e6;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
  min-height: 220px;
}

.pricing ul li {
  padding-bottom: 16px;
  color: #e6e6e6;
}

.pricing ul i {
  color: #1acc8d;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
  padding-bottom: 50px;
}
.pricing .btn-buy:hover {
  background: linear-gradient(to right, #a963f4 0%, #c295f1 100%);
}

.pricing .btn-buy {
  background: linear-gradient(to right, #c295f1 0%, #a963f4 100%);
  display: inline-block;
  padding: 12px 35px 10px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  text-transform: uppercase;
}

.pricing .featured h3 {
  color: #fff;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #1acc8d;
  color: #fff;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 30px;
  background: #0a080e;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  padding: 0;
  outline: none;
  cursor: pointer;
  color: #a963f4;
  text-decoration: none;
}
.faq .faq-list a:hover {
  color: #a963f4;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #a963f4;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #fff;
}
.faq .faq-list a.collapsed:hover {
  color: #a963f4;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
    width: 800px;
    margin: auto;
  }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: transparent;
  margin: auto;
  margin-bottom: auto;
  margin-bottom: 5em;
  text-align: center;
}
.faq .faq-list {
  padding: 0;
  width: 800px;
  margin: auto;
}
.contact .info i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background-image: linear-gradient(to right, #a963f4 0%, #c295f1 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info i:hover {
  background-image: linear-gradient(to right, #c295f1 0%, #a963f4 100%);
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #010483;
}

.contact .info p {
  padding: 12px 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #0205a1;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #34e5a6;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#footer {
  padding: 0px;
  color: #fff;
  font-size: 14px;
  background-size: auto auto !important;
  background-repeat: no-repeat !important;
  background-position: 0 0 !important;
}

#footer .footer-top {
  padding: 60px 0 60px 0;
  border-top: 1px solid var(--main-color);
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #010246;
  color: #fff;
  border-top: 4px solid #1acc8d;
  text-align: center;
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}

.second_about .section-title {
  padding-bottom: 35px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 11px 0;
  margin-right: 5px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
  background-image: linear-gradient(to right, #a963f4 0%, #c295f1 100%);
}

#footer .footer-top h4 {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
  margin-top: 20px;
}

.copyrights {
  border-top: 1px solid #ffffff0f;
  padding-top: 40px;
  margin-bottom: 0 !important;
  margin-top: 40px;
}

.copyrights {
  text-align: center;
}

.copyrights p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 19px;
}

#footer .footer-top .footer-links {
  margin-bottom: 0px;
}

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #c385fa;
  font-size: 18px;
  line-height: 1;
}

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

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

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  text-decoration: none;
  font-size: 13px;
}
#footer .footer-top .footer-links ul a:hover {
  color: var(--main-color);
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px 6px 15px;
  position: relative;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #1acc8d;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #149f6e;
}

#footer .copyright {
  border-top: 1px solid #010479;
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 50px;
  text-align: center;
  font-size: 16px;
  color: #fff;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}

.logo {
  flex: 0 0 auto;
  min-width: 200px;
}

#navbar {
  margin-top: 8px;
  position: relative;
}

.right_dash {
  flex: 0 0 auto;
  min-width: 200px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.mg35 {
  margin-top: 35px;
}

.mgtop8 {
  padding-top: 3em;
}

.reaper_btn {
  min-width: auto;
  padding: 5px 25px 2px 25px !important;
  color: #fff;
  background: 0 0;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600 !important;
  line-height: 38px !important;
  margin: 0 8.5px;
  transition: all 0.35s ease;
  border: 2px solid #fff;
  border-radius: 40px;
}

.reaper_btn::hover {
  background-image: -webkit-linear-gradient(left, #46bdf4 0%, #2b56f5 100%);
  background-image: linear-gradient(to right, #46bdf4 0%, #2b56f5 100%);
}

#hero h5 {
  color: #fff;
  margin: 0 0 20px 0;
  font-size: 17px;
  font-weight: 400;
}

.mgtop3 {
  margin-top: 3em;
}

.button1 {
  background-color: #c385fa;
  min-width: auto;
  padding: 13px 39px 10px 40px;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: 38px;
  margin: 0;
  transition: all 0.35s ease;
  border: 0;
  border-radius: 40px;
  margin-right: 10px;
  text-decoration: none;
}

.button2 {
  background-color: #fff;
  min-width: auto;
  padding: 13px 39px 10px 40px;
  color: #684591;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: 38px;
  margin: 0 8.5px;
  transition: all 0.35s ease;
  border: 0;
  border-radius: 40px;
  text-decoration: none;
}

.button2:hover,
.button1:hover {
  background-color: #c385fa;
  color: #fff;
}

#pricing {
  color: #fff;
  background-image: url("../img/hero-bg.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
}

#faq {
  background-color: #0a080e;
  background-image: url(../img/star2.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: auto;
}

#faq p {
  color: #fff;
  font-size: 16px;
}

.credits a {
  color: #a963f4;
  font-weight: 700;
  text-decoration: none;
}

.credits a {
  color: #a963f4;
}

.txt_clr {
  background: #c385fa;
  background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.comsun {
  color: #a963f4 !important;
  font-size: 31px;
  font-weight: 700;
  line-height: 40px;
}

.mgtop5 {
  margin-top: 10.1em !important;
}

.terms_ #header {
  background: #0a080e;
  height: 80px;
  padding-top: 10px;
}

.terms_ #header .logo img {
  margin-top: 0;
}

.terms_ #navbar {
  margin-top: 0;
  left: 0;
}

.terms_wrape h1 {
  margin-top: 2em;
  text-align: center;
  color: #684591;
  font-size: 35px;
  font-weight: 700;
}

.terms_ {
  font-family: "Figtree", sans-serif;
}

.terms_ .right_dash {
  position: relative;
  top: 6px;
}

.terms_wrape h2 {
  font-size: 23px;
  font-weight: 500;
  color: #684591;
  font-family: "Figtree", sans-serif !important;
  margin-bottom: 15px;
}

.terms_wrape p {
  color: #333;
  font-size: 14px;
  text-align: justify;
  font-weight: 400;
}

.terms_p {
  margin-top: 30px;
  border: 1px solid #c385fa;
  border-radius: 3px;
  padding: 30px;
  box-shadow: 2px 2px 8px #ddd;
}

.terms_ .header-scrolled .logo img {
  margin-top: 0px !important;
}

.width-100 {
  width: 100%;
}

#hero .animated {
  width: 75%;
  margin: auto;
}

.provide_img img {
  width: auto;
  max-width: 100px;
}

.counter_ul {
  margin: 0;
  padding: 0;
  margin-top: 2em;
  display: flex;
}

.counter_ul li:last-child {
  border-right: none;
}

.counter_ul li {
  list-style: none;
  border-right: 2px solid #dcb9f9b8;
  color: #fff;
  font-size: 23px;
  font-weight: bold;
  padding: 0 20px;
  line-height: 25px;
  height: 50px;
}

.counter_ul li p {
  color: #dcb9f9b8;
  font-size: 15px;
  font-weight: 400;
}

#testimonials {
  padding: 100px 0 100px;
  background: transparent;
}

/* Removed: #testimonials h2 override - now uses .section-title h2 */

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 7));
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 7));
    transform: translateX(calc(-250px * 7));
  }
}

.slider-nav .slick-slide,
.slider-nav
  .slick-slide[aria-hidden="true"]:not(.slick-cloned)
  ~ .slick-cloned[aria-hidden="true"] {
  transition: all 0.4s ease-in-out;
  opacity: 0.35;
}

/* Active center slide (You can change anything here for cenetr slide)*/
.slider-nav .slick-center,
.slider-nav
  .slick-slide[aria-hidden="true"]:not([tabindex="-1"])
  + .slick-cloned[aria-hidden="true"] {
  transform: scale(1.1);
}
.slider-nav .slick-current.slick-active {
  transform: scale(1.1);
  opacity: 1;
}
.slider {
  background: pr;
  box-shadow: none;
  height: auto;
  min-height: 5px;
  max-height: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.slider::before,
.slider::after {
  background: transparent;
  content: "";
  height: auto;
  position: absolute;
  width: 100%;
  z-index: 2;
  max-height: 300px;
}
.slider::after {
  right: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  -webkit-animation: scroll 40s linear infinite;
  animation: scroll 40s linear infinite;
  display: flex;
  width: 100%;
}

.slider .slide {
  height: auto;
  width: 450px;
  margin-bottom: 2em;
  margin-right: 10px;
  background-color: transparent;
  border-radius: 0;
}

.test_main {
  background-color: #0004039e;
  padding: 50px;
  margin-top: 30px;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #0004039e;
  width: 450px;
  min-height: 370px;
}

.test_main p {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 2em;
  min-height: 150px;
}

.test_main h5 {
  font-size: 20px;
  font-weight: bold;
  color: #c888fb;
}

.test_main h5 a {
  color: #c888fb;
  text-decoration: none;
}

.port_img {
  margin: auto;
  width: 50px;
  border-radius: 50px;
  margin-bottom: 1em;
}

.padding-top50 {
  padding: 50px 0 0 0;
}

.text-right {
  text-align: right;
}

.padding-top3 {
  margin-top: 6em;
}

#feature .max-wid2 {
  max-width: 100%;
  height: auto;
}

.padding-right111 {
  padding-right: 100px;
}

.paddin-left100 {
  padding-left: 100px;
}

.border_left {
  border-left: 3px solid #cb8dff;
  padding-left: 30px;
}

.border_right {
  border-right: 3px solid #cb8dff;
  padding-right: 30px;
}

.flex {
  display: flex;
}

#footer .flex li {
  padding: 0px 5px 0px 0px !important;
}

#footer .button1 {
  padding: 20px 40px 20px 40px !important;
}

.shape_container {
  position: absolute;
  z-index: 0;
  top: 0;
  width: 100%;
}

.shapes {
  position: relative;
  width: 100%;
}

.shapes div {
  position: absolute;
}

.shapes img {
  position: relative;
}

.shape1 {
  top: 6.5em;
  left: 3%;
}

.shape2 {
  left: 16%;
  top: 14em;
}

.shape3 {
  left: 4%;
  top: 16em;
}

.shape4 {
  top: 9em;
  left: 48%;
}

.shape5 {
  right: 35%;
  top: 11em;
  float: right;
}

.shape6 {
  right: 23%;
  top: 11em;
}

.shape7 {
  right: 8%;
  top: 10em;
}

.shape8 {
  top: 21em;
  right: 8%;
}

.shape8 img {
  float: right;
}

.shape9 {
  top: 25em;
  right: 22%;
}

.shape9 img {
  float: right;
}

.shape10 {
  top: 18em;
  left: 39%;
}

.shape10 img {
  float: right;
}

.shape11 {
  top: 33em;
  left: 4%;
}

.shape11 img {
  float: right;
}

.shape12 {
  top: 29em;
  left: 13%;
}

.shape12 img {
  float: right;
}

.shape13 {
  top: 33em;
  left: 37%;
}

.shape13 img {
  float: right;
}

.shape14 {
  top: 32em;
  right: 9%;
}

.shape14 img {
  float: right;
}

.shape15 {
  top: 53em;
  left: 8%;
}

.shape15 img {
  float: right;
}

.shape16 {
  top: 49em;
  right: 9%;
}

.shape16 img {
  float: right;
}

.info .button1 {
  background-color: #a963f4;
  width: 180px;
}

.contact .info i {
  background-image: none;
}

.contact .info i:hover {
  background-image: none;
}

.discord_ {
  width: 17px;
  margin-right: 5px;
}

.mobile_d {
  display: none;
}

.info a {
  margin-right: 30px;
  color: #fff;
  text-decoration: none;
}

.toggle_icon {
  display: none;
  float: right;
  position: absolute;
  top: 10px;
  cursor: pointer;
  z-index: 99999;
  right: 10px;
}

.toggle_icon .hide-nav {
  display: none;
}
.toggle_icon img {
  width: 30px;
  position: relative;
  top: -5px;
}

.terms_wrape h3 {
  color: #684591;
  font-size: 20px;
  font-weight: 500;
}

/* Accordion styles */
#faq .tabs {
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

#faq .tab {
  width: 100%;
  color: white;
  overflow: hidden;
}

#faq .tab-label {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: #0004039e;
  font-weight: 600;
  cursor: pointer;
  border-radius: 3px;
  font-size: 18px;
  border: 1px solid #0004039e;
  margin-bottom: 20px;
}

#faq .tab-label:hover {
  background: #0004039e;
  border: 1px solid #0004039e;
  color: #c385fa;
}

#faq input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

#faq .tab-label::after {
  content: "❯";
  width: 30px;
  height: 30px;
  transition: all 0.35s;
  color: #fff;
  background-color: #c385fa;
  border-radius: 2px;
  text-align: center;
  padding: 2px;
  transform: rotate(-90deg);
}
#faq .tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #9d9d9d;
  background: transparent;
  transition: all 0.35s;
  font-size: 15px;
  font-weight: 600;
}

#faq .tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #0004039e;
  cursor: pointer;
}
#faq .tab-close:hover {
  background: #0004039e;
}

#faq input:checked + .tab-label {
  background: #0004039e;
}
#faq input:checked + .tab-label::after {
  transform: rotate(90deg);
}
#faq input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 2px 0px 25px 15px;
}

.left_tabs,
.right_tabs {
  width: 48%;
  margin-right: 2%;
}

.dis_flex {
  display: flex;
}

.navbar {
  position: relative;
  width: 100%;
}

.mega-menu {
  position: absolute;
  top: 101%; /* Aligns just below the navbar */
  left: 0;
  width: 100%; /* Full width */
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  flex-shrink: 0;
  background: #050a16;
  box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  overflow: auto;
  max-height: 500px;
}

.mega-menu li {
  list-style: none;
  margin: 10px;
  width: 30%; /* Adjust width as needed */
}

.mega-navitem {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  gap: 10px;
}

.mega-navitem:hover {
  color: #d8d6d6;
}
.icon-hold {
  height: 100%;
  width: 50px;
  text-align: center;
}
.icon-hold img:not(.icon-last) {
  width: 30px;
}
.icon-hold img.icon-last {
  width: 100%;
  min-width: 50px;
}
.nav-close {
  position: absolute;
  right: 20px;
  top: 0px;
}

.megamenu-close img {
  width: 30px;
}

.mega-content {
  display: flex;
  flex-direction: column;
}

.mega-content span {
  font-size: 14px;
}

.mega-menu.show {
  display: flex;
}

/* Media Queries */
@media (max-width: 768px) {
  .mega-menu li {
    width: 100%; /* Stack items on smaller screens */
  }
  .mega-content {
    width: 100%;
  }
}

.navbar .links li .sub-menu img {
  width: 25px;
  margin-right: 10px;
}

.mega-content {
  display: flex;
  flex-direction: column;
  line-height: initial;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 5px;
  min-width: 225px;
  border: 1px solid #025bff;
}

.mega-content span:first-child {
  font-size: 14px;
}

.mega-content span:last-child {
  font-size: 13px;
  font-style: italic;
}

.about-form .box {
  background: #131419;
  border-radius: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  max-width: 1144px;
  padding: 125px 88px;
  margin: 0 auto;
  position: relative;
  margin-top: 3em;
}

.about-form .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #212227;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  width: 100%;
  height: 60px;
}

.case_center {
  width: 100%;
  text-align: center;
}

.about-form .box .section-head {
  margin-bottom: 60px;
}

.section-head h1 {
  color: #92f8ff;
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 20px;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.input {
  background: #1c1c1c9e;
  border-radius: 5px;
  border: none;
  padding: 0 22px;
  color: #8b8b8b;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  outline: none;
  height: 50px;
}

.w-100 {
  width: 100% !important;
}

textarea.input {
  height: unset;
  min-height: 150px;
  padding: 14px 22px;
  resize: none;
}

.btn-form {
  background: #a963f4;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  padding: 12px 32px;
  height: 50px;
  line-height: 20px;
  max-width: 218px;
}

.btn-form,
.btn-outline {
  display: inline-block;
  font-size: 14px;
  transition: all 0.3s ease;
}

.mt-5 {
  margin-top: 3rem !important;
}
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.about-form .box::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 40px;
  background-image: url("../img/about-contact.svg");
  background-repeat: no-repeat;
  width: 46px;
  height: 10px;
}

.box {
  margin-top: 3em;
}
#about {
  background-image: url(../img/pricing-bg.png);
  background-blend-mode: luminosity;
  background-size: cover;
  background-color: #025bff; /* 35% luminosity */
  background-blend-mode: luminosity; /* Apply the luminosity effect */
}

#about .about_boxes {
  padding: 40px 25px 25px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  border: 1.3px solid rgba(2, 91, 255, 0.5);
  border: 1.3px solid rgb(50 96 182 / 50%);
  background: linear-gradient(180deg, #050a16 0%, #033082 100%);
  box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.63);
  background-size: cover;
  background-repeat: no-repeat;
}

.home_box {
  border: 1px solid #0000001f;
  background-color: #fff;
  width: 35px;
  height: 35px;
  text-align: center;
  border-radius: 5px;
  padding: 2px;
  margin-right: 13px;
}

.home_box img {
  width: 25px;
}

.hom_fx h3 {
  color: #fff;
  font-weight: 500;
  margin-bottom: 00px;
  margin-top: 0px;
}

.pricing {
  border-radius: var(--radius-md);
  border: 1px solid #025bff;
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 180px;
  margin: 15px auto;
}
.pricing span {
  font-weight: 300;
}
.pricing h5 {
  font-weight: 500;
}
.hom_fx {
  display: flex;
}

.about_boxes1 {
  padding: 0;
  background-color: #131419;
  margin-bottom: 3em;
  min-height: 300px;
  border-radius: 4px;
  border: 1px solid #2a2a2b;
}

.about_header {
  background-color: #212227;
  height: 60px;
  padding: 17px;
  text-align: right;
  color: #c888fb;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
}

.about_mains {
  padding: 30px 20px;
}

.top_flex {
  display: flex;
}

.left_box {
  width: 67%;
  margin-bottom: 10px;
}

.left_box p {
  color: #1d1d1ba6;
  margin-top: 10px;
}

.right_text button {
  background-color: #00b67a;
  color: #fff;
  border: 1px solid rgb(0, 182, 122);
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  padding: 6px 20px;
}

.right_text button a {
  color: #fff;
}

.blackbtn button {
  background-color: #121118 !important;
  border: 1px solid #121118;
}

.right_text {
  width: 33%;
  text-align: right;
}

.right_text h5 {
  color: rgba(18, 17, 24, 0.7);
  font-size: 19px;
  font-weight: 600;
  margin-top: 20px;
}

.grn {
  color: rgba(0, 182, 122, 1);
}

.right_text h5 span {
  color: #121118;
}

.about_pp {
  color: #fff;
  font-size: 16px !important;
  margin-top: 5px !important;
}

.max-width1350 {
  max-width: 1150px !important;
}

.liness::before {
  position: absolute;
  content: "";
  background-image: url("../img/line.png");
  width: 111px;
  height: 1px;
  top: 50%;
  right: -95px;
  z-index: -1;
}

.wid100 {
  width: 100%;
}

.left_box i {
  color: #c385fa;
  font-size: var(--font-2xl);
  font-weight: bold;
}

.padding_right {
  padding-left: 0;
  padding-right: 60px;
}

.padding_left {
  padding-right: 0;
  padding-left: 60px;
}

#times {
  background-color: #f6f9fc;
}

#usecase {
  background-color: #fff;
}

#usecase .section-title {
  text-align: center;
}

#usecase .section-title h2 {
  color: #121118;
  font-size: var(--font-xl);
  font-weight: 600;
}

#usecase .section-title p {
  color: rgba(29, 29, 27, 0.65);
}

#map .left h2 {
  font-weight: 600;
  font-size: 38px;
  line-height: 44px;
  color: rgb(18, 17, 24);
  margin-bottom: 35px;
}

#map .left p {
  line-height: 25px;
  font-size: 18px;
  padding-right: 15px;
  color: #121118a6;
}

.data_conn {
  text-align: center;
}

.data_conn img {
  width: auto;
}

.blck {
  color: rgba(27, 27, 43, 1);
}

#map .left span {
  font-weight: 800;
  font-size: 14px;
  line-height: 17px;
  color: #fff;
  margin-bottom: 0 !important;
}

#map video {
  width: 100%;
  height: auto;
}

.ex_bg {
  background-image: url("../img/ex.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 243px;
  padding-bottom: 42px;
}

#map {
  background-color: #fff;
}

.dra_img {
  width: 67%;
}

.centers {
  text-align: center;
}

.mons_img {
  position: relative;
  left: 50px;
  top: -55px;
  border-radius: 4px;
  border: 1px solid #2f3031;
}

/* Hero p styles moved to .hero-content p */

.hero_list li {
  list-style: none;
  margin-right: 25px;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}

.hero_list img {
  margin-right: 7px;
  margin-top: -5px;
}

.start_google {
  display: flex;
  margin-top: 3em;
  margin-bottom: 1em;
  max-width: 523px;
  margin-left: auto;
  margin-right: auto;
}

.btn-default {
  background-color: var(--main-color);
  color: #fff;
  border: 1px solid var(--main-color);
  border-radius: var(--radius-md);
  padding: 10px 24px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-default:hover {
  background-color: #fff;
  color: var(--main-color);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-outline-default {
  background-color: transparent;
  color: #fff;
  border: 1px solid var(--main-color);
  border-radius: var(--radius-md);
  padding: 10px 24px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-outline-default:hover {
  background-color: #fff;
  color: var(--main-color);
  border-color: #fff;
  transform: translateY(-2px);
}
.footer-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.footer-cta .btn {
  width: 200px;
  border-radius: var(--radius-md);
  padding: 8px 3px;
}
.about_boxes .btn {
  width: 100%;
  border-radius: var(--radius-md);
  padding: 10px 10px;
  font-weight: 500;
}
.right_dash .btn:not(.contact-us) {
  width: 140px;
  font-size: 1rem;
}

.getgoogle {
  background-color: #fff;
  color: #1b1b2b;
  width: 200px;
  border-radius: var(--radius-md);
  padding: 10px 3px;
  font-size: 15px;
  font-weight: 500;
}

.getgoogle:hover {
  color: #1b1b2b;
}

.getstart,
.getstart:hover {
  color: #1b1b2b;
}

.getgoogle img {
  margin-right: 10px;
}

.product_varity {
  background-color: #f6f9fc;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.65);
  border-radius: 50px;
  padding: 8px 10px;
  width: 342px;
  margin: auto;
}

.wid300 {
  width: 300px;
}

.product_varity span {
  color: rgba(0, 0, 0, 1);
  background-color: rgba(0, 0, 0, 0.2);
  padding: 2px 11px;
  border-radius: 50px;
  margin-right: 3px;
}

.product_varity img {
  margin-left: 6px;
}

#about h2 {
  font-weight: 500;
}

.product_hr {
  border-bottom: 3px solid rgba(0, 0, 0, 0.12);
  width: 100%;
  margin-bottom: 20px;
}

.about_boxes ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  flex-direction: column;
  width: 240px;
  margin: 0 auto 30px;
  color: white;
}

.about_boxes ul li {
  list-style: none;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.about_boxes ul li img {
  margin-right: 10px;
  width: 21px;
}

.data_bor {
  background-color: #f6f9fc !important ;
  border: 1px solid #f6f9fc !important;
}

.prox_prod {
  color: rgb(0, 182, 122);
  font-size: 17px;
  font-weight: 600;
}

/* Removed: #pricing h2 override - now uses .section-title h2 */

.center_globe {
  text-align: center;
}

.center_globe img {
  width: 100%;
}

.gra {
  color: #ffffffa6;
}

#pricing ul {
  margin: 0;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 0;
  list-style: none;
  margin-bottom: 40px;
  margin-top: 40px;
}

#pricing ul li {
  font-size: 17px;
  margin-bottom: 15px;
}

#pricing ul li img {
  margin-right: 10px;
}

.provide_img button {
  background-color: rgba(45, 227, 151, 1);
  border: 1px solid rgba(45, 227, 151, 1);
  border-radius: 4px;
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 600;
}

.provide_img button a {
  color: rgba(27, 27, 43, 1);
}

.country_flag ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.country_flag ul li {
  width: 50%;
  margin-bottom: 25px;
  text-align: center;
}

.country_flag p {
  color: rgba(255, 255, 255, 0.65);
}

.country_flag h5 {
  color: #fff;
}

.country_flag ul li img {
  margin-right: 0px;
  margin-bottom: 15px;
}

.success_box {
  background-color: rgba(246, 249, 252, 1);
  border-radius: 8px;
  padding: 15px;
}

.succ_flex {
  display: flex;
}

.succ_check {
  width: 50px;
  height: 50px;
  text-align: center;
  padding: 11px;
  border-radius: 6px;
  margin-right: 18px;
}

.product_page .succ_flex {
  margin-bottom: 14px;
}

.product_page .succ_check {
  width: 17%;
}

.succ_check img {
  width: auto;
}

.succ_text h5 {
  color: #121118;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 2px;
}

.ligh_blu {
  background-color: rgba(38, 149, 255, 0.2);
}

.talk_expert {
  margin-top: 50px;
}

.talk_expert .getstart,
.talk_expert .getgoogle {
  padding: 15px 50px;
}

.talk_expert .getgoogle {
  border: 2px solid rgba(45, 227, 151, 1);
}

.talk_expert .getstart a {
  color: #121118;
}

.talk_expert .getgoogle {
  color: rgba(45, 227, 151, 1);
}

.use_case {
  background-image: url("../img/country-bg.png");
  width: 100%;
  background-size: 100% 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
  border-radius: 10px;
  padding: 30px;
  padding-bottom: 20px;
}

.use_case ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.use_case li {
  width: 46%;
  background-color: #ffffff1a;
  border: 3px solid #ffffff1a;
  text-align: center;
  padding: 25px;
  padding-right: 25px;
  padding-left: 25px;
  border-radius: 7px;
  margin-right: 2%;
  margin-bottom: 4%;
  font-size: 20px;
  color: #fff;
  margin-left: 2%;
  display: flex;
  padding-left: 48px;
  padding-right: 48px;
}

.use_case li img {
  margin-right: 10px;
}

.use_case h4 {
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 5px;
}

.band_width {
  background-color: #fff;
  padding: 35px;
  border-radius: 11px;
  margin-top: 3em;
}

.right_band h3 {
  color: #121118;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 3px;
}

.band_boxs .succ_check {
  width: 12%;
}

.band_boxs {
  display: flex;
  border-bottom: 1px dashed #00000029;
  margin-bottom: 20px;
  padding-bottom: 5px;
}

.nobr {
  border-bottom: none;
}

.power_box {
  background-image: url("../img/powerbg.png");
  width: 100%;
  border-radius: 1px;
  padding: 20px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  text-align: center;
}

.power_img {
  border: 1px solid #0000001c;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  text-align: center;
  padding: 10px;
  position: relative;
  margin: auto;
  margin-top: auto;
  margin-bottom: auto;
  background-color: #fff;
  margin-top: -50px;
  margin-bottom: 15px;
}

.power_box h4 {
  color: #121118;
  font-size: 20px;
  font-weight: 600;
}

.power_box p {
  margin-bottom: 0;
  color: #1d1d1ba6;
}

#adventur {
  background-image: url("../img/hero-bg.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
  text-align: center;
  padding: 15px;
}

.month {
  background-color: #1960e7;
  border: 1px solid #1960e7;
  width: 63px;
  border-radius: 50px;
  right: -55px;
}

.year {
  background-color: #121118;
  border: 1px solid #121118;
  width: 63px;
  border-radius: 50px;
  right: -55px;
}

.light_yellow {
  background-color: rgba(255, 159, 10, 0.2);
}

.week {
  background-color: #00b67a;
  border: 2px solid #00b67a;
  width: 63px;
  border-radius: 50px;
  right: -55px;
}

#adventur .section-title {
  padding-bottom: 0px;
  background-image: url("../img/advg.png"), url("../img/advg.png"),
    url("../img/advg.png"), url("../img/advg.png");
  background-size: 274px auto, 285px auto, 200px auto, 230px auto;
  background-repeat: no-repeat;
  background-position: 7.5em 14em, 25.5em 14em, 44.5em 14em, 58.5em 14em;
}

#adventur h2 {
  color: #fff;
  margin-top: 5px;
}

#adventur h2 span {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 5px;
}

#adventur p {
  color: #ffffffa6;
}

.mgtop {
  margin-top: 3em;
}

.blog_box {
  background-image: url("../img/hero-bg.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  min-height: 190px;
  border-radius: 8px;
  text-align: right;
  color: #fff;
}

.blog_box p {
  font-size: 22px;
  font-weight: 500;
  margin-top: 2em;
  text-align: center;
}

.blog_box button {
  background-color: #fff;
  border: 1px solid #fff;
  margin-top: 15px;
  margin-right: 15px;
  border-radius: 5px;
  padding: 10px 25px;
  font-size: 18px;
  font-weight: 500;
}

.blog_box button a {
  color: rgba(0, 0, 0, 1);
}

.blog_box button img {
  margin-left: 5px;
}

.blog_description p {
  color: #121118a6;
  font-size: 18px;
  line-height: 24px;
}

.blog_description ul {
  list-style: none;
  color: #121118;
  font-size: 19px;
  font-weight: 500;
  display: flex;
  margin: 0;
  padding: 0;
}

.blog_description ul li {
  margin-right: 15px;
  border-right: 1px solid #0000001f;
  padding-right: 15px;
}

.blog_description h4 {
  color: #121118;
  font-size: 21px;
  font-weight: 500;
}

.blog_description {
  margin-top: 15px;
}

.blog_view {
  text-align: center;
  margin-top: 3em;
}

.blog_view button {
  border: 1px solid #2de397;
}

.blog_view a {
  color: #000;
}

#times .section-title {
  text-align: center;
}

#times .section-title h2 {
  color: #121118;
  font-size: var(--font-xl);
  font-weight: 600;
  margin-bottom: 0;
}

#times .section-title img {
  margin-top: -25px;
}

#times .section-title p {
  color: #1d1d1ba6;
  font-size: 18px;
}

.blog_container {
  background-color: #f6f9fc;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 25px;
}

.pay_method,
.footer_social {
  display: flex;
}

.footer_logo img.footer-logo {
  margin-top: 20px;
}
.footer_logo h5 {
  margin-top: 1.5em;
}

.footer_logo h5 {
  font-size: 19px;
  margin-bottom: 15px;
}

.footer_logo .footer-logo {
  height: 28px;
  width: auto;
}

.discord-comnunity {
  width: 210px;
  float: right;
  margin-top: 20px;
}
.footer_logo p {
  font-size: 16px;
}

.footer_logo span {
  color: rgba(255, 255, 255, 0.65);
}

.footer_social {
  padding-bottom: 50px;
  position: relative;
}

.footer_social img {
  margin-top: 0;
  width: 22px;
  margin-right: 15px;
}
.footer_social a:hover img {
  opacity: 0.8;
}

.text-lighter {
  color: var(--text-lighter);
}

.divider {
  background-color: var(--main-color);
  width: 1px;
  height: 100%;
  position: absolute;
  right: 30px;
  left: auto;
  top: 0px;
  bottom: 0px;
}

.pay_method img {
  margin-top: 0;
  width: auto;
  margin-right: 10px;
}

.we {
  color: rgba(255, 255, 255, 0.65);
}

.trust_wall {
  padding: 20px;
}

.trust_wall img {
  width: auto;
  margin-bottom: 25px;
}

.trust_wall h5 {
  color: rgba(18, 17, 24, 1);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 12px;
}

.trust_wall p {
  color: rgba(29, 29, 27, 0.65);
  font-size: 17px;
}

.pack_price {
  margin-top: 30px;
  font-size: 19px !important;
  font-weight: 500;
}

.pack_price span {
  color: rgba(0, 0, 0, 1);
}

.pack_price .span {
  color: rgba(0, 182, 122, 1);
}

.slick-slide {
  text-align: center;
}

.user_feedback h4 {
  color: #fff;
  margin-bottom: 15px;
  margin-top: 10px;
  font-weight: normal;
}

.user_feedback i {
  color: #121118;
  font-size: 24px;
  margin-right: 3px;
}

.user_feedback p {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 50px;
  margin-top: 40px;
}
.partn_imgag {
  padding: 70px 30px;
  flex-shrink: 0;
  border-radius: 15px;
  background: linear-gradient(180deg, #050a16 10%, #025bff 123.85%);

  margin-bottom: 50px;
}

.feed_star {
  margin-top: 20px;
  text-align: center;
  width: 100%;
}

.feed_star img {
  width: 120px;
  margin: auto;
}
.slick-dots {
  bottom: -20px;
}

.slick-dots li {
  width: 70px;
  height: 6px;
  background-color: #d9d9d9;
  border-radius: 12px;
}

.slick-dots li button::before {
  color: transparent !important;
}

.slick-dots li.slick-active button::before {
  color: transparent !important;
}

#hero .product_varity {
  background-color: #ffffff1f;
  border: 1px solid #ffffff1f;
  color: #ffffffa6;
  padding: 8px 1px;
  width: 320px;
  margin: 0;
}

.united #hero .product_varity {
  padding: 7px 10px 8px 0px;
  width: 330px;
  margin: auto;
  margin-bottom: 2em;
}

#hero .product_varity span {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 5px 11px;
  margin-right: 6px;
  margin-left: 8px;
}

#hero .product_varity img {
  margin-left: 10px;
  width: 7px;
  margin-top: -3px;
}

.getstart a {
  color: #fff;
}

.usa_margin {
  margin-top: 2em;
  margin-bottom: 2em;
}

.united #map .left h2 span {
  font-weight: 600;
  font-size: 38px;
  color: #00b67a;
}

.united #about .product_varity {
  width: 330px;
}

.product_page .proxies_buttons {
  display: flex;
}

.p650 {
  max-width: 650px;
  margin: auto;
}

.feature_name {
  display: flex;
}

.feature_box {
  width: 30%;
  margin-right: 10px;
  border-radius: 8px;
  background-image: url("../img/feature_bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 0 0;
  display: flex;
  margin-left: 10px;
  padding: 15px;
}

.feature_left {
  width: 30px;
  border-radius: 4px;
  text-align: center;
  height: 30px;
  background-color: #fff;
  margin-right: 10px;
}

.feature_left img {
  width: 30px;
}

.feature_right h5 {
  color: #fff;
  margin: 0 !important;
  font-size: 16px !important;
}

.feature_right p {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 15px !important;
  margin-top: 0 !important;
  margin-bottom: 0;
}

.product_page .start_google {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.res {
  margin-bottom: 10px;
  font-size: 14px;
}

.proxy_numbers {
  padding: 70px 90px;
}

.proxy_numbers p {
  color: rgba(255, 255, 255, 0.7) !important;
  opacity: 1 !important;
  margin-top: 0 !important;
  margin-bottom: 25px;
}

.white {
  color: #fff !important;
}

.proxy_numbers h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-top: 35px;
}

.proxy_numbers h1 {
  color: rgb(112, 248, 192) !important;
  margin-bottom: 25px;
  font-size: var(--font-3xl);
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 0;
}

.proxy_numbers h3 {
  color: #fff;
  font-size: var(--font-2xl);
  margin-top: 35px;
}

.proxy_numbers h3 span {
  color: rgba(45, 227, 151, 1);
  font-size: 25px;
  position: relative;
  top: -20px;
}

#about .feature_box {
  background-color: rgb(232, 235, 238);
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-image: none;
}

#about .feature_right h5 {
  color: #121118;
}

#about .feature_right p {
  color: #121118a6 !important;
}

#about .feature_left {
  background-color: transparent;
}

#about .feature_name {
  display: flex;
  margin-top: 3em;
  margin-bottom: 1em;
}

.text-center .getstart a {
  color: #121118 !important;
}

.trans {
  background-color: transparent;
}

#map .product_varity {
  width: 330px;
  margin: 0;
  margin-bottom: 0px;
  margin-bottom: 20px;
}

#map .product_varity img {
  margin-left: 15px;
  margin-top: -3px;
}

#map .product_varity span {
  background-color: rgb(0, 182, 122);
  margin-right: 5px;
}

.margin_resi {
  margin-bottom: 20px;
}

.boost_section .power_box {
  background-image: url("../img/boostbg.png");
  background-color: #fff;
  background-size: 100% auto;
  background-position: 100% 95%;
  border-radius: 8px;
  padding: 35px;
}

.boost_section {
  background-color: rgba(246, 249, 252, 1) !important;
}

.boost_section .power_img img {
  width: 28px;
}

.boost_section .power_img {
  margin-top: -60px;
}

.price_product {
  color: #121118;
  margin-top: 15px;
  font-size: 30px;
  font-weight: 600;
}

.price_product span {
  color: rgba(18, 17, 24, 0.65);
  font-size: 16px;
}

.prod_boxes .product_hr {
  border: none;
}

.prod_boxes {
  padding: 20px !important;
  background-size: 100% 100% !important;
}

.prod_boxes ul {
  display: block;
}

.prod_boxes .left_box,
.prod_boxes .right_text {
  width: 50%;
}

.prod_boxes ul li {
  width: auto;
}

.payments_meth {
  margin-top: 20px;
  text-align: center;
}

.payments_meth p {
  color: rgba(29, 29, 27, 0.65);
}

.payments_meth a {
  color: rgba(0, 182, 122, 1);
}

.payments_meth img {
  margin: auto;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f5fafb;
  width: 380px;
  box-shadow: 0px 3px 11px 0px rgba(0, 0, 0, 0.12);
  padding: 21px 19px;
  z-index: 1;
  border-radius: 3px;
  text-align: left;
}

.dropdown:hover + .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: #212121;
  width: 100%;
  display: block;
  line-height: 25px;
}

.dropdown-content a {
  color: #212121;
  width: 100%;
  display: block;
  line-height: 25px;
}

nav {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}

nav .navbar {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 0;
}
.navbar .logo a {
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
nav .navbar .nav-links {
  line-height: 31px;
  height: auto;
}
nav .navbar .links {
  display: flex;
}
nav .navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 5px;
}
nav .navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}
nav .navbar .links li a:hover {
  color: var(--main-color);
}

.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
  transform: rotate(180deg);
}

nav .navbar .links li .arrow {
  width: 15px;
  line-height: initial;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
  margin-left: 10px;
}
nav .navbar .links li .arrow.current {
  transform: rotate(180deg);
}
nav .navbar .links li .sub-menu {
  position: absolute;
  top: 40px;
  left: 0;
  background: #050a16;
  border-radius: 6px;
  display: none;
  z-index: 2;
  overflow: hidden;
  padding: 20px;
}

.navbar .links li .sub-menu .more-arrow {
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu {
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu {
  display: block;
}
.navbar .search-box {
  position: relative;
  height: 40px;
  width: 40px;
}
.navbar .search-box i {
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box {
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #3e8da8;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box {
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #3e8da8;
}
.search-box .input-box::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  background: #3e8da8;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo {
  display: none;
}
.navbar .bx-menu {
  display: none;
}

.location #hero .product_varity {
  padding: 7px 11px 8px 0px;
  width: 368px;
  margin: auto;
  margin-bottom: auto;
  margin-bottom: 2em;
}

#countries ul {
  margin: 0;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

#countries .container {
  max-width: 1450px;
  background-color: #f6f9fc;
  padding: 25px;
  border-radius: 8px;
}

#countries h5 {
  text-align: left;
  margin-bottom: 0;
}

.about_boxes h4 {
  font-size: 20px;
  color: rgb(18, 17, 24);
  font-weight: 600;
}

.location .product_varity {
  width: 335px;
}

.location .product_varity img {
  margin-left: 10px;
}

#countries {
  position: relative;
  margin-top: -9em;
}

.location #hero {
  padding: 124px 0 120px 0px;
}

.country_flag img {
  width: 35px;
}

.location_usa {
  margin-bottom: 15px;
}

.united #hero {
  padding: 124px 0 50px 0px;
}

#countries ul li {
  display: flex;
  background-image: url("../img/country_bg.png");
  padding: 15px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 23%;
  margin-left: 12px;
  margin-right: 12px;
  margin-bottom: 1em;
}

.country_flag {
  margin-right: 10px;
}

#countries ul li h5 {
  color: rgba(18, 17, 24, 1);
  font-size: 18px;
  margin-bottom: 0;
}

#countries ul li p {
  color: rgba(18, 17, 24, 0.65);
  font-size: 15px;
  margin-bottom: 0;
}

.blog_details .blog_detail_box ul {
  list-style: none;
  color: #121118;
  font-size: 19px;
  font-weight: 500;
  display: flex;
  margin: 0;
  padding: 0;
}

.blog_details .blog_detail_box ul li {
  margin-right: 15px;
  border-right: 1px solid #0000001f;
  padding-right: 15px;
}

.blog_detail_box .blog_box {
  min-height: 300px;
}

.blog_detail_box .blog_box .pp2 {
  padding-top: 6em;
}

.blog_detail_box .blog_box p {
  margin-top: 0;
}

.blog_detail_box h2 {
  color: rgb(18, 17, 24);
  font-size: 35px;
  font-weight: 600;
  margin-top: 20px;
}

.blog_detail_box h2 span {
  color: rgba(0, 182, 122, 1);
}

.blog_detail_box img {
  width: 50%;
  margin-top: 30px;
  margin-bottom: 30px;
}

.blog_details #blogs .section-title {
  text-align: left;
  padding-bottom: 5px;
}

.blog_details #blogs .section-title h2 {
  padding-left: 13px;
}

.blog_details .product_varity {
  background-color: #f6f9fc;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.65);
  border-radius: 50px;
  padding: 8px 10px;
  width: 230px;
  margin: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-left: 15px;
  margin-bottom: 15px;
}

.blog_admin {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  margin-bottom: 1em;
}

.blog_detail_box {
  padding-right: 50px;
}

.blog_bor {
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.blog_admin h5 {
  color: rgba(18, 17, 24, 1);
  margin-bottom: 0;
}

.blog_admin p {
  color: rgba(29, 29, 27, 0.65);
}

.left_admin {
  margin-right: 10px;
}

.left_admin img {
  width: 50px;
}

.padding_blog {
  padding-left: 50px;
}

.blog_section p {
  color: rgb(18, 17, 24);
  line-height: 30px;
  margin-bottom: 0;
  font-weight: 500;
}

.blog_section .pp2 {
  color: rgba(18, 17, 24, 0.65);
}

.blog_section {
  border-bottom: 1px solid #0000001f;
  padding-bottom: 10px;
  margin-bottom: 25px;
}
.tp-logo {
  max-width: 110px;
}

.tp-logo:hover {
  cursor: pointer;
}
.prox_txts {
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.prox_txts img {
  width: 21px;
}

.index_proxy .flex_btn {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.check_flex {
  display: flex;
}

.check_flex span {
  background-color: rgba(0, 182, 122, 1);
  color: #fff;
}

.checker p {
  max-width: 740px;
}

.checker .product_varity {
  width: 187px;
  padding: 6px 10px;
  margin: 0;
  height: 39px;
}

.checker h1 {
  color: rgb(18, 17, 24);
  font-size: 36px;
  font-weight: 600;
}

.checker_right {
  width: 80%;
  text-align: right;
}

.checker .container {
  background-color: rgba(246, 249, 252, 1);
  margin-top: 2em;
  border-radius: 8px;
  padding: 30px;
}

.checker button {
  background-color: #2de397;
  color: #1b1b2b;
  border: 1px solid #2de397;
  padding: 10px 18px;
  border-radius: 5px;
  font-weight: 500;
  width: 250px;
}

.checker button a {
  color: #1b1b2b;
}

.select_flex {
  display: flex;
  margin-bottom: 1em;
}

.select_5 {
  width: 49%;
}

.select_flex select {
  border: 1px solid rgba(217, 221, 228, 1);
  color: rgba(120, 132, 153, 1);
  border-radius: 5px;
  padding: 15px;
  background-color: #fff;
  font-size: 16px;
  width: 100%;
}

.table_over p {
  max-width: 100%;
  margin-bottom: 3px;
}

.marginleft1 {
  margin-left: 1%;
}

.marginright1 {
  margin-right: 1%;
}
.comp {
  background-image: url("../img/country-bg.png");
  background-size: 100% 100%;
  background-position: center 0;
  background-repeat: no-repeat;
  margin-top: 2em;
  padding: 30px;
  border-radius: 8px;
}

.comp img {
  width: 35px;
  margin-bottom: 12px;
}

.comp h5 {
  color: #fff;
}

.comp p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
  max-width: 100%;
}

.comp1 p {
  color: rgba(18, 17, 24, 0.65);
  margin-bottom: 0;
  max-width: 100%;
}

.comp1 {
  margin-top: 2em;
  padding: 30px;
  border-radius: 8px;
  background-color: #fff;
}

.comp1 img {
  margin-bottom: 5px;
}

.comp1 h5 {
  color: rgba(18, 17, 24, 0.65);
}

.wid420 {
  width: 420px;
}

.wid335 {
  width: 335px;
}

.wid310 {
  width: 310px;
}

.wid340 {
  width: 340px;
}

.urls {
  background-color: #fff;
  border: 1px solid #d9dde4;
  padding: 9px 15px;
  border-radius: 5px;
  color: rgb(120, 132, 153);
  margin-bottom: 1em;
}

.proxy_list {
  background-color: #fff;
  border: 1px solid #d9dde4;
  padding: 9px 15px;
  border-radius: 5px;
  color: rgb(120, 132, 153);
  margin-bottom: 1em;
  min-height: 200px;
}

.input_proxy {
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(217, 221, 228, 1);
  border-radius: 5px;
  padding: 9px 15px;
  margin-bottom: 15px;
}

.input_proxy span {
  color: rgba(0, 182, 122, 1);
}

.input_proxy input {
  color: rgba(120, 132, 153, 1);
  border: none;
  width: 90%;
}
/* When scrolled, make the header slide down */
.header-scrolled {
  transform: translateY(0); /* Stays fixed, no vertical movement after scroll */
}

#header {
  transition: transform 0.3s ease-in-out;
  transform: translateY(0); /* Fully visible at the start */
  position: sticky;
  top: 0px;
}
/* Before scrolling, it is hidden upwards */
.header-hidden {
  transform: translateY(-100%) !important; /* Hide the header upwards */
}
.input_proxy input:focus {
  outline: none;
}

.checker_right img {
  width: 50px;
}

.table_over {
  background-image: url("../img/table_bg.png");
  background-size: 100% 100%;
}

.proxy_tble {
  margin: 0;
  padding: 0;
  width: 100%;
}

.padding10 {
  padding: 10px;
}

.proxy_tble tr {
  padding: 5px;
}

.proxy_tble tr td {
  color: rgba(27, 27, 43, 1);
  padding: 10px;
}

.proxy_tble span {
  background-color: rgba(18, 183, 106, 0.12);
  color: #12b76a;
  padding: 2px 9px;
  border-radius: 7px;
}

.proxy_tble img {
  width: 20px;
}

.proxy_btns {
  display: flex;
  margin-top: 15px;
}

.proxy_btns a {
  width: 200px;
  border-radius: 6px;
  border: none;
  padding: 10px;
  text-align: center;
  margin-right: 15px;
}

.table_over {
  max-height: 300px;
  overflow: auto;
  margin-top: 5.5em;
}

.proxy_btns .copyall {
  background-color: rgba(45, 227, 151, 1);
  color: rgba(27, 27, 43, 1);
}

.proxy_btns .downl {
  background-color: rgba(18, 17, 24, 1);
  color: #fff;
}

@media (max-width: 940px) {
  .prox_txts {
    font-size: 13px;
  }
}

@media (max-width: 920px) {
  nav .navbar {
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a {
    font-size: 27px;
  }
  nav .navbar .links li {
    padding: 0 3px;
    white-space: nowrap;
  }
}

@media (max-width: 800px) {
  .navbar .links li .sub-menu img {
    display: none;
  }
  .navbar .bx-menu {
    display: block;
  }

  nav {
    position: absolute;
    width: 100%;
  }
  nav .navbar {
    top: 40px;
    overflow: auto;
    display: none;
    background: #050a16;
    margin: 10px;
    width: auto;
    height: 100%;
    border: 1px solid #025bff;
    margin-top: 15px;
    border-radius: 6px;
  }

  nav .navbar .nav-links {
    width: 100%;
    line-height: 30px;
    padding: 20px;
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name {
    font-size: 25px;
    color: #fff;
  }
  .sidebar-logo i,
  .navbar .bx-menu {
    font-size: 25px;
    color: #fff;
  }
  nav .navbar .links {
    display: block;
  }

  nav .navbar .links li {
    display: block;
  }
  nav .navbar .links li .sub-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
  }

  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
    position: relative;
    left: 0;
  }
  .navbar .links li .sub-menu .more-sub-menu li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .links li:hover .htmlcss-arrow,
  .links li:hover .js-arrow {
    transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
  }
  .navbar .links li .sub-menu .more span {
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu {
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu {
    display: none;
  }
  .navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu {
    display: block;
  }
  .navbar .nav-links.show1 .links .htmlcss-arrow,
  .navbar .nav-links.show3 .links .js-arrow {
    transform: rotate(180deg);
  }
  .navbar .nav-links.show2 .links .more-arrow {
    transform: rotate(90deg);
  }

  .navbar ul {
    background: transparent;
    border: none;
  }

  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu {
    display: block;
  }

  .navbar .active {
    background-color: transparent !important;
  }

  nav .navbar .links li .sub-menu {
    margin: 10px 0px;
  }

  .navbar .links li .sub-menu a {
    color: #b7b1b1;
  }
}

@media (max-width: 370px) {
  nav .navbar .nav-links {
    max-width: 100%;
  }
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1400px;
  }
}
 

@media (max-width: 1400px) {
  .use_case li {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }

  #adventur .section-title {
    background-image: none;
  }
}

@media (max-width: 1230px) {
  #countries ul li {
    width: 30%;
  }
}

@media (max-width: 1200px) {
  .footer_social {
    padding-bottom: 20px;
  }
  .discord-comnunity {
    float: left;
  }
  #adventur .container {
    max-width: 100%;
  }

  #adventur .proxies_buttons a {
    margin-right: 15px;
    margin-left: 15px;
    width: 25%;
  }

  .use_case li {
    width: 48%;
    margin-left: 1%;
    margin-right: 1%;
  }

  .proxies_buttons {
    max-width: 100%;
  }

  #map .left h2 {
    font-size: 30px;
  }

  .proxies_buttons .flex_btn {
    margin-right: 10px;
    margin-left: 10px;
    padding: 15px 0px;
    font-size: 16px;
  }
}

@media (max-width: 1100px) {
  .right_text button {
    padding: 6px 6px;
  }
}

@media (max-width: 1080px) {
  #adventur .proxies_buttons {
    max-width: 100%;
    flex-wrap: wrap;
  }

  #adventur .proxies_buttons a {
    width: 45%;
    margin-bottom: 1.5em;
  }
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (max-width: 1300px) {
  #map .container {
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .about .icon-box-style-2.active {
    min-height: initial;
    flex: initial;
  }

  .about .icon-box-style-2{
    flex: initial;
  }
  .residential .tp-logo {
    margin-top: 2em;
  }

  .resi_proxy {
    padding-left: 0;
  }

  #hero {
    min-height: 100vh;
    padding: 100px 0 40px;
  }
  .right_dash {
    display: none;
  }
  .footer-cta-container h2 {
    font-size: var(--font-xl);
  }
  .section-title span,
  .about .icon-boxes h3,
  .icon-box-style-2 h3,
  .hom_fx h3,
  .cta-content h3 {
    font-size: var(--font-md);
  }
  section#feature {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .pricing {
    margin: 20px 0px;
  }
  .about_boxes ul {
    margin: 30px 0px 30px;
  }
  .tab-content {
    padding: 20px;
    margin-top: 0px;
  }
  .residential-block::after {
    bottom: -15px;
  }
  nav .navbar .links li .sub-menu {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    border-left: none;
  }
  .navbar .links li .sub-menu li {
    border-bottom: none;
  }
  .cta-holder {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 20px;
    border-radius: 20px;
  }
  .cta-action img {
    width: 40px;
  }
  .slider-nav .slick-current.slick-active,
  .slider-nav .slick-slide,
  .slider-nav
    .slick-slide[aria-hidden="true"]:not(.slick-cloned)
    ~ .slick-cloned[aria-hidden="true"] {
    transform: scale(1);
    opacity: 1;
  }
  .slider-nav .slick-slide {
    padding-right: 15px; /* Add gap between slides on tablet */
  }

  /* Remove extra margin on the last slide */
  .slider-nav .slick-slide:last-child {
    padding-right: 0;
  }
  .footer_social {
    margin-bottom: 20px;
  }

  .feature_name {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1em;
  }

  .proxy_numbers h3 {
    margin-top: 0;
  }

  .proxy_numbers {
    padding: 30px 0px;
  }

  .feature_box {
    width: 47%;
    margin-bottom: 20px;
  }

  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }

  .checker .product_varity {
    width: 205px;
  }

  #blogs .container {
    max-width: 98%;
  }

  .blog_details #blogs .section-title h2 {
    padding-left: 0;
  }

  .blog_details .product_varity {
    margin-left: 0;
  }

  .checker .container {
    padding: 15px;
  }

  .power_box {
    margin-bottom: 3em;
  }

  .blog_bor {
    border-right: none;
  }

  .blog_detail_box {
    padding-right: 0;
  }

  .blog_detail_box h2 {
    font-size: 28px;
  }

  .padding_blog {
    padding-left: 0;
  }
}

@media (max-width: 991px) {
  .blog_container {
    margin-bottom: 1em;
  }

  .testimonials .testimonial-item p {
    width: 80%;
  }
  .section-title h2 {
    font-size: var(--font-2xl) !important;
    line-height: var(--leading-snug) !important;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    max-width: 75%;
  }
  #hero h1 {
    font-size: var(--font-2xl);
    line-height: 1.2;
  }
  #hero h2 {
    font-size: var(--font-md);
    line-height: 1.4;
    margin-bottom: 30px;
  }
}

@media (max-width: 850px) {
  .proxies_buttons {
    flex-wrap: wrap;
  }

  .index_proxy .flex_btn {
    margin: auto;
    width: 40%;
  }

  .index_proxy .flex_btn {
    margin-bottom: 10px;
  }

  .prox_txts {
    margin-top: 5px;
  }

  .margin_proxy {
    margin-top: 0;
    margin-bottom: 18px;
  }

  .proxies_buttons .flex_btn {
    margin-bottom: 18px;
    width: 47%;
    max-height: 100%;
    min-height: auto;
  }
}

@media (max-width: 800px) {
  .toggle_icon {
    display: block;
  }
}

.w-lg-75 {
  width: 75%;
}
.icon-hold img.icon-last.ico-horizontal {
  min-width: 40px;
}

@media (max-width: 420px) {
.residential .tp-logo {
  max-width: 100%;
}

.qty p {
  padding-left: 0;
  padding-right: 0;
}
}

@media (max-width: 768px) {
  li.nav-item {
    width: 48%;
  }
  .nav-pills .nav-link {
    padding: 4px 20px;
    width: 100%;
  }
  nav .navbar .links li .arrow.current {
    transform: rotate(270deg);
  }
  nav .navbar .links li .arrow {
    transform: rotate(270deg);
  }
  .w-lg-75 {
    width: 100%;
  }
  #hero p,
  .icon-box-style-3 h3,
  .text-md,
  .user-name span:not(.dater),
  .user_feedback h4,
  .footer-cta .btn,
  #hero .footer-cta .btn,
  .about_boxes .btn {
    font-size: 16px;
  }
  .section-title span,
  .about .icon-boxes h3,
  .icon-box-style-2 h3,
  .hom_fx h3,
  .cta-content h3 {
    font-size: var(--font-base);
  }
  .footer-cta-container h2 {
    font-size: var(--font-xl);
  }
  .testimonial-header {
    justify-content: center;
  }
  .partn_imgag {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
  .user-box {
    text-align: left;
  }
  .dater.mobile {
    display: block !important;
  }
  .divider-sml,
  .dater {
    display: none !important;
  }
  .pricing {
    width: 100%;
  }

  .proxies_buttons {
    gap: 15px;
  }
  .tab-content {
    padding: 0px;
  }
  #hero p {
    width: 80% !important;
  }
  section#feature {
    padding-top: 0px;
  }
  .residential-block {
    display: none;
  }
  .footer-cta {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  #hero h1 {
    font-size: 30px;
    line-height: 40px;
  }
  .divider {
    background-color: var(--main-color);
    width: 100%;
    height: 1px;
    position: absolute;
    right: 0px;
    left: 0px;
    top: auto;
    bottom: 10px;
  }
  .mob_none {
    display: none;
  }

  .product_page #hero h1 {
    font-size: 30px;
    line-height: 40px;
  }

  .mob_display {
    display: block;
  }
  .feature_box {
    width: 100%;
  }

  #countries ul li {
    width: 46%;
  }

  .checker .container {
    margin-top: 0em;
    padding: 15px;
    max-width: 98%;
  }

  .checker h1 {
    font-size: 27px;
  }

  .pay_method img {
    width: 40px;
  }

  #times .container {
    max-width: 100%;
  }

  .talk_expert .getgoogle,
  .talk_expert .getstart {
    width: 100%;
    display: block;
    margin-bottom: 1em;
  }

  .padding_right {
    padding-left: 5px;
    padding-right: 5px;
  }

  .wid100 {
    margin-bottom: 2em;
  }

  .about-form .box {
    max-width: 100%;
    padding: 101px 30px;
  }

  #footer .footer-top {
    padding: 40px 0 50px 0;
  }

  .dis_flex {
    display: block;
  }

  .padding_left {
    padding-right: 5px;
    padding-left: 5px;
  }

  .left_tabs,
  .right_tabs {
    width: 100%;
    margin-right: 0;
  }

  #navbar {
    display: none;
    position: absolute;
    left: 0;
    top: 53px;
    background: #000;
    width: 100%;
    padding: 10px;
  }

  .mobile_d {
    display: block;
  }

  .navbar li {
    width: 100%;
  }

  .navbar ul {
    display: block;
  }

  .section-title h2 {
    font-size: var(--font-xl) !important;
    line-height: var(--leading-snug) !important;
  }

  .counter_ul li {
    height: 60px;
    padding: 0 0px;
  }

  .counter_ul {
    display: block;
  }

  .faq .faq-list {
    width: 100%;
  }

  .none_mobile {
    display: none;
  }

  .block_mobile {
    display: block;
  }

  .border_left {
    border-left: none;
    padding-left: 0;
  }

  .padding-top3 {
    margin-top: 0em;
  }

  .border_right {
    border-right: none;
    padding-right: 0;
  }

  .second_about .feature_box {
    margin-bottom: 40px;
  }

  .text-right {
    text-align: left;
  }

  .padding-right111 {
    padding-right: 0;
  }

  .paddin-left100 {
    padding-left: 0;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .proxies_buttons .flex_btn {
    width: 100%;
  }

  #hero ul {
    display: block;
    max-width: 100%;
  }
}

@media (max-width: 568px) {
  .slider-nav .slick-slide {
    padding-right: 0px;
  }
}

@media (max-width: 654px) {
  #adventur .proxies_buttons a {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .checker_right img {
    width: 40px;
  }

  .checker_right {
    width: auto;
    padding-left: 10px;
  }
}

@media (max-width: 440px) {
  .start_google {
    display: block;
    max-width: 100%;
  }

  .start_google .getgoogle,
  .start_google .getstart {
    width: 100%;
    display: block;
    margin-bottom: 1em;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  #header .container {
    max-width: 100%;
  }

  #header {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .right_dash button {
    padding: 8px 18px;
    font-size: 15px;
  }

  .navbar a {
    padding: 2px 10px;
    font-size: 12px;
  }

  .button1 {
    font-size: 12px;
  }

  #navbar {
    margin-top: 8px;
  }
}

@media (max-width: 500px) {
  .footer-cta-container h2 {
    font-size: 30px;
  }
  .cta-holder {
    padding: 25px;
    border-radius: 10px;
  }
  .section-title h2 {
    font-size: var(--font-lg) !important;
    line-height: var(--leading-snug) !important;
  }

  .location .product_varity {
    width: 100%;
  }

  #countries ul li {
    width: 100%;
  }

  .blog_detail_box h2 {
    font-size: var(--font-xl);
  }

  .blog_description h4 {
    font-size: 19px;
  }

  .checker h1 {
    margin-top: 10px;
  }

  .country_flag ul li {
    width: auto;
  }

  .trust_wall img {
    width: 100%;
  }

  .trust_wall h5 {
    font-size: 25px;
  }

  .slick-dots li {
    width: 6px;
    height: 6px;
    border-radius: 50px;
  }

  .succ_flex {
    display: block;
  }

  .blog_description ul li {
    margin-right: 10px;
    border-right: 2px solid #0000001f;
    padding-right: 10px;
    font-size: 15px;
  }

  #map .left p {
    padding-right: 0;
  }

  .succ_check {
    margin-bottom: 10px;
    width: 50px;
  }

  #map .left h2 {
    font-size: 25px;
    line-height: 30px;
  }

  .country_flag ul {
    display: block;
  }

  .band_width {
    padding: 10px;
  }

  .view_trust button {
    padding: 13px 10px;
    width: 100%;
  }

  .hom_fx {
    display: block;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 35px;
  }

  .band_boxs .succ_check {
    width: 50px;
    margin-bottom: 10px;
  }

  .band_boxs {
    display: block;
  }

  .use_case li {
    font-size: 16px;
  }

  .right_band h3 {
    font-size: 18px;
  }

  .slick-dots {
    bottom: -10px;
  }

  .about_boxes ul li {
    width: 100%;
  }

  .left_box {
    width: 100%;
    margin-bottom: 10px;
  }

  .right_text {
    width: 100%;
    text-align: left;
  }

  .right_text button {
    padding: 12px 6px;
    width: 100%;
  }

  .right_text h5 {
    margin-bottom: 20px;
  }

  #about .about_boxes {
    padding: 20px 15px;
  }

  .right_text {
    margin-bottom: 10px;
  }

  .mgtop8 {
    padding-top: 2em;
  }

  .location #hero .product_varity {
    padding: 7px 2px 8px 0px;
    width: 100%;
  }
}

@media (max-width: 450px) {
  .mapUSA img {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .secure_img img {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .product_varity {
    width: 100%;
    font-size: 13px;
  }

  .select_flex,
  .proxy_btns {
    display: block;
  }

  .proxy_btns .copyall {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }

  .proxy_btns .downl {
    width: 100%;
    display: block;
  }

  .select_5 {
    width: 100%;
    margin-bottom: 15px;
  }

  .marginright1 {
    margin-right: 0;
  }

  .marginleft1 {
    margin-left: 0;
  }
}

.united #hero .wid366 {
  width: 363px;
}

.united #hero .wid3420 {
  width: 420px;
}

.product_page #map .wid355 {
  width: 355px;
}

#hero .container{
position: relative;
  z-index: 1;
}

/* ================================
   PRICING SECTION
================================ */
.pricing-section {
  padding: var(--section-padding) 0;
  background: transparent;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  padding: 32px;
  background: linear-gradient(180deg, rgba(10, 20, 40, 0.9) 0%, rgba(5, 15, 35, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(2, 91, 255, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 60px rgba(2, 91, 255, 0.1);
}

.pricing-card.featured {
  border-color: rgba(2, 91, 255, 0.5);
  background: linear-gradient(180deg, rgba(2, 91, 255, 0.12) 0%, rgba(5, 15, 35, 0.95) 100%);
  box-shadow: 0 0 80px rgba(2, 91, 255, 0.15);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #025bff, #00a8ff, #025bff);
  border-radius: 20px 20px 0 0;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: linear-gradient(135deg, #025bff 0%, #00a8ff 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 91, 255, 0.1);
  border-radius: 16px;
  color: #025bff;
}

.pricing-card.featured .pricing-icon {
  background: rgba(2, 91, 255, 0.2);
}

.pricing-header h3 {
  font-size: var(--font-xl);
  font-weight: var(--weight-bold);
  font-family: var(--font-family);
  color: #fff;
  margin: 0 0 var(--space-xs) 0;
}

.pricing-desc {
  font-size: var(--font-sm);
  font-family: var(--font-family);
  color: var(--text-muted);
  margin: 0;
  line-height: var(--leading-snug);
}

.pricing-price {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
}

.price-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.price-amount .currency {
  font-size: var(--font-2xl);
  font-weight: var(--weight-semibold);
  font-family: var(--font-family);
  color: #fff;
}

.price-amount .value {
  font-size: 48px;
  font-weight: var(--weight-extrabold);
  font-family: var(--font-family);
  color: #fff;
  line-height: 1;
}

.price-amount .period {
  font-size: var(--font-md);
  font-family: var(--font-family);
  color: var(--text-muted);
  font-weight: var(--weight-medium);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 0;
  font-size: var(--font-sm);
  font-family: var(--font-family);
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.pricing-features li svg {
  flex-shrink: 0;
  color: #00d4aa;
}

.pricing-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-family);
  font-size: var(--font-sm);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  transition: transform var(--transition-bounce),
              background var(--transition-base),
              border-color var(--transition-base),
              box-shadow var(--transition-base);
  margin-top: auto;
  overflow: hidden;
}

.pricing-btn:hover {
  background: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(2, 91, 255, 0.35);
}

.pricing-btn span {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pricing-btn:hover span {
  transform: translateX(-6px);
}

.pricing-btn svg {
  position: absolute;
  right: 24px;
  opacity: 0;
  transform: translateX(-10px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.3s ease;
}

.pricing-btn:hover svg {
  opacity: 1;
  transform: translateX(0);
}

.pricing-card.featured .pricing-btn {
  background: var(--main-color);
  border-color: var(--main-color);
}

.pricing-card.featured .pricing-btn:hover {
  background: var(--main-color-hover);
  box-shadow: 0 15px 40px rgba(2, 91, 255, 0.45);
}

/* Bulk Pricing CTA */
.pricing-bulk-cta {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(12, 24, 45, 0.95) 0%, rgba(8, 18, 35, 0.98) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  transition: border-color var(--transition-base);
}

.pricing-bulk-cta:hover {
  border-color: rgba(2, 91, 255, 0.3);
}

.bulk-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.bulk-cta-text h4 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.bulk-cta-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 768px) {
  .pricing-bulk-cta {
    padding: 1.5rem;
  }

  .bulk-cta-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}

/* Pricing Responsive */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-card.featured {
    order: -1;
  }
}

/* ================================
   SERVER SPECS & CTA SECTION
================================ */
.server-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.spec-highlight-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(12, 24, 45, 0.95) 0%, rgba(8, 18, 35, 0.98) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.spec-highlight-card:hover {
  border-color: rgba(2, 91, 255, 0.3);
  transform: translateY(-2px);
}

.spec-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 91, 255, 0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.spec-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.spec-value {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.spec-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* Server CTA Card */
.server-cta-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.server-cta-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(12, 24, 45, 0.95) 0%, rgba(8, 18, 35, 0.98) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.server-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--main-color), transparent);
  opacity: 0.5;
}

.server-cta-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.server-cta-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.server-cta-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(2, 91, 255, 0.15);
  border: 1px solid rgba(2, 91, 255, 0.3);
  border-radius: var(--radius-pill);
  color: var(--main-color);
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
}

.server-cta-text h3 {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.server-cta-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
}

.server-cta-features {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.server-cta-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.server-cta-features svg {
  flex-shrink: 0;
}

.server-cta-action {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.server-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--main-color);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition-base);
}

.server-cta-btn:hover {
  background: var(--main-color-hover);
  transform: translateX(4px);
  color: #fff;
}

.server-cta-btn svg {
  transition: transform var(--transition-base);
}

.server-cta-btn:hover svg {
  transform: translateX(4px);
}

.server-cta-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.server-cta-visual {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
}

.server-cta-visual svg {
  width: 100%;
  height: 100%;
}

/* Server Specs Responsive */
@media (max-width: 1024px) {
  .server-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .server-specs-grid {
    grid-template-columns: 1fr;
  }

  .server-cta-card {
    flex-direction: column;
    padding: 2rem;
    text-align: center;
  }

  .server-cta-text h3 {
    font-size: 1.5rem;
  }

  .server-cta-text p {
    max-width: 100%;
  }

  .server-cta-features {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .server-cta-action {
    align-items: center;
    width: 100%;
  }

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

  .server-cta-visual {
    order: -1;
    width: 160px;
    height: 160px;
  }
}

/* ================================
   TESTIMONIALS SECTION
================================ */
.testimonials-section {
  padding: var(--section-padding) 0;
  background: transparent;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(12, 24, 45, 0.95) 0%, rgba(8, 18, 35, 0.98) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  transition: transform var(--transition-base),
              border-color var(--transition-base),
              box-shadow var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(2, 91, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-title {
  font-size: var(--font-md);
  font-weight: var(--weight-bold);
  font-family: var(--font-family);
  color: #fff;
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--leading-snug);
}

.testimonial-text {
  font-size: var(--font-sm);
  font-family: var(--font-family);
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--leading-normal);
  margin: 0 0 var(--space-lg) 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #025bff 0%, #00a8ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.author-info {
  flex-grow: 1;
}

.author-name {
  display: block;
  font-size: var(--font-sm);
  font-weight: var(--weight-semibold);
  font-family: var(--font-family);
  color: #fff;
}

.author-date {
  display: block;
  font-size: var(--font-xs);
  font-family: var(--font-family);
  color: var(--text-subtle);
  margin-top: 2px;
}

.trustpilot-badge {
  height: 20px;
  width: auto;
  opacity: 0.7;
}

.testimonials-cta {
  text-align: center;
  margin-top: 48px;
}

.trustpilot-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform var(--transition-bounce),
              background var(--transition-base),
              border-color var(--transition-base);
}

.trustpilot-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.trustpilot-link span {
  font-size: var(--font-sm);
  font-family: var(--font-family);
  color: rgba(255, 255, 255, 0.7);
}

.trustpilot-link img {
  height: 24px;
  width: auto;
}

/* Testimonials Responsive */
@media (max-width: 1200px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ================================
   DISCORD SECTION
================================ */
.discord-section {
  padding: var(--space-3xl) 0;
  background: transparent;
}

.discord-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 48px;
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.15) 0%, rgba(10, 20, 40, 0.9) 100%);
  border: 1px solid rgba(88, 101, 242, 0.3);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.discord-card:hover {
  border-color: rgba(88, 101, 242, 0.5);
  box-shadow: 0 20px 60px rgba(88, 101, 242, 0.15);
}

.discord-content {
  display: flex;
  align-items: center;
  gap: 24px;
}

.discord-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(88, 101, 242, 0.2);
  border-radius: 16px;
  color: #5865F2;
}

.discord-text h3 {
  font-size: var(--font-2xl);
  font-weight: var(--weight-bold);
  font-family: var(--font-family);
  color: #fff;
  margin: 0 0 var(--space-xs) 0;
}

.discord-text p {
  font-size: var(--font-base);
  font-family: var(--font-family);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 500px;
  line-height: var(--leading-snug);
}

.discord-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 16px 40px;
  background: #5865F2;
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-family);
  font-size: var(--font-md);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  transition: transform var(--transition-bounce),
              background var(--transition-base),
              box-shadow var(--transition-base);
  white-space: nowrap;
  overflow: hidden;
}

.discord-btn:hover {
  background: #4752c4;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(88, 101, 242, 0.45);
}

.discord-btn span {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.discord-btn:hover span {
  transform: translateX(-6px);
}

.discord-btn svg {
  position: absolute;
  right: 20px;
  opacity: 0;
  transform: translateX(-10px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.3s ease;
}

.discord-btn:hover svg {
  opacity: 1;
  transform: translateX(0);
}

/* Discord Responsive */
@media (max-width: 992px) {
  .discord-card {
    flex-direction: column;
    text-align: center;
    padding: 32px;
    gap: 24px;
  }

  .discord-content {
    flex-direction: column;
  }

  .discord-text p {
    max-width: 100%;
  }
}

/* ================================
   FINAL CTA SECTION
================================ */
.final-cta-section {
  padding: var(--section-padding) 0 120px;
  background: transparent;
}

.final-cta-wrapper {
  position: relative;
  padding: 80px 60px;
  background: linear-gradient(180deg, rgba(2, 91, 255, 0.08) 0%, rgba(10, 20, 40, 0.9) 100%);
  border: 1px solid rgba(2, 91, 255, 0.2);
  border-radius: 32px;
  text-align: center;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.cta-glow-1 {
  width: 400px;
  height: 400px;
  background: rgba(2, 91, 255, 0.3);
  top: -200px;
  left: -100px;
}

.cta-glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 168, 255, 0.2);
  bottom: -150px;
  right: -50px;
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta-content h2 {
  font-size: var(--font-4xl);
  font-weight: 600;
  font-family: var(--font-family);
  color: #fff;
  margin: 0 0 var(--space-md) 0;
  line-height: var(--leading-tight);
}

.final-cta-content p {
  font-size: var(--font-lg);
  font-family: var(--font-family);
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 var(--space-2xl) 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--leading-normal);
}

.final-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 16px 40px;
  background: var(--main-color);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-family);
  font-size: var(--font-md);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  transition: transform var(--transition-bounce),
              background var(--transition-base),
              box-shadow var(--transition-base);
  overflow: hidden;
}

.btn-cta-primary:hover {
  background: var(--main-color-hover);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(2, 91, 255, 0.45);
}

.btn-cta-primary span {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-cta-primary:hover span {
  transform: translateX(-6px);
}

.btn-cta-primary svg {
  position: absolute;
  right: 20px;
  opacity: 0;
  transform: translateX(-10px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.3s ease;
}

.btn-cta-primary:hover svg {
  opacity: 1;
  transform: translateX(0);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 16px 32px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-family);
  font-size: var(--font-md);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  transition: transform var(--transition-bounce),
              background var(--transition-base),
              border-color var(--transition-base),
              box-shadow var(--transition-base);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Final CTA Responsive */
@media (max-width: 768px) {
  .final-cta-wrapper {
    padding: var(--space-2xl) var(--space-lg);
  }

  .final-cta-content h2 {
    font-size: var(--font-2xl);
  }

  .final-cta-content p {
    font-size: var(--font-md);
  }

  .final-cta-buttons {
    flex-direction: column;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ================================
   LEGAL PAGE
================================ */
.legal-page {
  padding: 160px 0 80px;
}

.legal-content {
  text-align: left;
  padding-left: 40px;
  padding-right: 40px;
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-family: var(--font-family);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.legal-content .legal-updated {
  font-size: 14px;
  font-family: var(--font-family);
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 20px;
  font-family: var(--font-family);
  font-weight: 600;
  color: #fff;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 15px;
  font-family: var(--font-family);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.legal-content ul li {
  font-size: 15px;
  font-family: var(--font-family);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}

.legal-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.3);
}

.legal-content a {
  color: var(--main-color);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-contact {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ================================
   MODERN FOOTER
================================ */
.footer-modern {
  background: #020810;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 0 40px;
  font-family: 'Montserrat', sans-serif;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  flex: 0 0 280px;
  max-width: 280px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo-link img {
  height: 28px;
  width: auto;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0 0 24px 0;
}

.footer-modern .footer-social {
  display: flex;
  gap: 12px;
}

.footer-modern .footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-modern .footer-social a:hover {
  background: #025bff;
  border-color: #025bff;
  color: #fff;
  transform: translateY(-2px);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  flex: 1;
}

.footer-links-column h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 20px 0;
  font-family: 'Montserrat', sans-serif;
}

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

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

.footer-links-column a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: 'Montserrat', sans-serif;
}

.footer-links-column a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-trustpilot img {
  height: 28px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-trustpilot:hover img {
  opacity: 1;
}

/* Footer Responsive */
@media (max-width: 992px) {
  .footer-main {
    flex-direction: column;
    gap: 48px;
  }

  .footer-brand {
    flex: none;
    max-width: 100%;
    text-align: center;
  }

  .footer-modern .footer-social {
    justify-content: center;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

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

  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

