* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(135deg, #f0fff4 0%, #e6ffe9 100%);
    color: #333;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2e7d32;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2e7d32;
}

.main-container {
    padding-top: 100px;
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(46, 125, 50, 0.15);
    transition: transform 0.5s;
}

.hero-section:hover {
    transform: translateY(-10px);
}

.product-image {
    flex: 1;
    padding: 30px;
    position: relative;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s;
}

.product-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.product-image::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(30px);
}

.product-info {
    flex: 1;
    padding: 40px;
}

.product-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2e7d32;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
}

.product-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg, #2e7d32, transparent);
}

.product-tagline {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #444;
}

.benefits-section {
    margin-bottom: 30px;
}

.benefits-title {
    font-size: 1.5rem;
    color: #28a745;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.benefits-title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #28a745, transparent);
}

.benefits-list {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.benefits-list li {
    background: linear-gradient(135deg, #e7ffe7, #d1ffd1);
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.benefits-list li::before {
    content: "✓";
    margin-right: 10px;
    color: #28a745;
    font-weight: bold;
}

.benefits-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dosage-section, .price-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.5rem;
    color: #2e7d32;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    color: #28a745;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.price::before {
    content: "₹";
    font-size: 1.5rem;
    position: relative;
    top: -15px;
    left: 0;
}


.features-section {
    padding: 100px 0;
    margin: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-large {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    height: 120px;
    background: linear-gradient(45deg, #2e7d32, #4caf50);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: white;
}

.feature-content {
    padding: 30px;
}

.feature-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

.testimonial-section {
    margin: 80px 0;
    padding: 100px 0;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

.testimonials {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px;
    scrollbar-width: none;
}

.testimonials::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 300px;
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
    flex: 1;
}

.testimonial-text {
    font-style: italic;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: bold;
    color: #2e7d32;
}

.cta-section {
    background: linear-gradient(45deg, #2e7d32, #4caf50);
    color: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    margin: 80px 0;
    box-shadow: 0 20px 50px rgba(46, 125, 50, 0.3);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-white {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: #2e7d32;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.footer {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 60px 0;
    margin-top: 80px;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 20px;
}

.footer-text {
    color: #666;
    font-size: 0.9rem;
}

/* Floating capsules animation */
.floating-capsule {
    position: absolute;
    width: 30px;
    height: 60px;
    border-radius: 30px;
    background: linear-gradient(45deg, #4caf50, #8bc34a);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
    z-index: -1;
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 5%;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .product-title {
        font-size: 2.5rem;
    }
    
    .main-container {
        width: 90%;
        padding-top: 80px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
}