/* Hero Section */
.hero-section {
    background: url('../images/linkedin-bg.jpg') no-repeat center;
    padding: 6rem 4rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

/* Section Titles */
.section-title {
    color: #0a66c2;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

/* Cards */
.card {
    border: none;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

/* Process Steps */
.process-steps .step {
    position: relative;
    margin-bottom: 1.5rem;
}

/* CTA Buttons */
.btn-primary {
    background-color: #0a66c2;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #004182;
    transform: translateY(-2px);
}

/* List Items */
.list-unstyled li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

/* Problem Section */
.problem-section li::before {
    margin-right: 10px;
    color: #dc3545;
}


.problem-box {
    background: #fff;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.problem-box:hover {
    transform: translateY(-5px);
}

.problem-icon {
    opacity: 0.8;
}

.badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-description {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Solution Section */
.solution-section li::before {
    margin-right: 10px;
    color: #198754;
}

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

.cta-primary .btn {
    animation: pulse 2s infinite;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .card {
        margin-bottom: 1rem;
    }
    
    .btn-primary {
        width: 100%;
    }
}

/* Trust Indicators */
.trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(10, 102, 194, 0.1);
    border-radius: 20px;
    margin: 0.5rem;
    font-size: 0.9rem;
}

/* Footer Adjustments */
.footer-section {
    background-color: #f8f9fa;
    padding: 2rem 0;
    margin-top: 3rem;
}
