/* Add this CSS to your existing stylesheet */
/* Hide the logo on screens with a maximum width of 767px (mobile screens) */
@media (max-width: 767px) {
  .logo-image {
    display: none;
  }
}

/* Display the logo on screens with a minimum width of 768px (tablet screens and larger) */
@media (min-width: 768px) {
  .logo-image {
    position: relative;
    width: 200px; /* Adjust the width as needed */
    z-index: 9999; /* Use a high z-index to ensure the logo is on top of other content */
    background: transparent; /* Set the background to transparent */
    margin-top: 0px;
    margin-left: 0px;
  }
}

.instagram-icon {
  max-height: 20px; /* Set maximum height for Instagram icon */
  max-width: 20px; /* Set maximum height for Instagram icon */
  vertical-align: middle; /* Align icons vertically */
}

footer {
  margin-top: 100px;
}

footer p {
  line-height: 50px;
}

/* START Slider functionality */

.container { /* The parent container of swiper */
  height: 100%;
}

.slide img {
  width: 100%;
  border-radius: 25px; /* Optional, for rounded corners */
}

.header-area{
  top: 10px;
}

.banner {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #ee626b;
  color: white;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
}


.swiper {
  height: 100%;
  padding-top: 56.25%; /* Example for 16:9 aspect ratio */
  position: relative;
}

.swiper-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* Increase the size and style of the swiper buttons */
.swiper-button-next,
.swiper-button-prev {
  width: 80px; /* Adjust the width as needed */
  height: 80px; /* Adjust the height as needed */
}

.swiper-pagination-bullet {
  --swiper-pagination-bullet-width: 12px !important; /* Adjust the height as needed */
  --swiper-pagination-bullet-height: 12px !important; /* Adjust the height as needed */
  --swiper-pagination-bullet-inactive-opacity: 0.6 !important;
}

/* Style the swiper-slide container */
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Style the slide-content container */
.slide-content {
  position: relative;
}

/* Style the semi-transparent banner */
.slide-banner {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity (last value) as needed */
  color: #fff; /* Text color */
  padding: 20px; /* Adjust padding as needed */
  text-align: center;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Style the text inside the banner */
.slide-banner p {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  color: white;
}

.email-container{
  background-color: white;
/*
  background: #fff;
  background: linear-gradient(#fff, #fff);
*/
}

/* END Slider functionality */


.main-banner {
  overflow: hidden;
}



/***** START product-explanation *****/

.product-explanation {
    position: relative;
    top: -30px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #E3EBF7;
    padding: 20px;
    border-radius: 30px;
}

.product-explanation section {
    background: white;
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-explanation h3 {
    color: #333;
    margin-top: 0;
}

.product-explanation p {
    margin-bottom: 15px;
}

.product-explanation ul {
    list-style: none;
    padding: 0;
}

.product-explanation ul li {
    font-weight: bold;
    border-radius: 5px;
}

.product-explanation ul li p {
    margin: 0;
}

@media (max-width: 600px) {
    .product-explanation {
        padding: 10px;
    }

    .product-explanation section {
        padding: 10px;
    }
}
/***** END product-explanation *****/


.button {
    /* Button-like styles */
    display: inline-block;
    padding: 12px 20px;
    background-color: #ee626b; /* Red background */
    color: white; /* White text */
    text-align: center;
    text-decoration: none;
    border: 1px solid #ccc; /* Adjust or remove the border as needed */
    border-radius: 30px; /* Rounded corners */
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
}
.button-inline{
    /* Button-like styles */
    display: inline-block;
    padding: 2px 4px;
    background-color: #ee626b; /* Red background */
    color: white; /* White text */
    text-align: center;
    text-decoration: none;
    border: 1px solid #ccc; /* Adjust or remove the border as needed */
    border-radius: 10px; /* Rounded corners */
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
}

.button:hover {
    background-color: #0d6efd; /* Darker red on hover for a visual effect */
}


/***** Thank you message *****/
/* Modal Background */
.modal-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75); /* Darker background */
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.25s, opacity 0.25s linear;
    z-index: 1050; /* Ensure it's above other content */
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #ffffff;
    padding: 35px;
    border: 1px solid #999;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4); /* Shadow for depth */
    width: 90%;
    max-width: 450px; /* Adjust based on your preference */
    animation-name: zoom;
    animation-duration: 0.4s;
}

/* Animation */
@keyframes zoom {
    from {transform: scale(0)} 
    to {transform: scale(1)}
}

/* Close Button */
.close-button {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* Show the modal */
.modal-background.show {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s linear 0s, opacity 0.25s linear;
}
