
html {
  scroll-behavior: smooth;
}

body {
  margin: 0 0;
  padding: 0 0;
  background-color: #080713;
}

/* =====================================================
   NAVIGATION STYLES
   ===================================================== */

.navigation {
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 41%, rgba(0, 0, 0, 0.00) 90.99%);
  z-index: 10000000;
}

.navigation-div {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  height: 121px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 41%, rgba(0, 0, 0, 0.00) 90.99%);
  border-radius: 0px;
  z-index: 9999;
  display: flex;
  align-items: center;
}

.logo {
  background: linear-gradient(90deg, #CB93FF 0%, #56BEFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: sans-serif;
  font-size: 26px;
  font-weight: 700;
  position: relative;
  left: 5%;
  width: 16%;
  height: 25%;
  display: block;
  z-index: 10000;
  text-decoration: none;
}

/* =====================================================
   MOBILE NAVIGATION STYLES
   ===================================================== */

.mobile-nav-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 41%, rgba(0, 0, 0, 0.00) 90.99%);
  z-index: 10000;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.hamburger-menu {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
}

.hamburger-menu i {
  color: #ffffff;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.hamburger-menu:active i {
  transform: scale(0.9);
}

.mobile-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.mobile-logo-text {
  background: linear-gradient(90deg, #CB93FF 0%, #56BEFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.98);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 40px; */
  width: 100%;
  max-width: 400px;
  padding: 20px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.mobile-nav-link {
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 12px;
  font-weight: 300;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.mobile-nav-link.active {
  background: rgba(255, 255, 255, 0.1);
  font-weight: 400;
}



.mobile-app-buttons {
  display: flex;
  gap: 16px;
  align-items: left;
  justify-content: left;
}

.mobile-app-buttons a {
  display: block;
  transition: transform 0.3s ease;
}

.mobile-app-buttons a:hover {
  transform: scale(1.05);
}

.mobile-app-buttons img {
  width: 140px;
  height: auto;
  object-fit: contain;
}

.navigation-bar {
  position: fixed;
  left: 69%;
  transform: translateX(-50%);
  width: 725px;
  height: 62px;
  background: rgba(0, 0, 0, 0.90);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-clip: padding-box;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: left;
  overflow: visible;
}

.navigation-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 18px;
  background: #010102;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  pointer-events: none;
  opacity: -11;
}

.nav-links-container {
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.nav-link {
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 100 !important;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  white-space: nowrap;
  background: transparent;
  overflow: visible;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  transform: translateX(-50%);
  width: 140px;
  height: 44px;
  background: url("images/nav-glow.png") no-repeat center;
  background-size: contain;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link:hover {
  transform: scale(1.1);
  -webkit-text-stroke: 0.5px #ffffff;
}

.nav-app-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  padding-right: 10px;
}

.nav-app-btn {
  width: 30px;
  height: 30px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.nav-app-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
  background: #f8f8f8;
}

.nav-app-btn:active {
  transform: scale(0.95);
}

.nav-app-btn .app-icon {
  width: 14px;
  height: 26px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.nav-app-btn:hover .app-icon {
  transform: scale(1.1);
}

/* =====================================================
   RESPONSIVE NAVIGATION MEDIA QUERIES
   ===================================================== */

/* Show mobile navigation and hide desktop navigation on tablets and mobile */
@media screen and (max-width: 1024px) {

  /* Hide desktop navigation */
  .navigation {
    display: none;
  }

  .navigation-div {
    display: none;
  }

  .logo {
    display: none;
  }

  .navigation-bar {
    display: none;
  }

  /* Show mobile navigation */
  .mobile-nav-bar {
    display: flex !important;
  }
}

/* Desktop: Hide mobile navigation */
@media screen and (min-width: 1025px) {
  .mobile-nav-bar {
    display: none !important;
  }


}


/* =====================================================
   HERO SECTION
   ===================================================== */

.hero {
  background-image: url("images/1st-section-bg-without-glow.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100dvh;
  position: relative;
  padding: 40px 80px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-text-container {
  position: absolute;
  top: 20vh;
  left: 69%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 6;
  max-width: 100%;
  width: 100%;
}

.text-wrapper-7 {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0 auto 16px;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 48px;
  font-style: normal;
  line-height: normal;
}

.hero-subtitle {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  max-width: 41%;
  margin: 0 auto;
  display: block;
  text-align: center;
  font-family: "Rubik", sans-serif;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.80);
  font-size: 17px;
  letter-spacing: 0;
  line-height: 25px;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-subtitle.fade-out {
  opacity: 0;
}

.hero-subtitle .highlight-text {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  color: #ffffff;
}

/* Rotating Cards */
.rotating-cards-container {
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translateX(-50%);
  width: 750px;
  height: 190px;
  z-index: 5;
  perspective: 1200px;
}


/* Large ambient glow behind all rotating cards */
.hero-background-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1300px;
  height: 300px;
  border-radius: 10%;
  filter: blur(80px); /* REDUCED from 120px for Safari compatibility */
  -webkit-filter: blur(120px); /* Safari-specific prefix */
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
    will-change: transform, opacity;
  -webkit-transform: translate(-50%, -50%) translateZ(0);
  transform: translate(-50%, -50%) translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glow colors for each card type - OPTIMIZED FOR SAFARI */
.hero-background-overlay.bg-not-reachable {
  background: radial-gradient(
    circle at center, 
    rgba(168, 85, 247, 0.85) 0%, 
    rgba(168, 85, 247, 0.45) 60%, 
    rgba(168, 85, 247, 0.1) 80%,
    transparent 100%
  );
  opacity: 0.7; 
}
 
.hero-background-overlay.bg-all-calls {
  background: radial-gradient(
    circle at center, 
    rgba(59, 130, 246, 0.85) 0%, 
    rgba(59, 130, 246, 0.45) 60%, 
    rgba(59, 130, 246, 0.1) 80%,
    transparent 100%
  );
  opacity: 0.7;
}
 
.hero-background-overlay.bg-busy {
  background: radial-gradient(
    circle at center, 
    rgba(34, 197, 94, 0.85) 0%, 
    rgba(34, 197, 94, 0.45) 60%, 
    rgba(34, 197, 94, 0.1) 80%,
    transparent 100%
  );
  opacity: 0.7;
}
 
.hero-background-overlay.bg-no-answer {
  background: radial-gradient(
    circle at center, 
    rgba(251, 146, 60, 0.85) 0%, 
    rgba(251, 146, 60, 0.45) 60%, 
    rgba(251, 146, 60, 0.1) 80%,
    transparent 100%
  );
  opacity: 0.7;
}

.rotating-card {
  position: absolute;
  top: 50%;
  width: 29%;
  height: 222px;
  border-radius: 34.57px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  overflow: hidden;
  transform: translateY(-50%) scale(0.85);
}

.rotating-card.prev {
  left: 75px;
  opacity: 0.3;
  filter: blur(0px);
  transform: translateY(-50%) scale(0.92) rotateY(-22deg);
  z-index: 1;
  pointer-events: none;
}

.rotating-card.active {
  left: 50%;
  transform: translate(-50%, -50%) scale(1.08);
  opacity: 1;
  filter: blur(0);
  z-index: 3;
  pointer-events: auto;
}

.rotating-card.next {
  right: 83px;
  opacity: 0.3;
  filter: blur(0px);
  transform: translateY(-50%) scale(0.92) rotateY(22deg);
  z-index: 1;
  pointer-events: none;
}

.rotating-card.hidden {
  opacity: 0;
  transform: translateY(-50%) scale(0.7);
  z-index: 0;
  pointer-events: none;
}

.card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  object-fit: cover;
}


/* =====================================================
   FRESH MEDIA QUERIES FOR ROTATING CARDS
   Replace your existing media queries with these
   ===================================================== */

/* =====================================================
   LARGE DESKTOPS (1440px and above)
   ===================================================== */
@media screen and (min-width: 1440px) {
  .rotating-cards-container {
    top: 50%;
    left: 70%;
    transform: translateX(-50%);
    width: 900px;
    height: 220px;
  }

  .rotating-card {
    width: 260px;
    height: 250px;
  }

  .rotating-card.prev {
    left: 90px;
    transform: translateY(-50%) scale(0.92) rotateY(-22deg);
  }

  .rotating-card.active {
    left: 50%;
    transform: translate(-50%, -50%) scale(1.08);
  }

  .rotating-card.next {
    right: 90px;
    transform: translateY(-50%) scale(0.92) rotateY(22deg);
  }
}

/* =====================================================
   STANDARD DESKTOPS (1200px - 1439px)
   ===================================================== */
@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .rotating-cards-container {
    top: 50%;
    left: 70%;
    transform: translateX(-50%);
    width: 750px;
    height: 200px;
  }

  .rotating-card {
    width: 220px;
    height: 222px;
  }

  .rotating-card.prev {
    left: 75px;
    transform: translateY(-50%) scale(0.92) rotateY(-22deg);
  }

  .rotating-card.active {
    left: 50%;
    transform: translate(-50%, -50%) scale(1.08);
  }

  .rotating-card.next {
    right: 83px;
    transform: translateY(-50%) scale(0.92) rotateY(22deg);
  }
}

/* =====================================================
   LAPTOP SCREENS (1024px - 1199px)
   ===================================================== */
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .rotating-cards-container {
    top: 50%;
    left: 65%;
    transform: translateX(-50%);
    width: 650px;
    height: 190px;
  }

  .rotating-card {
    width: 190px;
    height: 200px;
  }

  .rotating-card.prev {
    left: 60px;
    transform: translateY(-50%) scale(0.88) rotateY(-20deg);
  }

  .rotating-card.active {
    left: 50%;
    transform: translate(-50%, -50%) scale(1.05);
  }

  .rotating-card.next {
    right: 60px;
    transform: translateY(-50%) scale(0.88) rotateY(20deg);
  }
}

/* =====================================================
   TABLETS LANDSCAPE (900px - 1023px)
   ===================================================== */
@media screen and (min-width: 900px) and (max-width: 1023px) {
  .rotating-cards-container {
    top: 50%;
    left: 62%;
    transform: translateX(-50%);
    width: 550px;
    height: 180px;
  }

  .rotating-card {
    width: 160px;
    height: 180px;
  }

  .rotating-card.prev {
    left: 45px;
    transform: translateY(-50%) scale(0.85) rotateY(-18deg);
  }

  .rotating-card.active {
    left: 50%;
    transform: translate(-50%, -50%) scale(1.02);
  }

  .rotating-card.next {
    right: 45px;
    transform: translateY(-50%) scale(0.85) rotateY(18deg);
  }
}

/* =====================================================
   TABLETS PORTRAIT (768px - 899px)
   ===================================================== */
@media screen and (min-width: 768px) and (max-width: 899px) {
  .hero-text-container {
    top: 140px;
    width: 85%;
  }

  .text-wrapper-7 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 24px;
  }

  .rotating-cards-container {
    position: absolute;
    top: 380px;
    left: 50%;
    transform: translateX(-50%);
    width: 450px;
    height: 200px;
  }

  .rotating-card {
    width: 140px;
    height: 165px;
  }

  .rotating-card.prev {
    left: 15px;
    transform: translateY(-50%) scale(0.8) rotateY(-18deg);
  }

  .rotating-card.active {
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
  }

  .rotating-card.next {
    right: 15px;
    transform: translateY(-50%) scale(0.8) rotateY(18deg);
  }

  .app-buttons-container {
    bottom: 140px;
  }
}

/* =====================================================
   MOBILE LANDSCAPE (640px - 767px)
   ===================================================== */
@media screen and (min-width: 640px) and (max-width: 767px) {
  .hero-text-container {
    top: 120px;
    width: 90%;
  }

  .text-wrapper-7 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 22px;
  }

  .rotating-cards-container {
    position: absolute;
    top: 340px;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    height: 190px;
  }

  .rotating-card {
    width: 125px;
    height: 150px;
  }

  .rotating-card.prev {
    left: 10px;
    transform: translateY(-50%) scale(0.78) rotateY(-16deg);
  }

  .rotating-card.active {
    left: 50%;
    transform: translate(-50%, -50%) scale(0.98);
  }

  .rotating-card.next {
    right: 10px;
    transform: translateY(-50%) scale(0.78) rotateY(16deg);
  }

  .app-buttons-container {
    bottom: 120px;
  }
}

/* =====================================================
   MOBILE PORTRAIT (480px - 639px)
   ===================================================== */
@media screen and (min-width: 480px) and (max-width: 639px) {
  .hero-text-container {
    top: 110px;
    width: 92%;
  }

  .text-wrapper-7 {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 21px;
    width: 85%;
  }

  .rotating-cards-container {
    position: absolute;
    top: 320px;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    height: 200px;
  }

  .rotating-card {
    width: 120px;
    height: 145px;
  }

  .rotating-card.prev {
    left: 5px;
    transform: translateY(-50%) scale(0.75) rotateY(-15deg);
  }

  .rotating-card.active {
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
  }

  .rotating-card.next {
    right: 5px;
    transform: translateY(-50%) scale(0.75) rotateY(15deg);
  }

  .app-buttons-container {
    bottom: 110px;
  }
}

/* =====================================================
   SMALL MOBILE (360px - 479px)
   ===================================================== */
@media screen and (min-width: 360px) and (max-width: 479px) {
  .hero-text-container {
    top: 10%;
    width: 94%;
  }
.hero-background-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
  transition: background 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
  .text-wrapper-7 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 14.5px;
    line-height: 20px;
    width: 82%;
  }

  .rotating-cards-container {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 400px;
    height: 32%;
  }

  .rotating-card {
    width: 180px;
    height: 220px;
  }

  .rotating-card.prev {
    left: -20%;
    transform: translateY(-50%) scale(0.75) rotateY(-30deg);
  }

  .rotating-card.active {
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
  }

  .rotating-card.next {
    right: -20%;
    transform: translateY(-50%) scale(0.75) rotateY(30deg);
  }

  .app-buttons-container {
    bottom: 18%;
  }

  .appstoree img,
  .playstoree img {
    width: 120px;
  }

  .hero{
    background-image: none;
  }
}

/* =====================================================
   EXTRA SMALL MOBILE (320px - 359px)
   ===================================================== */
@media screen and (max-width: 359px) {
  .hero-text-container {
    top: 13%;
    width: 96%;
  }

  .text-wrapper-7 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 13.5px;
    line-height: 19px;
    width: 85%;
  }

  .rotating-cards-container {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 300px;
    height: 24%;
  }

  .rotating-card {
    width: 105px;
    height: 130px;
  }

  .rotating-card.prev {
    left: -28%;
    transform: translateY(-50%) scale(0.68) rotateY(-28deg);
  }

  .rotating-card.active {
    left: 50%;
    transform: translate(-50%, -50%) scale(0.88);
  }

  .rotating-card.next {
    right: -28%;
    transform: translateY(-50%) scale(0.68) rotateY(28deg);
  }

  .app-buttons-container {
    bottom: 25%;
  }

  .appstoree,
  .playstoree {
    width: 110px;
  }
}

/* =====================================================
   COMMON STYLES FOR ALL BREAKPOINTS
   ===================================================== */
@media screen and (max-width: 1199px) {
  .rotating-card {
    border-radius: 28px;
  }
}

@media screen and (max-width: 767px) {
  .card-background {
    width: 90%;
  }
}

@media screen and (max-width: 479px) {
  .card-background {
    width: 95%;
  }

  .rotating-card {
    border-radius: 24px;
  }
}

/* App Buttons */
.app-buttons-container {
  position: absolute;
  top: 84%;
  left: 69%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  width: 19%;
  align-items: center;
  justify-content: center;
  z-index: 7;
}

.appstoree,
.playstoree {
  position: relative;
  top: 0;
  left: 0;
  width: 128px;
  height: 38px;
  transition: transform 0.3s ease;
}

.appstoree:hover,
.playstoree:hover {
  transform: scale(1.05);
}

.appstoree img,
.playstoree img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-arrow-animation {
  position: absolute;
  bottom: 5%;
  left: 68%;
  transform: translateX(-50%);
  z-index: 100;
  animation: bounce 2s infinite;
}

@keyframes bounce {

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

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

  60% {
    transform: translateY(-5px);
  }
}

.hero-wave-animation {
  position: absolute;
  top: 57%;
  left: 68%;
  transform: translateX(-50%);
  width: 48%;
  max-width: 100%;
  height: auto;
  z-index: 99;
  pointer-events: none;
  mix-blend-mode: screen;
  aspect-ratio: 1.33;
  object-fit: cover;
  opacity: 0.15;
}

.animated-wave {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  mix-blend-mode: screen;
}

/* =====================================================
   MOBILE NAVIGATION
   ===================================================== */

.hamburger-menu {
  display: none;
  position: fixed;
  top: 30px;
  left: 20px;
  z-index: 10001;
  cursor: pointer;
  font-size: 26px;
  color: white;
}


.mobile-nav-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 20px 40px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 100%;
  margin-bottom: 50px;
}

.mobile-nav-link {
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 12px;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  text-align: left;
  transition: all 0.3s ease;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  background: rgba(203, 147, 255, 0.15);
  color: #CB93FF;
}

.mobile-app-buttons {
  display: flex;
  flex-direction: column;
  /* gap: 12px; */
  align-items: left;
  
}

.mobile-app-btn {
  width: 140px;
  height: auto;
}

.mobile-app-btn img {
  width: 100%;
  height: auto;
}

.mobile-nav-arrow {
  margin-top: 20px;
  animation: bounce 2s infinite;
}

.mobile-logo-text {
  background: linear-gradient(90deg, #CB93FF 0%, #56BEFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Rubik", sans-serif;
  font-size: 28px;
  font-weight: 700;
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */

/* Tablet and below */
@media screen and (max-width: 1024px) {
  .nav-app-buttons {
    gap: 10px;
  }

  .nav-app-btn {
    width: 44px;
    height: 44px;
  }

  .nav-app-btn .app-icon {
    width: 24px;
    height: 24px;
  }

  .navigation-div {
    display: none !important;
  }

  .logo {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
    z-index: 10001;
    width: 130px;
    height: auto;
  }

  .hamburger-menu {
    display: flex;
  }

  .mobile-nav-overlay {
    display: block;
  }

  .hero {
    padding: 100px 20px 60px;
    min-height: 100vh;
  }

  .hero-text-container {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 100%;
    text-align: center;
  }

  .text-wrapper-7 {
    font-size: 28px;
    width: 100%;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 22px;
    max-width: 100%;
    text-align: center;
  }


  .app-buttons-container {
    position: absolute;
    top: auto;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    gap: 12px;
  }

  .appstoree,
  .playstoree {
    width: 130px;
    height: auto;
  }

  .hero-arrow-animation {
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-wave-animation {
    bottom: 0;
    max-width: 100%;
  }
}

/* Mobile screens */
@media screen and (max-width: 768px) {
  .nav-app-buttons {
    display: none;
  }

  .hero {
    padding: 90px 15px 50px;
  }

  .logo {
    width: 120px;
    top: 25px;
  }

  .hamburger-menu {
    top: 25px;
    left: 15px;
  }

  .hero-text-container {
    top: 110px;
    width: 95%;
  }

  .text-wrapper-7 {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 13px;
    line-height: 20px;
  }


  .app-buttons-container {
    bottom: 100px;
  }

  .appstoree,
  .playstoree {
    width: 120px;
  }

  .hero-arrow-animation {
    bottom: 50px;
  }
}

/* Small phones */
@media screen and (max-width: 480px) {
  .logo {
    width: 110px;
    top: 22px;
  }

  .hamburger-menu {
    top: 22px;
    left: 12px;
    width: 28px;
    height: 22px;
  }

  .hero {
    padding: 80px 12px 40px;
  }

  .hero-text-container {
    top: 13%;
    width: 96%;
  }

  .text-wrapper-7 {
    font-size: 33px;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 20px;
    max-width: 100%;
    width: 81%;
  }


  .app-buttons-container {
    bottom: 20%;
  }

  .appstoree,
  .playstoree {
    width: 125px;
  }

  .hero-arrow-animation {
    bottom: 15%;
    left: 50%;
  }

  .hero-wave-animation {
    max-width: 100%;
    top: 63%;
    width: 100%;
    left: 50%;
    opacity: 0.15;
  }

  .mobile-nav-bar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 64px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  .mobile-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .mobile-logo-text {
    font-size: 22px;
    font-weight: 700;
    color: white;
  }

  .hamburger-menu {
    position: absolute;
    left: 20px;
    font-size: 24px;
    color: white;
    cursor: pointer;
  }

  .mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: #261C2D;
    transform: translateY(-100%);
    transition: 0.5s ease;
    z-index: 9998;
  }

  .mobile-nav-overlay.active {
    transform: translateY(0);
  }

  .mobile-nav-content {
    padding: 100px 30px;
  }

  .mobile-nav-link {
    display: block;
    font-size: 16px;
    color: white;
    text-decoration: none;
  }

  .mobile-app-buttons img {
    width: 160px;
  }
}



/* Smart Call Routing Section */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #080713;
  color: #ffffff;
  overflow-x: hidden;
  min-height: 100vh;
}

.section2-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 40px;
  background-image: url('section2-images/section-2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.section2-header {
  text-align: center;
  margin-bottom: 80px;
}

.section2-header h1 {
  font-size: 48px;
  font-weight: 400;
  background: linear-gradient(90deg, #CB93FF 0%, #56BEFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.section2-header p {
  font-size: 18px;
  color: #a0a0b0;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.section2-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.section2-left-side {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section2-feature-card {
  background: rgba(255, 255, 255, 0.10);
  border: 2px solid rgba(255, 255, 255, 0.10);
  border-radius: 120px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  max-width: 650px;
}


/* First card - left aligned */
.section2-feature-card:nth-child(1) {
  margin-right: auto;
  margin-left: 0;
}

/* Second card - right aligned */
.section2-feature-card:nth-child(2) {
  margin-left: auto;
  margin-right: 0;
}

/* Third card - left aligned */
.section2-feature-card:nth-child(3) {
  margin-right: auto;
  margin-left: 0;
}

.section2-feature-card:nth-child(4) {
  margin-right: auto;
  margin-left: 0;
  display: none;
}

.section2-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.section2-feature-card.section2-active {
  border: 2.5px solid rgba(144, 201, 236, 0.56);
  transform: scale(1.08);
  box-shadow: 0px 20px 60px rgba(100, 120, 255, 0.3);
}

.section2-feature-card.section2-second.section2-active {
  border: 2.52px solid rgba(178, 144, 236, 0.40);

}

.section2-feature-card.section2-active::before {
  opacity: 1;
}

.section2-icon-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}



.section2-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.section2-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  width: 350px;
}

.section2-card-content h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #90C9EC;
  line-height: 1.3;
}

.section2-card-content.section2-second h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #B290EC;
  line-height: 1.3;
}

.section2-card-content p {
  font-size: 15px;
  color: #a0a0c0;
  line-height: 1.4;
  margin: 0;
}

/* Right Side */
.section2-right-side {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section2-ai-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.section2-ai-image img {
  max-width: 600px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(100, 100, 255, 0.3));
}

/* Status Cards */
.section2-status-card {
  position: absolute;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  pointer-events: none;
}

.section2-status-card.section2-active {
  opacity: 1;
  pointer-events: auto;
}

/* Status 1 - Three Buttons in Circular Arc Formation */
.section2-status1 {
  display: flex;
  flex-direction: column;
  gap: 0;
  right: 20%;
  top: 50%;
  transform: translateY(-50%);
}

.section2-status1 .section2-status-item:nth-child(1) {
  transform: translate(0, -80px);
}

.section2-status1 .section2-status-item:nth-child(2) {
  transform: translate(-30px, 0);
}

.section2-status1 .section2-status-item:nth-child(3) {
  transform: translate(0, 80px);
}

/* Status 1 - Three Buttons */
.section2-status1 {
  display: flex;
  flex-direction: column;
  gap: 0;
  right: 20%;
  top: 60%;
  transform: translateY(-50%);
}

.section2-status1 .section2-status-item:nth-child(1) {
  transform: translate(0, -40px);
}

.section2-status1 .section2-status-item:nth-child(2) {
  transform: translate(-30px, 0);
}

.section2-status1 .section2-status-item:nth-child(3) {
  transform: translate(0, 40px);
}

.section2-status-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  color: #b0b0c0;
  white-space: nowrap;
  margin-bottom: 10px;
}

.section2-status-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  margin-top: 15px;
}

.section2-status-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


.section2-status2 {
  background-image: url("section2-images/audio-box.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  border-radius: 20px;
  padding: 30px 40px;
  right: 20%;
  top: 40%;
  transform: translateY(-50%);
}

.section2-ai-message {
  margin-bottom: 0;
}

.section2-ai-message p {
  font-size: 18px;
  color: #d0d0e0;
  line-height: 1.6;
  margin-bottom: 2px;
}

/* Audio Wave Container - Outside and Below Status2 */
.section2-audio-wave-container {
  position: absolute;
  right: 20%;
  top: 70%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  pointer-events: none;
}

.section2-audio-wave-container.section2-active {
  opacity: 1;
  pointer-events: auto;
}

.section2-audio-wave {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  height: 50px;
}

.section2-wave-bar {
  width: 3px;
  background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 100%);
  border-radius: 2px;
  animation: section2-wave 1s ease-in-out infinite;
}

.section2-wave-bar:nth-child(1) {
  height: 20px;
  animation-delay: 0s;
}

.section2-wave-bar:nth-child(2) {
  height: 15px;
  animation-delay: 0.1s;
}

.section2-wave-bar:nth-child(3) {
  height: 25px;
  animation-delay: 0.2s;
}

.section2-wave-bar:nth-child(4) {
  height: 18px;
  animation-delay: 0.3s;
}

.section2-wave-bar:nth-child(5) {
  height: 22px;
  animation-delay: 0.4s;
}

@keyframes section2-wave {

  0%,
  100% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(1.5);
  }
}

/* Status 3 - Busy Calls Card */
.section2-status3 {
  right: 20%;
  top: 50%;
  transform: translateY(-50%);
}

.section2-busy-calls-gif {
  width: 300px;
  height: auto;
  border-radius: 20px;
  display: block;
}

.section2-toggle-switch {
  width: 50px;
  height: 28px;
  background: linear-gradient(135deg, #a78bfa 0%, #c084fc 100%);
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.section2-toggle-slider {
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  right: 3px;
  transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .section2-main-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .section2-left-side {
    padding-right: 0;
  }

  .section2-feature-card {
    max-width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .section2-right-side {
    min-height: 500px;
  }

  .section2-status1,
  .section2-status2,
  .section2-status3,
  .section2-audio-wave-container {
    right: 10%;
  }
}

/* MOBILE MODE - 768px and below */
@media (max-width: 768px) {
  .section2-container {
    padding: 40px 20px;
    min-height: 100vh;
    background-image: none;
  }

  .section2-header {
    margin-bottom: 50px;
  }

  .section2-header h1 {
    font-size: 42px;
  }

  .section2-header p {
    font-size: 16px;
  }

  .section2-main-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
  }

  /* SHOW left side (feature cards) in mobile */
  .section2-left-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 100%;
    align-items: center;
    padding-right: 0;
  }

  .section2-feature-card:nth-child(4) {
    display: block;

  }

  .section2-last-image {
    height: auto;
    max-height: 200px;
    width: auto;
    max-width: 350px;
  }

  /* HIDE right-side completely in mobile */
  .section2-right-side {
    display: none;
  }

  /* Feature cards styling for mobile */
  .section2-feature-card {
    max-width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    background: rgba(255, 255, 255, 0.10);
    border: 2px solid rgba(255, 255, 255, 0.10);
    border-radius: 42px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-direction: row;
    width: 100%;
    transition: none;
  }

  .section2-feature-card.section2-active {
    border: none;
    transform: none;
    box-shadow: none;
  }

  .section2-feature-card.section2-second.section2-active {
    border: none;
  }

  .section2-icon-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .section2-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
  }

  .section2-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
  }

  .section2-card-content h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #90C9EC;
    line-height: 1.3;
  }

  .section2-card-content.section2-second h3 {
    color: #B290EC;
  }

  .section2-card-content p {
    font-size: 14px;
    color: #a0a0c0;
    line-height: 1.4;
    margin: 0;
  }

  /* Remove all animations in mobile mode */
  .section2-wave-bar {
    animation: none !important;
  }

  .section2-busy-calls-card {
    min-width: 280px;
    padding: 20px;
  }
}


/* Call History Section */
.call-history {
  background-image: url(images/call-history-section-without-glow.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 89dvh;
  position: relative;
  padding: 80px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header Section */
.call-history-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 65px;
  margin-top: 15px;
  text-align: center;
}

.call-history-2 {
  background: linear-gradient(90deg, #CB93FF 0%, #56BEFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 48px;
  margin: 0;
}

.text-wrapper-20 {
  font-family: "Rubik", sans-serif;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.80);
  font-size: 17px;
  line-height: 25px;
  max-width: 626px;
  margin: 0;
}

/* Content Container */
.call-history-content {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

/* Left Side - Mobile & Card */
.left-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mobile-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  min-height: 70px;
  display: flex;
  align-items: flex-start;
}

.mobile-image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 -114px 40px rgba(147, 51, 234, 0.1)) drop-shadow(0 -127px 80px rgba(147, 51, 234, 0.1)) drop-shadow(0 -122px 120px rgba(147, 51, 234, 0.1));
}


.call-card-overlay {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 132%;
  max-width: 430px;
  z-index: 10;
}



.call-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: auto;
}

/* Header Section */
.call-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.call-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.call-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.call-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.call-card-number {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

.call-card-time {
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.56);
  margin: 0;
}

.call-card-menu {
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
}

/* Message Section */
.call-card-message {
  display: flex;
  gap: 12px;
  background: #F3F0FA;
  border-radius: 16px;
  padding: 8px;
  align-items: center;
}

.call-card-play {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.play-button {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.play-button:hover {
  transform: scale(1.1);
}

.message-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.message-duration {
  font-family: "Rubik", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #412B76;
  margin: 0;
}

.message-text {
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.70);
  line-height: 1.5;
  margin: 0;
}

/* Action Buttons */
.call-card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
}

.action-btn {
  background: #F5F5F5;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 24%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: #E8E8E8;
  transform: scale(1.1);
}

.action-btn img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .call-card-overlay {
    width: 107%;
    top: 25%;
  }

  .call-card {
    padding: 16px;
  }

  .call-card-number {
    font-size: 15px;
  }

  .message-text {
    font-size: 12px;
  }
}

/* Right Side - Features List */
.right-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-title {
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
}

.feature-description {
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .call-history-content {
    grid-template-columns: 1fr;
    gap: 60px;
    width: 90%;
  }

  .right-content {
    padding-left: 0;
    padding-top: 20px;
  }

  .mobile-container {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .call-history {
    padding: 60px 20px;
  }

  .call-history-head {
    margin-bottom: 60px;
  }

  .call-history-2 {
    font-size: 36px;
  }

  .text-wrapper-20 {
    font-size: 18px;
  }

  .feature-row {
    gap: 16px;
  }

  .feature-icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .feature-title {
    font-size: 20px;
  }

  .feature-description {
    font-size: 15px;
  }
}

@media screen and (max-width: 480px) {
  .text-wrapper-20 {
    font-size: 16px;
  }

  .mobile-image {
    width: 100%;
  }
}


/* Manage your Plan and Profile */
.manage-plan-profile {
  background-image: url(images/fourth-section-new.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 65dvh;
  position: relative;
  padding: 20px 80px;
  display: flex;
  flex-direction: column;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #CB93FF 0%, #56BEFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Rubik", sans-serif;
}

.section-subtitle {
  font-size: 17px;
  font-weight: 100;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.80);
  max-width: 664px;
  margin: 0 auto;
  font-family: "Rubik", sans-serif;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  padding: 0px 12px 0px;
  border-radius: 30px;
  background-image: url('images/manage-profile-container.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card:hover {
  transform: translateY(-8px);
}

.card-title {
  font-family: "Rubik", sans-serif;
  color: white;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0px;
  margin-top: 18%;
  text-align: left;
}

.card-icon-circle {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  background: linear-gradient(180deg, #1B4B87 0%, #061221 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.card-icon {
  width: 36px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon img {
  width: 100%;
  height: 130%;
  object-fit: contain;
  filter: brightness(1.2);
}



.card-description {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
}

@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .manage-plan-profile {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 36px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }


}




/* Pricing Section  */
.pricing-section {
  background-image: url(images/fifth-section-new.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100dvh;
  position: relative;
  padding: 50px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-title {
  font-family: "Rubik", sans-serif;
  font-size: 48px;
  font-weight: 400;
  background: linear-gradient(90deg, #CB93FF 0%, #56BEFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.pricing-subtitle {
  color: rgba(255, 255, 255, 0.80);
  font-size: 17px;
  font-weight: 100;
  font-family: "Rubik", sans-serif;
  font-style: normal;

}

.pricing-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 1200px;
  width: 100%;
}

/* Individual Pricing Card */
.pricing-card {
  background: linear-gradient(208deg, rgba(255, 255, 255, 0.00) 5.22%, rgba(255, 255, 255, 0.07) 54.24%, rgba(255, 255, 255, 0.00) 102.33%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 20px 20px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  width: 91%;
}

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

/* Highlighted Card (Middle - For Professionals) */
.pricing-card.highlighted {
  background: radial-gradient(240.54% 82.29% at 44.63% 17.71%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.00) 100%);
  border: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
  transform: scale(1.08);
}

.pricing-card.highlighted::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(29deg, rgba(255, 255, 255, 0.03) 7.43%, rgba(255, 255, 255, 0.34) 47.02%, rgba(255, 255, 255, 0.03) 102.07%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  pointer-events: none;
}

.pricing-card.highlighted:hover {
  transform: scale(1.08) translateY(-8px);
  box-shadow: 0 25px 70px rgba(86, 190, 255, 0.2);
}

/* Best Plan Badge */
.best-plan-badge {
  position: relative;
  top: -1%;
  left: 88%;
  transform: translateX(-50%);
  background: linear-gradient(143deg, #FFE100 9.02%, #B57625 150.49%);
  font-family: "rubik", sans-serif;
  text-align: center;
  color: #000;
  padding: 5px 8px;
  border-radius: 24px;
  width: 80px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 0 0 rgba(255, 255, 255, 0.34) inset;
}

/* Card Header */
.card-header {
  text-align: initial;
}



.card-title.individuals {
  color: #CFCFCF;
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 9%;
}

.card-title.professionals {
  color: #56beff;
  font-family: "Rubik", sans-serif;
  margin-top: 2%;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.card-title.business {
  color: #d896ff;
  margin-top: 9%;
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;

}

.card-description {
  color: rgba(255, 255, 255, 0.70);
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  min-height: 47px;
  margin-top: 2%;
  width: 91%;

}

/* Pricing Display */
.price-display {
  text-align: center;
  margin: 15px 0 15px 0;
}

.price-row {
  display: flex;
  justify-content: initial;
  gap: 2px;
  margin-bottom: 8px;
}

.currency {
  font-family: "Rubik", sans-serif;
  font-size: 25px;
  color: #CFCFCF;
  font-weight: 400;
}

.price-amount {
  font-family: "Rubik", sans-serif;
  font-size: 44px;
  color: #fff;
  font-weight: 500;
  line-height: 1;
}

.price-period {
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  color: #FFF;
  font-weight: 300;
  align-content: flex-end;

}

.billing-info {
  color: rgba(255, 255, 255, 0.4);
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 300;
  text-align: initial;
  margin-top: 2%;
}

/* CTA Buttons */
.cta-button {
  padding: 14px 32px;
  border-radius: 50px;
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  align-self: center;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.cta-button.primary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-button.primary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.02);
}

.cta-button.secondary {
  background: #fff;
  color: #0a0515;
  font-weight: 500;
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: scale(1.02);
}

/* Features Section */
.features-section {
  margin-top: 8px;
  flex-grow: 1;
}

.features-title {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 2px;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

}


.feature-item:first-child {
  padding-top: none;
}

.feature-item:last-child {
  border-bottom: none;
}


.feature-icon.check {
  background: url(images/check-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
}

.feature-icon.cross {
  background: url(images/cross-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
}

.feature-text {
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.feature-text.unavailable {
  color: #fff;
}

.feature-subtext {
  color: rgba(86, 190, 255, 0.8);
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 400;
  padding-left: 15%;
  margin: 0px;
  text-decoration: underline;
  cursor: pointer;
}

/* Tablet and below - Enable horizontal scrolling with centered highlighted card */
@media (max-width: 1200px) {
  .pricing-cards-container {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 20px;
    max-width: 100%;
    padding: 0 20px 20px 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
  }

  .pricing-cards-container::-webkit-scrollbar {
    display: none;
  }

  .pricing-card {
    min-width: 340px;
    max-width: 340px;
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  .pricing-card.highlighted {
    transform: scale(1.05);
  }

  .pricing-card.highlighted:hover {
    transform: scale(1.05) translateY(-8px);
  }
}

/* Mobile landscape and smaller tablets */
@media (max-width: 768px) {
  .pricing-section {
    padding: 60px 0px;
  }

  .pricing-title {
    font-size: 36px;
  }

  .pricing-subtitle {
    font-size: 16px;
    margin: 0px 16px;
  }

  .pricing-cards-container {
    padding: 30px 10px 20px 10px;
    gap: 16px;
  }

  .pricing-card {
    min-width: 300px;
    max-width: 300px;
  }

  .card-title {
    font-size: 20px;
  }

  .price-amount {
    font-size: 44px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .pricing-card {
    min-width: 280px;
    max-width: 230px;
    padding: 32px 24px;
  }

  .best-plan-badge {
    width: 80px;
    font-size: 10px;
    padding: 8px 8px;
  }

  .pricing-card.highlighted:hover {
    box-shadow: none;
    transform: scale(1.05) translateY(-8px);
  }
}

/* Extra small mobile devices */
@media (max-width: 375px) {
  .pricing-card {
    min-width: 260px;
    max-width: 260px;
  }
}

/* ==========================================
   SMALL BUSINESS SECTION - UPDATED
   ========================================== */

/* Small Business Section */
.small-business-section {
  background-image: url(images/sixth-section-new.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100dvh;
  position: relative;
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header at the top */
.small-business-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
}

.small-business-title {
  font-family: "Rubik", sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
  background: linear-gradient(90deg, #cb93ff 0%, #56beff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


.small-business-subtitle {
  color: rgba(255, 255, 255, 0.80);
  font-family: "Rubik", sans-serif;
  font-size: 17px;
  font-weight: 100;
  line-height: 1.6;
}

.small-business-container {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}

/* Left Side - Form */
.small-business-form {
  position: sticky;
  top: 120px;
}

.form-card {
  background: rgba(20, 20, 35, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
}

.form-card-title {
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-bottom: 24px;
}

.success-message {
  background: rgba(86, 190, 255, 0.1);
  border: 1px solid rgba(86, 190, 255, 0.3);
  border-radius: 12px;
  padding: 16px;
  color: #56beff;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  text-align: center;
  margin-bottom: 20px;
  display: none;
}

.success-message.show {
  display: block;
}

#smallBusinessForm {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-input-group {
  position: relative;
}

.form-field {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-field:focus {
  outline: none;
  border-color: rgba(86, 190, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.form-field::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-dropdown {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23ffffff' stroke-opacity='0.4' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-dropdown option {
  background: #1a1a2e;
  color: #fff;
}

.form-textarea-field {
  min-height: 100px;
  resize: vertical;
  font-family: "Rubik", sans-serif;
  resize: none;
}

.error-message {
  color: #ff6b6b;
  font-family: "Rubik", sans-serif;
  font-size: 12px;
  margin-top: 6px;
  display: none;
}

.form-input-group.error .error-message {
  display: block;
}

.form-input-group.error .form-field {
  border-color: #ff6b6b;
}

.form-submit-button {
  width: 61%;
  padding: 14px 32px;
  background: #fff;
  color: #0a0515;
  border: none;
  border-radius: 50px;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  align-self: center;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.form-submit-button:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: scale(1.02);
}

.form-submit-button:active {
  transform: scale(0.98);
}

.form-helper-text {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Rubik", sans-serif;
  font-size: 12px;
  margin-top: 16px;
  margin-bottom: 0;
  font-weight: 300;
}

/* Right Side - Content */
.small-business-content {
  padding-left: 20px;
}

.plan-details {
  margin-bottom: 48px;
}

.plan-section-title {
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #CB93FF;
  margin-bottom: 10px;
}

.plan-description {
  color: white;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 300;
  width: 100%;
}

/* Services Section */
.services-section {
  margin-top: 48px;
}

.services-title {
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 32px;
}

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

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  width: 100%;
}

.service-icon-wrapper {
  width: 61.2px;
  height: 61.2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.00) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-icon-wrapper:hover {
  transform: translateY(-4px);
}

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

.service-label {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .small-business-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .small-business-form {
    position: static;
    max-width: 550px;
    margin: 0 auto;
  }

  .form-card {
    padding: 44px 36px;
  }

  .form-card-title {
    font-size: 26px;
  }

  .small-business-content {
    padding-left: 0;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .small-business-section {
    padding: 60px 20px;
  }

  .small-business-title {
    font-size: 36px;
  }

  .small-business-subtitle {
    font-size: 16px;
  }

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

  .service-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .service-icon {
    width: 35px;
    height: 35px;
  }

  .small-business-form {
    max-width: 500px;
  }

  .form-card {
    padding: 40px 32px;
  }

  .form-card-title {
    font-size: 24px;
  }

  .form-field {
    padding: 16px 18px;
    font-size: 15px;
  }

  .form-submit-button {
    font-size: 17px;
    padding: 16px 36px;
  }
}

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

  .form-card {
    padding: 10px 45px;
  }

  .form-card-title {
    font-size: 20px;
    margin-bottom: 28px;
  }

  .form-field {
    padding: 15px 16px;
    font-size: 15px;
  }

  .form-textarea-field {
    min-height: 110px;
  }

  .form-submit-button {
    width: 78%;
    font-size: 16px;
    padding: 16px 32px;
  }

  .form-helper-text {
    font-size: 13px;
  }

}


/* Testimonials Section */
.testimonials-section {
  background-image: url(images/seventh-section-latest.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 80dvh;
  position: relative;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header Section */
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
  margin-top: 37px;
  max-width: 900px;
}

.testimonials-title {
  font-family: "Rubik", sans-serif;
  font-size: 48px;
  font-weight: 400;
  background: linear-gradient(90deg, #cb93ff 0%, #56beff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  line-height: 1.2;
}

.testimonials-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Rubik", sans-serif;
  font-size: 17px;
  font-weight: 100;
  line-height: 1.6;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  width: 100%;
}

/* Individual Testimonial Card */
.testimonial-card {
  background-color: #eaf8fe;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  padding: 25px 28px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.testimonial-card-mid {
  background-color: #faeafe;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.testimonial-card-mid:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Client Header */
.client-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.client-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.client-name {
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

.client-role {
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.70);
  margin: 0;
}

/* Star Rating */
.star-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  background-image: url(images/blue-rating-img.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 6px 12px;
  border-radius: 20px;
  flex-shrink: 0;
  position: absolute;
  top: 13%;
  right: 2%;
  width: 45px;
  height: 20px;
  justify-content: end;
}

.star-rating-mid {
  display: flex;
  align-items: center;
  gap: 6px;
  background-image: url(images/purple-rating-img.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 6px 12px;
  border-radius: 20px;
  flex-shrink: 0;
  position: absolute;
  top: 13%;
  right: 2%;
  width: 50px;
  height: 25px;
  justify-content: end;
}

.star-icon {
  width: 12px;
  height: 12px;
}

.star-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rating-number {
  font-family: "Rubik", sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

/* Testimonial Text */
.testimonial-text {
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #000000;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

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

  .testimonials-title {
    font-size: 36px;
  }

  .testimonials-subtitle {
    font-size: 16px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }
}

/* ==========================================
   FAQ SECTION STYLES
   ========================================== */



/* FAQ Section - Two Column Layout */
.faq-section {
  padding: 136px 34px 0px;
  background-image: url(images/eigth-section-latest.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100dvh;
  position: relative;
  padding: 20px 20px;

}

.faq-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 80px;
  align-items: start;
}

/* Left Side - Heading & Contact */
.faq-left {
  position: relative;
  top: 8%;
}

.faq-label {
  font-size: 14px;
  color: #FFF;
  margin-bottom: 12px;
  font-weight: 300;
  font-family: "Rubik", sans-serif;
}

.faq-heading {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 50px;
  margin-top: 16px;
  background: linear-gradient(90deg, #CB93FF 0%, #56BEFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Rubik", sans-serif;
}

.faq-contact-text {
  font-size: 14px;
  color: #FFF;
  margin-bottom: 12px;
  font-family: "Rubik", sans-serif;
  font-weight: 300;
}

.faq-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #56BEFF;
  text-decoration: none;
  font-size: 28px;
  font-weight: 300;
  transition: all 0.3s ease;
  font-family: "Rubik", sans-serif;
}

.faq-envelope {
  width: 7%;
  margin-top: 4px;
}

.faq-email:hover {
  gap: 12px;
}

.faq-email i {
  font-size: 18px;
}

/* Right Side - FAQ Items */
.faq-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(167, 139, 250, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.70);
  font-size: 18px;
  font-weight: 300;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #a78bfa;
}

.faq-question i {
  font-size: 14px;
  color: #9ca3af;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(90deg);
  color: #a78bfa;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 28px;
  font-family: "Rubik", sans-serif;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px 28px;
}

.faq-answer p {
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .faq-container {
    grid-template-columns: 300px 1fr;
    gap: 50px;
  }

  .faq-heading {
    font-size: 35px;
  }


}

@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-left {
    position: static;
  }

  .faq-heading {
    font-size: 35px;
    margin-bottom: 24px;
  }

  .faq-question {
    padding: 20px;
    font-size: 15px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
}

@media (max-width: 480px) {
  .faq-email {
    font-size: 18px;
  }

  .faq-heading {
    font-size: 35px;
  }

}


/* Stats Section */
.stats-section {
  background: linear-gradient(180deg, rgba(8, 7, 19, 0.95) 0%, rgba(8, 7, 19, 1) 100%);
  padding: 20px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.stats-container {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  align-items: start;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.stat-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-circle:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.stat-circle.blue {
  background: #4295C8;
}

.stat-circle.purple {
  background: #6F528A;
}

.stat-number {

  display: flex;
  width: 66px;
  height: 19px;
  flex-direction: column;
  justify-content: center;
  color: #FFF;
  text-align: center;
  font-family: "rubik", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;

}

.stat-description {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  line-height: 1.7;
  max-width: 340px;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 450px;
    margin: 0 auto;
  }

  .stats-section {
    padding: 80px 40px;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 60px 20px;
  }

  .stat-circle {
    width: 91px;
    height: 91px;
  }

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

  .stat-description {
    font-size: 15px;
    max-width: 300px;
  }

  .stats-container {
    gap: 50px;
  }
}


/* Download App Section */
.download-app-section {
  background-color: #080713;
  padding: 0px 80px 120px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.download-app-container {
  max-width: 1400px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 🎨 MAIN CARD - APPLY YOUR BACKGROUND IMAGE HERE */
.download-card {
  width: 100%;
  max-width: 900px;
  background-color: rgba(30, 30, 45, 0.8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: radial-gradient(240.54% 82.29% at 44.63% 17.71%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.00) 100%);
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

/* Optional: Add a subtle overlay for better text readability */
.download-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(8, 7, 19, 0.4) 0%, rgba(8, 7, 19, 0.6) 100%);
  z-index: 0;
  pointer-events: none;
}

/* Ensure content is above overlay */
.download-card>* {
  position: relative;
  z-index: 1;
}

.download-title {
  font-family: "Rubik", sans-serif;
  font-size: 44px;
  font-weight: 400;
  background: linear-gradient(90deg, #CB93FF 0%, #56BEFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0px;
  line-height: 1.3;
}

.download-subtitle {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 40px;
}

.qr-code-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.qr-code-image {
  width: 130px;
  height: 132px;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.qr-text {
  font-family: "Rubik-Regular", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

.app-store-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.app-store-link {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.app-store-link:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.app-store-link img {
  height: 40px;
  width: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .download-app-section {
    padding: 60px 40px 80px 40px;
  }

  .download-card {
    padding: 50px 60px;
  }

  .download-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .download-app-section {
    padding: 50px 20px 60px 20px;
  }

  .download-card {
    padding: 40px 30px;
    border-radius: 24px;
  }

  .download-title {
    font-size: 28px;
  }

  .download-subtitle {
    font-size: 15px;
  }

  .qr-code-image {
    width: 120px;
    height: 120px;
  }

  .app-store-link img {
    height: 42px;
  }
}

@media (max-width: 480px) {
  .download-card {
    padding: 32px 24px;
  }

  .download-title {
    font-size: 30px;
  }

  .download-subtitle {
    font-size: 14px;
  }

  .app-store-buttons {
    flex-direction: column;
    gap: 12px;
  }
}

/* ==========================================
   FOOTER - GRID LAYOUT
   ========================================== */

.footer {
  position: absolute;
  background: linear-gradient(180deg,
      rgba(8, 7, 19, 0) 0%,
      rgba(38, 28, 45, 1) 100%);
  position: relative;
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 0px;
  width: 100%;
}

/* ==========================================
   COLUMN 1: LOGO & DESCRIPTION
   ========================================== */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-img {
  width: 80px;
  height: 99px;
}

.footer-logo-text {
  background: linear-gradient(90deg, #CB93FF 0%, #56BEFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 25.6px;
  margin: 0;
}

.footer-description {
  font-family: "Rubik", sans-serif;
  font-style: normal;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.80);
  font-size: 16px;
  line-height: 28px;
  margin: 0;
  max-width: 350px;
}

/* ==========================================
   COLUMN 2: QUICK LINKS
   ========================================== */

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-heading {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 22px;
  margin: 0;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;

  line-height: 50px;
}

.footer-nav-list.with-dots li {
  position: relative;
  padding-left: 20px;
}

.footer-nav-list.with-dots li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: 18px;
}

.footer-nav-list li a {
  font-family: "Rubik", sans-serif;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.80);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-nav-list li a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  transform: translateX(5px);
}

/* ==========================================
   COLUMN 3: CONTACT INFO
   ========================================== */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-contact-info {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Rubik", sans-serif;
  font-weight: 300;
  color: #ffffffcc;
  font-size: 18px;
}

.contact-item a {
  color: #ffffffcc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #ffffff;
}

.contact-icon {
  width: 26px;
  height: 26px;
  opacity: 0.56;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon img {
  max-width: 100%;
  max-height: 100%;
}

.contact-phone {
  width: 26px;
  height: 26px;
  opacity: 0.56;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-phone img {
  max-width: 100%;
  max-height: 100%;
}



/* ==========================================
   SOCIAL MEDIA ICONS
   ========================================== */

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 12px;
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
}

.social-icon svg {
  transition: transform 0.3s ease;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(203, 147, 255, 0.5);
  transform: translateY(-8px) scale(1.15);
  box-shadow: 0 12px 30px rgba(203, 147, 255, 0.4);
}

.social-icon:hover svg {
  transform: scale(1.1);
}

/* ==========================================
   FOOTER BOTTOM - COPYRIGHT
   ========================================== */

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 40px;
  text-align: center;
}

.footer-copyright {
  font-family: "Rubik", sans-serif;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.80);
  font-size: 18px;
  margin: 0;
}

.footer-copyright a {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  color: #ffffffcc;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  color: #ffffff;
}

/* ==========================================
   RESPONSIVE - TABLET
   ========================================== */

@media screen and (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 500px;
  }
}

/* ==========================================
   RESPONSIVE - MOBILE
   ========================================== */

@media screen and (max-width: 768px) {
  .footer {
    padding: 60px 30px 30px 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    text-align: left !important;
    align-items: baseline;
  }

  .footer-logo-section {
    align-items: center;
  }

  .footer-description {
    text-align: left;
  }

  .footer-heading {
    font-size: 20px;
  }

  .footer-nav-list li a,
  .contact-item {
    font-size: 16px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-copyright {
    font-size: 14px;
  }
}