 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: Arial, sans-serif;
 }

 html,
 body {
   margin: 0;
   padding: 0;
   overflow-x: hidden;
 }

 /* Base Carousel Styles */
 .carousel {
   margin: 0;
   padding: 30px 10px;
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: "DM Sans", sans-serif;
   transition: background 0.4s ease-in;
   background-color: #242424;
   overflow: hidden;
   /* Hides any horizontal scroll */
 }

 /* Hide Radio Inputs */
 .carousel input[type="radio"] {
   display: none;
 }

 /* Carousel Container */
 .carousel .container {
   width: 100%;
   max-width: 800px;
   height: 650px;
   /* Desktop height */
   transform-style: preserve-3d;
   display: flex;
   justify-content: center;
   flex-direction: column;
   align-items: center;
 }

 /* Cards Wrapper */
 .carousel .cards {
   position: relative;
   width: 100%;
   height: 100%;
   margin-bottom: 20px;
 }

 /* Individual Card */
 .carousel .card {
   position: absolute;
   width: 60%;
   height: 99%;
   left: 0;
   right: 0;
   margin: auto;
   transition: transform 0.4s ease, opacity 0.4s ease;
   cursor: pointer;
 }

 /* Navigation Buttons Container */
 .nav-buttons {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   width: 100%;
   display: flex;
   justify-content: space-between;
 }

 /* Navigation Buttons */
 .nav-buttons button {
   position: absolute;
   color: white;
   border: none;
   font-size: 24px;
   cursor: pointer;
   z-index: 10;
   background-color: rgba(0, 0, 0, 0.4);
   /* Subtle background */
   padding: 8px 12px;
   width: 50px;
   height: 50px;
   border-radius: 50%;
   transition: background-color 0.3s ease;
 }

 /* Left Button */
 #prev {
   left: 10px;
 }

 /* Right Button */
 #next {
   right: 10px;
 }

 /* Hover State */
 .nav-buttons button:hover {
   background-color: rgba(255, 255, 255, 0.3);
 }

 /* Overflow Fix for Buttons */
 .container.position-relative {
   overflow: hidden;
 }

 /* ─────────────────────────────────────────────────────
     RESPONSIVE QUERIES
     ───────────────────────────────────────────────────── */

 /* Tablet Screens (max-width: 1024px) */
 @media (max-width: 1024px) {
   .carousel .container {
     max-width: 700px;
     height: 650px;
     /* Desktop height */
   }

   .carousel .card {
     width: 70%;
     /* Wider card to adapt to smaller container */
   }

   .nav-buttons button {
     font-size: 20px;
     padding: 6px 10px;
   }
 }

 /* Mobile Screens (max-width: 768px) */
 @media (max-width: 768px) {
   .carousel {
     padding: 20px 5px;
   }

   .carousel .container {
     max-width: 90%;
     height: 650px;
     /* Desktop height */
     /
   }

   .carousel .card {
     width: 80%;
   }

   .nav-buttons button {
     font-size: 18px;
     padding: 5px 8px;
   }

   #prev {
     left: 5px;
   }

   #next {
     right: 5px;
   }
 }

 /* Small Mobile Screens (max-width: 480px) */
 @media (max-width: 480px) {
   .carousel .container {
     height: 380px;
   }

   .carousel .card {
     width: 72%;
   }

   .nav-buttons button {
     font-size: 16px;
     padding: 4px 6px;
   }
 }


 /* ITEM 1 selected (active: song-1) */
 #item-1:checked~.cards #song-1 {
   transform: translateX(0) scale(1);
   opacity: 1;
   z-index: 1;
 }

 #item-1:checked~.cards #song-2 {
   transform: translateX(40%) scale(0.8);
   opacity: 0.4;
   z-index: 0;
 }

 #item-1:checked~.cards #song-3 {
   transform: translateX(80%) scale(0.6);
   opacity: 0.2;
   z-index: -1;
 }

 #item-1:checked~.cards #song-5 {
   transform: translateX(-40%) scale(0.8);
   opacity: 0.4;
   z-index: 0;
 }

 #item-1:checked~.cards #song-4 {
   transform: translateX(-80%) scale(0.6);
   opacity: 0.2;
   z-index: -1;
 }

 /* ITEM 2 selected (active: song-2) */
 #item-2:checked~.cards #song-2 {
   transform: translateX(0) scale(1);
   opacity: 1;
   z-index: 1;
 }

 #item-2:checked~.cards #song-3 {
   transform: translateX(40%) scale(0.8);
   opacity: 0.4;
   z-index: 0;
 }

 #item-2:checked~.cards #song-4 {
   transform: translateX(80%) scale(0.6);
   opacity: 0.2;
   z-index: -1;
 }

 #item-2:checked~.cards #song-1 {
   transform: translateX(-40%) scale(0.8);
   opacity: 0.4;
   z-index: 0;
 }

 #item-2:checked~.cards #song-5 {
   transform: translateX(-80%) scale(0.6);
   opacity: 0.2;
   z-index: -1;
 }

 /* ITEM 3 selected (active: song-3) */
 #item-3:checked~.cards #song-3 {
   transform: translateX(0) scale(1);
   opacity: 1;
   z-index: 1;
 }

 #item-3:checked~.cards #song-4 {
   transform: translateX(40%) scale(0.8);
   opacity: 0.4;
   z-index: 0;
 }

 #item-3:checked~.cards #song-5 {
   transform: translateX(80%) scale(0.6);
   opacity: 0.2;
   z-index: -1;
 }

 #item-3:checked~.cards #song-2 {
   transform: translateX(-40%) scale(0.8);
   opacity: 0.4;
   z-index: 0;
 }

 #item-3:checked~.cards #song-1 {
   transform: translateX(-80%) scale(0.6);
   opacity: 0.2;
   z-index: -1;
 }

 /* ITEM 4 selected (active: song-4) */
 #item-4:checked~.cards #song-4 {
   transform: translateX(0) scale(1);
   opacity: 1;
   z-index: 1;
 }

 #item-4:checked~.cards #song-5 {
   transform: translateX(40%) scale(0.8);
   opacity: 0.4;
   z-index: 0;
 }

 #item-4:checked~.cards #song-1 {
   transform: translateX(80%) scale(0.6);
   opacity: 0.2;
   z-index: -1;
 }

 #item-4:checked~.cards #song-3 {
   transform: translateX(-40%) scale(0.8);
   opacity: 0.4;
   z-index: 0;
 }

 #item-4:checked~.cards #song-2 {
   transform: translateX(-80%) scale(0.6);
   opacity: 0.2;
   z-index: -1;
 }

 /* ITEM 5 selected (active: song-5) */
 #item-5:checked~.cards #song-5 {
   transform: translateX(0) scale(1);
   opacity: 1;
   z-index: 1;
 }

 #item-5:checked~.cards #song-1 {
   transform: translateX(40%) scale(0.8);
   opacity: 0.4;
   z-index: 0;
 }

 #item-5:checked~.cards #song-2 {
   transform: translateX(80%) scale(0.6);
   opacity: 0.2;
   z-index: -1;
 }

 #item-5:checked~.cards #song-4 {
   transform: translateX(-40%) scale(0.8);
   opacity: 0.4;
   z-index: 0;
 }

 #item-5:checked~.cards #song-3 {
   transform: translateX(-80%) scale(0.6);
   opacity: 0.2;
   z-index: -1;
 }


 /* Adjust vertical translation for player info based on selected item */
 #item-1:checked~.player #test {
   transform: translateY(0);
 }

 #item-2:checked~.player #test {
   transform: translateY(-40px);
 }

 #item-3:checked~.player #test {
   transform: translateY(-80px);
 }

 #item-4:checked~.player #test {
   transform: translateY(-120px);
 }

 #item-5:checked~.player #test {
   transform: translateY(-160px);
 }


 .text-color {
   background: linear-gradient(to right, #542192, #7a1973, #b60c43);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
 }

 .text-color-2 {
   background: linear-gradient(to right, #e22069, #ff6492, #FFFFFF);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
 }

 body {
   background-color: #FFFFFF;

 }

 /* Custom CSS for centering the navbar items */



 .nav-item {
   font-weight: bolder;
   padding-left: auto;
   padding-right: auto;
 }

 .nav-link:hover,
 .nav-link:focus,
 .nav-link.active {
   color: #531A44 !important;
 }

 .navbar-nav {
   gap: 60px;
 }

 @media (max-width: 768px) {
   .navbar-brand {
     padding-left: 30px;
   }
 }

 @media (max-width: 576px) {
   .navbar-brand {
     padding-left: 0;
     padding-right: 70px;

   }

   .navbar-nav {
     gap: 0;
   }

   .nav-item {
     font-weight: bolder;
     margin-left: 0;
     margin-right: 0;
     text-align: left !important;
     font-size: large;
     
   }

 .nav-link{
  padding-left: 20px !important;
 }

 .nav-link:hover,
 .nav-link:focus,
 .nav-link.active {
   color: white !important;
   background-color: #000;
   padding-left: 20px;

 }

   #searchIcon {
     display: none;
   }

   .navbar-button {
     display: none;
   }
 }

 .navbar-toggler {
   border: transparent;
 }

 @keyframes slideInFromLeft {
   0% {
     transform: translateX(-100%);
     opacity: 0;
   }

   100% {
     transform: translateX(0);
     opacity: 1;
   }
 }

 @keyframes slideInFromRight {
   0% {
     transform: translateX(100%);
     opacity: 0;
   }

   100% {
     transform: translateX(0);
     opacity: 1;
   }
 }


 .content {
   animation: slideInFromLeft 0.7s ease forwards;
 }

 .features {
   animation: slideInFromRight 0.7s ease forwards;
 }

 .box {
   border-radius: 12px;
   box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
   background: linear-gradient(to right, #411a5b, #6b1f4c, #792147);
   color: white;
 }

 .hero {
   background-image: url('./images/Banner/banner-1.webp');
   background-size: cover;
   background-position: center;
 }

 /* Feature box background, rounded corners, and shadow */
 .feature-box {
   background: linear-gradient(to right, #411a5b, #6b1f4c, #792147);
   border-radius: 0.5rem;
   box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
 }

 /* .........................................section2.......................................................... */

 .container {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-top: 15px;
 }

 .left-content {
   margin-top: 150px;
   width: 50%;
   margin-left: 50px;
 }

 .left-content h2 {
   font-size: 40px;
   color: #333;
   font-weight: bold;
 }

 .image-ul-list {
   color: #000;
   font-size: 18px;
   font-family: "Montaga", Sans-serif;
   animation: slideInLeft 2s forwards;
 }

 .sal a {
   text-decoration: none;
   font-size: 20px;
   margin-right: 0px;
   color: #531A44;
   font-weight: bold;
 }

 .sal {
   margin-left: 30px;
 }

 .right-content {
   width: -300px;
   height: 550px;
   color: #FFFFFF;
   padding: 60px;
   text-align: center;
   position: relative;
 }

 .right-content .img-Sun-Pro-5000P {
   width: 310px;
   height: 420px;
   position: absolute;
   right: 45%;
   top: 60px;
   transform: translateX(-50%);
   margin-right: 70px;
 }

 .features2 {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   /* Align all items to the left */
   margin-left: 250px;
   animation: slideInRight 2s forwards;
   margin-top: 60px;
 }

 .item {
   display: flex;
   align-items: center;
   justify-content: flex-start;
   /* Ensures content is left-aligned */
   margin: 15px 0;
   color: white;
   font-size: 18px;
   font-weight: bold;
   text-align: left;
   /* Ensure text is left-aligned */
   margin-top: 20px;
 }

 .item img {
   height: 65px;
   margin-right: 20px;
   /* Keep some space between the icon and text */
 }

 @media (max-width: 800px) {
   .container {
     flex-direction: column;
     align-items: center;
     text-align: center;
   }

   .left-content {
     width: 100%;
     margin: 0;
     text-align: center;
   }

   .right-content {
     width: 100%;
     padding: 40px;
     position: static;
     height: 450px;
   }

   .right-content .img-Sun-Pro-5000P {
     display: none;
   }

   .features2 {
     margin-left: 0;
     margin-top: 0;
   }
 }

 /* Mobile (max-width: 576px) */
 @media (max-width: 576px) {
   .left-content h1 {
     font-size: 28px;
   }

   .image-ul-list {
     font-size: 16px;
   }

   .sal {
     flex-direction: column;
     align-items: center;
   }

   .right-content {
     width: -300px;
     height: 300px;
     color: #FFFFFF;
     padding: 30px;
     text-align: center;
     position: relative;
   }

   .right-content .img-Sun-Pro-5000P {
     display: none;
   }

   .item {
     font-size: 16px;
   }

   .item img {
     width: 30px;
     height: 30px;
     margin-right: 10px;
   }
 }

 /* ........................................section3.............................................. */

 .products-container {
   width: 100%;
   justify-content: center;
   display: flex;
   justify-content: center;
   flex-direction: column;
   margin-bottom: 40px;
 }

 .product {
   width: auto;
 }

 .products_row {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   align-items: center;
   gap: 30px;
 }

 .product_heading {
   color: #787777;
   font-weight: 600;
   font-size: 45px;
   text-transform: uppercase;
   letter-spacing: 0.2rem;
   margin-top: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .image-background {
   width: 310px;
   height: 310px;
   border-radius: 50%;
   z-index: -1;
 }

 .product h5 {
   margin-top: 15px;
   text-align: center;
 }

 .product a {
   margin-top: 15px;
   text-align: center;
   text-decoration: none;
   font-weight: 500;
   color: #531A44;
 }

 @media (max-width: 768px) {
   .products_row {
     gap: 15px;
     flex-wrap: wrap;
     justify-content: center;
   }

   .product {
     width: 48%;
     /* Two items per row */
     margin-bottom: 30px;
     /* Add space to prevent overlapping */
   }

   .product_heading {
     font-size: 38px;
   }

   .image-background {
     width: 220px;
     height: 220px;
   }
 }

 @media (max-width: 576px) {
   .pp {
     display: none;
   }

   .products_row {
     flex-direction: column;
     align-items: center;
   }

   .product {
     width: 100%;
     margin-bottom: 0;
     padding-bottom: 0;
   }

   .product_heading {
     font-size: 32px;
     text-align: center;
   }

   .product h5 {
     margin-top: 15px;
     margin-left: 0;
     /* Remove fixed margin */
     text-align: center;
   }

   .product a {
     margin-left: 0;
     /* Remove fixed margin */
     text-decoration: none;
     font-weight: 500;
     color: #531A44;
     font-size: 13px;
     text-align: center;
     display: block;
     /* Allows centering */
   }

   .image-background {
     width: 150px;
     height: 150px;
     margin: 0 auto;
     /* Center the image container */
   }
 }

 @keyframes slideInFromLeft {
   0% {
     transform: translateX(-100%);
     opacity: 0;
   }

   100% {
     transform: translateX(0);
     opacity: 1;
   }
 }

 @keyframes slideInFromRight {
   0% {
     transform: translateX(100%);
     opacity: 0;
   }

   100% {
     transform: translateX(0);
     opacity: 1;
   }
 }

 #p2 {
   animation: slideInFromLeft 0.5s forwards;
   /* Animation for p2 */
 }

 .p1 {
   animation: slideInFromRight 0.5s forwards;
 }

 .p1:nth-of-type(1) {
   animation-delay: 0.5s;
 }

 .p1:nth-of-type(2) {
   animation-delay: 1s;
 }

 .p1:nth-of-type(3) {
   animation-delay: 1.5s;
 }

 /* ........................................section4.............................................. */
 .custom-btn-orange {
   background: linear-gradient(to right, #8e077e, #e12d6f);
   border: none;

 }

 .custom-btn-orange:hover {
   background: linear-gradient(to right, #e12d6f, #8e077e);
   border: none;
 }

 .custom-btn-white {
   background-color: #ffffff;
   border: none;
 }

 .custom-btn-white:hover {
   background: linear-gradient(to right, #e12d6f, #8e077e);
   color: #ffffff;
   border: none;
 }

 .custom-img {
   height: 30rem;
   width: 44rem;
   margin-left: 20px;
   margin-right: 20px;
 }

 .about-button {
   gap: 35px;
   margin-left: 40px;
 }

 .about-button-2 {
   gap: 35px;
 }

 .custom-text-orange {
   margin-left: 20px;
 }

 .about_Section {
   padding-left: 70px;
   padding-right: 70px;
 }

 .about_p {}


 @media (max-width: 768px) {

   .custom-btn-orange,
   .custom-btn-white {
     font-size: 14px;
     padding: 10px 16px;
   }

   .custom-img {
     width: 100%;
     height: auto;
     margin-left: 0;
     margin-right: 0;
   }
 }

 /* Mobile (max-width: 576px) */
 @media (max-width: 576px) {

   .custom-btn-orange,
   .custom-btn-white {
     font-size: 14px;
     width: 100%;
     /* Makes buttons full-width for better UX */
   }

   .custom-img {
     width: 100%;
     height: auto;
     margin-left: 0;
     margin-right: 0;
   }

   .about-button {
     gap: 35px;
     margin-left: 0px;
   }

   .about_p {
     font-size: medium;
   }

   .about_Section {
     padding-left: 10px;
     padding-right: 10px;
   }
   .about-button-2 {
    gap: 0;
  }
 }

 /* ........................................section5.............................................. */

 /* ........................................section6.............................................. */

 .slider2_container {
   width: 90%;
   margin: auto;
   padding-left: 120px;
   padding-right: 120px;
 }

 h2 {
   font-size: 2rem;
   color: #FFFFFF;
   margin-bottom: 20px;
   text-align: center;
 }

 .slider2 {
   display: flex;
   align-items: center;
   justify-content: center;
   flex-wrap: wrap;
   /* Allows cards to wrap on smaller screens */
 }

 .card {
   border-radius: 5px;
   overflow: hidden;
   padding-bottom: 20px;
   margin-bottom: 20px;
   border: none;
   /*height: 38rem;*/
   width: 100%;
   /* Default full width */
 }

 .card img {
   width: 100%;
   height: auto;
 }

 .card h3 {
   color: #FFFFFF;
   margin: 15px 0;
   margin-left: 10px;
 }

 .card p {
   font-size: 18px;
   padding: 0 10px;
   color: #FFFFFF;
   margin-bottom: 10px;
   ;
 }

 .card button {
   background: #333;
   color: white;
   border: none;
   padding: 10px 15px;
   border-radius: 5px;
   cursor: pointer;
   align-items: center;
 }

 .slick-prev,
 .slick-next {
   background: #333;
   border-radius: 50%;
   width: 40px;
   height: 40px;
 }

 /* Button */
 .btnn {
   border-radius: 20px;
   margin-top: 10px;
 }

 /* Responsive styles */
 @media (max-width: 1024px) {
   .slider2 {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 20px;
   }

   .card {
     width: 48%;
     /* Two cards in one row */
     height: auto;
   }

   .card p {
     font-size: 16px;
   }
 }

 @media (max-width: 768px) {
   .slider2 {
     flex-direction: column;
     align-items: center;
   }

   .card {
     width: 90%;
   }

   .card p {
     font-size: 14px;
   }
 }

 @media (max-width: 480px) {
   .slider2_container {
     width: 90%;
     margin: auto;
     padding-left: 10px;
     padding-right: 10px;
   }

   h2 {
     font-size: 1.5rem;
   }

   .card {
     width: 100%;
     height: auto;
   }

   .card p {
     font-size: 14px;
   }

   .card button {
     width: 100%;
     padding: 12px;
   }
 }


 /* ........................................section7.............................................. */


 .review-section {
   max-width: 1200px;
   margin: auto;
 }

 .review-section h2 {
   font-size: 28px;
   font-weight: bold;
   color: #333;
   margin-bottom: 20px;
   display: flex;
   justify-content: center;
   align-items: center;
   margin-top: 20px;
 }

 .reviews-container {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 20px;
 }

 .review-card {
   background: white;
   border-radius: 8px;
   box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
   padding: 20px;
   max-width: 350px;
   text-align: left;
   height: 400px;
   transition: transform 0.3s;
 }

 .review-card:hover {
   transform: translateY(-5px);
 }

 .quote {
   font-size: 30px;
   font-weight: bold;
   color: #531A44;
   ;
 }

 .stars {
   color: #ffcc00;
   font-size: 16px;
   margin: 10px 0;
 }

 .review-text {
   font-size: 14px;
   color: #555;
   line-height: 1.6;
 }

 .review-author {
   font-weight: bold;
   color: #531A44;
   margin-top: 15px;
   font-size: 15px;
   margin-bottom: 0%;
 }

 .review-role {
   font-size: 13px;
   color: #888;
 }

 .custom-dots {
   text-align: center;
   margin-top: 20px;
 }

 .custom-dots .custom-dot {
   width: 12px;
   height: 12px;
   background: #531A44;
   border: none;
   border-radius: 50%;
   margin: 0 5px;
   cursor: pointer;
   transition: background 0.3s;
 }

 .custom-dots .custom-dot.active {
   background: #000;
 }

 /* Custom Navigation Button Styling (optional) */
 .owl-nav .owl-prev,
 .owl-nav .owl-next {
   position: absolute;
   top: 40%;
   background: #531A44;
   color: #fff;
   padding: 10px;
   border-radius: 50%;
   z-index: 1000;
 }

 .owl-nav .owl-prev {
   left: -25px;
 }

 .owl-nav .owl-next {
   right: -25px;
 }



 /* RESPONSIVE DESIGN */
 @media (max-width: 992px) {
   .reviews-container {
     flex-direction: column;
     align-items: center;
   }
 }

 /* Events Slider: Arrow Only Navigation */
 .events-carousel .owl-dots {
   display: none !important;
 }

 .events-carousel .owl-nav .owl-prev,
 .events-carousel .owl-nav .owl-next {
   position: absolute;
   top: 40%;
   background: #531A44;
   color: #fff;
   padding: 10px;
   border-radius: 50%;
   z-index: 1000;
 }

 .events-carousel .owl-nav .owl-prev {
   left: -25px;
 }

 .events-carousel .owl-nav .owl-next {
   right: -25px;
 }

 /* RESPONSIVE DESIGN (if needed) */
 @media (max-width: 768px) {
   .event_page_card .card-img-top {
     height: 180px;
   }
 }

 /* Custom Navigation Arrows */
 .custom-nav {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   font-size: 24px;
   color: white;
   background: #531A44;
   padding: 10px 15px;
   border-radius: 50%;
   cursor: pointer;
   z-index: 1000;
 }

 .custom-prev {
   left: -40px;
 }

 .custom-next {
   right: -40px;
 }

 @media (max-width: 768px) {
   .custom-prev {
     left: -15px;
   }

   .custom-next {
     right: -15px;
   }
 }

 /* .....................................................footer............................................... */
 /* ----- Footer Container & Gradient Background ----- */
 .footer-container {
   background: linear-gradient(to right, #542192, #7a1973, #b60c43);
   color: #fff;
   position: relative;
   margin-top: 40px;
   /* Space above footer if desired */
   overflow: hidden;

   align-items: center !important;
 }

 /* ----- Left Section: Logo ----- */
 .footer-logo {
   width: 300px;
   /* Adjust as needed */
   height: auto;
   margin-left: 4rem;
 }

 /* ----- Center Section: Subscribe ----- */
 .subscribe-text {
   font-size: 1.7rem;
   font-weight: 600;
 }

 .subscribe-box {
   position: relative;
   width: 280px;
 }

 .footer-input {
   width: 500px;
   padding: 15px 20px 15px 20px;
   /* right padding increased for button space */
   border: none;
   border-radius: 25px;
   background: rgba(255, 255, 255, 0.2);
   color: #fff;
   outline: none;
 }

 .footer-input::placeholder {
   color: #fff;
   opacity: 0.7;
 }

 .send-btn {
   position: absolute;
   left: 450px;
   top: 50%;
   transform: translateY(-50%);
   background: none;
   border: none;
   color: #fff;
   cursor: pointer;
   font-size: 1.1rem;
 }

 /* ----- Right Section: Contact Info ----- */
 .contact-heading {
   font-size: 1.1rem;
   font-weight: bold;
   letter-spacing: 1px;
   text-transform: uppercase;
 }

 /* Spacing utility (Bootstrap-like) */
 .me-2 {
   margin-right: 0.5rem;
 }

 /* ----- Bottom Row: Copywrite ----- */
 .copywrite p {
   font-size: 0.9rem;
   font-weight: 500;
 }

 .footer-right {
   align-items: left !important;
   border-left: 3px solid white;
   padding-top: 40px;
   padding-bottom: 30px;
   padding-left: 40px;
 }

 .footer-middle {
   padding-top: 40px;
   padding-right: 30px;
   padding-left: 80px;
 }

 /* ----- Responsive Adjustments ----- */
 @media (max-width: 768px) {

   .footer-left,
   .footer-middle,
   .footer-right {
     text-align: center;
     padding-top: 0;
     padding-bottom: 0;
     padding-left: 0;
     padding-right: 0;
     border: none;
   }

   .footer-logo {
     margin-left: 250px;
     margin-right: 0;
   }

   .footer-right {
     text-align: center;
   }

   .subscribe-box {
     margin-left: 150px;
   }

   .footer_icons {
     margin-left: 300px;
   }

 }

 @media (max-width: 576px) {
   .subscribe-box {
     width: 220px;
     margin-left: 90px;
   }

   .footer-input {
     width: 100%;
     padding: 5px 45px 5px 10px;
     /* right padding increased for button space */
     border: none;
     border-radius: 25px;
     background: rgba(255, 255, 255, 0.2);
     color: #fff;
     outline: none;
   }

   .footer-logo {
     width: 200px;
     /* Adjust as needed */
     height: auto;
     margin-left: 100px;
   }

   .footer_icons {
     margin-left: 120px;
   }

   .send-btn {
     position: absolute;
     right: 2px;
     top: 50%;
     transform: translateY(-50%);
     background: none;
     border: none;
     color: #fff;
     cursor: pointer;
     font-size: 1.1rem;
   }

 }

 /* .....................................product-page-css................................. */

 .container-5 {
   display: flex;
   align-items: center;
   justify-content: center;
   flex-wrap: wrap;
   padding: 50px 10%;
   position: relative;
   overflow: hidden;
 }

 .image-box {
   flex: 1;
   max-width: 500px;
   opacity: 0;
   transform: translateY(50px);
   transition: all 0.8s ease-in-out;
 }

 .image-box img {
   width: 100%;
   height: auto;
 }

 .image-box img:hover {
   box-shadow: 0px 0px 15px 5px rgba(255, 255, 255, 0.8);
   transform: scale(1.05);
 }

 .text-box ul {
   list-style: none;
   padding: 0;
 }

 .text-box ul li {
   font-size: 18px;
   margin-bottom: 10px;
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .text-box ul li img {
   width: 20px;
   height: 20px;
   margin-right: 10px;
 }

 .buttons {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 10px;
   margin-top: 20px;

 }

 .buttons a {
   text-decoration: none;
   padding: 10px 20px;
   border-radius: 5px;
   font-size: 18px;
   color: #FFFFFF;
   text-align: center;
 }

 .buy-now {
   width: 420px;
   text-align: center;
   background: linear-gradient(to right, #e12d6f, #8e077e);
 }

 .buy-now:hover {
   background: linear-gradient(to right, #8e077e, #e12d6f);
 }

 .inquiry-datasheet {
   display: flex;
   justify-content: center;
   gap: 5px;
 }

 .inquiry,
 .datasheet {
   background: linear-gradient(to right, #e12d6f, #8e077e);
 }

 .inquiry,
 .datasheet:hover {
   background: linear-gradient(to right, #8e077e, #e12d6f);
 }

 .inquiry {
   background: linear-gradient(to right, #e12d6f, #8e077e);
 }

 .inquiry:hover {
   background: linear-gradient(to right, #8e077e, #e12d6f);
 }

 @media (max-width: 768px) {
   .container {
     flex-direction: column;
     text-align: center;
   }

   .image-box {
     order: -1;
     max-width: 80%;
   }

   .text-box {
     max-width: 90%;
   }
 }

 /* ...................................warranty-page......................................... */

 .main-head {
   display: flex;
   flex-direction: column;
   text-align: center;
   padding: 2rem 0;
   justify-content: center;
   align-items: center;

 }

 .main-head img {
   margin-bottom: 1rem;
   width: 220px;
   height: 80px;
 }

 .sub-header {
   text-align: center;
   padding: 2rem 0;
 }

 .warranty-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 3rem 1rem;
 }

 .grid {
   display: grid;
   grid-template-columns: 1fr;
   gap: 2rem;
 }

 @media (min-width: 768px) {
   .grid {
     grid-template-columns: 1fr 1fr;
   }
 }

 .warranty-card {
   backdrop-filter: blur(10px);
   padding-top: 4rem;
   padding-bottom: 4rem;
   padding-right: 2rem;
   padding-left: 2rem;
   border-radius: 0.5rem;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   border: 2px solid white;
   text-align: center;

 }

 .warranty-card h3 {
   margin-bottom: 1rem;
 }

 .button-group {
   gap: 25px;
   display: flex;
   justify-content: center;
   align-items: center;

 }

 .button {
   background: linear-gradient(to right, #c7c7c7, #ebebeb, #ffffff);
   color: #000;
   border-radius: 3px;
   font-size: 15px;
   padding: 10px;
   font-weight: 500;
   margin-top: 10px;

 }

 .button:hover {
   color: white;
   background: linear-gradient(to right, #b60c43, #7a1973, #542192);
 }

 .header {
   margin-bottom: 2rem;
 }

 /* General Card Styling */
 .card-custom {
   border: 10px solid;
   border-image: linear-gradient(to right, #b60c43, #7a1973, #542192) 1;
   width: 100%;
   height: 500px;
   overflow: hidden;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   margin-bottom: 2rem;
   /* Centers the card and adds bottom margin */
 }

 /* Responsive Video */
 .card-custom iframe {
   width: 100%;
   height: 280px;
   /* Default height */
   object-fit: cover;
 }

 /* Card Body Styling */
 .card-body-custom {
   color: white;
   padding: 1rem;
   height: 320px;
   /* Make it flexible */
 }

 /* Text Styles */
 .card-body-custom h2 {
   font-size: 1.5rem;
   font-weight: bold;
 }

 .card-body-custom p {
   margin-bottom: 0.5rem;
 }

 .card-body-custom i {
   margin-right: 0.5rem;
 }

 /* Location Image */
 .location-img {
   width: 120px;
   height: 60px;
   object-fit: cover;
   margin-right: 1rem;
   border: 3px solid deeppink;
 }

 /* Wrapper Container */
 .w-c {
   padding-left: 100px;
   padding-right: 100px;
 }

 /* ✅ Tablet (Max Width: 1024px) */
 @media (max-width: 1024px) {
   .w-c {
     padding-left: 50px;
     padding-right: 50px;
   }
 }

 /* ✅ Mobile (Max Width: 768px) */
 @media (max-width: 768px) {
   .location-img {
     width: 80px;
     height: 40px;
     object-fit: cover;
     margin-right: 0;
   }

   .card-custom {
     max-width: 100%;
     /* Makes it more flexible on smaller screens */
     height: auto;
   }

   .card-custom iframe {
     height: 220px;
     /* Reduce iframe height */
   }

   .card-body-custom h2 {
     font-size: 1.3rem;
     /* Smaller font for smaller screens */
   }

   .card-body-custom {
     padding: 0.8rem;
   }

   .w-c {
     padding-left: 20px;
     padding-right: 20px;
   }
 }

 /* ✅ Small Mobile (Max Width: 480px) */
 @media (max-width: 480px) {
   .location-img {
     width: 80px;
     height: 40px;
     object-fit: cover;
     margin-right: 0;
   }

   .card-custom {
     max-width: 95%;
   }

   .card-custom iframe {
     height: 180px;
     /* Reduce iframe height further */
   }

   .card-body-custom h2 {
     font-size: 1.2rem;
   }

   .card-body-custom p {
     font-size: 0.9rem;
   }

   .w-c {
     padding-left: 10px;
     padding-right: 10px;
   }

   .card-body-custom {
     color: white;
     padding: 1rem;
     height: auto;
     /* Make it flexible */
   }

   .card-body-custom i {
     margin-right: 0;
   }
 }


 /* ....................................contact-us....................................... */

 .main-container-2 {
   padding: 10px;
   background: url(./images/top-back-scaled-1.webp);
   background-size: cover;
   background-position: center;
 }

 /* Header Styling */
 .sub-header-2 {
   text-align: center;
   padding-top: 30px;
 }

 .sub-header-2 h1 {
   letter-spacing: 6px;
   /* Default spacing */
   font-size: 3rem;
   font-weight: 800;
 }

 /* Responsive Letter Spacing & Font Size */
 @media (max-width: 768px) {
   .sub-header-2 h1 {
     letter-spacing: 2px;
     font-size: 2rem;
   }

 }

 @media (max-width: 480px) {
   .sub-header-2 h1 {
     letter-spacing: 1px;
     font-size: 1.8rem;
   }
 }

 /* Main Container */
 .warranty-container-2 {
   margin: 0 auto;
   padding: 3rem 1rem;
 }

 /* Flexbox for larger screens */
 .warranty-wrapper {
   display: flex;
   justify-content: space-between;
   gap: 200px;
   margin-left: 280px;
 }

 /* Warranty Card Styling */
 .warranty-card-2 {
   flex: 1;
   padding: 20px;
   border-radius: 10px;
   text-align: left;
   color: white;
 }

 /* Font & Icon Styling */
 .warranty-card-2 h5 {
   font-size: 1.3rem;
   margin-bottom: 10px;
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .warranty-card-2 i {
   font-size: 1.5rem;
   color: #fff;
 }

 /* ✅ Tablet View (768px and below) */
 @media (max-width: 1024px) {
   .warranty-wrapper {
     flex-direction: column;
     align-items: center;
     text-align: center;
     margin-left: 0;
   }

   .warranty-card-2 {
     width: 80%;
   }
 }

 /* ✅ Mobile View (480px and below) */
 @media (max-width: 480px) {
   .warranty-wrapper {
     flex-direction: column;
     align-items: center;
     text-align: center;
     margin-left: 0;
     gap: 0;

   }

   .warranty-card-2 {
     width: 100%;
     padding: 15px;
   }

   .warranty-card-2 h5 {
     font-size: 1rem;
     margin-left: 0.5rem;
   }

   .warranty-card-2 i {
     font-size: 1.2rem;
   }
 }



 /* .....................................product page css.................................... */
 .sliderr {
   transition: max-height 0.3s ease-out;
 }

 .card-img-overlay {
   display: flex;
   justify-content: flex-end;
   align-items: flex-start;
 }

 .card-product {
   height: 100%;
 }

 .card-body {
   display: flex;
   flex-direction: column;
 }

 .header-name {
   width: 100%;
   height: 150px;
   display: flex;
   justify-content: center;
   align-items: center;
 }

 /* ...............................................event-page.............................. */

 .btn-card {
   background: #ff0000;
   color: #FFFFFF;
   width: 10rem;

 }

 .btn-card:hover {
   background: #FFFFFF;
   color: #8e077e;
 }


 .text-truncate-3lines {
   display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
   overflow: hidden;
 }

 .text-truncate-4lines {
   display: -webkit-box;
   -webkit-line-clamp: 4;
   -webkit-box-orient: vertical;
   overflow: hidden;
 }

 /* ....................................................About page css................................. */

 .shop-now-btn:hover {
   background: linear-gradient(to right, #e12d6f, #8e077e);
   border: none;

 }

 .shop-now-btn {
   background: linear-gradient(to right, #8e077e, #e12d6f);
   border: none;
   font-weight: bold;
 }

 /* Ensure that the nested dropdown is positioned properly */
 .dropdown-item:hover {
   background-color: #000;
   color: white;
 }



 .dropdown-submenu>.dropdown-menu {
   top: 0;
   left: 100%;
   margin-top: -1px;
   display: none;
   position: absolute;
 }

 /* Show nested dropdown on hover */
 .dropdown-submenu:hover>.dropdown-menu {
   display: block;
 }

 /* Optional: Style adjustments for nested items */
 .dropdown-submenu>a::after {

   float: left;
   margin-left: 5px;
 }

 /* Mobile styles (screens smaller than 992px) */
/* Base styles for dropdown menus */
.dropdown-item:hover {
  background-color: #000;
  color: white;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  position: absolute;
  display: none;
}

/* Desktop styles (screens 992px and larger) */
@media (min-width: 992px) {
  /* Show top-level dropdown on hover */
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }

  /* Hide all dropdowns by default */
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
  }

  /* Show nested dropdown on hover */
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }

  /* Nested submenu positioning */
  .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: 0; /* Cleaner alignment */
    margin-left: 0; /* Optional: fine-tune */
    border-top-left-radius: 0;
  }
}


/* Mobile styles (screens smaller than 992px) */
@media (max-width: 991px) {
  /* Position all dropdowns below their parents */
  .dropdown-menu, .dropdown-submenu > .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    margin-top: 0;
    left: 0;
    padding-left: 15px; /* Indent nested menus for hierarchy */
  }
  
  /* Adjust padding and margin for better mobile appearance */
  .dropdown-item {
    padding: 10px 15px;
  }
  
  /* Add visual cue for items with sub-menus */
  .dropdown-submenu > a::after {
    float: right;
    content: "\f107"; /* Down arrow (if using Font Awesome) */
    /* If not using Font Awesome, you could use: */
    /* content: "▼"; */
  }
}




 .details-box {
   border: 3px solid black;
   margin-left: 120px;
   margin-right: 250px;
   padding: 30px;
 }

 .pdc {
   margin-left: 70px;
   margin-right: 10px;
 }

 .kf {
   margin-top: 30px;
   margin-bottom: 30px;
   margin-left: 180px;
   margin-right: 170px;
   padding: 50px;
   padding-top: 100px;
 }

 .kfb {
   border: 2px solid #000;
 }

 .pdb {
   width: 500px;
 }

 .benefit-icon {
   background-color: #b60c43;
   height: 60px;
   width: 60px;
   padding: 15px;
   border-radius: 50%;
   justify-content: center;
   align-items: center;
   margin: 0 auto;
   /* horizontally center in parent */
 }

 /* Tablet styles */
 @media (max-width: 768px) {
   .details-box {
     margin-left: 20px;
     margin-right: 20px;
   }

   .pdc {
     margin-left: 15px;
     margin-right: 10px;
   }

   .kf {
     margin-left: 20px;
     margin-right: 20px;
     padding: 20px;
     padding-top: 50px;
   }

   .pdb {
     width: 100%;
   }
 }

 /* Mobile styles */
 @media (max-width: 576px) {
   .details-box {
     margin-left: 10px;
     margin-right: 10px;
   }

   .pdc {
     margin-left: 5px;
     margin-right: 5px;
   }

   .kf {
     margin-left: 10px;
     margin-right: 10px;
     padding: 15px;
     padding-top: 30px;
   }

   .pdb {
     width: 100%;
   }
 }

 .img-container {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 100%;
   height: 310px;
   /* Fixed height for demonstration */
   overflow: hidden;

 }

 .img-container img {
   max-width: 100%;
   max-height: 100%;
   object-fit: contain;
   /* Or use 'cover' if you want the image to fill the container */


 }

 @media (max-width: 768px) {
   .img-container {
     height: 220px;
   }
 }

 /* Mobile */
 @media (max-width: 576px) {
   .img-container {
     height: 180px;
   }
 }

 .hpe {
   padding-left: 180px;
   padding-right: 180px;
 }

 .custom-arrow {
   background: #531A44;
   padding: 10px 15px;
   color: #fff;
   font-size: 18px;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
 }

 .events-carousel .owl-nav .owl-prev {
   margin-left: 26px !important;
 }

 .events-carousel .owl-nav .owl-next {
   margin-right: 26px !important;
 }

 .psh {
   margin-left: 25px;
   font-size: 50px;
 }

 .psd {
   padding-left: 50px;
   margin-left: 0;
   padding-right: 200px;
 }

 .psi {
   margin-left: 50px;
 }

 .ar {
   padding-left: 50px;
 }

 .sib {
   width: 240px;
 }

 .ddb {
   width: 240px;
 }

 /* Tablet (max-width: 768px) */
 @media (max-width: 768px) {
   .hpe {
     padding-left: 0;
     padding-right: 0;
   }

   .psd {
     padding-right: 20px;
   }

   .psh {
     text-align: center;
     font-size: 20px;
   }

   .psi {
     margin-left: 0;
   }

   .ar {
     padding-left: 10px;
   }

   .sib {
     width: auto;
   }

   .ddb {
     width: auto;
   }
 }

 /* Mobile (max-width: 576px) */
 @media (max-width: 576px) {
   .hpe {
     padding-left: 20px;
     padding-right: 20px;
   }

   .pbd {
     padding-left: 10px;
   }

   .psh {
     text-align: center;
     font-size: 45px;
     margin-left: 0;
   }

   .sib {
     width: auto;
   }

   .ddb {
     width: auto;
   }
 }

 @keyframes slideInLeft {
   0% {
     transform: translateX(-100%);
     opacity: 0;
   }

   100% {
     transform: translateX(0);
     opacity: 1;
   }
 }

 @keyframes slideInRight {
   0% {
     transform: translateX(100%);
     opacity: 0;
   }

   100% {
     transform: translateX(0);
     opacity: 1;
   }
 }

 @keyframes slideInUp {
   0% {
     transform: translateY(100%);
     /* Start from below the screen */
     opacity: 0;
     /* Start with opacity 0 */
   }

   100% {
     transform: translateY(0);
     /* End at the original position */
     opacity: 1;
     /* Full opacity at the end */
   }
 }

 .hl,
 .hr,
 .hu {
   opacity: 0;
   /* Start invisible */
   visibility: hidden;
   /* Hide from view initially */
 }

 /* Add these classes that will be applied when elements become visible */
 .hl.animate {
   animation: slideInLeft 2s forwards;
 }

 .hr.animate {
   animation: slideInRight 2s forwards;
 }

 .hu.animate {
   animation: slideInUp 2s forwards;
 }

 p a {
   font-weight: bold;
   text-decoration: none;
   color: #212529;
 }

 p a:hover {
   font-weight: bold;
   text-decoration: none;
   color: #212529;
 }


