/* Container Flexbox */
.container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0; /* Reduced padding */
}

/* Remove blue outline and focus effects */
button, a, input, textarea {
    outline: none;
    box-shadow: none; /* Remove any default focus shadow effect */
    -webkit-tap-highlight-color: transparent; /* Prevent blue highlight on mobile */
}

button:focus, a:focus, input:focus, textarea:focus {
    outline: none;
    box-shadow: none; /* Remove any focus shadow effect */
}

button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: none;
    box-shadow: none; /* Ensures the border is removed on click in all browsers */
}

button:active, a:active, input:active, textarea:active {
    outline: none;
    box-shadow: none; /* Removes blue border on active state */
}




    

.menu-button {
    display: none;
}

/* Header Styling */
.header {
    background-color: #1F1F1F;
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    color: #fff;
    margin: 0;
    margin-left: 10px;
    
}

.logo .highlight {
    color: #ff6600;
}

.logo img {
    width: 70px; /* Reduced logo size */
    height: auto;
    margin-right: 10px;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.main-nav ul li {
    margin-left: 8px; /* Further reduced margin */
}

.main-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 4px 6px; /* Further reduced padding */
     
    display: block;
}

.main-nav ul li a:hover {
    color: #ff6600;
}

/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
    margin-left: 10px; /* Reduced margin */
}

.search-bar input {
    padding: 4px;
    border: none;
    border-radius: 3px;
    margin-right: 5px;
}

.search-bar button {
    background-color: #ff6600;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 5px 8px; /* Reduced padding */
    cursor: pointer;
}

/* Navigation Separator */
.nav-separator {
    border: none;
    border-top: 2px solid #000; /* Changed to black */
    margin: 0;
}

/* Secondary Navigation */
.secondary-nav {
    background-color: #1F1F1F;
    padding: 10px 0;
}

.secondary-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-nav ul li {
    margin: 5px 10px;
}

.secondary-nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

.secondary-nav ul li a.highlight-red {
    background-color: red;
    border-radius: 5px;
}

/* Add margin between secondary nav and main content */
.secondary-nav + .categories-container {
    margin-top: 20px; /* Adjust this value as needed */
}

/* Body Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}
/* Carousel */
.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 50px 0;
}
.search-barmobile{
    display: none;
}
.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform; /* Added to improve performance */
}

.carousel-slide {
    display: flex;
    min-width: 100%;
    box-sizing: border-box;
       
}
.carousel-box {
    width: 400px; /* Set a fixed width for all boxes */
    height: 400px; /* Set a fixed height for all boxes */
    overflow: hidden; /* Hide any overflow */
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background-color: white !important; /* Force beige background color */
    border: 1px solid #ddd; /* Optional: Border color */
    border-radius: 8px; /* Optional: Rounded corners */
}
.carousel-box img {
    width: 100%; /* Make image fill the box */
    height: 100%;
    object-fit: cover; /* Ensure the image covers the box without distortion */
     background-color: white;

}
.carousel-container .carousel-box {
    background-color: white;
}



.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1000;
    font-size: 18px;
    border-radius: 3px;
}

.carousel-arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
}
/* About Us Section */
.about-us {
    background-color: #f9f9f9;
    padding: 50px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

.about-us .container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 300px;
}

.about-us h2 {
    margin-bottom: 20px;
    font-size: 2.5em;
    color: #333;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}

.about-us p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}

.about-us .know-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6600;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-us .know-more-btn:hover {
    background-color: #e65500;
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}



/* Responsive Adjustments */
@media (min-width: 768px) {
    .about-us {
        flex-direction: column;
    }

    .about-us .content {
        text-align: center;
    }

    .about-us p {
        max-width: 500px;
    }
}


/* Services */
.services {
    background-color: #f4f4f4;
    padding: 50px 0;
    text-align: center;
}

.services h2 {
    margin-bottom: 20px;
}

.service-box {
    background-color: #fff;
    padding: 20px;
    margin: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-box h3 {
    margin-top: 0;
}
/* Our Products Section */
.our-products {
    padding: 50px 0;
    background-color: #fff;
}

.our-products h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5em;
    color: #333;
}

.product-categories {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.category-btn {
    background-color: #f4f4f4;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.category-btn.active, .category-btn:hover {
    background-color: #ff6600;
    color: #fff;
}

.product-grid {
    display: flex; /* This aligns the product items horizontally */
    flex-wrap: wrap; /* This ensures items wrap to the next line if there's not enough space */
    justify-content: space-around; /* Distributes space between items evenly */
    gap: 20px; /* Adds some space between product items */
}

.product-item {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-left: 20px;
}

.menubtn{
    display: none;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-item img {
    max-width: 100%;
    height: 300px; /* Fixed height for all images */
    object-fit: contain; /* Ensure the entire image is visible */
    margin-bottom: 15px;
}

.product-item h3 {
    font-size: 1.2em;
    color: #333;
    margin: 0;
}

.hidden {
    display: none;
}

.see-more-btn {
    display: block;
    margin: 30px auto 0;
    padding: 10px 20px;
    background-color: #ff6600;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.menu-button {
    display: block; /* Show menu button on mobile */
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.menu-button span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #fff;
    transition: 0.4s;
}
.close-button {
    position: absolute;
    top: 20px; /* Adjust if too close to the top */
    right: 20px; /* Adjust distance from the right */
    background: none;
    border: none;
    color: white;
    font-size: 28px; /* Increase font size for visibility */
    cursor: pointer;
    z-index: 1100; /* Ensure it's on top of other elements */
}

.close-button:hover {
    color: #ff6600;
}
.search-bar button{
    font-family: poppins;
    font-weight: bold;
}

.menu-button {
    display: none;
}

.see-more-btn:hover {
    background-color: #e65500;
}

@media (max-width: 768px) {
    .product-categories {
        flex-wrap: wrap;
    }
    .menubtn{
        display: block;
        
    } 
    .category-btn {
        margin: 5px;
    }
    
}



.copy {
    text-align: center;
    padding: 10px 0;
}
span {
    color: #ff6c00;
}

.mobile-menu {
    display: none; /* Hide by default */
}




@media (max-width: 768px) {

    @media (max-width: 768px) {
        .mobile-menu {
            display: block;
            position: fixed;
            top: 0;
            right: 0;
            width: 250px;
            height: 100%;
            background-color: #1c1c1c;
            padding: 20px;
            box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            margin-left: 10px;
        }
        .mobile-menu-toggle{
            margin-right: -10px;
            
        }
        .menubtn{
            display: flex;
        }        

        .search-barmobile {
            display: flex;
            align-items: center;
            
            margin: 20px 20px 15px 15px;
            background-color: #f8f8f8;
            border: 1px solid #e0e0e0;
            border-radius: 25px; /* Rounded corners for the entire bar */
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .search-barmobile input {
            flex-grow: 1;
            padding: 12px 20px; /* Increased left padding for better text alignment */
            border: none;
            background-color: transparent;
            font-size: 16px;
            color: #333;
            outline: none;
        }
        
        .search-barmobile input::placeholder {
            color: #999;
            
        }
        
        .search-barmobile button {
            
            background-color: #ff6600;
            color: white;
            border: none;
            padding: 12px 12px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 25px 25px 25px 25px; /* Rounded corners on the right side of the button */
            
        }
        
        .search-barmobile button:hover {
            background-color: #e55c00;
        }
        
      
        .mobile-menu.active {
            
            transform: translateX(0); /* Slide in */
        }

        .mobile-menu ul {
            list-style: none; /* Remove default bullet points */
            padding: 20px 0; /* Add vertical padding */
            margin: 0; /* Remove default margin */
        }
        .mobile-menu ul li {
            margin: 15px 0; /* Add margin between items */
        }

        .mobile-menu.active ul li a{
            color: #ff6600; /* Link color */
    text-decoration: none; /* Remove underline */
    font-size: 18px; /* Font size */
    padding: 10px 15px; /* Add padding */
    border-radius: 5px; /* Rounded corners */
    display: block; /* Make the link fill the list item */
    transition: background-color 0.3s ease;
        }

        .mobile-menu ul li a:hover {
            background-color: rgba(255, 102, 0, 0.1); /* Light background on hover */
            color: #ffffff; /* Change text color on hover */
        }
        
        /* Active link state */
        .mobile-menu ul li a.active {
            font-weight: bold; /* Make active link bold */
            background-color: rgba(255, 102, 0, 0.3); /* Slightly darker background */
        }
    }
    
    .main-nav {
        display: none; /* Hide menu by default */
        position: fixed;
        right: -100%; /* Off-screen to the right */
        top: 0;
        height: 100%;
        width: 250px;
        background-color: #333;
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease-in-out;
        z-index: 999; /* Ensure it's above other content */
    }

    .main-nav.active {
        display: flex; /* Change from display: none to display: flex */
        right: 0; /* Slide into view when active */
    }

    /* Issue: This line won't work as intended. 
       display: flex must be set for .main-nav.active to show the menu */
    /* .main-nav.active {
        right: 0; 
    } */

    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 20px 0 0 0;
    }

    .mobile-menu ul li {
        margin: 10px 0;
    }

    .mobile-menu ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 18px;
        display: block;
        padding: 10px 15px;
    }

    .menu-button {
        display: block; /* Show menu button on mobile */
        
    }

    .secondary-nav {
        display: none; /* Hide secondary nav on mobile */
    }
    #vlogo img{
        margin-left: -30px;
        margin-bottom: -30px;
    }
    .logo h1{

        font-size: 28px;
        margin-left: -10px;
    }
    .close-button {
        position: absolute;
        top: 10px;
        right: 10px;
        background: none;
        border: none;
        color: white;
        font-size: 28px;
        cursor: pointer;
    }
    .footer{
        margin-left: -370px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none; /* Hide main nav on mobile */
    }

    .mobile-menu-toggle {
        display: block; /* Show menu toggle button on mobile */
        
    }

    .mobile-menu {
        display: block; /* Ensure the mobile menu shows when active */
    }
    .container {
        position: relative;
    }
    .desktop-nav,
    .secondary-nav {
        display: none; /* Hide desktop nav and secondary nav on mobile */
    }
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        background: none;
        border: none;
        font-size: 24px;
        color: #fff;
        cursor: pointer;
        
        
    }

    
}
  
    @media (max-width: 768px) {
        .carousel {
            margin: 20px 0;
        }
        .carousel-slide {
            padding: 0;
            justify-content: center;
            
        }


    
        .carousel-box {
            width: 280px;
            height: 280px;
            margin: 0 auto;
            padding: 10px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
            background-color: white !important;
            border: 1px solid #ddd;
            border-radius: 8px;
        }
    
    
        /* Show only one image at a time on mobile */
        .carousel-slide .carousel-box:not(:first-child) {
            display: none;
        }
    
        .carousel-box img {
            max-width: 85%;
            max-height: 85%;
            width: auto;
            height: auto;
            object-fit: contain;
        }    
    


}
.carousel-box a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.carousel-box a img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .about-us {
        width: 100%; /* Override fixed width */
        margin-left: 0; /* Remove left margin */
        padding: 30px 20px; /* Adjust padding */
        box-sizing: border-box;
    }

    .about-us .container {
        padding: 0 15px;
        margin: 0 auto;
    }

    .about-us h2 {
        font-size: 32px; /* Slightly reduced font size */
        width: 100%;
        text-align: left;
    }

    .about-us p {
        font-size: 1.1em;
        width: 100%;
    }

    .know-more-btn {
        margin-left: 0; /* Remove margin */
        align-self: flex-start; /* Align button to the left */
    }
    .our-products h2{

        margin-left: 70px;
    }

    .product-item{

        margin-right: 16px;
    }

    .footer{

        margin-left: -370px;
    }
}

@media (min-width: 769px) {
    .main-nav {
        display: flex !important;
    }
}

/* General Mobile Styling for screens up to 768px */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: flex-start;
    }


    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    
    .about-us .container {
        margin-right: 0;
        max-width: 100%; /* Full width About Us section */
    }

    
    .product-grid {
        flex-direction: column;
        gap: 10px; /* Less space between product items */
    }

    .product-item img {
        height: auto; /* Auto height for product images */
    }

    .footer {
        padding: 15px 0;
    }

    .copy {
        font-size: 0.9em;
    }
}
/* Styling for tablets (between 769px and 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    
    .logo img {
        width: 80px; /* Adjust logo size for tablets */
    }
    .logo h1{
        font-size: 35px;
    }
    .carousel-box{
        width: 365px;
        height: 365px;
    }

    .about-us h2 {
        font-size: 2em; /* Reduce About Us heading size */
    }

    .product-grid {
        flex-direction: row;
        justify-content: space-evenly;
    }

    .product-item {
        margin-left: 10px;
        margin-right: 10px;
    }
}
/* Disable hover effects on touch devices */
@media (hover: none) {
    .product-item:hover {
        transform: none;
        box-shadow: none;
    }

    .see-more-btn:hover {
        background-color: #ff6600; /* Default background */
    }
}
/* Footer social icons styling */
.footer .social-icons {
    margin-top: 10px;
}

.footer .social-icon {
    color: #ffffff;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer .social-icon:hover {
    color: #ff6600; /* Accent color on hover */
}
/* Section background shades */
.section-light {
    background-color: #f9f9f9; /* Light gray */
}

.section-dark {
    background-color: #333333; /* Darker section */
    color: #ffffff;
}


/* Fade-in effect */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

/* Apply fade-in only when in viewport */
.fade-in.visible {
    opacity: 1;
}/* Footer Styling */
/* Footer Styling */
.footer {
    background-color: #0a1a2a;
    color: #ffffff;
    padding: 30px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    max-width: 250px;
    margin-bottom: 15px;
    margin-top: 30px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: green;
    font-size: 24px;
    border-radius: 50%;
    padding: 10px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: #ff6600;
    transform: translateY(-2px);
}

.footer-column {
    flex: 0 1 auto;
    min-width: 200px;
    margin: 10px 0;
    margin-right: 60px;
    font-family: 'Poppins', sans-serif;
}

.footer-column h3 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ff6600;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 10px;
}

.footer-column p {
    margin: 8px 0;
    display: flex;
    align-items: center;
}

.footer-column i {
    color: #ff6600;
    margin-right: 10px;
    width: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    color: #ff6600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        text-align: center;
        margin-left: 370px;
    }

    .footer-column {
        margin-right: 0;
        text-align: center;
        margin-left: 370px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        margin-left: 370px;
    }
}/* === Google Font Import - Poppins === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  margin: 20px 0;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.card::before {
  content: "";
  position: absolute;
  height: 40%;
  width: 100%;
  border-radius: 20px 20px 0 0;
}

.card .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  position: relative;
  z-index: 100;
  
}

section .card .image {
  height: 320px;
  width: 320px;
  padding: 3px;
}

section .card .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.card .media-icons {
  position: absolute;
  top: 10px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card .media-icons i {
  color: #fff;
  opacity: 0.6;
  margin-top: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.card .media-icons i:hover {
  opacity: 1;
}

.card .name-profession {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  color: white;
}

.card .rating {
  display: flex;
  align-items: center;
  margin-top: 18px;
}

.card .rating i {
  font-size: 18px;
  margin: 0 2px;
  color: #ff6600;
}

.card .button {
  width: 100%;
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}

.card .button button {
  outline: none;
  border: none;
  color: #fff;
  padding: 8px 22px;
  border-radius: 20px;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.button button:hover {
  background: #ff6600;
}

.swiper-pagination {
  position: absolute;

}

.swiper-pagination-bullet {
  height: 7px;
  width: 26px;
  border-radius: 25px;
  background: #ff6600;
  
}/* Apply flexbox to center the arrows vertically */
/* Apply flexbox to center the arrows vertically */

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
    background-color: #ff6600;

}
.swiper-container {
    display: flex;
    align-items: center; /* Center items vertically */
    position: relative;
    z-index: 0; /* Set the base z-index */
}
  
  /* Centered arrows for all screen sizes */
  .swiper-button-next,
.swiper-button-prev {
    color: #ff6600;
    font-size: 20px;
    opacity: 0.7;
    position: absolute;
    transition: opacity 0.3s;
    z-index: 2; /* Increase z-index to ensure arrows appear on top */
    top: 50%; /* Position at the vertical center */
    transform: translateY(-50%); /* Adjust to center precisely */
}
  
  /* Styling the arrow icons */
  .swiper-button-next::after,
  .swiper-button-prev::after {
    color: #ff6600;
    font-size: 20px;
    opacity: 0.7;
    
    transition: opacity 0.3s;

  }
  
  /* Position the arrows on either side */
  .swiper-button-next {
    right: 10px; /* Align to the right of the container */
  }
  
  .swiper-button-prev {
    left: 10px; /* Align to the left of the container */
  }
  
  /* Hover effect to make arrows more visible */
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    opacity: 1;
  }
  
  /* Ensure the arrows are displayed on smaller screens as well */
  @media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
      display: block;
    }
  
  }  


  /* Position the arrows on either side */
  .swiper-button-next {
    right: 10px; /* Align to the right of the container */
  }
  
  .swiper-button-prev {
    left: 10px; /* Align to the left of the container */
  }
  
  /* Hover effect to make arrows more visible */
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    opacity: 1;
  }
  
  .barmobile {
    display: flex;
    align-items: center;
    
}

.search-barmobile {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
}

.search-barmobile input {
    flex: 1;
    padding: 8px;
    font-size: 16px;
    margin-left: 10px;

}
.search-barmobile .search button {
    width: 40px; /* Adjust the size as needed */
    height: 40px; /* Same as width for a round shape */
    padding: 0; /* Remove padding for perfect circle */
    font-size: 16px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff6600; /* Optional: Add background color */
    color: white; /* Optional: Text/icon color */
    border: none; /* Remove border for cleaner look */
}


@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
      display: block;
      opacity: 1;
    }

    .barmobile button {
        margin-right: 5px;
        font-weight: bold;
    }

    .search-barmobile input {
        padding: 6px;
        font-size: 14px;
    }

    .search-barmobile .search button {
        padding: 6px 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .search-barmobile input {
        padding: 5px;
        font-size: 14px;
    }

    .search-barmobile .search button {
        padding: 5px 8px;
        font-size: 12px;
        margin-left: -15px;
    }
}


  /* Ensure the arrows are displayed on smaller screens as well */
  @media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
      display: block;
      opacity: 1;
    }

    .barmobile button{
        margin-right: 5px;
        font-weight: bold;
    }
  }
    
/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  
  .swiper-button-next,
  .swiper-button-prev {
    display: block;
  }
}
@media (min-width: 769px) and (max-width: 1023px){
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
     margin-top: 170px;
     
    }     
    .swiper-pagination{
        margin-top: 90px;
        
    }
}


@media (min-width: 313px) and (max-width: 333px){
    
    
}

@media (min-width: 301px) and (max-width: 313px){
    
    .search{
        display: block!important;
    }
}

@media (min-width: 291px) and (max-width: 301px){
    
    .search{
        display: block!important;
    }
}

@media (min-width: 274px) and (max-width: 291px){
    
    .search{
        display: block!important;
    }
}

@media (min-width: 250px) and (max-width: 274px){
    
    .search{
        display: block!important;
    }
}
@media (min-width: 769px) and (max-width: 15000px) {
   .search-barmobile{
    display: none;
   }
}
