/* === UPDATED SERVICES SECTION WITH GLASS BUBBLES === */
.services-info-section-2 {
  padding: 100px 5%;
  background: linear-gradient(135deg, #141E30 0%, #1a2332 50%, #0f1724 100%);
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* Floating Glass Bubbles Background */
.services-info-section-2::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background:
      radial-gradient(circle at 15% 70%, rgba(63, 94, 150, 0.18) 0%, transparent 50%),
      radial-gradient(circle at 85% 30%, rgba(20, 30, 48, 0.22) 0%, transparent 50%),
      radial-gradient(circle at 50% 90%, rgba(63, 94, 150, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.bubbles-services-2 {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bubble-service-2 {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(63, 94, 150, 0.3);
  box-shadow:
      0 20px 50px rgba(20, 30, 48, 0.3),
      inset 0 0 30px rgba(255, 255, 255, 0.1);
  animation: float-light 24s infinite ease-in-out;
  opacity: 0.7;
}

/* 6 Bubbles for Services Section */
.bubble-service-2:nth-child(1) { width: 380px; height: 380px; top: -8%; right: -6%; background: rgba(63, 94, 150, 0.14); animation-delay: 1s; animation-duration: 27s; }
.bubble-service-2:nth-child(2) { width: 290px; height: 290px; top: 60%; left: -10%; background: rgba(20, 30, 48, 0.18); animation-delay: 7s; animation-duration: 23s; }
.bubble-service-2:nth-child(3) { width: 170px; height: 170px; bottom: 20%; right: 12%; background: rgba(63, 94, 150, 0.2); animation-delay: 10s; animation-duration: 19s; }
.bubble-service-2:nth-child(4) { width: 250px; height: 250px; top: 25%; left: 10%; background: rgba(80, 110, 160, 0.16); animation-delay: 4s; animation-duration: 29s; }
.bubble-service-2:nth-child(5) { width: 150px; height: 150px; bottom: 40%; left: 20%; background: rgba(40, 60, 100, 0.22); animation-delay: 13s; animation-duration: 21s; }
.bubble-service-2:nth-child(6) { width: 360px; height: 360px; bottom: -12%; right: -4%; background: rgba(63, 94, 150, 0.11); animation-delay: 9s; animation-duration: 31s; }

@keyframes float-light {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg) scale(1); }
  25% { transform: translateY(-70px) translateX(60px) rotate(15deg) scale(1.08); }
  50% { transform: translateY(-110px) translateX(-50px) rotate(-12deg) scale(0.94); }
  75% { transform: translateY(-60px) translateX(70px) rotate(10deg) scale(1.05); }
}

.services-left-2 {
  flex: 1;
  min-width: 300px;
  position: relative;
  z-index: 10;
}

.services-left-2 h2 {
  font-size: 2.5rem;
  color: #2fa9c9;
  margin-bottom: 30px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(47, 169, 201, 0.3);
}

/* Updated Services List Design */
.services-list-2 {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.services-list-2 li {
  margin-bottom: 0;
}

.services-list-2 a {
  color: #e2e8f0;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(63, 94, 150, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.services-list-2 a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(47, 169, 201, 0.2), transparent);
  transition: left 0.7s ease;
}

.services-list-2 a:hover::before {
  left: 100%;
}

.services-list-2 a:hover {
  background: rgba(47, 169, 201, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(47, 169, 201, 0.3);
  border-color: rgba(47, 169, 201, 0.5);
}

.services-list-2 a i {
  margin-right: 12px;
  font-size: 1.2rem;
  color: #2fa9c9;
  transition: all 0.3s ease;
}

.services-list-2 a:hover i {
  transform: scale(1.2);
  color: #00e0ff;
}

    .btn {
      position: relative;
      display: inline-block;
      padding: 15px 40px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      text-decoration: none;
      min-width: 160px;
      text-align: center;
      cursor: pointer;
      overflow: hidden;
      transition: all 0.4s ease;
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.25);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transition: left 0.7s ease;
    }

    .btn:hover::before {
      left: 100%;
    }

    .btn:hover {
      background: #2fa9c9;
      color: #000;
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(47, 169, 201, 0.5);
      border-color: #2fa9c9;
    }
.services-right-2 {
  flex: 1;
  min-width: 300px;
  text-align: center;
  position: relative;
  z-index: 10;
}

.services-right-2 img {
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transition: transform 0.5s ease;
}

.services-right-2 img:hover {
  transform: scale(1.05);
}


.service-video-2 {
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transition: transform 0.5s ease;
  object-fit: cover;
}

.service-video-2:hover {
  transform: scale(1.05);
}


.services-text-2 {
  margin-top: 30px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #94a3b8;
  text-align: left;
}

/* === PRICING PACKAGES SECTION === */
.pricing-section {
  padding: 120px 5%;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background:
      radial-gradient(circle at 15% 70%, rgba(47, 169, 201, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 85% 30%, rgba(20, 30, 48, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.pricing-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 10;
  width: 100%;
}

.pricing-heading {
  color: #2fa9c9;
  font-size: 1.3rem;
  font-weight: 700;
  align-items: center;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(47, 169, 201, 0.3);
}

.pricing-title {
  color: #e2e8f0;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  align-items: center;
}

.pricing-subtitle {
  color: #94a3b8;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 40px 30px;
  width: 340px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(63, 94, 150, 0.2);
  overflow:  visible;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(47, 169, 201, 0.05) 0%, transparent 100%);
  z-index: -1;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(47, 169, 201, 0.2);
  border-color: rgba(47, 169, 201, 0.4);
}

.pricing-card.basic { border-top: 4px solid #888; }
.pricing-card.growth { 
  border-top: 4px solid #2fa9c9;
  background: rgba(47, 169, 201, 0.08);
}
.pricing-card.enterprise { 
  background: rgba(26, 26, 26, 0.8);
  border-top: 4px solid #2fa9c9;
}

.pricing-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2fa9c9;
  color: #000;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;

  white-space: nowrap;   /* ✅ ADD THIS LINE */
}

.basic .pricing-tag { background: #888; color: white; }
.growth .pricing-tag { background: #2fa9c9; color: #000; }
.enterprise .pricing-tag { background: #2fa9c9; color: #000; }

.pricing-card h3 {
  font-size: 24px;
  margin: 20px 0 8px;
  font-weight: 600;
  color: #e2e8f0;
}

.pricing-card p.desc {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 30px;
}

.enterprise p.desc { color: #ccc; }

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 30px 0;
}

.pricing-features li {
  margin: 16px 0;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #e2e8f0;
}

.pricing-features li svg {
  margin-right: 12px;
  flex-shrink: 0;
}

.enterprise .pricing-features li { color: #eee; }

.pricing-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s;
  background: #2fa9c9;
  color: #000;
}

.basic .pricing-btn {
  background: #1a1a1a;
  color: white;
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(47, 169, 201, 0.3);
  background: #00e0ff;
}

.pricing-guarantee {
  margin-top: 60px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px 30px;
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  font-size: 15px;
  color: #94a3b8;
  position: relative;
  z-index: 10;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(47, 169, 201, 0.2);
}

.pricing-guarantee span {
  color: #2fa9c9;
  font-weight: 600;
}

/* ==== ULTRA PREMIUM GLASS FAQ WITH BUBBLES ==== */
.faq-section {
  padding: 120px 5%;
  background: linear-gradient(135deg, #141E30 0%, #1a2332 50%, #0f1724 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* Floating Glass Bubbles for FAQ */
.faq-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background:
      radial-gradient(circle at 15% 70%, rgba(63, 94, 150, 0.18) 0%, transparent 50%),
      radial-gradient(circle at 85% 30%, rgba(20, 30, 48, 0.22) 0%, transparent 50%),
      radial-gradient(circle at 50% 90%, rgba(63, 94, 150, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.bubbles-faq {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bubble-faq {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(63, 94, 150, 0.3);
  box-shadow:
      0 20px 50px rgba(20, 30, 48, 0.3),
      inset 0 0 30px rgba(255, 255, 255, 0.1);
  animation: float-light 24s infinite ease-in-out;
  opacity: 0.7;
}

/* 6 Bubbles for FAQ Section */
.bubble-faq:nth-child(1) { width: 320px; height: 320px; top: 5%; right: -8%; background: rgba(63, 94, 150, 0.16); animation-delay: 0s; animation-duration: 26s; }
.bubble-faq:nth-child(2) { width: 280px; height: 280px; top: 65%; left: -12%; background: rgba(20, 30, 48, 0.19); animation-delay: 6s; animation-duration: 24s; }
.bubble-faq:nth-child(3) { width: 190px; height: 190px; bottom: 15%; right: 10%; background: rgba(63, 94, 150, 0.21); animation-delay: 9s; animation-duration: 20s; }
.bubble-faq:nth-child(4) { width: 270px; height: 270px; top: 20%; left: 8%; background: rgba(80, 110, 160, 0.17); animation-delay: 3s; animation-duration: 28s; }
.bubble-faq:nth-child(5) { width: 140px; height: 140px; bottom: 45%; left: 18%; background: rgba(40, 60, 100, 0.23); animation-delay: 12s; animation-duration: 22s; }
.bubble-faq:nth-child(6) { width: 340px; height: 340px; bottom: -10%; right: -5%; background: rgba(63, 94, 150, 0.13); animation-delay: 8s; animation-duration: 30s; }

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.faq-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin-bottom: 80px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.faq-item {
  margin-bottom: 20px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.faq-item:hover {
  border-color: rgba(47,169,201,0.4);
  box-shadow: 0 20px 50px rgba(47,169,201,0.2);
}
.faq-item.active {
  border-color: #2fa9c9;
  box-shadow: 0 0 60px rgba(47,169,201,0.4);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.02);
  transition: all 0.3s ease;
}
.faq-question:hover {
  background: rgba(47,169,201,0.1);
}
.faq-question h3 {
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 600;
  margin: 0;
}
.faq-arrow {
  width: 36px;
  height: 36px;
  background: rgba(47,169,201,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.faq-arrow svg {
  width: 20px;
  height: 20px;
  stroke: #2fa9c9;
  transition: transform 0.4s ease;
}
.faq-item.active .faq-arrow svg {
  transform: rotate(180deg);
  stroke: #ffffff;
}
.faq-item.active .faq-arrow {
  background: #2fa9c9;
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(0,0,0,0.3);
}
.faq-answer.active {
  padding: 30px;
  max-height: 300px;
}
.faq-answer p {
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .faq-title { font-size: 2.5rem; margin-bottom: 50px; }
  .faq-question h3 { font-size: 1.2rem; }
  .faq-question { padding: 20px; }
  .faq-answer.active { padding: 25px 20px; }
}

/* Divider Line */
.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 169, 201, 0.5), transparent);
  margin: 60px auto;
  max-width: 800px;
}

/* Learning Section */
.learning-section {
  max-width: 1000px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 10;
  text-align: center;
}

.learning-title {
  color: #e2e8f0;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.learning-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.learning-item {
  display: flex;
  align-items: flex-start;
  text-align: left;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.learning-item:hover {
  background: rgba(47, 169, 201, 0.1);
  transform: translateY(-5px);
}

.learning-icon {
  color: #2fa9c9;
  margin-right: 15px;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.learning-text {
  color: #e2e8f0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Navigation Links */
.nav-links {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.nav-link {
  display: flex;
  align-items: center;
  color: #94a3b8;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 12px 20px;
  border-radius: 8px;
}

.nav-link:hover {
  color: #2fa9c9;
  background: rgba(47, 169, 201, 0.1);
}

.nav-link.prev {
  margin-right: auto;
}

.nav-link.next {
  margin-left: auto;
}

.nav-link i {
  margin: 0 8px;
  font-size: 1.2rem;
}
