/* General Styles */
body {
    margin: 0;
    font-family: 'HelveticaNeueRoman', sans-serif; /* Replace Arial with HelveticaNeueRoman */
    background: #f4f4f4;
    overflow-x: hidden;
}

/* Header */
header {
    position: relative;
    z-index: 10;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #333;
    color: #fff;
    font-family: 'HelveticaNeueBold', sans-serif; /* Use HelveticaNeueBold for the navbar */
}

.navbar .logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'HelveticaNeueBlack', sans-serif; /* Use HelveticaNeueBlack for the logo */
}

/* Hamburger Menu Styling */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
    position: relative;
    z-index: 11;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger Menu Animation */
.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #ff9800;
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0; /* Hide the middle bar */
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: #ff9800;
}

/* Menu Overlay Styling */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10;
    transition: all 0.5s ease;
}

.menu-overlay.active {
    display: flex;
    animation: fadeIn 0.5s ease;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Menu Content Styling */
.menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.menu-content ul li {
    margin: 10px 0;
}

.menu-content ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 2px solid transparent;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
}

.menu-content ul li a:hover {
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    color: #fff;
    border: 2px solid #ff7e5f;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Menu Buttons Styling */
.menu-buttons {
    margin-top: 30px;
}

.menu-buttons .btn-primary {
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-buttons .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.menu-buttons .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.menu-buttons .btn-secondary:hover {
    background: #fff;
    color: #333;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px;
    background: #f8f8f8;
    font-family: 'HelveticaNeueLight', sans-serif; /* Use HelveticaNeueLight for the hero section */
}

.hero img {
    max-width: 85%;
    height: auto;
}

.hero-text h1 {
    font-size: 24px;
    margin-top: 10px;
    font-family: 'HelveticaNeueBold', sans-serif; /* Use HelveticaNeueBold for hero headings */
}

.hero-text p {
    color: #777;
    font-family: 'HelveticaNeueRoman', sans-serif; /* Use HelveticaNeueRoman for hero text */
}

.hero button {
    margin-top: 10px;
    padding: 10px;
    border: none;
    background: black;
    color: white;
    cursor: pointer;
    font-family: 'HelveticaNeueMedium', sans-serif; /* Use HelveticaNeueMedium for buttons */
}

/* Products Section */
.products {
    text-align: center;
    padding: 40px;
    background: white;
    font-family: 'HelveticaNeueMedium', sans-serif; /* Use HelveticaNeueRoman for product section */
}

.product-slider {
    position: relative;
    width: 80%; /* Center the slider */
    margin: 0 auto; /* Center the slider */
    overflow: hidden; /* Hide overflow to prevent flashes */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'HelveticaNeueLight', sans-serif; /* Use HelveticaNeueLight for product slider */
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Smooth transition */
}

.slide {
    flex: 0 0 100%; /* Each slide takes up 100% of the container */
    text-align: center;
    background: #f8f8f8;
    padding: 20px;
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}

.slide img {
    width: 270px;
    height: 270px;
    margin-bottom: 10px;
    font-family: 'HelveticaNeueRoman', sans-serif; /* Use HelveticaNeueRoman for slide text */
}

/* Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
}

.product-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.product {
    background: #fff;
    padding: 10px;
}

.product img {
    max-width: 100%;
    height: auto;
}

/* Image Slider */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
}

.slide {
    display: none; /* Hide all slides by default */
    justify-content: center;
    align-items: center;
    background-color: rgb(219, 219, 219);
    width: 100%; /* Make the slide take up the full width */
    border-radius: 20px;
    font-size: 10px;
    padding: 20px;
}

.slide:first-child {
    display: flex; /* Show the first slide by default */
}

.slide-img {
    width: auto; /* Automatically adjust the width to maintain aspect ratio */
    max-width: 100%; /* Ensure the image does not exceed the container width */
    height: auto; /* Maintain the aspect ratio */
    object-fit: contain; /* Ensure the image scales proportionally without cropping */
    border-radius: 10px; /* Keep rounded corners */
    display: block; /* Ensure the image behaves as a block element */
    margin: 0 auto; /* Center the image horizontally */
    padding-bottom: 10px; /* Add padding to prevent the image from touching the bottom */
}

.prev, .next {
    cursor: pointer;
    padding: 10px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: 10px;
    transition: 0.6s ease;
    border-radius: 50%; /* Make buttons circular */
    user-select: none;
    margin: 0; /* Remove extra margins */
    background-color: rgba(0, 0, 0, 0.5); /* Add background for better visibility */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px; /* Set fixed width for buttons */
    height: 40px; /* Set fixed height for buttons */
    position: absolute; /* Position buttons absolutely */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust for proper centering */
    z-index: 10; /* Ensure buttons are above other elements */
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
}

/* Slide Buttons Container */
.slide_buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.slide_buttons button {
    background: #333;
    color: white;
    border: none;
    padding: 10px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.slide_buttons button:hover {
    background: #555;
}

/* Responsive Design for Buttons */
@media (max-width: 768px) {
    .prev, .next {
        width: 35px; /* Reduce button size for smaller screens */
        height: 35px;
        font-size: 8px; /* Adjust font size */
    }

    .slide_buttons {
        justify-content: center; /* Ensure buttons stay centered */
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .prev, .next {
        width: 30px; /* Further reduce button size for very small screens */
        height: 30px;
        font-size: 6px; /* Adjust font size */
    }

    .slide_buttons {
        flex-direction: row; /* Keep buttons in a row */
        justify-content: center; /* Center the buttons */
        gap: 5px; /* Reduce spacing between buttons */
    }
}

/* Responsive Design for Image Slider */
@media (max-width: 768px) {
    .slideshow-container {
        height: 400px; /* Increase height for smaller screens */
    }

    .slide {
        padding: 30px; /* Add more padding for better spacing */
    }

    .slide img {
        height: 70%; /* Adjust image height for smaller screens */
    }

    .slide_text div:not(:nth-child(2)) {
        display: none; /* Hide all text except the price */
    }

    .slide {
        flex-direction: column; /* Stack content vertically */
        align-items: center;
        padding: 10px;
    }

    .slide-img {
        width: 800px; /* Adjust image size for smaller screens */
        height: auto; /* Maintain aspect ratio */
    }

    .slide_text div:nth-child(2) {
        font-size: 16px; /* Adjust font size for the price */
        font-weight: bold;
        color: #333;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .slideshow-container {
        height: 450px; /* Further increase height for very small screens */
    }

    .slide {
        padding: 40px; /* Add even more padding for very small screens */
    }

    .slide_text div:not(:nth-child(2)) {
        display: none; /* Hide all text except the price */
    }

    .slide {
        padding: 5px;
    }

    .slide-img {
        width: 150px; /* Further reduce image size for very small screens */
        height: auto; /* Maintain aspect ratio */
    }

    .slide_text div:nth-child(2) {
        font-size: 14px; /* Further adjust font size for the price */
        font-weight: bold;
        color: #333;
        margin-top: 5px;
    }
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    max-width: 100%; /* Ensure the slider takes up the full width */
    margin: auto;
    overflow: hidden;
}

.slide {
    display: none; /* Hide all slides by default */
    justify-content: center;
    align-items: center;
    background-color: rgb(219, 219, 219);
    width: 100%; /* Make the slide take up the full width */
    border-radius: 20px;
    font-size: 10px;
    padding: 20px;
}

.slide:first-child {
    display: flex; /* Show the first slide by default */
}

.slide-img {
    width: auto; /* Automatically adjust the width to maintain aspect ratio */
    max-width: 100%; /* Ensure the image does not exceed the container width */
    height: auto; /* Maintain the aspect ratio */
    object-fit: contain; /* Ensure the image scales proportionally without cropping */
    border-radius: 10px; /* Keep rounded corners */
    display: block; /* Ensure the image behaves as a block element */
    margin: -15px auto; /* Center the image horizontally */
    padding-bottom: 10px; /* Add padding to prevent the image from touching the bottom */
}

.prev, .next {
    cursor: pointer;
    padding: 10px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: 10px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    margin: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: rgb(0, 0, 0);
}

.slide_buttons {
    display: flex;
    justify-content: center; /* Center the buttons */
    margin-top: 20px;
}

.slide_buttons button {
    background: #696969;
    color: rgb(0, 0, 0);
    border: none;
    padding: 10px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.slide_buttons button:hover {
    background: #555;
}

.slide_buttons {
    display: flex;
    justify-content: right;
    margin-top: 20px;
}
b {
    font-size: 30px;
    font-weight: bolder;
}

/* Navigation Buttons for Home Page */
.home-slider .prev,
.home-slider .next {
    cursor: pointer;
    padding: 10px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: 10px;
    transition: 0.6s ease;
    border-radius: 50%; /* Make buttons circular */
    user-select: none;
    margin: 0; /* Remove extra margins */
    background-color: rgba(0, 0, 0, 0.5); /* Add background for better visibility */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px; /* Set fixed width for buttons */
    height: 40px; /* Set fixed height for buttons */
    position: absolute; /* Position buttons absolutely */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust for proper centering */
    z-index: 10; /* Ensure buttons are above other elements */
}

.home-slider .prev {
    left: 10px; /* Position the previous button on the left */
}

.home-slider .next {
    right: 10px; /* Position the next button on the right */
}

.home-slider .prev:hover,
.home-slider .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
}

/* Slide Buttons Container for Home Page */
.home-slider .slide_buttons {
    display: flex;
    justify-content: center; /* Center the buttons horizontally */
    margin-top: 20px;
    gap: 10px; /* Add spacing between buttons */
}

/* Responsive Design for Home Page Buttons */
@media (max-width: 768px) {
    .home-slider .prev,
    .home-slider .next {
        width: 35px; /* Reduce button size for smaller screens */
        height: 35px;
        font-size: 8px; /* Adjust font size */
    }

    .home-slider .slide_buttons {
        justify-content: center; /* Ensure buttons stay centered */
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .home-slider .prev,
    .home-slider .next {
        width: 30px; /* Further reduce button size for very small screens */
        height: 30px;
        font-size: 6px; /* Adjust font size */
    }

    .home-slider .slide_buttons {
        flex-direction: row; /* Keep buttons in a row */
        justify-content: center; /* Center the buttons */
        gap: 5px; /* Reduce spacing between buttons */
    }
}

/* Featured Section */
.featured {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ensure proper spacing between image and text */
    padding: 50px;
    background: #f8f8f8;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    gap: 20px; /* Add spacing between elements */
}

.featured img {
    width: 50%; /* Default width for larger screens */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Add rounded corners */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
    max-width: 100%; /* Prevent the image from overflowing horizontally */
}

.featured-text {
    width: 45%; /* Default width for text */
    padding-left: 20px;
    font-family: 'HelveticaNeue', sans-serif;
    overflow-wrap: break-word; /* Prevent long words from breaking the layout */
}

.featured-text h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
    line-height: 1.4; /* Adjust line height for better readability */
}

.featured-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    word-wrap: break-word; /* Ensure long text wraps properly */
}

.featured button {
    padding: 10px 20px;
    border: none;
    background: black;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.featured button:hover {
    background: #333;
    transform: scale(1.05);
}

/* Responsive Design for Featured Section */
@media (max-width: 768px) {
    .featured {
        flex-direction: column; /* Stack image and text vertically */
        align-items: center;
        padding: 30px;
    }

    .featured img {
        width: 100%; /* Full width for smaller screens */
        margin-bottom: 20px; /* Add spacing below the image */
    }

    .featured-text {
        width: 100%; /* Full width for text */
        padding-left: 0; /* Remove left padding */
        text-align: center; /* Center-align text */
    }

    .featured-text h2 {
        font-size: 20px; /* Adjust font size for smaller screens */
    }

    .featured-text p {
        font-size: 14px; /* Adjust font size for smaller screens */
    }

    .featured button {
        width: 100%; /* Full width for button */
        text-align: center;
    }
}

@media (max-width: 480px) {
    .featured {
        padding: 20px;
    }

    .featured-text h2 {
        font-size: 18px; /* Further reduce font size for very small screens */
    }

    .featured-text p {
        font-size: 12px; /* Further reduce font size for very small screens */
    }

    .featured button {
        padding: 10px; /* Adjust button padding */
    }
}

/* Tips Section */
.tips {
    padding: 40px;
    background: white;
    position: relative;
}

.tip {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.number {
    background: #444;
    color: white;
    font-size: 32px;
    font-weight: bold;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0; /* Prevent shrinking */
    border: 2px solid #000; /* Add border for numbered blocks */
}

/* Responsive Design for .number */
@media (max-width: 768px) {
    .number {
        width: 50px; /* Reduce width for smaller screens */
        height: 50px; /* Maintain aspect ratio */
        font-size: 24px; /* Adjust font size */
        margin-right: 10px; /* Reduce margin */
    }
}

@media (max-width: 480px) {
    .number {
        width: 40px; /* Further reduce width for very small screens */
        height: 40px; /* Maintain aspect ratio */
        font-size: 20px; /* Adjust font size */
        margin-right: 5px; /* Reduce margin */
    }
}

.content {
    background: #e0e0e0;
    padding: 15px;
    border-radius: 5px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.content img {
    width: 40px; /* Adjust the size of the image */
    height: 40px;
    object-fit: cover;
    margin-bottom: 10px;
}

h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: bold;
}

p {
    margin: 0;
    font-size: 17px;
    color: #000000;
}

/* Mental Well-being Section */
.mental-wellbeing {
    display: flex;
    justify-content: space-between;
    background: #e0e0e0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    margin: 30px auto;
}

.mental-wellbeing .left,
.mental-wellbeing .right {
    height: auto;
    width: 48%; /* Adjust width for left and right sections */
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.mental-wellbeing h3 {
    background: #666;
    color: white;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    margin-bottom: 10px;
}

.mental-wellbeing h2 {
    background: #666;
    color: white;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    margin-bottom: 10px;
    margin-top: 0px;
}

.mental-wellbeing ul {
    padding-left: 20px;
    list-style: none;
}

.mental-wellbeing ul li {
    margin-bottom: 5px;
    font-size: 14px;
}




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

    .hero img {
        max-width: 100%; /* Ensure hero image fits smaller screens */
    }
    hero b {
        font-size: 30px;
        font-weight: bolder;
    }
    
    .product-slider {
        width: 100%; /* Full width for product slider */
    }

    .mental-wellbeing {
        padding: 10px;
    }

    .menu-buttons .btn-primary,
    .menu-buttons .btn-secondary {
        width: 100%; /* Full width for buttons */
        text-align: center;
    }

    .footer {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .navbar .logo {
        font-size: 1.5rem; /* Smaller font size for logo */
    }

    .hamburger-menu {
        width: 20px;
        height: 15px;
    }

    .hero-text h1 {
        font-size: 20px; /* Smaller font size for hero heading */
    }

    .hero-text p {
        font-size: 14px; /* Smaller font size for hero text */
    }

    .product-slider {
        padding: 10px;
    }

    .mental-wellbeing {
        padding: 5px;
    }

    .footer {
        text-align: center;
    }

    .footer div {
        margin: 5px 0;
    }

    .footer a {
        font-size: 14px; /* Smaller font size for footer links */
    }
}

.slide_text {
    margin-left: 45px; /* Add space to move the text to the right */
    text-align: left; /* Ensure the text is aligned properly */
}