/* General */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* Header */
.tvpluxi-header {
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 1rem 2rem;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
   
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(to right, #00aaff, #ff00aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;


   text-decoration: none;
}

.btn-nu-kopen {
  background: linear-gradient(to right, #ff66cc, #ff3377);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(255, 51, 119, 0.3);
  transition: opacity 0.3s ease;
}

.btn-nu-kopen:hover {
  opacity: 0.85;
}

/* Hero Section */
.tvpluxi-hero {
 /* background: url('/css/img/bg.png') center/cover no-repeat, linear-gradient(to bottom, #f4f6fe, #edf1fb); */
    background-image: url('/css/img/bg.png');


  background-blend-mode: lighten;
  display: flex;
  align-items: center;
  padding: 5rem 2rem;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-content {
  max-width: 650px;
}

/* Activation Badge */
.activation-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #f4eaff;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
  color: #9c27b0;
  margin-bottom: 1.2rem;
}

.activation-icon {
  background: linear-gradient(to right, #a560ff, #d26cff);
  border-radius: 50%;
  padding: 0.3rem;
  font-size: 1rem;
  color: #fff;
}

/* Hero Title */
.hero-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: #111;
}

.gradient-text {
  background: linear-gradient(to right, #00aaff, #ff00aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraphs */
.hero-paragraph {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* CTA Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn-solid {
  background: linear-gradient(to right, #ff66cc, #ff3377);
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-solid:hover {
  opacity: 0.9;
}

.btn-outline {
  border: 2px solid #ff3377;
  color: #ff3377;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.btn-outline:hover {
  background-color: #fff0f5;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: linear-gradient(to right, #ff66cc, #ff3377);
  color: white;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
}

.whatsapp-float i {
  line-height: 1;
}


/* partners  */
/* Global font */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

/* Section base */
.logo-slider-section {
  width: 100%;
  background-color: #f1f4fd;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 2rem 0;
  overflow: hidden;
}

/* Slider wrapper for hiding overflow */
.logo-slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Track container with infinite animation */
.logo-slider-track {
  display: flex;
  width: fit-content;
  animation: scroll-left 40s linear infinite;
}

/* Individual logo card */
.logo-card {
  min-width: 120px;
  height: 100px;
  margin: 0 1rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.logo-card img {
  width: 100%;
   
  object-fit: cover;
  display: block;
  border-radius: 12px; /* optional */
  transition: transform 0.3s ease;
}
 

.logo-card:hover img {
  transform: scale(1.05);
}

/* Infinite scroll animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-card {
    min-width: 100px;
    height: 90px;
    margin: 0 0.5rem;
  }
}

/* Sport Section*/

/* Section styling */
.sports-slider-section {
  width: 100%;
  background: linear-gradient(to bottom, #ffffff, #f8f9fb);
  padding: 2rem 0;
  overflow: hidden;
}

/* Wrapper hides overflow */
.sports-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Scrolling track */
.sports-slider-track {
  display: flex;
  width: fit-content;
  animation: scroll-events 40s linear infinite;
  gap: 1.5rem;
}

/* Individual poster card */
.sports-card {
  min-width: 180px;
  height: 260px;
  flex: 0 0 auto;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.sports-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.sports-card:hover img {
  transform: scale(1.05);
}

/* Animation keyframes */
@keyframes scroll-events {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Remove scrollbar */
.sports-slider-track::-webkit-scrollbar {
  display: none;
}
.sports-slider-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .sports-card {
    min-width: 140px;
    height: 200px;
  }

  .sports-slider-track {
    gap: 1rem;
  }
}
/* Sport Loop Section */
/* Section */
.competition-slider-section {
  width: 100%;
  padding: 3rem 1.5rem;
  background: #ffffff;
  overflow: hidden;
}

/* Title */
.competition-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(to right, #00aaff, #ff00aa, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Slider wrapper */
.competition-slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Scrolling track */
.competition-slider-track {
  display: flex;
  width: fit-content;
  gap: 1.5rem;
  animation: scroll-competitions 50s linear infinite;
  scroll-behavior: smooth;
}

/* Poster card */
.competition-card {
  min-width: 220px;
  height: 370px;
  flex: 0 0 auto;
  border-radius: 16px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.competition-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.competition-card:hover {
  transform: scale(1.05);
}

/* Animation */
@keyframes scroll-competitions {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Hide scrollbar */
.competition-slider-track::-webkit-scrollbar {
  display: none;
}
.competition-slider-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Responsive */
@media (max-width: 768px) {
  .competition-card {
    min-width: 160px;
    height: 260px;
  }

  .competition-slider-track {
    gap: 1rem;
  }

  .competition-title {
    font-size: 1.5rem;
    padding: 0 1rem;
  }
}


/* Sport Loop*/


/* Section wrapper */
.logo-scroll-section {
  background: #f1f4f8; /* light gray or soft blue */
  padding: 2rem 0;
  width: 100%;
  overflow: hidden;
}

/* Scroll container */
.logo-scroll-track {
  display: flex;
  gap: 1.5rem;
  width: fit-content;
  animation: scroll-logos 45s linear infinite;
}

/* Logo cards */
.logo-card {
  width: 120px;
  height: 120px;
  flex: 0 0 auto;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  overflow: hidden;
}

 
.logo-card:hover {
  transform: scale(1.05);
}

/* Scroll animation */
@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Hide scrollbars */
.logo-scroll-track::-webkit-scrollbar {
  display: none;
}
.logo-scroll-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Responsive */
@media (max-width: 768px) {
  .logo-card {
    width: 90px;
    height: 90px;
  }

  .logo-scroll-track {
    gap: 1rem;
  }
}



/* Price Start*/
/* Section base */
.limited-offer-section {
  padding: 3rem 1.5rem;
  background-color: #f8f9fc;
  text-align: center;
}

/* Top banner */
.offer-banner {
  display: inline-block;
  background: linear-gradient(to right, #00aaff, #ff00aa, #ff9900);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.8rem;
}

.offer-label {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.offer-timer {
  font-size: 0.95rem;
}

/* Main heading */
.offer-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
}

.gradient-text {
  background: linear-gradient(to right, #00aaff, #ff00aa, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtext */
.offer-subtext {
  color: #666;
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* CTA Button */
.offer-button {
  display: inline-block;
  background: linear-gradient(to right, #00aaff, #ff00aa, #ff9900);
  color: white;
  font-weight: 600;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.3s ease, filter 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.offer-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .offer-heading {
    font-size: 1.6rem;
  }

  .offer-subtext {
    font-size: 0.95rem;
  }

  .offer-button {
    font-size: 0.95rem;
    padding: 0.8rem 1.5rem;
  }
}

/* Price Plan */




/* pricing.css */
/* Pricing Table Styles */
/* Pricing Table Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}



.pricing-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 15px;
  justify-content: center;
}

.pricing-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  flex: 1 1 300px;
  min-width: 280px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

.pricing-card.popular {
 
  order: -1; /* Move popular card to top on mobile */
}

.popular-badge {
  background:  linear-gradient(to right, #00aaff, #ff00aa);
  color: white;
  text-align: center;
  padding: 6px;
  font-weight: 600;
  font-size: 12px;
}

.card-header {
  padding: 20px 15px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.card-header h3 {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
}

.current-price {
  color: #ff6b00;
  font-size: 26px;
  font-weight: 700;
  margin: 3px 0;
}

.price-description {
  color: #666;
  font-size: 13px;
  margin-bottom: 3px;
}

.price-note {
  color: #ff6b00;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 12px;
}

.badge {
  background: linear-gradient(to right, #ff6b00, #ff0084);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  display: inline-block;
}

.features {
  padding: 15px;
  list-style: none;
  max-height: none;
  overflow-y: visible;
}

.features li {
  margin-bottom: 10px;
  color: #555;
  font-size: 13px;
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
}

.check-icon {
  color: #ff00aa;
  margin-right: 8px;
  font-weight: bold;
  flex-shrink: 0;
}

.card-footer {
  padding: 15px;
  text-align: center;
  border-top: 1px solid #eee;
}

.order-btn {
  background: linear-gradient(to right, #00aaff, #ff00aa);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
  margin-bottom: 8px;
}

.order-btn:hover {
  background: #e05d00;
}

.popular-btn {
  background: linear-gradient(to right, #ff66cc, #ff3377);
  font-size: 15px;
  padding: 12px 15px;
}

.payment-note {
  color: #999;
  font-size: 11px;
}

/* Phone-specific responsive styles (≤576px) */
@media (max-width: 576px) {

  
  .pricing-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .pricing-card {
    flex: 1 1 100%;
    margin-bottom: 15px;
  }
  
  .pricing-card.popular {
    order: -1;
    transform: none;
  }
  
  .card-header {
    padding: 15px 10px;
  }
  
  .card-header h3 {
    font-size: 16px;
  }
  
  .current-price {
    font-size: 24px;
  }
  
  .features {
    padding: 10px;
    max-height: none;
  }
  
  .features li {
    font-size: 12px;
  }
  
  .order-btn {
    padding: 8px 10px;
    font-size: 13px;
  }
  
  .popular-btn {
    font-size: 14px;
    padding: 10px;
  }
}

/* Tablet responsive styles (577px - 768px) */
@media (min-width: 577px) and (max-width: 768px) {
  .pricing-card {
    flex: 1 1 calc(50% - 15px);
  }
  
  .pricing-card.popular {
    order: 0;
  }
}

/* Desktop styles (≥769px) */
@media (min-width: 769px) {
  .pricing-card {
    flex: 1;
  }
  
  .pricing-card.popular {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
}

/* info also */
/* Stats Section Styles */

/* trust-banner.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

.trust-banner {
  font-family: 'Poppins', sans-serif;
  max-width: 1000px;
  margin: 20px auto;
  padding: 0 15px;
}

.trust-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 15px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #333;
}

.stat-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.stat-icon {
  font-size: 16px;
}

.stat-divider {
  color: #ccc;
  font-weight: 300;
}

.guarantee-wrapper {
 display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 15px;
}

.guarantee-box {
  background: linear-gradient(90deg, #f0f9ff, #fdf2ff);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-left: 3px solid #8b5cf6;
  padding: 12px 20px;
   margin: 0 auto;
}

.guarantee-icon {
  background: #8b5cf6;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.guarantee-text {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.guarantee-text strong {
  font-size: 14px;
  color: #2c3e50;
}

.guarantee-text span {
  font-size: 12px;
  color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .trust-stats {
    gap: 5px 10px;
    font-size: 13px;
  }
  
  .stat-divider {
    display: none;
  }
  
  .guarantee-box {
    padding: 8px 12px;
  
  }
}

@media (max-width: 480px) {
  .trust-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .guarantee-text {
    line-height: 1.3;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

.device-support-section {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #fcfcfe, #f8f8fc);
  padding: 60px 20px;
  text-align: center;
}

.device-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.gradient-text {
  background: linear-gradient(to right, #4a90e2, #a156f6, #ff914d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.device-subtitle {
  font-size: 16px;
  color: #888;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  justify-content: center;
  margin: 0 auto 60px auto;
  max-width: 1200px;
}

@media (max-width: 1024px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


.logo-card {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}



.logo-card span {
  font-size: 14px;
  font-weight: 500;
  color: #111;
}

.logo-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.info-card {
  background: white;
  border-radius: 20px;
  padding: 30px 25px;
  width: 300px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  text-align: center;
}

.info-icon {
  font-size: 26px;
  margin-bottom: 15px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  display: inline-block;
  color: white;
}

.gradient-icon {
  background: linear-gradient(to right, #4a90e2, #a156f6, #ff914d);
}

.info-card h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 14px;
  color: #555;
}

@media (max-width: 767px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .info-cards {
    flex-direction: column;
    align-items: center;
  }
}
/* FQA */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

.faq-section {
  font-family: 'Poppins', sans-serif;
  padding: 60px 20px;
  background: #f9f9fc;
  text-align: center;
}

.faq-title {
  font-size: 28px;
  margin-bottom: 40px;
}

.gradient-text {
  background: linear-gradient(to right, #a156f6, #ff5ca2, #ff914d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.faq-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  transition: transform 0.3s ease;
  font-size: 18px;
}

.faq-card.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.faq-card.open .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
/* footer */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

.tvpluxi-footer {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to top, #f7f9ff, #ffffff);
  padding: 50px 20px 20px;
  color: #333;
  position: relative;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.footer-left, .footer-center, .footer-right {
  flex: 1 1 280px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.footer-whatsapp strong {
  font-weight: 600;
  margin-right: 5px;
}

.footer-center h4,
.footer-right h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #111;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.footer-links a:hover {
  color: #7e57c2;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.payment-icons img {
  width: 45px;
  height: auto;
  border-radius: 8px;
  background: white;
  padding: 5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-top: 20px;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(to right, #ff5ca2, #a156f6, #4a90e2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* WhatsApp Floating Button */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(to right, #ff5ca2, #a156f6, #4a90e2);
  color: white;
  font-size: 24px;
  padding: 14px 16px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  z-index: 999;
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
/* Hero Respensive */

.hero-title{
  text-align: center;
  font-size: 2rem;
}
.hero-paragraph{
  text-align: center;
  font-size: 0.9rem;
}

/* End OF respensive */

/* Start Lopping Logos */
 
/* Start OF Banner */
.offer-banner{
  border-radius: 20px;
}
.offer-button{
  border-radius: 20px;
}


.pricing-card,.pricing-card.popular,.pricing-card{
  margin: 3px;
}

/* Start Banner trust */

.trust-banner{
  text-align:center;
}

/* END Lopping Logos */
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-left, .footer-center, .footer-right {
    text-align: center;
  }

  .payment-icons {
    justify-content: center;
  }
}
