/* interest-evaluation.css */

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: pulse 15s infinite;
}

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

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.why-choose-us h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.reason-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.reason-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .subtitle {
        font-size: 1.2rem;
        font-weight: 500;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

/********/

.why-choose-us {
    background-color: #f4f4f4;
    padding: 40px 20px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}
.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.image-container {
    flex: 1;
    margin-right: 40px;
}
.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.reason-item {
    flex: 1;
    min-width: 300px;
}

.btn {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.btn:hover {
    background-color: #0056b3;
}
@media (max-width: 768px) {
    .reasons-grid {
        flex-direction: column;
    }
    .image-container {
        margin-right: 0;
        margin-bottom: 20px;
    }
}