/* Custom Styles */

/* General */
body {
    color: #2c3e50;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero h1 {
    color: #1a73e8;
}

/* Feature Cards */
.feature-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

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

/* Testimonial Card */
.testimonial-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Buttons */
.btn-primary {
    background-color: #1a73e8;
    border-color: #1a73e8;
    padding: 12px 24px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #1557b0;
    border-color: #1557b0;
}

.btn-outline-primary {
    color: #1a73e8;
    border-color: #1a73e8;
}

.btn-outline-primary:hover {
    background-color: #1a73e8;
    border-color: #1a73e8;
}

/* Form Elements */
.form-control {
    border: 2px solid #e9ecef;
    padding: 12px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #1a73e8;
    box-shadow: none;
}

/* Social Links */
.social-links a {
    color: #6c757d;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #1a73e8;
}

/* Newsletter Form */
.newsletter-form .input-group {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1,
.hero h2,
.hero .btn {
    animation: fadeInUp 0.6s ease backwards;
}

.hero h2 {
    animation-delay: 0.2s;
}

.hero .btn {
    animation-delay: 0.4s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        text-align: center;
    }
    
    .hero img {
        margin-top: 2rem;
    }
    
    .feature-card {
        margin-bottom: 1rem;
    }
} 