/* General Body Styles */
body {
  background-color: #661d8a;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}

/* Header */

.site-header {
  background-color: #661d8a;
  backdrop-filter: blur(10px);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.site-header .navbar-brand img {
  height: 60px;
  width: auto;
  margin-left: 180px;
}

.site-header .nav-link {
  color: #ffffff;
  font-weight: 500;
  padding: 0 15px !important;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.site-header .nav-link:hover {
  color: #ffcc00;
  transform: translateY(-2px);
}

.app-store-buttons {
  display: flex !important;
  gap: 10px;
  align-items: center;
}

.site-header .app-store-buttons img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.site-header .app-store-buttons img:hover {
  transform: scale(1.05);
}

.navbar-collapse {
  margin-top: 0 !important;
}

@media (min-width: 992px) {

  .site-header .navbar-brand img {
    margin-left: 40px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 15px !important;
    padding-right: 15px !important;
    font-size: 1rem;
  }

  .navbar-expand-lg .navbar-collapse {
    flex-grow: 0;
  }

  .app-store-buttons {
    display: flex !important;
    margin-left: 15px;
    margin-top: 35px;
  }

  .navbar-nav {
    align-items: center;
  }

  .navbar {
    justify-content: space-between !important;
  }

  .navbar-collapse {
    margin-right: 40px;
  }
}

@media (max-width: 991.98px) {

  .site-header .navbar-brand img {
    margin-left: 0 !important;
    height: 50px;
  }

  .app-store-buttons {
    display: none !important;
  }

  .site-header .navbar-collapse {
    background-color: rgba(102, 29, 138, 0.95);
    padding: 20px 15px;
    border-radius: 10px;
    margin-top: 10px;
    text-align: center;
  }

  .site-header .nav-link {
    padding: 12px 0 !important;
    font-size: 1.1rem !important;
    margin: 5px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-header .nav-link:last-child {
    border-bottom: none;
  }

  
  .navbar-toggler {
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-right: 15px;
  }

  
  .navbar-brand {
    margin-left: 15px;
  }
}

@media (min-width: 1200px) {
  .site-header .navbar-brand img {
    height: 93px;
    margin-left: 60px;
  }

  .site-header .nav-link {
    font-size: 1.1rem !important;
    padding: 0 20px !important;
  }

  .site-header .app-store-buttons img {
    height: 45px;
  }

  .navbar-collapse {
    margin-right: 60px;
  }
}

@media (min-width: 1400px) {
  .site-header .navbar-brand img {
    margin-left: 170px;
  }

  .navbar-collapse {
    margin-right: 80px;
  }
}

.app-store-buttons-mobile {
  display: none;
}


/* Hero Section  Start*/
/* ---------------- HERO SECTION ---------------- */
.hero-section {
  padding: 60px 0;
  overflow: hidden;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  flex-wrap: nowrap !important;
}

.hero-app-buttons {
  display: none;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  order: 0;
  width: 100%;
}

.hero-app-buttons a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.hero-app-buttons a:hover {
  transform: translateY(-3px);
}

.hero-app-buttons img {
  height: 50px;
  width: auto;
  max-width: 150px;
}

.hero-left {
  flex: 0 0 auto;
  margin-left: 100px;
  order: 1;
}

.hero-left .hero-character {
  width: 100%;
  max-width: 420px;
}

.hero-center {
  flex: 1;
  max-width: 500px;
  padding-right: 40px;
  order: 2;
}

.hero-center h4 {
  font-size: 44px;
  line-height: 1.3;
  font-weight: 700;
  text-align: left;
  margin: 0;
  width: 100%;
  letter-spacing: -0.5px;
}

.hero-right {
  flex: 1.4;
  max-width: 700px;
  padding-left: 40px;
  padding-right: 100px;
  min-width: 450px;
  order: 3;
}

.hero-right video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  max-width: 100% !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background-color: #000;
}

@media (min-width: 1400px) {
  .hero-left {
    margin-left: 120px;
  }

  .hero-left .hero-character {
    max-width: 460px;
  }

  .hero-center {
    max-width: 550px;
    padding-right: 50px;
  }

  .hero-center h4 {
    font-size: 52px;
    line-height: 1.25;
  }

  .hero-right {
    max-width: 800px;
    padding-right: 120px;
    padding-left: 50px;
    flex: 1.5;
  }

  .hero-right video {
    height: 320px;
    border-radius: 20px;
  }
}

/* MEDIUM DESKTOP */
@media (max-width: 1200px) {
  .hero-left {
    margin-left: 60px;
  }

  .hero-left .hero-character {
    max-width: 380px;
  }

  .hero-center {
    max-width: 450px;
    padding-right: 30px;
  }

  .hero-center h4 {
    font-size: 40px;
  }

  .hero-right {
    max-width: 600px;
    padding-right: 80px;
    padding-left: 30px;
    flex: 1.3;
    min-width: 400px;
  }

  .hero-right video {
    height: 280px;
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .hero-center {
    max-width: 420px;
  }

  .hero-center h4 {
    font-size: 38px;
  }

  .hero-right {
    max-width: 550px;
  }

  .hero-right video {
    height: 260px;
  }
}

@media (max-width: 992px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-app-buttons {
    display: flex;
    order: 0;
    margin-bottom: 20px;
  }

  .hero-left {
    margin-left: 0;
    order: 1;
  }

  .hero-left .hero-character {
    max-width: 320px;
  }

  .hero-center {
    order: 2;
    max-width: 100%;
    padding: 0 40px;
    flex: none;
  }

  .hero-center h4 {
    font-size: 36px;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .hero-right {
    order: 3;
    max-width: 90%;
    padding: 0 40px;
    min-width: auto;
    flex: none;
  }

  .hero-right video {
    max-width: 100%;
    height: 280px;
    margin: 0 auto;
    object-fit: cover;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-center h4 {
    font-size: 40px;
  }

  .hero-right video {
    height: 300px;
    max-width: 700px;
  }

  .hero-app-buttons {
    gap: 20px;
    margin-bottom: 30px;
  }

  .hero-app-buttons img {
    height: 55px;
  }
}

@media (max-width: 767px) {
  .hero-app-buttons {
    gap: 15px;
    margin-bottom: 25px;
  }

  .hero-app-buttons img {
    height: 48px;
    max-width: 140px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-center {
    padding: 0 25px;
  }

  .hero-center h4 {
    font-size: 32px;
  }

  .hero-left .hero-character {
    max-width: 280px;
  }

  .hero-right {
    padding: 0 25px;
  }

  .hero-right video {
    max-width: 100%;
    height: 220px;
  }

  .hero-app-buttons {
    gap: 12px;
    margin-bottom: 20px;
  }

  .hero-app-buttons img {
    height: 45px;
    max-width: 130px;
  }
}

@media (max-width: 360px) {
  .hero-center h4 {
    font-size: 28px;
  }

  .hero-left .hero-character {
    max-width: 240px;
  }

  .hero-right video {
    height: 180px;
  }

  .hero-app-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .hero-app-buttons img {
    height: 40px;
    max-width: 120px;
  }
}

.hero-right video:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* hero end here  */



/* How to Play Section */

@media (min-width: 1440px) {
  .text-center {
    margin: auto;
  }

  .text-center h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-left: 2rem;
    font-weight: 700;
  }

  .play_content {
    font-size: 1rem;
  }

  .container h2 {
    font-size: 2.5rem;
    color: #450665;
    margin-bottom: 2rem;
    font-weight: 700;
  }
}

.about-heading {
  color: white;
}

.modal-dialog {
  color: black;
}

.about-us-section h2 {
  color: white;
}

.gameplay-icon {
  max-width: 100px;
}

/* Generals Section */
.generals-section {
  padding: 80px 0;
}

.general-card {
  background-color: #8a2be2;
  border-radius: 20px;
  padding: 40px;
  position: relative;
}

.carousel-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
}

.arrow-left,
.arrow-right {
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

/* Quuize requirement Section  Start*/
.quiz-requirements-section {
  padding: 50px 0;
  background: #fff;
}

.requirement-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.requirement-card p {
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #450665;
}

.requirement-card ul {
  padding-left: 18px;
  margin: 0;
}

.requirement-card ul li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 6px;
  color: #450665;
}

.quiz-requirements-section .row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.requirement-card {
  max-width: 550px;
}

/* Responsive */
@media (max-width: 768px) {
  .requirement-card {
    text-align: left;
    margin-bottom: 25px;
  }

  .quiz-requirements-section {
    padding: 50px 0;
  }
}

/* Quize requirement section End */
/* Watch Area Section */
/* Watch Area Section */
.watch-area-section {
  padding: 80px 0;
  background: #fff;
}

.watch-area-section h3 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 25px;
  color: #450665;
  text-align: center;
}

/* Two-column layout */
.watch-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.watch-heading h4 {
  font-size: clamp(1.3rem, 3vw, 1.2rem);
  font-weight: 500;
  margin-left: 0.5rem;
  margin-top: 1rem;

  color: #0a0a0a;
}

.watch-card {
  width: 48%;
  background: #fff;
}

.watch-card img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  border-radius: 12px;
}

.token-heading {
  display: flex;
  align-items: left;
  line-height: 1rem;
}

.token-heading h4 {
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: #000;
  margin-top: 2.5rem;
  font-weight: 600;
}

.token-heading p {
  font-size: 1.1rem;
  color: #000;
  font-style: italic;
}

.token-img {
  width: 150px;
  height: auto;
  border-radius: 2px;
}

/* Responsive */

@media (min-width: 1440px) {
  .watch-card img {
    height: 580px;
  }

  .watch-heading h4 {
    margin-left: 3.2rem;
  }

  .watch-heading .watch-card {
    border-radius: 3rem;
  }
}

@media (max-width: 992px) {
  .watch-card img {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .watch-grid {
    flex-direction: column;
    gap: 20px;
  }

  .watch-card {
    width: 100%;
  }

  .watch-card img {
    height: auto;
  }
}

@media (max-width: 480px) {
  .token-heading {
    display: flex;
    align-items: left;
    line-height: 1rem;
  }

  .token-heading h4 {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #000;
    margin-top: 1.2rem;
    font-weight: 600;
  }

  .token-heading p {
    font-size: 0.8rem;
    color: #000;
  }

  .token-img {
    width: 100px;
    height: auto;
    height: 100px;
  }

  .app-store-buttons {
    margin: auto;
  }

  .watch-heading h4 {
    font-size: 1.1rem;
  }
}

/* ========================================================= */
/* RIGHT SECTION */
.col-right {
  flex: 0 0 40%;
  /* fixed image area on right */
  display: flex;
  justify-content: flex-end;
}

.col-right {
  justify-content: center;
}

/* About Us Section Start*/

.about-us-section {
  padding: clamp(50px, 6vw, 100px) 0;
  position: relative;
  background: #661d8a;
  color: #333;
}

.about-heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: clamp(15px, 2vw, 25px);
}

.about_content p {
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 90%;
  color: #fff;
}

.about_content .section_title {
  font-weight: 600;
  margin-top: 12px;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
}

/* ============================================
   IMAGE
============================================ */
.about_img {
  width: 100%;
  max-width: 500px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* ============================================
   RESPONSIVE LAYOUT
============================================ */
.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* Right column spacing for large screens */
.col-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Left text column */
.col-md-6 {
  flex: 1;
  min-width: 300px;
}

/* ============================================
   ≤ 992px (Tablets & small desktops)
============================================ */
@media (max-width: 992px) {
  .about_content p {
    max-width: 100%;
  }

  .about-us-section {
    padding: 60px 0;
  }

  .about_img {
    max-width: 420px;
  }
}

/* ============================================
   ≤ 768px (Standard Tablets & Mobiles)
============================================ */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
    text-align: center;
  }

  .col-md-6 {
    margin-bottom: 25px;
  }

  .about_img {
    max-width: 400px;
  }
}

/* ============================================
   ≤ 576px (Mobile phones)
============================================ */
@media (max-width: 576px) {
  .about-img {
    max-width: 330px;
  }

  .about_content p {
    font-size: 0.95rem;
  }
}

/* ============================================
   ≤ 430px (Small phones like iPhone SE)
============================================ */
@media (max-width: 430px) {
  .about-heading {
    font-size: 1.6rem;
  }

  .about_img {
    max-width: 280px;
  }
}

/* ============================================
   ≤ 350px (Extra small phones)
============================================ */
@media (max-width: 350px) {
  .about-heading {
    font-size: 1.45rem;
  }

  .about_img {
    max-width: 240px;
  }
}

/* About Section End */

/* Testimonials Section  Start*/
/* =======================================
   TESTIMONIALS – BASE STYLES
======================================= */
/* Better modern dots */
.carousel-indicators {
  bottom: -35px;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #666;
  background-color: #fff;
  margin: 0 6px;
  transition: all 0.3s ease;
}

/* Active dot */
.carousel-indicators .active {
  width: 12px;
  background-color: #8a2be2;
  border-color: #8a2be2;
}

.testimonials-section {
  padding: clamp(60px, 8vw, 120px) 0;
  background: #450665;
  text-align: center;
}

.testimonials-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #fff;
}

/* =======================================
   TESTIMONIAL CARD
======================================= */
.testimonial-slider-card {
  background: #ffffff;
  border-radius: 18px;
  padding: clamp(20px, 4vw, 40px);
  max-width: 750px;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Star rating */
.stars {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: #ffb400;
  margin-bottom: 12px;
}

/* Main testimonial text */
.testimonial-slider-card p {
  font-size: clamp(0.95rem, 1.2vw, 1.3rem);
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

/* Author name */
.testimonial-author span {
  font-weight: 600;
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  color: #222;
}

/* =======================================
   BOOTSTRAP CAROUSEL OVERRIDES
======================================= */
.carousel-item {
  transition: transform 0.6s ease, opacity 0.6s ease;
  padding: 10px 15px;
}

/* Carousel navigation buttons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

.carousel-control-prev,
.carousel-control-next {
  width: 8%;
}

/* =======================================
   MEDIUM DEVICES (≤ 992px)
======================================= */
@media (max-width: 992px) {
  .testimonial-slider-card {
    max-width: 600px;
  }
}

/* =======================================
   TABLETS (≤ 768px)
======================================= */
@media (max-width: 768px) {
  .testimonial-slider-card {
    padding: 25px;
    max-width: 520px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 10%;
  }
}

/* =======================================
   SMALL MOBILES (≤ 576px)
======================================= */
@media (max-width: 576px) {
  .testimonial-slider-card {
    padding: 20px;
    max-width: 90%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    transform: scale(0.85);
  }
}

/* =======================================
   VERY SMALL PHONES (≤ 430px)
======================================= */
@media (max-width: 430px) {
  .testimonial-slider-card p {
    font-size: 0.95rem;
  }

  .testimonial-slider-card {
    padding: 18px;
    border-radius: 14px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 12%;
  }
}

/* =======================================
   EXTREME SMALL (≤ 350px)
======================================= */
@media (max-width: 350px) {
  .testimonial-slider-card {
    padding: 15px;
  }

  .testimonial-slider-card p {
    font-size: 0.9rem;
  }
}

/* Testimonial Section End */

.stars {
  color: #ffc107;
  font-size: 24px;
  margin-bottom: 15px;
}

.slider-dots {
  margin-top: 20px;
}

/* How to Play Section start*/
/* ==============================
   HOW TO PLAY SECTION BASE STYLES
================================= */
.how-to-play-section {
  background: #fff;
  color: #333;
  padding: 60px 0;
  text-align: center;
}

.how-to-play-section h3,
h2 {
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  font-weight: 700;
  color: #450665;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.how-to-play-section h3 img {
  width: clamp(25px, 4vw, 40px);
}

.play_content {
  max-width: 650px;
  margin: 10px auto 25px;
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  line-height: 1.5;
  text-align: center;
}

/* ==============================
   GENERALS SLIDER
================================= */
.slider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 2vw, 20px);
  margin-top: 30px;
}

.general-image {
  width: clamp(260px, 90vw, 900px);
  max-width: 100%;
  border-radius: 12px;
}

/* ==============================
   NAV BUTTONS
================================= */
#prevBtn,
#nextBtn {
  width: clamp(40px, 6vw, 65px);
  height: clamp(40px, 6vw, 65px);
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #450665, #450665);
  transition: 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

#prevBtn,
#nextBtn {
  position: relative;
  z-index: 20;
}

/* Arrow shapes */
#prevBtn {
  clip-path: polygon(70% 0%, 40% 0%, 10% 50%, 40% 100%, 70% 100%, 45% 50%);
}

#nextBtn {
  clip-path: polygon(30% 0%, 60% 0%, 90% 50%, 60% 100%, 30% 100%, 55% 50%);
}

#prevBtn:hover,
#nextBtn:hover {
  transform: translateY(-4px) scale(1.07);
}

/* ==============================
   TABLET RESPONSIVE
================================= */
@media (max-width: 992px) {
  .slider {
    gap: 14px;
  }

  .general-image {
    width: clamp(150px, 50vw, 380px);
  }
}

/* ==============================
   MOBILE RESPONSIVE
================================= */
@media (max-width: 768px) {
  .slider {
    gap: 10px;
  }

  #prevBtn,
  #nextBtn {
    width: 45px;
    height: 45px;
  }
}

/* ==============================
   SMALL MOBILE (≤ 576px)
================================= */
@media (max-width: 576px) {
  .general-image {
    width: clamp(130px, 55vw, 250px);
  }

  #prevBtn,
  #nextBtn {
    width: 40px;
    height: 40px;
  }
}

/* ==============================
   EXTRA SMALL (≤ 430px)
================================= */
@media (max-width: 430px) {
  .general-image {
    width: clamp(110px, 55vw, 200px);
  }

  #prevBtn,
  #nextBtn {
    width: 36px;
    height: 36px;
  }
}

/* ==============================
   EXTRA EXTRA SMALL (≤ 350px)
================================= */
@media (max-width: 350px) {
  .general-image {
    width: clamp(100px, 60vw, 160px);
  }

  #prevBtn,
  #nextBtn {
    width: 32px;
    height: 32px;
  }
}

.image-frame {
  padding: 5px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e6d707, #ff9800);
  display: inline-block;
}

.slider img.general-image {
  border-radius: 10px;
  display: block;
}

/* How to play Scetion end */

/* ===== Tablet (≤ 992px) ===== */
@media (max-width: 992px) {
  .general-image {
    width: 300px;
  }

  #prevBtn,
  #nextBtn {
    padding: 8px 14px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {

  #prevBtn,
  #nextBtn {
    width: 38px;
    height: 38px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  }
}

/* ===== Mobile Large (≤ 768px) ===== */
@media (max-width: 768px) {
  .general-image {
    width: 230px;
  }

  #prevBtn,
  #nextBtn {
    padding: 6px 12px;
    font-size: 14px;
  }
}

/* ===== Mobile Medium (≤ 576px) ===== */
@media (max-width: 576px) {
  .general-image {
    width: 180px;
  }

  #prevBtn,
  #nextBtn {
    padding: 6px 10px;
    font-size: 13px;
  }
}

/* ===== Small Mobile (≤ 430px) ===== */
@media (max-width: 430px) {
  .general-image {
    width: 150px;
  }

  #prevBtn,
  #nextBtn {
    padding: 5px 9px;
    font-size: 12px;
  }
}

/* ===== Extra Small (≤ 350px) ===== */
@media (max-width: 350px) {
  .general-image {
    width: 125px;
  }

  #prevBtn,
  #nextBtn {
    padding: 5px 8px;
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .slider {
    gap: 8px;
  }

  .general-image {
    width: 200px;
    /* smaller on mobile */
  }

  #prevBtn,
  #nextBtn {
    padding: 6px 12px;
    font-size: 14px;
  }
}

@media (max-width: 460px) {
  .slider {
    gap: 0px;
  }

  .general-image {
    width: 550px;
    /* smaller on mobile */
  }

  #prevBtn,
  #nextBtn {
    padding: 1px 6px;
    font-size: 12px;
  }
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
}

.dot.active {
  background-color: #8a2be2;
}

/* Footer  Start*/
.site-footer {
  background: #160021;
  padding: 60px 0;
  color: #fff;
  text-align: center;
}

/* Main Heading */
.site-footer .footer-heading {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
}

/* App Buttons */
.app-store-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.app-store-buttons img {
  height: 48px;
  max-width: 100%;
}

/* Footer Bar Row */
.footer-bar {
  border-top: 1px solid #333;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo */
.footer-logo {
  height: 55px;
  margin-bottom: 15px;
}

/* Footer Link List */
.footer-links {
  list-style: none;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ------------ Responsive Screens ------------ */
@media (max-width: 768px) {
  .footer-bar {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    gap: 16px;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .site-footer .footer-heading {
    font-size: 20px;
  }
}

@media (max-width: 1440px) {
  .app-store-buttons img {
    margin: auto;
  }
}

/* Footer End */