/* Contact Info Styles */
.contact-info {
    background: #AB4459;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #F29F58;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details p {
    font-size: 1.1rem;
    margin: 10px 0;
}

.social-links h3 {
    color: #F29F58;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-icon {
    color: #fff;
    font-size: 24px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    color: #F29F58;
    transform: scale(1.2);
}

/* Update footer styles */
footer {
    background: #1B1833;
    color: #fff;
    text-align: center;
    padding: 15px 0;
}

/* Notification Panel Styles */
.notification-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    background: #fff;
    border: 2px solid #1B1833;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

.notification-container.open {
    display: block;
}

.notification-header {
    background: #1B1833;
    color: #fff;
    padding: 10px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #fff;
}

.close-notification {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.notification-list {
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
}

.notification-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    animation: slideIn 0.3s ease;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.notification-message {
    color: #666;
    font-size: 14px;
}

.notification-time {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

/* Notification types */
.diet-notification .notification-icon {
    color: #4CAF50;
}

.medicine-notification .notification-icon {
    color: #2196F3;
}

.community-notification .notification-icon {
    color: #FF9800;
}

.exercise-notification .notification-icon {
    color: #9C27B0;
}

.notification-toggle {
    position: fixed;
    bottom: 20px;
    right: 90px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #1B1833;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}

.notification-toggle:hover {
    background: #441752;
    transform: scale(1.1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-info {
        padding: 30px 15px;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .contact-details p {
        font-size: 1rem;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icon {
        font-size: 20px;
    }

    .notification-container {
        width: 100%;
        bottom: 80px;
        right: 0;
        border-radius: 10px 10px 0 0;
    }

    .notification-toggle {
        right: 90px;
    }
}

/* Additional Styles for New Sections and Animations */

/* Hero Section Enhancements */
.hero-content h1 {
    animation-delay: 0.5s;
}
.hero-content p {
    animation-delay: 1s;
}
.hero-content .btn {
    animation-delay: 1.5s;
}

/* Stats Section */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
    text-align: center;
}
.stat-item {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-item i {
    font-size: 2.5rem;
    color: #ff69b4;
    margin-bottom: 15px;
    display: block;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    display: block;
    margin-bottom: 5px;
}
.stat-item p {
    font-size: 1rem;
    color: #666;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}
.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card i {
    font-size: 3rem;
    color: #ff69b4;
    margin-bottom: 20px;
}
.feature-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}
.feature-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}
.feature-link {
    color: #ff69b4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.feature-link:hover {
    color: #c77dff;
}

/* Community Highlights / Testimonials */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}
.testimonial-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
    border: 3px solid #ff69b4;
}
.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}
.testimonial-card h4 {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

/* CTA Section */
#cta {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
}
.cta-overlay {
    position: relative;
    z-index: 1;
}
.cta-buttons {
    margin-top: 30px;
}
.cta-buttons .btn {
    margin: 10px;
}

/* Hover.css Integration */
/* Add specific Hover.css classes to elements in HTML */
/* Example: hvr-grow, hvr-float-shadow, hvr-pulse, hvr-underline-from-center */

/* GSAP Animations - Placeholder for JS */
/* Define initial states if needed */

/* General Animation Improvements */
[data-aos] {
    transition-property: transform, opacity;
}

/* Adjust chat button position */
.chat-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff69b4, #c77dff);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.chat-container {
    bottom: 100px; /* Position above toggle button */
}

/* Remove redundant styles defined inline */
body {
    font-family: 'Poppins', sans-serif; /* Already defined inline */
} 