/**
 * Redefining Connectivity Section CSS
 * Matches screenshot design exactly
 */

.redefining-connectivity-section {
  padding: 80px 0;
  background: #F4F7FF;
  overflow: hidden;
}

.redefining-content {
  padding-right: 40px;
}

.redefining-heading {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #000000;
}

.redefining-heading .highlight-text {
  color: #00C896;
  position: relative;
}

.redefining-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 40px;
}

/* Statistics */
.redefining-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  font-size: 32px;
  color: #007bff;
  width: 40px;
  text-align: center;
}

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

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #007bff;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: #666666;
  line-height: 1;
}

/* Right Side - Image Wrapper */
.redefining-image-wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.redefining-image-wrapper .main-image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

/* Floating QR Code */
.floating-qr {
  position: absolute;
  top: 10%;
  left: 5%;
  background: white;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.floating-qr img {
  width: 120px;
  height: 120px;
  display: block;
}

/* Floating Country Cards */
.floating-country {
  position: absolute;
  background: white;
  padding: 12px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
  white-space: nowrap;
}

.country-1 {
  top: 15%;
  right: 0;
  animation-delay: 0.5s;
}

.country-2 {
  top: 45%;
  left: -5%;
  animation-delay: 1s;
}

.country-3 {
  bottom: 20%;
  right: 5%;
  animation-delay: 1.5s;
}

.country-flag {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.country-info {
  display: flex;
  flex-direction: column;
}

.country-name {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  line-height: 1.2;
}

.country-price {
  font-size: 13px;
  color: #666666;
  line-height: 1.2;
}

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

/* Responsive */
@media (max-width: 991px) {
  .redefining-connectivity-section {
    padding: 60px 0;
  }

  .redefining-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .redefining-stats {
    gap: 24px;
  }

  .floating-qr {
    width: 80px;
    padding: 12px;
  }

  .floating-qr img {
    width: 80px;
    height: 80px;
  }

  .floating-country {
    padding: 8px 12px;
  }

  .country-flag {
    width: 36px;
    height: 36px;
  }

  .country-name {
    font-size: 14px;
  }

  .country-price {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .redefining-heading {
    font-size: 28px;
  }

  .redefining-desc {
    font-size: 15px;
  }

  .redefining-stats {
    flex-direction: column;
    gap: 20px;
  }

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

  .floating-qr {
    display: none;
  }

  .floating-country {
    display: none;
  }
}
