/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    color: #2c3e50;
    margin: 20px 0;
}

h2 {
    text-align: center;
    color: #34495e;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Subcategory Box */
.subcategory-box {
    margin: 10px 0; /* Add space between boxes */
    text-align: center; /* Center text inside each box */
    background-color: #fff; /* White background for boxes */
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 8px; /* Rounded corners */
    padding: 15px; /* Padding inside the box */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Size Box */
.size-box {
    width: 100%; /* Full width for mobile */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    padding: 10px; /* Optional: Add padding */
    text-align: center; /* Center the text and image */
    margin-bottom: 10px; /* Space between boxes */
}

.size-box img {
    max-width: 100%; /* Make images responsive */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Match the border radius of the box */
}

.subcategory-box h3 {
    font-size: 24px;
    margin: 10px 0;
}

.subcategory-box p {
    font-size: 16px;
    color: #555;
}

/* Explore Button */
.explore-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    display: block;
    margin: 20px auto;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.explore-btn:hover {
    background-color: #0056b3;
}

/* Consultation Warning */
.consultation-warning {
    background-color: #fff; /* White background */
    color: rgb(255, 0, 0); /* Red text color */
    padding: 20px; /* Padding around the text */
    text-align: center; /* Center the text */
    margin-bottom: 20px; /* Space below the warning box */
    border-radius: 5px; /* Rounded corners */
}

/* Responsive Styles */
@media (min-width: 768px) {
    .size-box {
        width: calc(50% - 20px); /* Two boxes side by side on larger screens */
        display: inline-block; /* Allow boxes to sit next to each other */
        margin-right: 10px; /* Space between boxes */
    }

    .size-box:nth-child(2n) {
        margin-right: 0; /* Remove right margin for every second box */
    }
}
/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    color: #2c3e50;
    margin: 20px 0;
}

h2 {
    text-align: center;
    color: #34495e;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Subcategory Box */
.subcategory-box {
    margin: 10px 0; /* Add space between boxes */
    text-align: center; /* Center text inside each box */
    background-color: #fff; /* White background for boxes */
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 8px; /* Rounded corners */
    padding: 15px; /* Padding inside the box */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Size Box */
.size-box {
    width: 100%; /* Full width for mobile */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    padding: 10px; /* Optional: Add padding */
    text-align: center; /* Center the text and image */
    margin-bottom: 10px; /* Space between boxes */
}

.size-box img {
    max-width: 100%; /* Make images responsive */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Match the border radius of the box */
}

.subcategory-box h3 {
    font-size: 24px;
    margin: 10px 0;
}

.subcategory-box p {
    font-size: 16px;
    color: #555;
}

/* Explore Button */
.explore-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    display: block;
    margin: 20px auto;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.explore-btn:hover {
    background-color: #0056b3;
}

/* Consultation Warning */
.consultation-warning {
    background-color: #fff; /* White background */
    color: rgb(255, 0, 0); /* Red text color */
    padding: 20px; /* Padding around the text */
    text-align: center; /* Center the text */
    margin-bottom: 20px; /* Space below the warning box */
    border-radius: 5px; /* Rounded corners */
}

/* Responsive Styles */
@media (min-width: 768px) {
    .size-box {
        width: calc(50% - 20px); /* Two boxes side by side on larger screens */
        display: inline-block; /* Allow boxes to sit next to each other */
        margin-right: 10px; /* Space between boxes */
    }

    .size-box:nth-child(2n) {
        margin-right: 0; /* Remove right margin for every second box */
    }
}
.footer {
    background-color: #333; /* Dark background for the footer */
    color: #fff; /* White text color */
    padding: 20px; /* Padding around the footer */
    text-align: center; /* Center-align text */
    font-size: 16px;
    border-top: 2px solid #00bfff; /* Base font size */
}

.footer a {
    color: #00bfff; /* Light blue color for links */
    text-decoration: none; /* Remove underline from links */
}

.footer a:hover {
    text-decoration: underline; /* Underline on hover */
    color: #ffcc00; /* Change color on hover */
}

.footer .social-icons {
    margin-bottom: 15px; /* Space below social icons */
}

.footer p {
    margin: 5px 0; /* Space between paragraphs */
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    
    
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

h2{
    text-align: center;
}
#map {
    text-align: center;
    background-color: #e1ff9c;
    padding: 20px;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#map h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

#map p {
    font-size: 16px;
    color: #666;
}

#map a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

#map a:hover {
    color: #0056b3;
    text-decoration: underline;
}
    header {
    background-image: url('mmm.jpg');
    background-color: #a1c8fb; /* Dark blue background */
    padding: 20px 0;
   
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
   
    
}header h1 {
    font-size: 2.1em;
    font-weight: bold;
    color: #00e5ff;
    text-decoration: underline;
}
.nav-links {
    margin-top: 20px;
    list-style-type: none;
    display: flex;
    justify-content: center;
    padding: 0;
    gap: 2em;
    flex-direction: column;
}
.nav-links li {
    display: inline; /* Ensure each link is displayed inline */
}

.nav-links a {
    color: white;
    text-decoration: none;
    display: contents;
}

.nav-links li a {
    position: relative;
}

.nav-links li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #c54242;
    left: 0;
    bottom: -5px;
    transition: width 0.6s;
}

.nav-links li a:hover {
    color: #00ff08;
    background: #353535;
}
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

h1 {
    font-size: 36px;
    color: #2c3e50;
    text-align: center;
    margin: 20px 0;
}
.refreshment-hub {
    color: #ff00f7; /* Change this to your desired color */
    font-size: 42px; /* Increase the font size */
    text-decoration: underline; /* Underline the text */
    text-shadow: #00ff08;
}

p {
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    margin: 0 20px;
}
@media (max-width: 600px) {
    .contact-details {
        padding: 15px; /* Adjust padding for smaller screens */
    }
}
@media (max-width: 768px) {
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    header {
        width: 100%;
        padding: 15px 0;
        text-align: center;
    }

    .welcome-box, .subtitle {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        width: 100%;
    }

    .btn {
        width: 100%;
        margin-top: 10px;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    section {
        padding: 20px;
        margin: 10px 0;
        width: 100%;
        box-sizing: border-box;
    }

    section h1, section h2 {
        font-size: 24px;
    }

    .footer {
        padding: 20px;
        text-align: center;
    }

    .btn {
        width: auto;
        max-width: 90%;
        margin-top: 10px;
    }

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

    #about-header {
        padding: 20px 0;
        text-align: center;
    }
    
}


@media (max-width: 600px) {
    #categories {
        padding: 15px 5px; /* Adjust for smaller screens */
    }
}
@media (min-width: 1024px) and (max-width: 1440px) {
    img, .logo {
        margin-left: auto;
        margin-right: auto;
        display: block;
        max-width: 95%;
    }
}
@media (min-width: 768px) {
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        display: flex;
        list-style: none;
    }

    .nav-links li {
        margin-left: 20px;
    }

    .subcategory-box {
        width: 30%; /* Adjust width for larger screens */
        margin: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        width: 100%
    }
}
.store-message {
    text-align: center; /* Center the text */
    font-size: 20px; /* Set font size */
    color: #333; /* Text color */
    margin: 20px 0; /* Margin around the message */
}
.reach-out {
    background-color: #f9f9f9; /* Light background color */
    padding: 20px; /* Padding around the content */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    text-align: center; /* Center-align text */
    margin: 20px auto; /* Margin for spacing */
    max-width: 800px; /* Max width for the section */
}

.reach-out h1 {
    font-size: 36px; /* Larger font size for the main title */
    color: #366ca2; /* Dark color for the title */
    margin-bottom: 10px; /* Space below the title */
}

.reach-out h2 {
    font-size: 24px; /* Font size for the subheadings */
    color: #111111; /* Slightly lighter color for subheadings */
    margin: 10px 0; /* Margin for spacing */
}

.reach-out section#map {
    background-color: #e1ff9c; /* Light green background for the map section */
    padding: 15px; /* Padding inside the map section */
    border-radius: 8px; /* Rounded corners */
    margin-top: 20px; /* Space above the map section */
}

.reach-out section#map h2 {
    font-size: 28px; /* Font size for the map heading */
    color: #333; /* Darker color for better visibility */
}

.reach-out section#map p {
    font-size: 16px; /* Font size for the paragraph text */
    color: #555; /* Medium gray color for text */
}

.reach-out section#map a {
    color: #007bff; /* Blue color for the link */
    text-decoration: none; /* Remove underline from link */
    font-weight: bold; /* Bold text for emphasis */
}

.reach-out section#map a:hover {
    text-decoration: underline; /* Underline on hover */
    color: #0056b3; /* Darker blue on hover */
}