* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 0px;
}

.navbar .logo {
    padding-top: 15px;
    filter: drop-shadow(2px 0px 0.5px #000);
}

nav {
    flex: 1px;
    text-align: right;
}

nav ul {
    display: inline-block;
    list-style-type: none;
}

nav ul li {
    display: inline-block;
    margin-right: 10px;
}

a {
    text-decoration: none;
    color: #555;
}

nav ul li a:hover {
    color: salmon;
}

p {
    color: #555;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding-right: 25px;
    padding-left: 25px;
}

.row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;

}

.row .col-2 img {
    filter: drop-shadow(1px 2px 8px #000);

}

.col-2 {
    flex-basis: 50%;
    min-width: 300px;
}

.col-2 img {
    max-width: 100%;
    padding: 50px 0;
}

.col-2 h1 {
    font-size: 50px;
    line-height: 60px;
    margin: 25px 0;
}
.col-2 h2 {
    font-size: 40px;
    line-height: 60px;
    margin: 25px 0;
}

.btn {
    display: inline-block;
    background: #ff523b;
    color: #fff;
    padding: 8px 30px;
    margin: 5px 0px;
    border-radius: 30px;
    transition: 0.5s;
    filter: drop-shadow(1px 1.5px 0px #000);
}
.btn1{
    display: inline-block;
    background:#0646f7;
    color: #fff;
    padding: 8px 30px;
    margin: 5px 0px;
    border-radius: 30px;
    transition: 0.5s;
    filter: drop-shadow(1px 1.5px 0px #000);
}

.btn:hover {
    background: #108bf7;
    color: #ffff;
}

.btn1:hover {
    background: #d31c04;
    color: #fff;
}

.header {
    background-image: linear-gradient(#fff, #ffd6d6);
}

.header .row {
    margin-top: 80px;
}

.categories {
    margin: 70px 0;
}

.col-3 {
    text-align-last: center;
    flex-basis: 22%;
    min-width: 250px;
    margin-bottom: 30px;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 1);
    border-radius: 30px;
    padding-bottom: 15px;
    animation-name: example;
    animation-duration: 4s;
}

.col-3 img {
    width: 100%;
    border-radius: 30px;
}

.small-container {
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}

.col-4 {
    flex-basis: 20px;
    padding: 15px;
    min-width: 250px;
    margin-bottom: 50px;
    box-shadow: 0 0 2px 0px rgba(0, 0, 0, 1);
    transition: transform 0.5s;
}

.col-4 img {
    width: 100%;
}

.title {
    text-align: center;
    margin: 0 auto 80px;
    position: relative;
    line-height: 60px;
    color: #555;
}

.title::after {
    content: '';
    background: #ff523b;
    width: 80px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

}

h4 {
    color: #555;
    font-weight: bold;
}

.col-4 p {
    font-size: 14px;
}

.rating .fa {
    color: #ff523b;
}

.col-4:hover {
    transform: translateY(-10px);
}

/*----offer---------*/
.offer {
    background: radial-gradient(#fff, #ffd6d6);
    margin-top: 80px;
    padding: 30px 0;
}

.map {
    background: radial-gradient(#fff, #ffd6d6);
    margin-top: 10px;
    padding: 30px 0;
}

.col-2 .offer-img {
    padding: 50px;
}

small {
    color: #555;
}

.testimonial {
    padding-top: 100px;
   
  transform: translateY(10px); /* Optional: slide up effect */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.testimonial.visible {
    opacity: 1;
    transform: translateY(0);
  }

.testimonial .col-3 {
    text-align: center;
    padding: 40px 20px;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 1);
    cursor: pointer;
    transition: transform 0.05s;
}

.testimonial .col-3 img {
    width: 70px;
    margin-top: 20px;
    border-radius: 50%;
}

.testimonial .col-3:hover {
    transform: translateY(-10px);
}

.fa.fa-quote-left {
    color: #ff523b;
    font-size: 34px;
}

.col-3 p {
    color: #777;
    font-size: 12px;
    margin: 12px 0;
}

.testimonial .col-3 h3 {
    font-weight: 600;
    color: #555;
    font-size: 15px;
}

.brands {
    margin: 100px auto;
}

.col-5 {
    width: 160px;
}

.col-5 img {
    width: 100%;
    cursor: pointer;
    filter: grayscale(100%);
}

.col-5 img:hover {
    filter: grayscale(0);
}

/*----footer---*/
.footer {
    background: #000;
    color: #8a8a8a;
    font-size: 14px;
    padding: 60px 0 20px;
}

.footer p {
    color: #8a8a8a;
}

footer h3 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-col-1,
.footer-col-2,
.footer-col-3,
.footer-col-4 {
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-col-1 {
    flex-basis: 25%;
}

.footer-col-2 {
    flex: 1;
    text-align: center;
}

.footer-col-2 img {
    width: 180px;
    margin-bottom: 20px;
}

.footer-col-3,
.footer-col-4 {
    flex-basis: 25%;
    text-align: center;
}

ul {
    list-style-type: none;
}

.app-logo {
    margin-top: 20px;
}

.app-logo img {
    width: 140px;
}

.footer hr {
    border: none;
    background: #b5b5b5;
    height: 1px;
    margin: 20px 0;
}

.copyright {
    text-align: center;
}

.menu-icon {
    width: 28px;
    margin-left: 20px;
    display: none;
}

/*----media query for menu---*/
@media only screen and (max-width: 800px) {
    nav ul {
        position:absolute;
        z-index: 1;
        top: 70px;
        left: 0;
        background: #333;
        width: 100%;
        overflow: hidden;
        transition: max-height 0.5s;
        overflow-y: auto;       /* allow vertical scrolling */
    }

    nav ul li {
        display: block;
        margin-top: 10px;
        margin-right: 50px;
        margin-bottom: 10px;
    }

    nav ul li a {
        color: #fff;
    }

    .menu-icon {
        display: block;
        cursor: pointer; 
    }

    .btn-float {
        display: none;
    }

    .gallery {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1;
        flex-flow: column wrap;
        justify-content: flex-start;
        width: 100%;
        font-size: 16px;
        z-index: -2;
    }

    .gallery__column {
        display: flex;
        flex-direction: column;
        width: 100%
       
    }

    .gallery__caption {
        font-size: 16px;
    }
}

@media only screen and (min-width: 800px) {
    #mobile-socialm {
        display: none !important;
    }
    #mobile-call-container 
    {
        display: none !important;
    }
}


/*----media query for menu less than 600px---*/
@media only screen and (max-width: 600px) {
    .row {
        text-align: center;
    }

    .col-2,
    .col-3,
    .col-4 {
        flex-wrap: 100%;
    }

    .single-product .row {
        text-align: left;
    }

    .single-product .col-2 {
        padding: 20px 0;
    }

    .single-product h1 {
        font-size: 20px;
        line-height: 32px;
    }
}

/*-----all products page ------*/
.row-2 {
    justify-content: space-between;
    margin: 100px auto 50px;
}

select {
    border: 1px solid #ff523b;
    padding: 5px;
}

select:focus {
    outline: none;
}

.page-btn {
    margin: 0 auto 80px;
}

.page-btn span {
    display: inline-block;
    border: 1px solid #ff523b;
    margin-left: 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}

.page-btn span:hover {
    background: #ff523b;
    color: #fff;
}

/*-----single product details------*/
.single-product {
    margin-top: 80px;
}

.single-product .col-2 img {
    padding: 0;
}

.single-product .col-2 {
    padding: 20px;
}

.single-product h4 {
    margin: 20ox 0;
    font-size: 22px;
    font-weight: bold;
}

.single-product select {
    display: block;
    padding: 10px;
    margin-top: 20px;

}

.single-product input {
    width: 50px;
    height: 40px;
    padding-left: 10px;
    font-size: 20px;
    margin-right: 10px;
    border: 1px solid #ff523b;
}

input:focus {
    outline: none;
}

.single-product .fa {
    color: #ff523b;
    margin-left: 10px;
}

.small-img-row {
    display: flex;
    justify-content: space-between;
}

.small-img-col {
    flex-basis: 24%;
    cursor: pointer;
}

/*--------floating button--------*/
.btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    border-radius: 15px;
    position:relative; 
}

.btn-circle a.fa {
    position: relative;
    z-index: 1;
  }

.btn-circle.btn-lg {
    width: 50px;
    height: 50px;
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 25px;
}

.btn-circle.btn-xl {
    width: 70px;
    height: 70px;
    padding: 10px 16px;
    font-size: 24px;
    border-radius: 35px;

}

.btn-circle.btn-xl img {
    width: 70px;
    height: 70px;
    font-size: 24px;
    line-height: 1.33;
    border-radius: 35px;
    filter: drop-shadow(2px 0px 0.5px #000);
}

.btn-float {
    position: fixed;
    right: 37px;
    bottom: 400px;
    top: 200px;
}

.btn-lateral {
    margin: 10px;
}

.fa-instagram {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
    color: white;
}

.fa-facebook {
    background: #3b5998;
    color: white;
}

.fa-whatsapp {
    background: #25D366;
    color: white;
}

#btn-fb {
    background: #3b5998;
}

#btn-m-insta {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
    border-radius: 30px;

}

#btn-insta {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
}

#btn-wa {
    background: #25D366;
}

/* Container for all mobile social icons */
/* Fix the mobile social icons container at the bottom-right */
/* Fixed mobile social icons container at bottom-right */
/* Fixed container for mobile social icons */
#mobile-socialm {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column-reverse;  /* Order reversed so first child is at the bottom */
    align-items: center;
    gap: 10px;
    z-index: 1000;
  }
  
  /* Style for each mobile button */
  .btn-mobile {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    position: relative;
  }
  .wa-label {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  .call-label {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  
  /* WhatsApp container relative to position submenu inside it */
  .whatsapp-mobile-container {
    position: relative;
  }
  
  /* WhatsApp submenu: hidden by default; displays as a vertical column */
  .wa-mobile-submenu {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;  /* Creates space above the submenu options */
  }
  
  /* When active, display the submenu */
  .wa-mobile-submenu.active {
    display: flex;
  }
  
  
  
  
  

.map {
    padding: auto;
    margin-top: 40px;
}

/*---Gallery------*/
.gallery {
    display: flex;
    padding: 2px;
    transition: 0.3s;
}

.gallery:hover .gallery__image {
    filter: grayscale(1);
}

.gallery__column {
    display: flex;
    flex-direction: column;
    width:100%;
}

.gallery__link {
    margin: 2px;
    overflow: hidden;
}

.gallery__link:hover .gallery__image {
    filter: grayscale(0);
}

.gallery__link:hover .gallery__caption {
    opacity: 1;
}

.gallery__thumb {
    position: relative;
}

.gallery__image {
    display: block;
    width: 100%;
    transition: 0.3s;
}

.gallery__image:hover {
    transform: scale(1.1);
}

.gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px 15px 15px;
    width: 100%;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: white;
    opacity: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    transition: 0.3s;
}
.btn-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* Adjust as needed */
  }
  
  .btn-circle {
    width: 60px;      /* Adjust size as needed */
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366; /* Example background for WhatsApp */
    border: none;
    cursor: pointer;
  }
  
  .btn-circle i,
  .btn-circle a.fa {
    font-size: 40px;  /* Adjust to fill the button */
    color: #fff;
  }
  
  .whatsapp-container {
    position: relative;
  }
  
  .wa-submenu {
    display: none;            /* Hidden by default */
    position: absolute;
    top: 70px;                /* Adjust so submenu appears below main button */
    right: 0;
    flex-direction: column;
    gap: 10px;                /* Optional spacing between submenu buttons */
  }
  
  .wa-submenu.active {
    display: flex;
  }

 /* Mobile Call Container – positioned at the top-right */
#mobile-call-container {
    position: absolute;
    top: 20px;        /* Adjust vertical position as needed */
    right: 80px;      /* Adjust horizontal position as needed */
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }
  
  /* Default mobile button styling */
  .btn-mobile {
    width: 50px;
    height: 50px;
    border-radius: 50%;  /* For circular main button */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    border: none;
    cursor: pointer;
  }
  
  /* Submenu container hidden by default */
  .call-mobile-submenu {
    display: none;
    flex-direction: column;
    gap: 10px;
  }
  
  /* When active, the submenu shows */
  .call-mobile-submenu.active {
    display: flex;
  }
  
  /* Style for the call submenu buttons */
  .call-sub-btn {
    width: auto;              /* Let the button size fit the text */
    padding: 10px 15px;
    border-radius: 5px;       /* A more rectangular shape */
    font-size: 16px;
    background-color: #FFA500;  /* Use the same orange or adjust as needed */
    text-decoration: none;
    color: #fff;
    text-align: center;
  }
  
/* Swiper container styling */
.swiper-container.testimonial-slider {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    
  }
  
  /* Set each slide to a fixed width (similar to your .col-3 size) */
  .swiper-slide {
    width: 300px; /* Adjust this value to match the previous size of your testimonials */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Optional: Adjust pagination if needed */
  .swiper-pagination {
    bottom: 0;
  }
  html, body {
    overflow-x: hidden;
  }
  