.custom-swiper-container {
    width: 100%;
    height: auto;
    margin: 20px 0;
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: center;    /* Center content vertically */
}

.custom-swiper-wrapper {
    display: flex; /* Use flexbox to keep all slides in a single row */
}

.custom-swiper-slide {
    display: flex;
    justify-content: center; /* Center the video in the slide */
    flex: 0 0 auto; /* Prevent wrapping by using fixed width */
}

.custom-video-reel {
    margin: 5px; /* Adjust margin as needed */
    overflow: hidden; /* Ensure videos fit nicely */
}

video {
    width: 100%;
    height: auto; /* Adjust height to maintain aspect ratio */
}

/* Responsive styles */
@media (max-width: 640px) {
    .custom-swiper-slide {
        width: 50%; /* Show 2 videos in mobile view */
    }
    .custom-swiper-slide:not(:nth-child(-n+2)) { 
        display: none; /* Hide all but the first two slides */
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .custom-swiper-slide {
        width: 25%; /* Show 4 videos on tablet view */
    }
}

@media (min-width: 1025px) {
    .custom-swiper-slide {
        width: 20%; /* Show 5 videos on larger screens */
    }
}
.custom-category-section {
    display: flex;
    background-color: #f9f5ee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
  max-width:900px;
    width:80%;
   margin: 0 auto;
    overflow: hidden;
  margin-bottom:20px;
  
}

.custom-text-section {
    background-color: #1a1e3d;
    padding: 40px;
    color: #fff;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  align-items:center;
}

.custom-text-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
  align-items:center;
}

.custom-text-section p {
    font-size: 18px;
    margin: 0px 0;
    color: rgba(255, 255, 255, 0.7);
  align-items:center;
}

.custom-explore-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border: 2px solid #f9ca24;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-explore-button:hover {
    background-color: #f9ca24;
    color: #000;
}

.custom-image-section {
    width: 50%;
    position: relative;
}

.custom-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .custom-category-section {
        flex-direction: column;
    }
    
    .custom-text-section, 
    .custom-image-section {
        width: 100%;
    }

    .custom-text-section {
        padding: 20px;
    }

    .custom-text-section h2 {
        font-size: 20px;
    }

    .custom-text-section p {
        font-size: 16px;
    }

    .custom-explore-button {
        padding: 8px 16px;
        font-size: 16px;
    }
}
.custom-popup-overlay{display:none !important;}
.custom-popup-container{display:none;}
.center-heading {
    text-align: center; /* Center the text */
    font-size: 34px; /* Adjust the font size as needed */
    color: #1a1e3d; /* Use the same color as the text section for consistency */
    margin-bottom: 20px; /* Space between the heading and the category section */
}
body {
    background-image: url(''); /* Update this with your image path */
    background-size: cover; /* Cover the entire background */
    background-repeat: no-repeat; /* Prevent the background from repeating */
    background-position: center; /* Center the background */
    background-attachment: fixed; /* Fix the background in place */
    /*margin: 20px;*/ /* Remove default margin */
}
.modal {
  
    background: rgba(0, 0, 0, 0.7); /* Dark transparent background */
   
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 9999;
}
   .whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 80px;
      right: 20px;
      background-color: white;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
      text-decoration: none;
      z-index: 1000;
    }

    .whatsapp-float:hover {
      background-color: #128C7E;
    }

    .whatsapp-icon {
      width: 60px; /* Adjust the size as needed */
      height: 60px;
    }

.categories-dropdown-wrap {
    display: none !important;
}

/* Show dropdown on hover */
.main-categories-wrap:hover .categories-dropdown-wrap {
    display: block !important;
}
/* Sidebar styling */
.social-media-sidebar {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    width: 25px;  /* Width of the square */
    height: 25px; /* Height of the square */
    font-size: 20px;
    transition: background-color 0.3s ease;

}

/* Icon colors */
.facebook { background-color: transparent; }
.whatsapp { background-color: transparent; }
.instagram { background-color: transparent; }
.twitter { background-color: transparent; }

/* Square button styling */
.social-icon {
    border: 2px solid transparent; /* Optional border */
}

/* Hover effect */
.social-icon:hover {
    background-color: transparent;
}
/* Marquee container styling */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    height: 50px; /* Set height of the marquee */
    background-color: #f8f8f8; /* Background color for the marquee */
}

/* Marquee styling */
.marquee {
    display: inline-block;
    animation: marquee 15s linear infinite; /* Animation duration and type */
}

/* Animation for marquee effect */
@keyframes marquee {
    0% { transform: translateX(100%); } /* Start from right */
    100% { transform: translateX(-100%); } /* End at left */
}

/* Image styling */
.marquee img {
    height: 50px; /* Height of images */
    margin-right: 20px; /* Space between images */
    vertical-align: middle; /* Align images vertically */
}
.custom-popup-overlay {
    display: flex; /* Show popup on page load */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.custom-popup-container {
	top: 98px;
    position: relative;
    background: #fff;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.custom-popup-image {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 5px;
  margin-left:-43px;
  margin-right:-5px;
}

.custom-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: white;
    color: green;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 16px;
}

.custom-popup-close:hover {
    background: green;
  color:white
}