/* Global styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Reset box model */
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #FBE5F1;
    font-family: Arial, sans-serif;
    margin: 0; /* Ensure there's no margin */
    padding: 0; /* Ensure there's no padding */
}

header {
    position: fixed;
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
    top: 0;
    width: 100%;
    background: #ff69b4;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0; /* Remove any padding */
    margin: 0; /* Remove any margin */
}

/* Navbar styles */
.navbar {
    border: none;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #ff69b4;
    box-sizing: border-box; /* Prevent margin/padding from affecting layout */
    z-index: 1100;
}
/* Mobile Navigation (Hamburger) styles */
@media (max-width: 768px) {
    /* Navbar: Ensure it's on top of the content */
    .navbar {
        background-color: #ff86b3; /* Lighter pink for better mobile view */
        padding: 10px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Hamburger icon */
    .hamburger {
        display: block;
        width: 30px;
        height: 3px;
        background-color: #fff;
        border-radius: 5px;
        position: relative;
        transition: all 0.3s ease;
    }

    .hamburger:before,
    .hamburger:after {
        content: '';
        position: absolute;
        width: 30px;
        height: 3px;
        background-color: #fff;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .hamburger:before {
        top: -10px;
    }

    .hamburger:after {
        top: 10px;
    }

    .navbar-nav {
        display: none; /* Hide menu by default */
        flex-direction: column;
        width: 100%;
        background-color: #ff69b4; /* Same background for dropdown */
    }

    .navbar-nav > li {
        padding: 15px;
        text-align: center;
    }

    .navbar-nav > li > a {
        color: #fff;
        display: block;
        padding: 10px 15px;
        text-decoration: none;
    }

    .navbar-nav > li > a:hover {
        background-color: #ff1493;
    }

    /* Show navbar when hamburger is clicked */
    .navbar.open .navbar-nav {
        display: flex;
    }

    /* Submenu items for mobile (display below menu item) */
    .dropdown-menu {
        position: relative;
        display: none; /* Hide submenu by default */
        width: 100%;
        background-color: #ffc0cb;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        border-radius: 5px;
        padding: 10px 20px;
    }

    .navbar-nav > li:hover .dropdown-menu {
        display: block; /* Show submenu on hover */
    }

    .dropdown-menu.megamenu {
        display: block;
        width: 100%;
    }

    .dropdown-menu.megamenu .submenu-items {
        display: block; /* Stack submenu items */
        gap: 10px;
    }

    .dropdown-menu.megamenu .submenu-items li {
        width: 100%; /* Full width for submenu items */
    }

    /* Style for the links inside submenu */
    .dropdown-menu.megamenu .submenu-items li a {
        background-color: #ffe4e1;
        color: #000;
        padding: 10px;
        border-radius: 5px;
    }

    .dropdown-menu.megamenu .submenu-items li a:hover {
        background-color: #ffb6c1;
    }
}

/* Product section styles */
.product-section {
    margin: 20px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
}

.product {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.product h3 {
    font-size: 1.25rem;
    margin: 10px 0;
}

.product p {
    color: #666;
    margin-bottom: 15px;
}

.btn-pink {
    background-color: #ff69b4;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.btn-pink:hover {
    background-color: #ff1493;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer styles */
footer {
    background-color: #ff69b4;
    color: #fff;
    text-align: center;
    padding: 10px;
    width: 100%;
}

/* Add padding to the top of the body content */
.content-container {
    flex: 1;
    margin: 0 auto;
    padding: 20px; /* Standard padding */
    padding-top: 20px; /* This value should be equal to or greater than the height of the navbar */
    max-width: 1200px;
}
	.highlight-box {
    background-color: #fff8e1; /* Light yellow background */
    border: 1px solid #ffd54f; /* Light golden border */
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for a floating effect */
}

.highlight-box h2 {
    margin-top: 0;
    color: #d4892c; /* Darker golden-brown for the heading */
}

.highlight-box p {
    color: #555; /* Dark gray for readability */
    line-height: 1.6;
}
.state-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between state cards */
    justify-content: center; /* Center align the states */
    margin: 20px 0;
}

.state {
    background-color: #1DAB61; /* Uniform green background */
    color: #fff; /* White text for readability */
    padding: 20px;
    width: calc(25% - 20px); /* Four states per row */
    max-width: 350px; /* Limit the width of the state cards */
    border-radius: 10px; /* Rounded corners for better visuals */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hover animation */
    text-align: left; /* Align text to the left */
}

.state:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.state h2 {
    font-size: 1.6em; /* Larger font size for state names */
    margin-bottom: 15px;
    color: #FFD700; /* Gold for state headings */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4); /* Subtle text shadow */
}

.state h2 a {
    color: inherit; /* Use the same color as the heading */
    text-decoration: none; /* Remove underline */
}

.state h2 a:hover {
    text-decoration: underline; /* Add underline on hover for clarity */
}

.state ul {
    list-style: none; /* Remove bullet points */
    margin: 0;
    padding: 0;
    margin-left: 15px; /* Slight indentation for cities */
}

.state ul li {
    margin: 8px 0; /* Space between cities */
    font-size: 1em; /* Slightly smaller font for cities */
    font-weight: 500; /* Medium weight for better readability */
}

.state ul li a {
    color: #FFFFFF; /* White text for cities */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease;
}

.state ul li a:hover {
    color: #F1C40F; /* Bright yellow on hover */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .state {
        width: calc(33.333% - 20px); /* Three states per row */
    }
}

@media (max-width: 768px) {
    .state {
        width: calc(50% - 20px); /* Two states per row */
    }
}

@media (max-width: 480px) {
    .state {
        width: 100%; /* Single column layout */
    }
}