/* Custom Styles for resumes.in */

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Custom Colors */
.bg-primary {
    background-color: #4361ee !important;
}

.text-primary {
    color: #4361ee !important;
}

.btn-primary {
    background-color: #4361ee;
    border-color: #4361ee;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #3a56d4;
    border-color: #3a56d4;
}

.btn-outline-primary {
    color: #4361ee;
    border-color: #4361ee;
}

.btn-outline-primary:hover {
    background-color: #4361ee;
    border-color: #4361ee;
}

/* Header & Navigation */
.navbar-brand {
    font-weight: 700;
    color: #4361ee !important;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: #4361ee !important;
}

/* Hero Section */
header .display-4 {
    font-weight: 700;
    line-height: 1.2;
}

/* Feature Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Testimonials */
.fa-quote-left {
    opacity: 0.2;
}

/* Pricing */
.card.border-primary {
    border-width: 2px !important;
}

/* CTA Section */
.bg-primary.text-white {
    background: linear-gradient(135deg, #4361ee, #3a56d4) !important;
}

/* Footer */
footer .fab {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

footer .fab:hover {
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in;
}

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

.slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
