/* About hero */
.citizen-hero .hero-text p {
    margin-top: 80px;
}

/* About us more */
.about-us {
    margin-top: 120px;
}
.about-content {
    margin-bottom: 50px;
    display: flex;
    gap: 30px;
}
.about-text {
    width: 40%;
}
.about-text .section-title {
    margin-bottom: 50px;
}
.about-parag {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: clamp(16px, 2vw, 20px);
}
.about-cards {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.about-cards .card {
    height: auto;
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 70px),
        calc(100% - 100px) 100%,
        0 100% 
    );
}
.about-cards .card p:last-of-type {
    padding-top: 16px;
}
.about-gallery {
    width: 100%;
    display: flex;
    gap: 30px;
}
.about-img {
    width: 50%;
}
.about-img img {
    width: 100%;
}

/* Why choose us */
.why-us-section {
    position: relative;
    color: var(--white);
    padding-top: 100px;
    margin-top: 0;
}
.opportunity-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 162px;
    margin-bottom: 40px;
}
.help-text .section-title {
    width: 50%;
}
.help-text p {
    width: 50%;
    font-size: clamp(16px, 2vw, 20px);
}
.whySwiper {
    margin-bottom: 240px;
}
.navigation-arrows {
    position: absolute;
    display: flex;
    gap: 40px;
}
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    position: relative;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    content: "";
}
.success-stories .swiper-button-next {
    right: 0;
}

/* Team */
.team-section {
    margin-top: 70px;
}
.team-wrapper {
    padding-bottom: 80px;
    border-bottom: 2px solid var(--gold);
}
.team-section .help-text {
    margin-bottom: 70px;
}
.team {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.member-card {
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    flex-direction: column;
}
.member-img {
    width: 80%;
    clip-path: polygon(
    0 0, 
    100% 0, 
    100% calc(100% - 70px),
    calc(100% - 70px) 100%,
    0 100% 
  );
}
.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.member-card .card-title {
    margin: 24px 0 16px;
}
.member-card p {
    font-size: clamp(16px, 2vw, 20px);
}

/* Swiper Pagination */
.swiper-pagination-bullets,
.swiper-pagination-horizontal {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.swiper-pagination-bullet {
    width: 100%;
    border-radius: 10px;
    height: 2px;
    background-color: rgba(218, 218, 218, 1);
    opacity: 1;
    transition: 0.3s ease;
}
.swiper-pagination-bullet-active {
    background: var(--gold);
}

/* Responsive */
@media(max-width: 1260px) {
    .about-us {
        margin-top: 80px;
    }
}
@media(max-width: 993px) {
    .team {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Why Choose us */
    .why-card {
        min-height: 450px;
    }
}
@media(max-width: 768px) {
    /* About Section */
    .about-content {
        flex-direction: column;
    }
    .about-text,
    .about-cards,
    .help-text .section-title,
    .help-text p {
        width: 100%;
    }
    .about-content {
        margin-bottom: 40px;
    }
    .about-text .section-title {
        margin-bottom: 24px;
    }

    /* Why choose us */
    .why-us-section {
        margin-top: 80px;
    }
    .whySwiper {
        margin-bottom: 80px;
    }
    .why-card .circle svg {
        height: 30px;
    }

    /* Opportunity */
    .opportunity-top {
        gap: 25px !important;
    }

    /* Consultation */
    .consultation-section {
        padding-top: 170px !important;
    }
}
@media(max-width: 600px) {
    /* About Section */
    .why-card {
        min-height: 380px;
    }
    .map-bg {
        height: 800px !important;	
    }

    /* Consultation */
    .consultation-section {
        padding-top: 140px !important;
    }
}
@media(max-width: 500px) {
    /* About Section */
    .about-gallery {
        flex-direction: column;
    }
    .about-img {
        width: 100%;
    }

    /* Team */
    .team {
        grid-template-columns: repeat(1, 1fr);
    }

    /* Consultation */
    .consultation-section {
        padding-top: 100px !important;
    }
}
@media(max-width: 380px) {
    .map-bg {
        height: 900px !important;	
    }

    /* Consultation */
    .consultation-section {
        padding-top: 120px !important;
    }
}