body {
    width: 100%;
    margin: 0;
    font-family:'Poppins', sans-serif;
}body, .overall-container {
    margin: 0;
    padding: 0;
    max-width: 100vw;
    overflow-x: hidden;
}


.logo img {
    max-width: 200px;
    width: 100%;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ecf5fc;
    padding: 10px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.09);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    flex-wrap: wrap;box-sizing: border-box;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.navbar a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    color: black;
    position: relative;
    padding: 10px;
}

.navbar a:hover,
.navbar a.active {
    color: rgb(59, 215, 147);
}

.navbar a.active::after,
.navbar a:hover::after {
    content: "";
    width: 15%;
    height: 2px;
    background: rgb(59, 215, 147);
    position: absolute;
    bottom: 0;
    left: 0px;
}

.menu-btn {
    display: none;
    cursor: pointer;
}

.sidebar.navbar {
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 250px;
    background-color: #b5a2a2;
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: flex-start;
    padding: 70px 20px 20px;
    z-index: 999;
}

.sidebar a {
    padding: 15px 0;
    width: 100%;
    display: block;
}

.template {
    padding: 0;
    margin: 0;
}

.myVideo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}



.categories-heading {
    padding: 20px;
    font-size: 1.8em;
}

.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    padding: 20px;
    justify-items: center;
}

.cat {
    width: 100%;
    max-width: 100%;
    text-align: center;
    overflow: hidden;
}

.cat-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
}

.cat-title h6 {
    font-size: 1em;
    margin-top: 4px;
    margin-bottom: 0;
}

.seemore {
    text-align: left;
    padding: 0 20px 20px;
    font-size: 1.2em;
}

.footer {
    background-color: #ecf5fc;
    padding: 30px 20px;
    border-top: 1px solid #d8eaf5;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-logo img {
    max-width: 300px;
    width: 100%;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    min-width: 150px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #1a1a1a;
}
.web-title{
    text-align: center;
    font-size: 1.3em;
}
.moto{
    margin-top: 0;
    color: rgb(23, 23, 89);
}
.company-name{
    margin-bottom: 0;
}
.herbal{
    color: rgb(45, 211, 40);
}
.alchemy{
    color: rgb(0, 8, 28);
}

.footer-column a,
.footer-column p {
    font-size: 14px;
    color: #444;
    text-decoration: none;
    margin-bottom: 6px;
}

.footer-column a:hover {
    color: rgb(59, 215, 147);
    transition: 0.3s;
}

.whatsapp-button {
    margin-top: 20px;
}
h2{
    margin-bottom: 0;
}

.whatsapp-button a {
    background-color: #25d366;
    color: white;
    padding: 10px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.whatsapp-button a img {
    width: 20px;
    height: 20px;
}

.whatsapp-button a:hover {
    background-color: #1ebc59;
}

/* Responsive tweaks */
@media (max-width: 1000px) {
    .hideOnMobile {
        display: none;
    }
    .menu-btn {
        display: block;
    }
}

@media (max-width: 400px) {
    .categories-heading,
    .seemore {
        font-size: 1.2em;
    }

    .cat-title h6 {
        font-size: 0.9em;
    }

    .footer-column h4 {
        font-size: 15px;
    }

    .footer-column p,
    .footer-column a {
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .categories {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 400px){
    .web-title{
        text-align: center;
        font-size: 1.1em;
    }
    .categories-heading h2{
        font-size: 23px;
    }
}

@media (max-width: 320px) {
    .categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .navbar a {
        font-size: 14px;
        padding: 6px;
    }

    .myVideo {
        height: 180px;
    }

    .cat-title h6 {
        font-size: 0.85em;
    }

    .seemore {
        font-size: 1em;
    }
}
@media(max-width:350px){
    .sidebar.navbar.snav{
        max-width: 350px;
        width: 89%;
    }
}
@media (max-width: 1000px) {
    .sidebar.navbar {
        right: 0;
        left: auto;
        width: 80%;
        max-width: 250px;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        background-color: rgb(181, 162, 162, 0.5);
        display: none; /* keep hidden until triggered */
        z-index: 1000;
    }

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

    .hideOnMobile {
        display: none;
    }
}
@media (max-width: 767px) {
    .myVideo {
        height: 350px;
    }
    .categories-heading h2{
        font-size: 30px;
    }
}

@media (max-width: 600px) {
    .myVideo {
        height: 300px;
    }
}
@media (max-width: 480px) {
    .myVideo {
        height: 250px;
    }
}

@media (max-width: 400px) {
    .myVideo {
        height: 180px;
    }
}
@media(min-width:767px){
    .myVideo{
        object-fit: contain;
    }
    .web-title{
        text-align: center;
        font-size: 1.8em;
    }
}
@media(min-width:760px){
    .footer-logo img{
        max-width: 300px;
    }
}