/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: url(images/Background.svg);
    background-repeat: no-repeat;
    background-size: auto;
    display: flex;
    flex-direction: column;
    color: #333;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 5%;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 100px;
    width: auto;
    border-radius: 10px;
}


/* Categories Section */
.categories {
    padding: 80px 5%;
    text-align: center;
    flex: 1;
}

.categories h2 {
    font-size: 42px;
    color: #78ce15;
    margin-bottom: 60px;
    animation: fadeIn 1s ease;
}

.category-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.category-button {
    background: white;
    border-radius: 20px;
    width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
    border: none;
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.category-button:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-button.wellness {
    border-top: 5px solid #78ce15;
}

.category-button.ayurveda {
    border-top: 5px solid #78ce15;
}

.category-button:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.05);
    z-index: 1;
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
}

.category-button .icon-circle i {
    font-size: 40px;
    color: #78ce15;
}

.category-button h3 {
    font-size: 22px;
    color: #78ce15;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.category-button p {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.button-text {
    display: inline-block;
    background: transparent;
    border: 2px solid #78ce15;
    color: #78ce15;
    margin-top: auto;
    padding: 20px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.category-button:hover .button-text {
    background: #78ce15;
    color: white;
}

/* Footer */
.footer {
    background: #78ce15;
    color: white;
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 5%;
    text-align: center;
    font-size: 14px;
    color: #e0e0e0;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .categories {
        padding: 60px 5%;
    }
    
    .categories h2 {
        font-size: 36px;
    }
    
    .categories p {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .category-container {
        gap: 30px;
    }
    
    .category-button {
        width: 100%;
        max-width: 400px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .logo-container h1 {
        font-size: 24px;
    }
    
    .categories h2 {
        font-size: 32px;
    }
    
    .categories p {
        font-size: 16px;
    }
    
    .category-button {
        padding: 30px 20px;
    }
    
    .category-button h3 {
        font-size: 24px;
    }
    
    .category-button p {
        font-size: 16px;
    }
}