/* Home Page Styles */

/* Problem Section */
.problem-card {
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.problem-icon i {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Solution Section */
.feature-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
}

.solution-feature {
    transition: transform 0.2s ease;
}

.solution-feature:hover {
    transform: translateX(10px);
}

/* FAQ Section */
.faq-section .btn-link {
    text-decoration: none;
    font-size: 1.1rem;
}

.faq-section .btn-link:hover {
    color: var(--primary-color) !important;
}

.faq-section .card {
    transition: box-shadow 0.2s ease;
}

.faq-section .card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1) !important;
}

.faq-section .collapse.show {
    animation: slideDown 0.3s ease-out;
}

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

/* Testimonial Section */
.testimonial-card {
    transition: transform 0.3s ease;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.testimonial-stars i {
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-darker) 100%);
}

.cta-section .btn {
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* Footer */
footer a {
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
    text-decoration: none;
}

footer .footer-social-links a {
    font-size: 24px;
    transition: transform 0.2s ease;
}

footer .footer-social-links a:hover {
    transform: scale(1.2);
}

footer ul li {
    margin-bottom: 8px;
}

/* Personalization Section */
.personalization-features .feature-item {
    transition: transform 0.2s ease;
}

.personalization-features .feature-item:hover {
    transform: translateX(5px);
}

.feature-check i {
    animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Platform Gallery */
.platform-gallery {
    position: relative;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 4 / 3;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 48px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Modal Styling */
#imageModal .modal-content {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

#imageModal .modal-header {
    background: var(--primary-color);
    color: white;
}

#imageModal .modal-header .close {
    color: white;
    opacity: 1;
}

#imageModal .modal-body {
    background: #000;
}

/* General Animations */
section {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    footer .col-md-4,
    footer .col-md-2 {
        text-align: center;
    }
    
    .gallery-item {
        margin-bottom: 15px;
    }
    
    .gallery-overlay i {
        font-size: 36px;
    }
    
    .personalization-features .feature-item:hover {
        transform: none;
    }
}

/* Badge Styles */
.badge-lg {
    font-weight: 600;
    letter-spacing: 1px;
}

/* Card Hover Effects */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

