/* 
 * Landing Page Custom Styles
 * Built on top of Zoogler template
 */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(96, 93, 175, 0.8) 0%, rgba(51, 205, 255, 0.8) 100%), url('../images/small/img-7.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #fff;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

/* Stats Section */
.stats-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin: 40px 0;
}

.stat-card {
    text-align: center;
    padding: 30px 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #605daf;
}

.stat-label {
    font-size: 1rem;
    color: #8c9ea9;
}

/* Testimonial Section */
.testimonial-card {
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-card:before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: 10px;
    left: 20px;
    color: rgba(96, 93, 175, 0.1);
    font-family: Georgia, serif;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author-info {
    line-height: 1.2;
}

.testimonial-author-info h5 {
    margin-bottom: 5px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #605daf 0%, #33cdff 100%);
    color: #fff;
    padding: 80px 0;
    margin: 40px 0 0 0;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* Custom Footer */
.footer-landing {
    background-color: #292a2f;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-landing h5 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-landing ul {
    list-style: none;
    padding-left: 0;
}

.footer-landing ul li {
    margin-bottom: 10px;
}

.footer-landing ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-landing ul li a:hover {
    color: #fff;
    text-decoration: none;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #605daf;
    color: #fff;
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
