.hero-slider { background: #800020; color: #ffffff; }
.slide img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ਮੁੱਖ ਵੱਡੀ ਲਾਈਨ ਲਈ ਸਟਾਈਲ (Heading) */
.slide-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: none; /* ਧੁੰਦਲਾਪਨ ਹਟਾਉਣ ਲਈ ਸ਼ੈਡੋ ਬੰਦ ਕੀਤੀ */
}

/* ਹੇਠਾਂ ਵਾਲੀ ਛੋਟੀ ਲਾਈਨ ਲਈ ਸਟਾਈਲ (Subtext) */
.hero-subtext {
    font-size: 1.4rem;
    color: #DAA520; /* ਗੂੜ੍ਹਾ ਗ੍ਰੇ ਰੰਗ, ਜੋ ਪੜ੍ਹਨ ਵਿੱਚ ਬਹੁਤ ਆਸਾਨ ਹੁੰਦਾ ਹੈ */
    font-weight: 500;
    text-shadow: none; /* ਸ਼ੈਡੋ ਹਟਾਈ */
}

/* --- About Us Section --- */
.about-section {
    display: flex;
    background-color: #f7f7f7;
    align-items: stretch;
    justify-content: space-between;
    padding: 60px 20px;
    gap: 20px;
}

.about-image, .about-text {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text p {
    text-align: justify;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* --- Agent Network Section --- */
.agent-network-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.agent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.agent-image-block, .agent-content-block {
    flex: 1;
    min-width: 300px;
}

.agent-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.agent-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.agent-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}


.how-it-works, .why-choose-us {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.how-it-works h2, .why-choose-us h2 {
    color: #800020;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.steps-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.step-icon {
    font-size: 40px;
    color: #DAA520;
    margin-bottom: 20px;
}

.features-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.feature-box i {
    font-size: 40px;
    color: #800020;
    margin-bottom: 20px;
}
/* ==========================================================================
   Responsive Design (Mobile / Tablet Layouts)
   ========================================================================== */
@media (max-width: 768px) {
 
    .about-section {
        flex-direction: column-reverse;
    }

    .agent-container {
        flex-direction: column;
        gap: 20px;
    }

    .agent-text {
        text-align: justify;
    }
}