/* Subscription Banner Section Styles (renamed from Hero) */
.subscription-banner {
  background-color: #b8d8e8; /* Light blue background */
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  margin: 0 !important;
}

.subscription-banner-container {
  max-width: 1200px;
  margin: 0 auto !important;
  padding: 0 20px;
  width: 100% !important;
  overflow: visible;
  box-sizing: border-box;
  position: relative;
}

.subscription-banner-content {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 30px;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  position: relative;
}

.subscription-banner .banner-text {
  flex: 1;
  padding-right: 30px;
  z-index: 2;
  max-width: 50%;
  box-sizing: border-box;
  position: relative;
}

.subscription-banner .banner-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #1b1b1b;
  opacity: 0;
  transform: translateY(30px);
  animation: subscriptionBannerFadeInUp 0.8s ease-out forwards 0.2s;
}

.subscription-banner .banner-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #1b1b1b;
  opacity: 0;
  transform: translateY(30px);
  animation: subscriptionBannerFadeInUp 0.8s ease-out forwards 0.4s;
}

.subscription-banner .banner-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 50%;
  overflow: visible;
  box-sizing: border-box;
}

.subscription-banner .subscription-banner-img {
  max-width: 100%;
  height: auto;
  max-height: 400px; /* Control the image height */
  object-fit: contain;
  opacity: 0;
  transform: translateX(30px);
  animation: subscriptionBannerFadeInRight 0.8s ease-out forwards 0.6s, subscriptionBannerFloat 4s ease-in-out infinite
    1.5s;
}

/* Background decorative elements */
.subscription-banner .banner-decoration {
  position: absolute;
  background-color: #8de4b5;
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.subscription-banner .decoration-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: 10%;
  animation: subscriptionBannerPulse 8s infinite alternate;
}

.subscription-banner .decoration-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  left: 5%;
  animation: subscriptionBannerPulse 6s infinite alternate-reverse;
}

/* Sound waves styling */
.subscription-banner .sound-waves {
  position: absolute;
  pointer-events: none;
}

.subscription-banner .sound-wave {
  position: absolute;
  border: 2px solid rgba(27, 27, 27, 0.2);
  border-radius: 50%;
}

/* Text highlight effect */
.subscription-banner .highlight-word {
  position: relative;
  display: inline-block;
  color: #1b1b1b;
}

.subscription-banner .highlight-word::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: rgba(141, 228, 181, 0.4); /* Light mint color */
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.subscription-banner .highlight-word.animated::after {
  transform: scaleX(1);
}

/* Typing cursor */
.subscription-banner .typing-cursor {
  display: inline-block;
  margin-left: 2px;
  font-weight: normal;
}

/* Animations - scoped with unique names to avoid conflicts */
@keyframes subscriptionBannerFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes subscriptionBannerFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(10px) rotate(-1deg);
  }
}

@keyframes subscriptionBannerPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.15;
  }
}

/* Responsive styles */
@media (max-width: 992px) {
  .subscription-banner-content {
    flex-direction: column !important;
    text-align: center;
  }

  .subscription-banner .banner-text {
    padding-right: 0;
    margin-bottom: 30px;
    max-width: 100% !important;
  }

  .subscription-banner .banner-image {
    max-width: 100% !important;
    width: 100% !important;
  }

  .subscription-banner .banner-title {
    font-size: 2.5rem;
  }

  .subscription-banner .subscription-banner-img {
    max-height: 300px;
    max-width: 90%;
  }
}

@media (max-width: 576px) {
  .subscription-banner {
    padding: 60px 0;
  }

  .subscription-banner .banner-title {
    font-size: 2rem;
  }

  .subscription-banner .banner-subtitle {
    font-size: 1rem;
  }

  .subscription-banner .subscription-banner-img {
    max-height: 250px;
    max-width: 85%;
  }
}





/* Subscription pages - contact us section */
/* Base styles */
.contact-us-section {
  background-color: #fccc4c;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.contact-us-container {
  padding: 20px;
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-us-container h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1b1b1b;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-us-container .highlight {
  position: relative;
  display: inline-block;
}

.contact-us-container .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 8px;
  background-color: rgba(51, 51, 51, 0.2);
  z-index: -1;
  transition: width 0.8s ease 0.5s;
}

.contact-us-container h1.animate .highlight::after {
  width: 100%;
}

.contact-us-container p {
  font-size: 1.2rem;
  color: #1b1b1b;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.contact-us-container .btn {
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 40px;
  padding: 12px 30px;
  background-color: #1b1b1b;
  border: none;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s, background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-us-container .btn:hover {
  background-color: #333;
  transform: translateY(0) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-us-container .btn-icon {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.contact-us-container .btn:hover .btn-icon {
  transform: translateX(5px);
}

/* Animation classes */
.contact-us-container h1.animate,
.contact-us-container p.animate,
.contact-us-container .btn.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Visual elements */
.contact-us-container .visual-element {
  position: relative;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-us-container .support-illustration {
  position: relative;
  width: 300px;
  height: 300px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 1s ease, transform 1s ease;
}

.contact-us-container .support-illustration.animate {
  opacity: 1;
  transform: scale(1);
}

.contact-us-container .support-agent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  /* Enlarged support agent */
  width: 140px;
  height: 140px;
}

.contact-us-container .agent-circle {
  transform-origin: center;
  animation: pulse 3s infinite alternate;
}

.contact-us-container .agent-headset {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawLine 2s forwards 0.5s;
}

/* Chat bubbles */
.contact-us-container .chat-bubble {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 24px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: scale(0);
}

.contact-us-container .bubble-1 {
  top: 20%;
  left: 10%;
  animation: popIn 0.5s forwards 1s, float 3s infinite 1.5s;
}

.contact-us-container .bubble-3 {
  bottom: 25%;
  right: 20%;
  animation: popIn 0.5s forwards 1.6s, float 3.5s infinite 2.1s;
}

/* Pulse circle */
.contact-us-container .pulse-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: rgba(252, 204, 76, 0.3);
  z-index: 0;
  animation: pulseGrow 2s infinite;
}

/* Decorative elements */
.contact-us-section .decorative-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.contact-us-section .circle-1 {
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.1);
  top: -150px;
  right: -100px;
}

.contact-us-section .circle-2 {
  width: 200px;
  height: 200px;
  background-color: rgba(0, 0, 0, 0.05);
  bottom: -100px;
  left: -50px;
}

.contact-us-section .decorative-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-us-section .dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.contact-us-section .dot:nth-child(1) { top: 20%; left: 10%; animation: float 4s infinite; }
.contact-us-section .dot:nth-child(2) { top: 70%; left: 20%; animation: float 5s infinite 0.5s; }
.contact-us-section .dot:nth-child(3) { top: 40%; left: 80%; animation: float 4.5s infinite 1s; }
.contact-us-section .dot:nth-child(4) { top: 80%; left: 85%; animation: float 3.5s infinite 1.5s; }
.contact-us-section .dot:nth-child(5) { top: 10%; left: 50%; animation: float 5s infinite 2s; }
.contact-us-section .dot:nth-child(6) { top: 30%; left: 30%; animation: float 4s infinite 2.5s; }
.contact-us-section .dot:nth-child(7) { top: 60%; left: 60%; animation: float 3s infinite 3s; }
.contact-us-section .dot:nth-child(8) { top: 90%; left: 40%; animation: float 4.5s infinite 3.5s; }
.contact-us-section .dot:nth-child(9) { top: 50%; left: 90%; animation: float 5s infinite 4s; }

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

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

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  80% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

/* Responsive styles */
@media (max-width: 992px) {
  .contact-us-container h1 {
    font-size: 2.8rem;
  }
  
  .contact-us-container .visual-element {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .contact-us-container h1 {
    font-size: 2.5rem;
  }
  
  .contact-us-container p {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .contact-us-section {
    padding: 60px 0;
  }
  
  .contact-us-container h1 {
    font-size: 2.2rem;
  }
}

/* Full Controll */
/* Keeping your original styles */
.full-controll-section {
  background-color: #f0f0f0;
  position: relative;
  overflow: hidden;
}

.full-controll-container {
  padding: 20px;
  max-width: 1360px;
  margin: 0 auto;
}

.full-controll-section h1 {
  font-weight: 800;
}

.full-controll-section p {
  font-size: 1.1rem;
  color: #1b1b1b;
  line-height: 1.6;
}

/* Animation styles for text elements */
.animate-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-element.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays */
.animate-element:nth-child(1) {
  transition-delay: 0.1s;
}

.animate-element:nth-child(2) {
  transition-delay: 0.2s;
}

.animate-element:nth-child(3) {
  transition-delay: 0.3s;
}

.animate-element:nth-child(4) {
  transition-delay: 0.4s;
}

.animate-element:nth-child(5) {
  transition-delay: 0.5s;
}

/* Button animation */
.btn .arrow-icon {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.btn:hover .arrow-icon {
  transform: translateX(5px);
}

/* SVG Container Styles */
.svg-container {
  width: 100%;
  position: relative;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.svg-container.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Top row container for users and donut chart */
.top-row-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

/* User Stats Styles */
.user-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}

.user-stat {
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: var(--delay, 0s);
}

.user-stat.animate {
  opacity: 1;
  transform: translateX(0);
}

.user-avatar {
  flex-shrink: 0;
}

.stat-bar {
  flex-grow: 1;
  height: 8px;
  background-color: #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  width: 0;
  background-color: #333;
  transition: width 1s ease;
}

.user-stat.animate .stat-fill {
  width: 80%;
}

/* Donut Chart Styles */
.donut-chart-container {
  position: relative;
  width: 200px;
  height: 200px;
}

.donut-chart {
  width: 100%;
  height: 100%;
}

.donut-value {
  position: absolute;
  bottom: -30px;
  right: 0;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 1.5s;
}

.donut-value.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Progress Chart Styles */
.progress-chart-container {
  width: 100%;
  margin-top: 20px;
}

.progress-chart {
  width: 100%;
  height: auto;
}

.progress-point {
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: var(--delay, 0s);
  transform-origin: center;
}

.progress-point.animate {
  opacity: 1;
  transform: scale(1);
}

/* Animation for circle pulse */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.progress-point.animate circle {
  animation: pulse 2s infinite;
}

/* Animation for donut segments */
@keyframes fillDonut {
  to {
    stroke-dasharray: 220 1000;
  }
}

@keyframes fillDonut2 {
  to {
    stroke-dasharray: 220 1000;
  }
}

/* Animation for progress path */
@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .top-row-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .user-stats {
    width: 100%;
  }
  
  .donut-chart-container {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .progress-chart-container {
    margin-top: 30px;
  }
}


@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
  .subscription-container .row {
      flex-direction: column;
  }
  .subscription-container .col-md-10 {
    max-width: 100% !important;
  }
  ul#progressbar {
    padding: 0;
  }
  .subscription-container .col-md-2 {
    max-width: 100% !important;
    margin-bottom: 50px;
  }
  .personal-data-form>div {
    width: 100%;
  }
  .sim_type_sec {
    width: 100% !important;
  }
  .number_container_box {
    width: 100%;
  }
  .new-number-list a {
    width: 45%;
  }
  .payment-wrapper>div {
    width: 100%;
  }
  .num_sel {
    width: 100% !important;
  }
  .card_container {
    width: 100% !important;
  }
}