/* ========== General Reset ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    
}

/* ========== Navbar Styling ========== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    width: 100%;
    background-color: black; /* Matches the website theme */
    position: relative;
    margin-top: 11px;
}

/* Logo */
.logo img {
    height: 50px;
    max-width: 100%;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    margin-right: 10%;
    margin-top: 20px;
    
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease-in-out;
   
}

.nav-links a:hover,
.nav-links a.active {
    color: #A4FF00; /* Highlight color */
}

/* Trial Offer Button */


@keyframes blink {
    from { opacity: 0.7; }
    to { opacity: 1; transform: scale(1.05); }
}

.trial-offer:hover {
    cursor: pointer;
}

/* ========== Responsive Navbar ========== */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

/* Mobile View */
@media screen and (max-width: 1024px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 5%;
        width: 200px;
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
        text-align: center;
        border-radius: 5px;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .menu-toggle {
        display: block;
    }
}


body {
    background-color: black;
    color: white;
}

/* ========== Hero Section ========== */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 5%;
    min-height: 100vh;
    background: black;
}

.hero-content {
    max-width: 50%;
    margin-left: 20px;
    margin-top:-100px ;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0px;
}

.hero h2 span {
    font-size: 3.5rem;
    font-weight: bolder;
    color: #A4FF00;
    
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 14px 0;
    color: white;
}

/* ========== Free Trial Button ========== */
.free-trial {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.free-trial-btn {
    background: #A4FF00;
    color: black;
    font-size: 1.2rem;
    padding: 10px 20px;
    border: none;
    border-bottom-right-radius: 41px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    
}

.free-trial-btn span {
    background: black;
    color: #A4FF00;
    padding: 5px 10px;
    margin-left: 10px;
    border-radius: 15px;
}

.trial-image {
    width: 50px;
    margin-left: 10px;
}

/* ========== Device Icons ========== */
.device-icons {
    margin-top: 30px;
}

.device-icons img {
    width: 300px;
    margin-right: 10px;
}

/* ========== Image Slider (Updated for One-by-One Scroll) ========== */
.image-slider {
    width: 45%;
    overflow: hidden;
    position: relative;
     margin-top: -200px;
    
}

.slider {
    display: flex;
   border-radius: 40px;
   
    transition: transform 1s ease-in-out;
    
   
}

.slider img {
    width: 100%;
    flex-shrink: 0;
    border: #A4FF00 2px solid;
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
    .image-slider {
        width: 100%;
    }
}


/* ========== Responsive Design ========== */
@media screen and (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 30px 5%;
    }

    .hero-content {
        max-width: 100%;
    }

    .image-slider {
        width: 100%;
        margin-top: 30px;
    }

    .free-trial {
        justify-content: center;
    }

    .device-icons {
        justify-content: center;
    }
}

@media screen and (max-width: 600px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 span {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .free-trial-btn {
        font-size: 1rem;
    }

    .slider img {
        height: 200px;
    }
}






/* Channel Section */
.channels-section {
    text-align: center;
    padding: 23px 0;
   
    background: #000000;
    /* border-bottom: 1px solid #A4FF00  ;
    border-top: #A4FF00 1px solid; */
    margin-top:-19px;
    height: 100px;
}

/* Section Heading */
.channels-section h2 {
    font-size: 32px;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    color: black;
    margin-bottom: 20px;
}

/* Slider Wrapper */
.channels-slider {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

/* Channels Container (for Scrolling) */
.channels-container {
    display: flex;
    gap: 40px;
    animation: scroll 10s linear infinite;
}

/* Channel Logos */
.channels-container img {
    width: 150px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.channels-container img:hover {
    transform: scale(1.1);
}

/* Keyframes for Scrolling */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .channels-container img {
        width: 120px;
    }
}





/* ========== Stats Section Styling ========== */
.stats-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    background: black;
}

.stat-box {
    /* border: 2px solid #A4FF00; */
    border-radius: 10px;
    padding: 20px 40px;
    text-align: center;
    color: white;
    font-family: "MuseoModerno", Sans-serif;
    font-size: 50px;
    font-weight: 600;
    transform: translateY(-50px);
    opacity: 0;
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

.stat-number {
    font-family: "MuseoModerno", Sans-serif;
    font-size: 50px;
    font-weight: 600;
    color: white;
}

.stat-box p {
    font-size: 16px;
    color: #A4FF00;
}
.stat-box h2{
    margin-bottom: 5px;
}

/* Slide-in Animation */
.stats-section.visible .stat-box {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .stats-section {
        flex-direction: column;
        align-items: center;
    }

    .stat-box {
        width: 80%;
    }
}


/* ========== Info Section Styling ========== */
.section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0%;
    opacity: 0;
    transform: translateX(-300px);
    transition: all 0.8s ease-in-out;
    height: auto;
    margin: 0px;
   
    text-align: left;
    gap: 40px;
}

/* Make section visible when user scrolls */
.section.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Section Background */
.info-section {
    background-color: black; /* Dark background for premium look */
    display: flex;
    flex-direction: row;
}

/* Content Styling */
.content {
    max-width: 650px;
}

.content h2 {
    font-size: 32px;
    color: #A4FF00; /* Neon Green */
    font-weight: bold;
}

.content p {
    font-size: 1em;
    color: #ddd; /* Light Gray for contrast */
    line-height: 1.5;
}

/* Button Styling */
.button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #A4FF00; /* Neon Green */
    color: black;
    font-size: 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease-in-out;
    border: 2px solid #A4FF00;
}

.button:hover {
    background-color: transparent;
    color: #A4FF00;
    border: 2px solid #A4FF00;
}

/* Image Styling */
.section img {
    width: 45%;
    max-width: 450px;
    border-radius: 10px;
    margin-right: 50px;
}

/* ========== MEDIA QUERIES ========== */

/* Tablet View */
@media (max-width: 1024px) {
    .section {
        flex-direction: column;
        text-align: center;
        padding: 50px 5%;
        gap: 20px;
    }

    .section img {
        width: 60%;
        max-width: 400px;
        margin: 0 auto 20px auto;
    }

    .content {
        max-width: 100%;
        text-align: center;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .content h2 {
        font-size: 26px;
    }

    .content p {
        font-size: 0.9em;
    }

    .button {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .section img {
        width: 90%;
        max-width: 350px;
        margin-bottom: 15px;
    }
}





/* ========== Feature Section ========== */

.features {
    background: linear-gradient(90deg, #000000 0%, #0d0d0d 100%);
    padding: 60px 20px;
    text-align: center;
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    opacity: 0;
    transform: translateX(300px); /* Slide in from right */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
   
    margin: 0 0px;
}

.features.show {
    opacity: 1;
    transform: translateX(0); /* Slide to position */
}

.features-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.features-title {
    font-size: 36px;
    color: #9ef01a; /* Neon green */
    margin-bottom: 15px;
    font-weight: bolder;
    margin-top: 30px;
}

.features-subtitle {
    font-size: 18px;
    color: #cccccc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background-color: #031127;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.5s ease;
    box-shadow: 0 10px 20px rgba(158, 240, 26, 0.1);
    border: 1px solid #85f01ad1;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 255, 0, 0.996);
    border: 2px solid #A4FF00;
}

.feature-icon {
    font-size: 48px;
    color: #9ef01a;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: bold;
}

.feature-item p {
    font-size: 1.1em;
    color: #cfcfcf;
}

.features-cta {
    margin-top: 50px;
}

.start-now-btn {
    background-color: transparent;
    color: #9ef01a;
    border: 2px solid #9ef01a;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 39px;
}

.start-now-btn:hover {
    background-color: #fbff00;
    color: black;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-title {
        font-size: 28px;
    }

    .features-subtitle {
        font-size: 16px;
    }

    .feature-icon {
        font-size: 36px;
    }

    .feature-item h3 {
        font-size: 1.2em;
    }

    .feature-item p {
        font-size: 1em;
    }

    .start-now-btn {
        font-size: 1rem;
        padding: 12px 30px;
    }
}


.movies-section {
    background-color: #000;
    padding: 60px 20px;
    text-align: center;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.8s ease-out;
  }
  
  .movies-section.visible {
    transform: translateX(0);
    opacity: 1;
  }
  
  .section-title {
    font-size: 32px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: bold;
  }
  
  .section-title span {
    color: #baff3e;
  }
  
  .movies-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
  }
  
  .slider-track {
    display: flex;
    width: 100%;
    animation: scroll 20s linear infinite; /* Made faster */
  }
  
  .movie-poster {
    width: 250px;
    height: 380px;
    margin-right: 30px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease;
  }
  
  .movie-poster:hover {
    transform: scale(1.05);
    border: #A4FF00 2px solid;
  }
  
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-200%); }
  }
  
  @media (max-width: 768px) {
    .slider-track {
      width: calc(180px * 8);
    }
  
    .movie-poster {
      width: 180px;
      height: 280px;
      margin-right: 15px;
    }
  
    .section-title {
      font-size: 24px;
    }
  }


  .world-channels {
    text-align: center;
   
    background-color: #000; /* matches your dark theme */
}

.section-title {
    font-size: 2.5rem;
    color: #fff;
    font-weight: bold;
}

.section-title span {
    color: #00ff6a; /* green accent like your site theme */
}

.responsive-world-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 12px;
   
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .responsive-world-image {
        margin-top: 15px;
    }
}

/* comparision table  */


.comparison {
    padding: 60px 20px;
    background-color: #000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    animation: fadeInUp 1s ease-in-out forwards;
  }
  
  .comparison-title {
    font-size: 30px;
    font-weight: 700;
    color: #baff3e;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  
  .comparison-subtitle {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 40px;
  }
  
  .comparison-table {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 1100px;
    margin: auto;
  }
  
  .comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: #111;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
  }
  
  .comparison-row:hover {
    transform: scale(1.02);
  }
  
  .comparison-row.header {
    background-color: #0047AB;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .feature-title, .provider {
    padding: 20px 10px;
    font-size: 16px;
    text-align: center;
  }
  
  .feature-title {
    font-weight: 600;
    text-align: left;
    padding-left: 20px;
  }
  
  .feature-title span {
    display: block;
    font-size: 13px;
    color: #aaa;
    font-weight: normal;
    margin-top: 5px;
  }
  
  .icon-check, .icon-cross {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    font-weight: bold;
  }
  
  .icon-check {
    background-color: #baff3e;
    color: #000;
  }
  
  .icon-cross {
    background-color: #fff;
    color: #888;
    border: 1px solid #888;
  }
  
  @media screen and (max-width: 768px) {
    .comparison-row {
      grid-template-columns: 1fr;
    }
    .comparison-row.header {
      display: none;
    }
    .feature-title, .provider {
      text-align: center;
      padding: 15px;
    }
    .feature-title {
      background-color: #1a1a1a;
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(60px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
.pricing-header h2{
  color: #000;
  margin-top: 25px; 
}

  .jj {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    background: #000;
    padding: 50px 20px;
    font-family: 'Montserrat', sans-serif;
    flex-direction: row;
  }
  
  .section-title {
    width: 100%;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 40px;
  }
  
  .pricing-card {
    background: #000;
    border: 2px solid #a8ff00;
    border-radius: 25px;
    color: white;
    max-width: 350px;
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
    position: relative;
    /* box-shadow: 0 0 15px #a8ff00; */
  }
  
  .pricing-header {
    background: #a8ff00;
    padding: 20px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    color: black;
    font-weight: bold;
    font-size: 18px;
  }
  
  .price {
    font-size: 42px;
    font-weight: bold;
    margin: 20px 0 10px;
  }
  
  .price sup {
    font-size: 18px;
    vertical-align: super;
  }
  
  .price span {
    display: block;
    font-size: 18px;
    color: #a8ff00;
    font-weight: 600;
    margin-top: 5px;
  }
  
  .benefits {
    list-style: none;
    padding: 0;
    margin: 0 20px;
    border-top: 1px solid white;
  }
  
  .benefits li {
    border-bottom: 1px solid white;
    padding: 12px 0;
    font-weight: bold;
    font-size: 14px;
  }
  
  .buy-btn {
    background: #a8ff00;
    color: black;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    margin-top: 15px;
    cursor: pointer;
    box-shadow: 0 0 10px #a8ff00;
  }
  
  .note {
    margin-top: 10px;
    font-size: 14px;
    color: #ccc;
  }
  
  .popular-ribbon {
    position: absolute;
    top: -4px;
    right: -3px;
    background: black;
    color: white;
    font-size: 19px;
    padding: 5px 20px;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: -8px;
    font-weight: bolder;
    /* box-shadow: 0 0 5px #a8ff00; */
    rotate: 360deg;
  }
  
  @media screen and (max-width: 768px) {
    .jj {
      flex-direction: column;
      align-items: center;
    }
  }



/* faq section  */



.faq-section {
    background: #000;
    padding: 60px 20px;
    color: white;
    font-family: 'Montserrat', sans-serif;
  }
  
  .faq-heading {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: white;
  }
  
  .faq-heading span {
    color: #a8ff00;
  }
  
  .faq-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .faq-item {
    background: #000;
    border: 2px solid #a8ff00;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
  }
  
  .faq-question {
    background: #000;
    color: white;
    width: 100%;
    padding: 20px;
    text-align: left;
    border: none;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    cursor: pointer;
    outline: none;
    box-shadow: 0 0 10px #a8ff00;
  }
  
  .faq-answer {
    display: none;
    padding: 20px;
    font-size: 14px;
    color: #eee;
  }
  
  .faq-answer.open {
    display: block;
  }
  
  .faq-question.active .icon {
    content: '-';
  }
  
  .arrow {
    transition: transform 0.3s ease;
    font-size: 18px;
  }
  
  .arrow.rotate {
    transform: rotate(90deg);
  }
  
  @media screen and (max-width: 768px) {
    .faq-question {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  
    .faq-heading {
      font-size: 26px;
    }
  }


  /* testimonial section  */
  

  
.testimonials {
    background-color:#000000;
    padding: 80px 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}
.modi{
    font-size: 2.5em;
    font-weight: bold;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
}
.dev{
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.6;
    
}
.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial.active {
    display: block;
    opacity: 3;
}

.testimonial-content {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 40px;
    position: relative;
    border: 3px rgb(255, 251, 0) solid;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    margin-left: 10pxsx;
  
}

.testimonial p {
    font-size: 18px;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author h4 {
    font-size: 20px;
    color: #0055ff;
    margin-bottom: 5px;
    font-weight: bolder;
}

.testimonial-author span {
    color: #3dff08;
    font-size: 16px;
}

.testimonial-navigation {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #bbb;
    border-radius: 0;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #ddff02;
}

.lala{
    color: #A4FF00;
}

/* Footer Section */
.footer-section {
  background-color: #000;
  padding: 60px 20px 0;
  position: relative;
}

.footer-box {
  border: 2px solid #A4FF00;
  border-radius: 25px;
  padding: 50px 30px;
  max-width: 1300px;
  margin: 0 auto 60px;
  text-align: center;
}

.footer-box h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-box h2 span {
  color: #A4FF00;
}

.footer-box p {
  color: #ffffff;
  font-size: 1.5em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.whatsapp-btn img {
  width: 70px;
  height: 70px;
  background-color: #A4FF00;
  padding: 10px;
  border-radius: 10px;
}

/* Footer Bottom */
.footer-bottom {
  padding: 20px 20px 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #A4FF00;
}

.rights {
  color: #A4FF00;
  font-size: 15px;
  margin-top: 10px;
}

/* Scroll-to-top Button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #000;
  border: 2px solid #A4FF00;
  color: #A4FF00;
  font-size: 18px;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 100;
  transition: 0.3s;
}

.scroll-to-top:hover {
  background: #A4FF00;
  color: #000;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-box {
    padding: 40px 20px;
  }

  .footer-box h2 {
    font-size: 28px;
  }

  .footer-box p {
    font-size: 1.2em;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links {
    justify-content: center;
  }

  .rights {
    margin: 0;
  }
}

@media (max-width: 576px) {
  .footer-box h2 {
    font-size: 22px;
  }

  .footer-box p {
    font-size: 1em;
  }

  .whatsapp-btn img {
    width: 60px;
    height: 60px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .scroll-to-top {
    font-size: 16px;
    padding: 6px 10px;
  }
}





.whatsapp-float {
  position: fixed;
  bottom: 23px;; /* Adjust as needed */
  right: 20px;
  margin-right: 200vh;
  background-color: #25d366;
  color: white;
  font-size: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}

.whatsapp-float i {
  font-size: 35px;
}


