
 /* dark mode css */
body {
            height: 10;
            margin: 0;
            padding: 20px;
            font-family: Arial, sans-serif;
            background-color: #333; /* Default dark background */
            color: white;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* Light mode overrides */
        body.light-mode {
            background-color: white;
            color: black;
        }

        /* Section with toggleable theme */
        .popular-slider-container {
            padding: 20px;
            margin-top: 20px;
            background-color: #444; /* Default dark */
            color: white;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* Light mode version */
        body.light-mode .popular-slider-container {
            background-color: white;
            color: black;
        }

        /* Navigation icon styling */
        .nav-icon {
            font-size: 24px;
            cursor: pointer;
            padding: 10px;
            display: inline-block;
            color: white; /* Default icon color for dark mode */
            transition: color 0.3s ease;
        }

         /* Toggle Switch Style */
        .toggle-container {
            display: inline-flex;
            align-items: center;
            cursor: pointer;
            background-color: #ccc;
            border-radius: 20px;
            padding: 5px;
            width: 60px;
            position: relative;
            transition: background-color 0.3s ease;
        }

        .toggle-switch {
            height: 16px;
            width: 16px;
            background-color: white;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }

        .toggle-container.on {
            /* background-color: #00cc66; */
        }

        .toggle-container.on .toggle-switch {
            transform: translateX(30px);
        }
         
        @media only screen and (max-width: 400px) {
        .toggle-switch {
        height: 12px;
        width: 12px;
        }
        .toggle-container {
           padding: 5px;
            width: 50px;
        }
      }
        /* off - on  toggle css end */
    /*!!!!!!!!!!!!!!!!!!!  slider  !!!!!!!!!!!!! */
    

    /*  !!!!!!!!!!!!    slider end !!!!!!!!!!!!!!!*/

    
      /* nac css ===============================================================================================================*/
:root {
  --gradient-start: #6DA2FF;
  --gradient-end: #244989;
  --text-color: #ffffff;
  --accent-color: #6DA2FF;
}

.dark-theme {
  background-color: #121212;
  color: #f1f1f1;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0d0e0f;
  color: #333333;
  padding: 15px 20px;
  border-radius: 5px;
  position: relative;
  font-size: 30px;
}

.nav-right {
  font-size: 30px;
  font-weight: bold;
  font-family: 'PT Serif', serif;
  background: linear-gradient(135deg, #6DA2FF, #244989);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.nav-left {
  display: flex;
  align-items: center;
  position: relative;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  margin-left: 15px;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-center {
  display: flex;
  gap: 15px;
  align-items: center;
}

.nav-icon {
  padding-right: 10px;
  font-size: 20px;
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-icon:hover {
  color: #ddd;
}

.dropdown-menu {
  display: block;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #444;
  width: 200px;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
}

.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  color: white;
    background-color: black;
}

.dropdown-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-menu li {
  padding: 12px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dropdown-menu li:hover {
  background-color: #6DA2FF;
}

.dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid #555;
}

/* Responsive styles */
@media (max-width: 600px) {
  .dropdown-menu {
    width: 90vw;
    right: 0;
  }

  .dropdown-menu li {
    text-align: center;
     padding: 1px 1px;
    font-size: 10px;
  }
  .hamburger {
  width: 30px;
  height: 21px;
  
}
}

@media (max-width: 768px) {
  .navbar {
    align-items: flex-start;
    padding: 12px 15px;
  }

  .nav-right {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .nav-center {
    gap: 15px;
    /* margin-bottom: 10px; */
  }

  .nav-icon {
    font-size: 18px;
  }

  .dropdown-menu {
    right: 0;
    width: 180px;
  }
 
}

@media (max-width: 480px) {
  .nav-center {
    gap: 0px;
  }

  .nav-icon {
    font-size: 12px;
  }

  .nav-right {
    font-size: 12px;
  }

  .dropdown-menu {
    height: 190px;
        right: -10px;
        width: 100px;
  }
   .hamburger {
  width: 21px;
  height: 16px;
  
}
}
 /*  !!!!!!!!!!!!!!!!!!!!!!!! nav bar css end !!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* banner font style */
.orelega-font {
      font-family: "Orelega One", serif;
    }

.form-check-input {
  cursor: pointer;
}


    .hero {
      background-image: url('https://assets.nflxext.com/ffe/siteui/vlv3/7ed0b09c-dde9-4d3f-a7a9-0ea77d715b88/629c7ff9-6e39-4c0e-89f7-17a9f1acdbcf/IN-en-20240513-popsignuptwoweeks-perspective_alpha_website_large.jpg');
      background-size: cover;
      background-position: center;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
    }

    .hero::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: rgba(0, 0, 0, 0.6);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .movie-section {
      padding: 30px 0;
    }

    .movie-section h2 {
      margin-left: 15px;
      margin-bottom: 15px;
    }

    .movie-card {
      transition: transform 0.2s;
      cursor: pointer;
    }

    .movie-card:hover {
      transform: scale(1.1);
      z-index: 1;
    }

    
    
/* footer */
    .footer {
  background-color: #000;
  color: #999;
  padding: 40px 20px;
  font-size: 14px;
}

.footer-container {
  max-width: 1335px;
  /* margin: 0px 6px 0px 75px; */
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-between;
  gap: 30px;
}

.footer-left {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo {
  font-size: 16px;
  color: #fff;
  padding-left: 80px;
}

.footer-tech {
  color: #777;
}

.footer-right {
  /* flex: 2; */
  min-width: 45px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.link-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 80px;
}

.footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  
  
  .footer-links {
    justify-content: space-between;
    font-size: 10px;
  }
   .footer-logo {
    font-size: 10px;
    padding-left: 10px;
}
}

@media (max-width: 480px) {
  .footer-links {
    /* flex-direction: column;
    gap: 20px; */
     font-size: 10px;
  }
  
  .link-column {
    min-width: 100%;
  }
  .footer-logo {
    font-size: 10px;
    padding-left: 10px;
}
}

    /* Hero Carousel Styles */
    .hero-slide {
      height: 600px;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .hero-slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 2rem;
    }

    .hero-image {
      position: relative;
      z-index: 2;
      height: 100%;
      min-height: 300px;
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
    }

    .carousel-item {
      transition: transform 1s ease-in-out;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .hero-slide {
        height: 500px;
      }
      
      .hero-content {
        padding: 1.5rem;
      }
      
      .hero-content h1 {
        font-size: 2.5rem;
      }
    }

    @media (max-width: 768px) {
      .hero-slide {
        height: 450px;
        text-align: center;
      }
      
      .hero-content {
        padding: 1rem;
      }
      
      .hero-content h1 {
        font-size: 2rem;
      }
      
      .hero-image {
        display: none;
      }
    }

    @media (max-width: 576px) {
      .hero-slide {
        height: 400px;
      }
      
      .hero-content h1 {
        font-size: 1.8rem;
      }
      
      .hero-content .lead {
        font-size: 1rem;
      }
      
      .hero-content .btn {
        font-size: 10px;
        padding: 0.5rem 1rem;
      }
    }

    /* Keep your existing styles for other components */
    .scrolling-wrapper {
      overflow: hidden;
      position: relative;
      width: 100%;
    }

    .scrolling-wrapper .row {
      display: flex;
      flex-wrap: nowrap;
      animation: scroll-x 20s linear infinite;
    }

    @keyframes scroll-x {
      0% {
        transform: translateX(0%);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    .short-desc {
      overflow: hidden;
      max-height: 2.6em;
      transition: max-height 0.3s ease;
    }

    .short-desc.expanded {
      max-height: 200px;
    }

    .movie-description {
      font-weight: 600;
      font-size: 0.85rem;
      line-height: 1.4;
      color: #f8f9fa;
      text-align: justify;
      overflow: hidden;
      max-height: 2.6em;
      transition: max-height 0.3s ease;
    }

    .movie-description.expanded {
      max-height: 200px;
    }

    .scroll-container {
      overflow-x: auto;
      white-space: nowrap;
      scroll-behavior: smooth;
    }

    .card-wrapper {
      display: inline-block;
      margin-right: 15px;
      width: 250px;
      vertical-align: top;
    }

    .card-img-top {
      height: 150px;
      object-fit: cover;
    }

    .scroll-buttons {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
    }

    @media (max-width: 576px) {
      .card-wrapper {
        width: 200px;
      }
    }

    .carousel-container {
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
    }

    .carousel-title {
      font-size: 2rem;
      font-weight: 500;
      margin-bottom: 1.5rem;
      margin-top: 1.5rem;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease;
      will-change: transform;
    }

    .carousel-slide {
      min-width: 100%;
      padding: 0 15px;
    }

    @media (min-width: 1024px) {
      .carousel-slide {
        min-width: 50%;
      }
    }

        /* Book Card */
        .book-card {
            display: flex;
            /* gap: 10px; */
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            height: 100%;
            text-decoration: none;
        }
        .book-card h3,
         .book-card p {
        text-decoration: none;
       }

        .book-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }

        .book-cover {
            width: 100px;
            height: 130px;
            flex-shrink: 0;
            border-radius: 4px;
            border: 1px solid #e2e8f0;
            overflow: hidden;
            position: relative;
        }

        .book-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .book-info {
            padding: 8px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .book-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .book-description {
            font-size: 0.875rem;
            color: #64748b;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Navigation Buttons */
        .carousel-nav {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
        }

        .carousel-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: white;
            border: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-btn:hover {
            background-color: #f1f5f9;
        }

        .carousel-btn svg {
            width: 20px;
            height: 20px;
        }

        /* Dots Navigation */
        .carousel-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 8px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #cbd5e1;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .dot.active {
            background-color: #475569;
        }

        /* Responsive Styles */
        @media (min-width: 768px) {
            

            .book-cover {
                width: 150px;
                height: 210px;
                border-radius: 8px;
            }

            .book-info {
                padding: 16px;
            }

            .book-title {
                font-size: 1.25rem;
                margin-bottom: 12px;
            }

            .book-description {
                font-size: 1rem;
                -webkit-line-clamp: 4;
            }
        }

        @media (min-width: 1024px) {
            .carousel-slide {
                min-width: 50%;
            }

            .book-card {
                /* gap: 40px; */
            }

            .book-cover {
                width: 300px;
                height: 430px;
                border-radius: 16px;
            }

            .book-info {
                padding: 64px 20px;
                justify-content: center;
            }

            .book-title {
                font-size: 1.5rem;
                margin-bottom: 20px;
                -webkit-line-clamp: 3;
            }

            .book-description {
                font-size: 1.125rem;
                -webkit-line-clamp: 6;
            }
        }

        /* second container */
        /* crd */
/* Category card styling */
.category-card {
  height: 160px;
  border-radius: 1rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Semi-circle effect */
.category-card::before {
  content: '';
  position: absolute;
  bottom: -25px;
  left: -25px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Hover effects */
.category-card:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.6);
}

.category-card:hover::before {
  transform: scale(1.2);
  opacity: 0.3;
}

.category-card .card-body {
  height: 100%;
  border-radius: 1rem;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-title {
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.category-card:hover .card-title {
  transform: scale(1.05);
  text-shadow: 0 3px 6px rgba(0,0,0,0.4);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  /* Tablet adjustments */
  .category-card {
    height: 150px;
  }
  .card-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 767.98px) {
  /* Mobile adjustments */
  .category-card {
    height: 100%;
  }
  .card-title {
    font-size: 12PX;
  }
}
     /* populr */
     .popular-slider-container {
      margin: 2.5rem auto;
      padding: 1rem;
      background-color: #121212;
      border-radius: 0.75rem;
      max-width: 1400px;
    }

    @media (min-width: 768px) {
      .popular-slider-container {
        margin: 5rem auto;
        padding: 1.75rem;
        border-radius: 1rem;
      }
    }

    /* Header */
    .popular-slider-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.5rem;
    }

    .popular-slider-title {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      font-size: 1.125rem;
      font-weight: 600;
    }

    .popular-slider-title i {
      color: #3b82f6;
      font-size: 1.5rem;
    }

    /* Navigation Buttons */
    .popular-slider-nav {
      display: flex;
      gap: 0.5rem;
    }

    .popular-slider-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.875rem;
      font-weight: 500;
      transition: all 0.3s ease;
      border: 1px solid #e4e4e7;
      background-color: #fff;
      color: #18181b;
      border-radius: 9999px;
      width: 2.5rem;
      height: 2.5rem;
      cursor: pointer;
    }

    .popular-slider-btn:hover {
      background-color: #e4e4e7;
    }

    .popular-slider-btn i {
      pointer-events: none;
      font-size: 1rem;
    }

    .popular-slider-btn[disabled] {
      opacity: 0.5;
      cursor: not-allowed;
    }

    /* Slider Track */
    .popular-slider-track {
      display: flex;
      margin-left: -1rem;
      margin-top: 1rem;
      margin-bottom: 1rem;
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    @media (min-width: 768px) {
      .popular-slider-track {
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
      }
    }

    /* Slide Item */
    .popular-slide {
      min-width: 0;
      flex-shrink: 0;
      flex-grow: 0;
      padding-left: 1rem;
      width: calc(100% / 3);
    }

    @media (min-width: 768px) {
      .popular-slide {
        width: calc(100% / 6);
      }
    }

    @media (max-width: 640px) {
      .popular-slide {
        width: 50%;
      }
    }

    @media (max-width: 480px) {
      .popular-slide {
        width: 100%;
      }
    }

    .popular-slide-link {
      margin: 0.125rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
    }

    @media (min-width: 768px) {
      .popular-slide-link {
        gap: 1.25rem;
      }
    }

    .popular-slide-link:hover {
      transform: scale(1.02);
    }

    /* Book Cover */
    .popular-book-cover {
      position: relative;
      width: 100%;
      flex: none;
      overflow: hidden;
      border-radius: 0.75rem;
      border: 1px solid #e4e4e7;
      aspect-ratio: 5/7;
    }

    .popular-book-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .popular-book-title {
      position: absolute;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      background-color: rgba(0, 0, 0, 0.75);
      padding: 1rem;
      backdrop-filter: blur(4px);
      bottom: 0;
    }

    .popular-book-title h3 {
      font-size: 0.875rem;
      font-weight: 600;
      color: white;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* Dots Navigation */
    .popular-dots-container {
      margin-top: 1.25rem;
      display: flex;
      justify-content: center;
      gap: 0.5rem;
    }

    .popular-dot {
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 9999px;
      background-color: #d4d4d8;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .popular-dot.active {
      background-color: #3b82f6;
    }
      
        /* populr */


        
    /*  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  novel tranding start !!!!!!!!!!!!!!!!!!!!! */
   
.popular-slider-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.carousel-title {
  text-align: justify;
  margin-bottom: 30px;
  font-size: 2rem;
  font-family: "Cinzel Decorative", serif;
  font-style: normal;
  text-decoration: none;
  color: var(--text-color); /* Added for theme consistency */
}

/* Card container - responsive grid */
.unique-container {
  width: 100%;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 4 columns by default (desktop) */
  gap: 95px;
  box-sizing: border-box;
}



/* Card styling */
.unique-card {
  display: flex;
  flex-direction: column;
  background-color: #1d1c1c; /* Updated for theme */
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1); /* Updated for theme */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.light-mode .unique-card {
  border: 1px solid rgba(0, 0, 0, 0.1); /* Light mode border */
}

.card-image {
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card-content {
  padding: 15px;
  background: rgba(30, 30, 30, 0.9); /* Dark background */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.light-mode .card-content {
  /* background: rgba(245, 245, 245, 0.9); Light background */
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.card-content p {
  margin: 0;
  color: var(--text-color);
  font-size: 26px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}

/* Hover effects */
.unique-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.unique-card:hover .card-image img {
  transform: scale(1.05);
}

/* Tablet and Mobile view (3 cards) */
@media (max-width: 1024px) {
  .unique-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 15px;
  }
  
  .carousel-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    TEXT-ALIGN: justify;
  }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
  .unique-container {
    gap: 15px;
    padding: 10px;
  }
  
  .card-content {
    padding: 12px;
  }
  
  .card-content p {
    font-size: 12px;
  }
  
  .carousel-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}

        /*!!!!!!!!!!!!!!!!!!!!!!! novel tranding end !!!!!!!!!!!!!!!*/

        /*  =============  Premium Offer Styles  ================ */
   .super {
            max-width: 1400px;
            padding: 15px;
            margin: 20px auto;
            background-color: #0480ff;
            color: white;
            border-radius: 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .popular-slider-container {
            padding: 15px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            color: white;
        }

        .popular-slider-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: nowrap; /* Prevent wrapping to new line */
            gap: 20px;
            /* flex-direction: column; */
        }
        .novel {
           flex-direction: column; 
        }

        .offer-details {
            flex: 1;
            min-width: 200px; /* Prevent text from squeezing too much */
        }

        .offer-details h2 {
            color: white;
            font-size: 22px;
            margin: 0;
            white-space: nowrap; /* Prevent text from wrapping */
        }

        .offer-details .subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 15px;
            margin-top: 5px;
            white-space: nowrap;
        }

        .pricing-toggle-container {
            position: relative;
            flex-shrink: 0; /* Prevent shrinking */
        }

        .pricing-toggle-container::before {
            content: '';
            position: absolute;
            top: -10px;
            right: -15px;
            bottom: -10px;
            left: -15px;
            border-radius: 25px;
            z-index: 0;
        }

        .pricing-box {
            display: flex;
            position: relative;
            z-index: 1;
            border-radius: 25px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
        }

        .price-period {
            padding: 12px 25px;
            cursor: pointer;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            color: white;
            background: transparent;
            white-space: nowrap;
        }

        .price-period.active {
            background: #000000;
            color: white;
        }

        .price-period:hover:not(.active) {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Responsive for tablets */
        @media (max-width: 768px) {
            .super {
                padding: 15px;
                margin: 15px;
            }
            
            .popular-slider-header {
                gap: 15px;
            }
            
            .offer-details h2 {
                font-size: 18px;
            }
            
            .offer-details .subtitle {
                font-size: 14px;
            }
            
            .price-period {
                padding: 10px 15px;
                font-size: 14px;
            }
        }

        /* Responsive for mobiles */
        @media (max-width: 480px) {
            .super {
                padding: 12px;
                margin: 10px;
            }
            
            .popular-slider-header {
                gap: 0px;
            }
            
            .offer-details h2 {
                font-size: 10px;
            }
            
            .offer-details .subtitle {
                font-size: 8px;
            }
            
            .price-period {
                padding: 8px 12px;
                font-size: 12px;
            }
        }

        /* For very small screens where content might still break */
        @media (max-width: 360px) {
            .offer-details h2 {
                font-size: 14px;
            }
            
            .price-period {
                padding: 6px 10px;
                font-size: 11px;
            }
        }
/* Font Awesome for icons (add this to your head if not already included) */
    /* Hero Carousel Styles ==============================================================================================*/
 .slideshow-container {
    max-width: 1920px;
    position: relative;
    margin: auto;
    overflow: hidden;
    max-height: 650px;
}

.mySlides {
    display: none;
    width: 100%;
    position: relative;
    animation-duration: 1.5s;
    animation-fill-mode: both;
}

.mySlides img {
    width: 100%;
    height: auto;
    vertical-align: middle;
    object-fit: cover;
    aspect-ratio: 16/9;
}

/* Text overlay on left side */
.slide-content {
    position: absolute;
    top: 35%;
    left: 5%;
    transform: translateY(-50%);
    color: white;
    z-index: 10;
    max-width: 50%;
    text-align: left;
    padding: 20px;
    /* background-color: rgba(0, 0, 0, 0.5); */
    border-radius: 5px;
}

.slide-content h2 {
    font-size: 4.9em;
    margin-bottom: 15px;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
}
.abc {
  background: linear-gradient(135deg, #9ec5ff, #206abb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: "Orelega One", serif;
  
}
 .read-more-btn {
        background: linear-gradient(135deg, #2464c5, #11305f);
        color: white;
        border: none;
        padding: 8px 16px;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .read-more-btn:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }

.slide-content p {
    font-family: "Poppins", sans-serif;
    font-size: 1.2em;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.3);
    z-index: 100;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 12px 16px;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: rgba(0,0,0,0.5);
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    background: rgba(0,0,0,0.5);
    border-radius: 0 0 3px 0;
    z-index: 10;
}

/* The dots/bullets/indicators */
.dots-container {
    text-align: center;
    padding: 20px 0;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
}

@keyframes fade {
    from {opacity: 0.4} 
    to {opacity: 1}
}

/* On smaller screens, adjust text size and button size */
@media only screen and (max-width: 900px) {
    .slide-content {
        max-width: 55%;
        left: 5%;
    }
    
    .slide-content h2 {
        font-size: 1.8em;
    }
    
    .slide-content p {
        font-size: 1em;
    }
}

@media only screen and (max-width: 600px) {
    .prev, .next, .text {
        font-size: 12px;
        padding: 8px;
    }
    
    .slide-content {
        max-width: 60%;
        left: 4%;
        padding: 10px;
    }
    
    .slide-content h2 {
        font-size: 1.5em;
        margin-bottom: 8px;
    }
    
    .slide-content p {
        font-size: 0.9em;
    }
    
    .dot {
        height: 10px;
        width: 10px;
    }
    
    .numbertext {
        font-size: 10px;
        padding: 4px 8px;
    }
}

@media only screen and (max-width: 400px) {
    .prev, .next {
        padding: 6px;
    }
    
    .text {
        font-size: 11px;
        padding: 6px 8px;
    }
    
    .slide-content {
        max-width: 55%;
        padding: 8px;
    }
    
    .slide-content h2 {
        font-size: 1.2em;
    }
    
    .slide-content p {
        font-size: 0.4em;
    }
}

      /* Hero Carousel Styles ==============================================================================================*/
      
      

      
/*!!!!!!!!!!!!!!!!!!!!!!!!!!! categories  start  !!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* Container styles */
 .category-card {
            height: 180px;
            border-radius: 1rem;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* .category-card::before {
            content: '';
            position: absolute;
            bottom: -25px;
            left: -25px;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            /* background: rgba(255,255,255,0.1); 
            transition: all 0.3s ease;
        } */
        
        .category-card:hover {
            transform: scale(1.04);
            box-shadow: 0 6px 40px rgba(0, 0, 0, 0.6);
        }
        
        .category-card:hover::before {
            transform: scale(1.2);
            opacity: 0.3;
        }
        
        .category-card h5 {
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            font-size: 1.4rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }
        
        .category-card:hover h5 {
            transform: scale(1.05);
            text-shadow: 0 3px 6px rgba(0,0,0,0.4);
        }
        
        .carousel-title {
            text-align: left;
            margin-bottom: 30px;
            font-size: 2rem;
            color: white;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .category-card {
                height: 90px;
            }
            
            .category-card h5 {
                font-size: 1.3rem;
            }
            .carousel-title { 
              font-size: 1.6rem;
            }
        }
        
        @media (max-width: 576px) {
            .category-card {
                height: 75px;
            }
            
            .category-card h5 {
                font-size: 12px;
            }
            .carousel-title { 
              font-size: 1.1rem;
            }
        }

/*   !!!!!!!!!!!!!!!!!!!!!!!!!!!!! end categories   !!!!!!!!!!!!!!!!!!!!!!!!!!!!! */