/* File: mini-chain-slider.css */

        /* 2026-09-01: removed a stray `body{}` rule that duplicated (and,
           being loaded later via the home-deferred bundle, overrode) the
           real page-wide body styling already owned by heroall.css --
           including its "Inter Fallback" metric-matched @font-face, which
           this file's plain `font-family: 'Inter', sans-serif;` lacked.
           Because this file loads AFTER heroall.css but asynchronously
           (home-deferred), the missing fallback caused a real font-swap
           layout shift measured live via PSI (CLS 0.167) well after first
           paint. This file only needs to style the slider area below --
           body-wide styling belongs in heroall.css alone. */
        /* Custom styling for the slider area */
        .swiper-container-inner {
             /* Remove outer container padding to let the inner slider fill the space, needed since p-4 is on the visibility wrapper */
            padding: 0 !important;
        }


/* File: IPTV-Experience.css */

    /* Scoped styles for this section */
    .iptv-feature-section {
        font-family: 'Inter', system-ui, -apple-system, sans-serif;
        background-color: #0a0a0a;
        color: #e5e7eb;
    }
    
    .iptv-gradient-text {
        background: linear-gradient(to right, #60a5fa, #22d3ee);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Smooth fade-up animation classes */
    .iptv-animate-up {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    
    .iptv-animate-up.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .delay-100 { transition-delay: 0.1s; }
    .delay-200 { transition-delay: 0.2s; }
    .delay-300 { transition-delay: 0.3s; }


/* File: What-Our-Customers-Say.css */

    .swiper-pagination-bullet {
        background: #4b5563;
        opacity: 1;
    }
    .swiper-pagination-bullet-active {
        background: #3b82f6;
        width: 20px;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    .swiper-button-next, .swiper-button-prev {
        color: #3b82f6;
        background: rgba(17, 24, 39, 0.8);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        backdrop-filter: blur(4px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 18px;
        font-weight: bold;
    }
    
    /* Glass Card Effect */
    .review-card {
        background: rgba(17, 24, 39, 0.7);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }
    .review-card:hover {
        border-color: rgba(59, 130, 246, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    }



/* File: How-to-Purchase.css */

    .purchase-step-card {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
        z-index: 10;
        position: relative;
    }
    
    .purchase-step-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(59, 130, 246, 0.3);
        box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    }

    .step-number {
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
    }

    .payment-badge {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.2s ease;
    }

    .payment-badge:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
    }

    /* Added more visible, brighter animated blue lights with better blur and movement */
    .ambient-light {
        position: absolute;
        border-radius: 50%;
        filter: blur(120px);
        pointer-events: none;
        z-index: 1;
    }

    .light-1 {
        top: 10%;
        left: 5%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(37,99,235,0.6) 0%, rgba(59,130,246,0.3) 40%, rgba(0,0,0,0) 70%);
        animation: float1 15s infinite ease-in-out;
    }

    .light-2 {
        bottom: 10%;
        right: 5%;
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(59,130,246,0.5) 0%, rgba(37,99,235,0.3) 40%, rgba(0,0,0,0) 70%);
        animation: float2 18s infinite ease-in-out;
    }

    .light-3 {
        top: 50%;
        left: 50%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(96,165,250,0.4) 0%, rgba(59,130,246,0.2) 50%, rgba(0,0,0,0) 70%);
        animation: float3 12s infinite ease-in-out;
        transform: translate(-50%, -50%);
    }

    @keyframes float1 {
        0%, 100% { 
            transform: translate(0, 0); 
            opacity: 0.6;
        }
        33% { 
            transform: translate(100px, -80px); 
            opacity: 0.8;
        }
        66% { 
            transform: translate(-50px, 100px); 
            opacity: 0.5;
        }
    }

    @keyframes float2 {
        0%, 100% { 
            transform: translate(0, 0); 
            opacity: 0.5;
        }
        33% { 
            transform: translate(-120px, 70px); 
            opacity: 0.7;
        }
        66% { 
            transform: translate(80px, -90px); 
            opacity: 0.6;
        }
    }

    @keyframes float3 {
        0%, 100% { 
            transform: translate(-50%, -50%) scale(1); 
            opacity: 0.4;
        }
        50% { 
            transform: translate(-50%, -50%) scale(1.3); 
            opacity: 0.6;
        }
    }



/* File: iptvapp.css */

    .app-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .app-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(59, 130, 246, 0.5);
        box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.3);
    }

    .app-icon-wrapper {
        position: relative;
        overflow: hidden;
        background: white !important; /* Added white background to image container */
    }
    
    .app-card:hover .app-icon-wrapper img {
        transform: scale(1.1);
    }

    /* Custom Scrollbar for horizontal scroll on very small screens if needed */
    .hide-scrollbar::-webkit-scrollbar {
        display: none;
    }
    .hide-scrollbar {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }


/* File: faq-section.css */
.faq-section {
  /* Changed to solid black background, no gradient */
  background: #000000;
  padding: 80px 20px;
  font-family: -apple-system, BlinkMacMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.faq-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-container {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-left {
  position: sticky;
  top: 100px;
}

.faq-heading {
  font-size: 48px;
  font-weight: 900;
  color: white;
  margin-bottom: 40px;
  line-height: 1.1;
}

/* Added WhatsApp chat section styles */
.faq-chat-section {
  margin-top: 40px;
}

.faq-chat-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 8px;
}

.faq-chat-subtext {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  /* Changed from blue to WhatsApp green theme */
  background: #25d366;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-button:hover {
  /* Updated hover color to darker WhatsApp green */
  background: #20ba5a;
  transform: scale(1.05);
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Added search bar styles */
.faq-search {
  position: relative;
  margin-bottom: 8px;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.faq-search-input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 14px;
  background: white;
  color: #000;
  outline: none;
  transition: border-color 0.3s ease;
}

.faq-search-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.faq-search-input:focus {
  border-color: rgba(0, 0, 0, 0.3);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.faq-item {
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 0, 0, 0.02);
}

.faq-text {
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

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

.faq-item.active .faq-icon svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}

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

.faq-answer p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

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

  .faq-left {
    position: static;
  }

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

@media (max-width: 640px) {
  .faq-section {
    padding: 60px 16px;
  }

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

  .faq-question {
    padding: 16px;
    font-size: 14px;
  }

  .faq-answer p {
    font-size: 13px;
  }

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


/* File: footer-section.css */
/* Footer Variables */
:root {
  --footer-bg: #0a0a0a;
  --footer-text: #a0a0a0;
  --footer-heading: #ffffff;
  --footer-accent: #3b82f6; /* Blue accent */
  --footer-accent-hover: #2563eb;
  --footer-border: #222222;
}

.modern-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 80px 0 0;
  font-family: "Inter", sans-serif;
  border-top: 1px solid var(--footer-border);
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Section Grid */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--footer-border);
}

/* Brand Column */
.footer-logo {
  color: var(--footer-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.footer-logo span {
  color: var(--footer-accent);
}

.footer-desc {
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 15px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--footer-heading);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--footer-accent);
  transform: translateY(-3px);
}

/* Columns Headings */
.footer-col h4 {
  color: var(--footer-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

/* Links List */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 15px;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--footer-accent);
  transform: translateX(5px);
}

/* Newsletter */
.newsletter-col p {
  margin-bottom: 20px;
  font-size: 14px;
}

.input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 5px;
  border: 1px solid var(--footer-border);
  transition: border-color 0.3s ease;
}

.input-group:focus-within {
  border-color: var(--footer-accent);
}

.input-group input {
  background: transparent;
  border: none;
  color: var(--footer-heading);
  padding: 10px 15px;
  width: 100%;
  outline: none;
  font-size: 14px;
}

.input-group button {
  background: var(--footer-accent);
  color: white;
  border: none;
  width: 40px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.input-group button:hover {
  background: var(--footer-accent-hover);
}

/* Bottom Section */
.footer-bottom {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

/* Back to Top Button */
.back-to-top {
  background: var(--footer-border);
  color: var(--footer-heading);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--footer-accent);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .brand-col {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .brand-col {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
}


