﻿
/* Hero Section Styles */
.hero-section {
    background-image: url('/lib/images/product.webp'); /* replace with your image */
    background-size: cover;
    background-position: center;
    height: 80vh;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* dark overlay for readability */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Segoe UI', sans-serif;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    padding: 12px 25px;
    background-color: #ff6b00;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

    .btn-primary:hover {
        background-color: #e65a00;
    }
/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*=========contentsection===========*/
.therapeutic-section {
    padding: 60px 20px;
    background: #f4f7fa;
    font-family: 'Segoe UI', sans-serif;
}

.pill-buttons {
    text-align: center;
    margin-bottom: 40px;
}

.pill-button {
    display: inline-block;
    margin: 0 12px;
    padding: 12px 28px;
    background-color: #007BFF;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

    .pill-button:hover {
        background-color: #0056b3;
    }

.content-card {
    background: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}

    .content-card h2 {
        font-size: 28px;
        color: #333;
        margin-bottom: 20px;
    }

    .content-card p {
        font-size: 16px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 30px;
    }

.therapeutic-list {
    list-style: none;
    padding-left: 0;
}

    .therapeutic-list li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 12px;
        font-size: 16px;
        color: #333;
    }

        .therapeutic-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
        }

@media (max-width: 600px) {
    .pill-button {
        display: block;
        margin: 10px auto;
        width: 80%;
    }

    .content-card {
        padding: 25px;
    }
}

/*========ourproductcategories===========*/
.product-categories-section {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
}

    .product-categories-section h2 {
        font-size: 32px;
        color: #222;
        margin-bottom: 30px;
    }

.category-boxes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.category-box {
    background-color: #ebebeb;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    max-width: 420px;
    text-align: left;
    transition: transform 0.3s ease;
}

    .category-box:hover {
        transform: translateY(-5px);
    }

    .category-box h3 {
        font-size: 22px;
        color: #007BFF;
        margin-bottom: 15px;
    }

    .category-box p {
        font-size: 15px;
        color: #444;
        line-height: 1.6;
    }

    .category-box a {
        color: #007BFF;
        text-decoration: none;
        font-weight: 500;
    }

        .category-box a:hover {
            text-decoration: underline;
        }

@media (max-width: 768px) {
    .category-boxes {
        flex-direction: column;
        align-items: center;
    }
}

/*==========pharmasection==========*/
.pharma-section {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Segoe UI', sans-serif;
}

    .pharma-section h2 {
        font-size: 28px;
        color: #222;
        margin-bottom: 20px;
        text-align: center;
    }

.pharma-image {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 0 auto 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pharma-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

    .pharma-table th,
    .pharma-table td {
        padding: 12px 16px;
        border: 1px solid #ddd;
        text-align: left;
    }

    .pharma-table th {
        background-color: #007BFF;
        color: white;
        font-weight: 600;
    }

    .pharma-table td {
        background-color: #fdfdfd;
    }

@media (max-width: 600px) {
    .pharma-table th,
    .pharma-table td {
        padding: 10px 8px;
        font-size: 14px;
    }

    .pharma-image {
        max-width: 100%;
    }
}

/*=====Nutraceuticals======*/
.nutra-section {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Segoe UI', sans-serif;
}

    .nutra-section h2 {
        font-size: 28px;
        color: #222;
        margin-bottom: 20px;
        text-align: center;
    }

.nutra-image {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 0 auto 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nutra-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

    .nutra-table th,
    .nutra-table td {
        padding: 12px 16px;
        border: 1px solid #ddd;
        text-align: left;
    }

    .nutra-table th {
        background-color: #28a745;
        color: white;
        font-weight: 600;
    }

    .nutra-table td {
        background-color: #fdfdfd;
    }

@media (max-width: 600px) {
    .nutra-table th,
    .nutra-table td {
        padding: 10px 8px;
        font-size: 14px;
    }

    .nutra-image {
        max-width: 100%;
    }
}