@import "../components/navbar.css";
@import "../components/footer.css";
@import "../components/card.css";
@import "../components/aboutUs.css";
@import "../components/backtop.css";


/* ===== Hero Section ===== */
.header-video {
    position: relative;
    min-height: 110vh;
    z-index: 1;
    overflow: hidden;
    display: block;
    transform: translateZ(0);
}

.header-video__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 95%;
    filter: brightness(0.9) saturate(1) hue-rotate(15deg);
    object-fit: cover;
    z-index: -1;
}

.header-video::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #0e172a 85%);
}

.hero-Academy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;   
}

.hero-content {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;          
}

.hero-Academy h1 {
    color: #01c2be;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(36px, 6vw, 60px);
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-Academy span {
    color: white;
}

.hero-Academy p {
    color: white;
    font-size: clamp(15px, 2.5vw, 24px);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 15px 0 25px 0;
    line-height: 1.5;
}

.hero-Academy button {
    background-color: #01c2be;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 15px;
    font-size: clamp(14px, 2vw, 20px);
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.5s ease;
}

.hero-Academy button:hover {
    background-color: #019e9b;
}

.hero-Academy button i {
    background: white;
    color: #01c2be;
    border-radius: 5%;
    padding: 0.5px 4px;
    font-size: 17px;
    margin-left: 10px;
}

/* ===== 991px ===== */
@media (max-width: 991px) {
    .hero-content {
        width: 100%;
    }
}

/* ===== 768px ===== */
@media (max-width: 768px) {
    .header-video {
        min-height: 90vh;
    }

    .hero-content {
        width: 80%;
    }
}

/* ===== 480px ===== */
@media (max-width: 480px) {
    .header-video {
        min-height: 80vh;
    }

    .hero-content {
        width: 90%;
    }

    .hero-Academy h1 {
        font-size: clamp(26px, 8vw, 38px);
    }

    .hero-Academy p {
        font-size: clamp(12px, 4vw, 17px);
    }

    .hero-Academy button {
        font-size: clamp(12px, 4vw, 17px);
        padding: 6px 15px;
    }
}

/* ===== 320px ===== */
@media (max-width: 320px) {
    .header-video {
        min-height: 75vh;
    }

    .hero-content {
        width: 100%;
    }

    .hero-Academy h1 {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .hero-Academy p {
        font-size: 11px;
        margin: 10px 0 15px 0;
    }

    .hero-Academy button {
        font-size: 11px;
        padding: 5px 12px;
    }

    .hero-Academy button i {
        font-size: 12px;
        margin-left: 5px;
    }
}


/* courses */

.courses-btn {
    position: relative;
    display: inline-block;
    z-index: 1;
    padding: clamp(6px, 1vw, 10px) clamp(40px, 8vw, 115px);
    background: linear-gradient(135deg, #1f2937, #374151);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: clamp(13px, 1.5vw, 18px);
    bottom: 37px;
    letter-spacing: 1px;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
    transition: all 0.3s ease;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.courses-btn:hover {
    background: linear-gradient(135deg, #111827, #1f2937);
    transform: translateX(1px);
}

.card-courses h1 {
    font-size: clamp(28px, 4vw, 50px);
    line-height: 1;
    color: white;
    font-weight: bold;
    margin-top: -40px;
    z-index: 999;
    position: relative;
}


/* COURSES CARDS */
.cards {
    width: 100%;
    margin: 1rem auto 0;
    position: relative;
    z-index: 2;
}

.courses-card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.courses-card:has(.card-img:only-child) {
    grid-template-columns: minmax(280px, 500px);
    justify-content: center;
}


.courses-card:has(.card-img:nth-child(2):last-child) {
    /* grid-template-columns: 1fr 1fr;
    
    margin: 0 auto; */
}

.card-img {
    height: 320px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(2, 194, 190, 0.4);
    box-shadow:
        0 4px 12px rgba(0,0,0,0.12),
        0 -4px 12px rgba(0,0,0,0.05),
        4px 0 12px rgba(0,0,0,0.08),
        -4px 0 12px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    position: relative;
}


.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: 0.4s ease;
    display: block;
}

.card-img:hover img {
    transform: scale(1);
}

.card-Khalid {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-Khalid:hover img {
    border-radius: 16px;
    transform: scale(1) translateY(-80px);
    height: 75%;
}

.text-card {
    position: relative;
    width: 100%;
    opacity: 0;
    line-height: 1.3;
    color: white;
    background: linear-gradient(
        to bottom,
        rgba(2, 6, 23, 0),
        rgba(2, 6, 23, 0.85) 15%,
        #020617 100%
    );
    padding: 20px 22px 24px;
    margin-top: -80px;
    transition: 0.3s ease;
}

.card-Khalid:hover .text-card {
    opacity: 1;
    transition: 0.3s ease-in;
}

.text-card h1 {
    font-size: 17px;
    font-weight: bold;
    color: white;
    margin-bottom: 6px;
}

.text-card span {
    font-size: 15px;
    opacity: 0.9;
}

.text-card p {
    font-size: 14px;
    margin-top: 6px;
    opacity: 0.85;
}

.text-card .fa-check {
    background: #1da1f2;
    color: #fff;
    font-size: 11px;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.3rem;
}

.text-card .fa-star {
    color: #f5c518;
    font-size: 15px;
}

.price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.price span {
    font-size: 26px;
    font-weight: bold;
}

.price button {
    background-color: #01c2be;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 15px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.price button i {
    background: white;
    color: #01c2be;
    border-radius: 4px;
    padding: 2px 4px;
    font-size: 11px;
    margin-left: 8px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
      
    .courses-card {
        grid-template-columns: 1fr 1fr;
    }

    .card-img {
        height: 270px;
    }
}

@media (max-width: 768px) {
    .cards{
    width: 100%;
    margin: 1rem auto 0;
    margin-top: 4rem !important;
    position: relative;
    z-index: 2;
}
.card-Khalid:hover img {
    border-radius: 16px;
    transform: scale(1) translateY(-80px);
    height: 68%;
}
}
@media (max-width: 600px) {
    .cards {
        width: 100%;
    }

    .courses-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card-img,
    .card-img.card-featured {
        height: 280px;
        grid-column: auto;
    }
    .card-Khalid:hover img {
    border-radius: 16px;
    transform: scale(1) translateY(-80px);
    height: 72%;
}

}

@media (max-width: 400px) {
    .cards {
        width: 100%;
        padding: 0 8px;
    }

    .card-img,
    .card-img.card-featured {
        height: 290px;
    }

    .price span {
        font-size: 20px;
    }

    .price button {
        padding: 6px 10px;
        font-size: 12px;
    }
    .card-Khalid:hover img {
    border-radius: 16px;
    transform: scale(1) translateY(-80px);
    height: 75%;
}
}

@media (max-width: 300px) {
    .card-img,
    .card-img.card-featured {
        height: 200px;
    }

    .text-card h1 {
        font-size: 14px;
    }

    .price span {
        font-size: 16px;
    }
}



/* FEEDBACKS */
.section-FeedBack {
    margin-top: 4.5rem !important;
}
.feed-btn {
    position: relative;
    display: inline-block;
   padding: clamp(6px, 1vw, 10px) clamp(40px, 8vw, 115px);
    background: linear-gradient(135deg, #1f2937, #374151);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
      font-size: clamp(13px, 1.5vw, 18px);
    left: -0rem;
    transform: translateX(0%);
    letter-spacing: 1px;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
    transition: all 0.3s ease;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.feed-btn:hover {
    background: linear-gradient(135deg, #111827, #1f2937);
    transform: translateX(3px);
}

/* FeedBack Section */

.FeedBack-info h1 {
    color: white;
    text-align: center;
    font-size: 70px;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    top: 1cm;
    z-index: 0;
    pointer-events: none;
    text-align: center;
    -webkit-mask-image: linear-gradient(
        to bottom,
        black 50%,
        black 50%,
        transparent 76%
    );
}

.FeedBack {
    font-size: 19px;
}

.FeedBack-Location {
    position: relative;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.FeedBack-Location img {
    width: 100%;
    display: block;
}

.container-FeedBack {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* marker */
.maps {
    position: absolute;
    pointer-events: auto;
    cursor: pointer;
}

.maps .marker-img {
    width: 100px;
    display: block;
}

.feedback-card {
    width: 245px;
    background: #fff;
    border-radius: 14px;
    padding: 11px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 130%;
    left: -90%;
    transform: translateX(20px) translateY(-50%);
    opacity: 0;
    transition: all 0.4s ease;
}

.maps:hover .feedback-card {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
}
.feedback-card.go {
    opacity: 1;
}

.feedback-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}
.feedback-avatar-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.feedback-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.feedback-user-name {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.feedback-user-role {
    font-size: 12px;
    color: #888;
}

.feedback-card-body {
    margin: 12px 0;
}

.feedback-text {
    font-size: 13.5px;
    line-height: 1.4;
    color: #444;
}

.feedback-stars {
    color: #f5b400;
    font-size: 13px;
}

.maps.m1 {
    top: 10%;
    left: 20%;
}
.maps.m2 {
    top: 2%;
    left: 50%;
}
.maps.m3 {
    top: 10%;
    left: 80%;
}
.maps.m4 {
    top: 60%;
    left: 53%;
}
.maps.m5 {
    top: 65%;
    left: 25%;
}
.maps.m6 {
    top: 60%;
    left: 80%;
}

@media (max-width: 992px) {
    /* .feed-btn {
        left: 10%;
        padding: 8px 40px;
        font-size: 15px;
    } */

    .FeedBack-info h1 {
        font-size: 55px;
        top: 0.5cm;
    }

    .feedback-card {
        width: 180px;
        left: -70%;
    }
}

@media (max-width: 768px) {
    /* .feed-btn {
        padding: 8px 40px;
        font-size: 15px;
        left: 11%;
    } */

    .FeedBack-info h1 {
        font-size: 40px;
        top: 0.3cm;
    }

    .FeedBack-Location {
        width: 100%;
    }

    .maps .marker-img {
        width: 60px;
    }

    .feedback-card {
        width: 150px;
        left: -50%;
        top: 120%;
    }
}
@media (max-width: 600px) {
    /* .feed-btn {
        padding: 6px 20px;
        font-size: 13px;
        left: 12%;
    } */

    .FeedBack-info h1 {
        font-size: 40px;
        top: 0.3cm;
    }

    .FeedBack-Location {
        width: 100%;
    }

    .marker-img {
        width: 40px !important;
    }
    .feedback-avatar-wrapper {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
    }

    .feedback-card {
        width: 140px;
        left: -90%;
        top: 70%;
        padding: 7px 7px;
    }

    .feedback-user-name {
        margin: 0;
        font-size: 13px;
        font-weight: 600;
    }

    .feedback-user-role {
        font-size: 11px;
    }

    .feedback-card-body {
        margin: 5px 0;
    }

    .feedback-text {
        font-size: 12px;
        line-height: 1.2;
    }

    .feedback-stars {
        font-size: 10px;
    }
    .feedback-card-header {
        gap: 11px;
    }
}

@media (max-width: 480px) {
    .section-FeedBack {
        position: relative;
        top: -2rem;
    }
    /* .feed-btn {
        padding: 4px 20px;
        font-size: 12px;
        left: 15.3%;
    } */

    .FeedBack-info h1 {
        font-size: 20px;
        top: 0.3cm;
    }

    .FeedBack-Location {
        width: 95%;
    }

    .marker-img {
        width: 40px !important;
    }
    .feedback-avatar-wrapper {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
    }

    .feedback-card {
        width: 140px;
        left: -100%;
        top: 70%;
        padding: 4px 4px;
    }

    .feedback-user-name {
        margin: 0;
        font-size: 10px;
        font-weight: 600;
    }

    .feedback-user-role {
        font-size: 10px;
    }

    .feedback-card-body {
        margin: 0px 0;
    }

    .feedback-text {
        font-size: 11px;
        line-height: 1.2;
    }

    .feedback-stars {
        font-size: 9px;
    }
    .feedback-card-header {
        gap: 11px;
    }
}

@media (max-width: 400px) {
    .section-FeedBack {
        position: relative;
        top: -2rem;
    }
    /* .feed-btn {
        padding: 3px 15px;
        font-size: 11px;
        left: 15%;
    } */

    .FeedBack-info h1 {
        font-size: 19px;
        top: 0.3cm;
    }

    .FeedBack-Location {
        width: 95%;
    }

    .marker-img {
        width: 40px !important;
    }
    .feedback-avatar-wrapper {
        width: 25px;
        height: 25px;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
    }

    .feedback-card {
        width: 120px;
        left: -100%;
        top: 70%;
        padding: 4px 4px;
    }

    .feedback-user-name {
        margin: 0;
        font-size: 8px;
        font-weight: 600;
    }

    .feedback-user-role {
        font-size: 8px;
    }

    .feedback-card-body {
        margin: 0px 0;
    }

    .feedback-text {
        font-size: 9px;
        line-height: 1.2;
    }

    .feedback-stars {
        font-size: 7px;
    }
    .feedback-card-header {
        gap: 11px;
    }
}
@media (max-width: 350px) {
    .section-FeedBack {
        position: relative;
        top: -2rem;
    }
    /* .feed-btn {
        padding: 3px 10px;
        font-size: 9px;
        left: 13.5%;
    } */

    .FeedBack-info h1 {
        font-size: 16px;
        top: 0.3cm;
    }

    .FeedBack-Location {
        width: 90%;
    }

    .marker-img {
        width: 40px !important;
    }
    .feedback-avatar-wrapper {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
    }

    .feedback-card {
        width: 120px;
        left: -100%;
        top: 70%;
        padding: 3.5px 3.5px;
    }

    .feedback-user-name {
        margin: 0;
        font-size: 6px;
        font-weight: 600;
    }

    .feedback-user-role {
        font-size: 6px;
    }

    .feedback-card-body {
        margin: 0px 0;
    }

    .feedback-text {
        font-size: 6px;
        line-height: 1.1;
    }

    .feedback-stars {
        font-size: 5px;
    }
    .feedback-card-header {
        gap: 10px;
    }
}

/* end FEEDBACK */

/* ══ CONTAINER ══ */

.container-Faqs {
    position: relative;
    width: 100%;
}
/* .fq{
    width: 100% !important; 
} */

.roof-faqs {
    width: 100%;
    height: auto;
    display: block;
}

.quran-faqs {
    position: absolute;
    right: 0%;
    bottom: 0%;
    width: 100%;
    max-width: 100%;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.faq {
    position: absolute;
    top: 37%;
    max-width: 500px;
    color: #fff;
    z-index: 3;
}
.maps:hover ~ .m2 .feedback-card.go,
.container-FeedBack:hover .feedback-card.go {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.container-FeedBack:not(:hover) .feedback-card.go {
    opacity: 1;
}
/* End of FEEDBACK */
/* FAQ Buttons */
.faq-btn {
    position: relative;
    display: inline-block;
     position: absolute;
    top: 30%;
    max-width: 500px;
    z-index: 1;
    padding: clamp(6px, 1vw, 10px) clamp(35px, 7.5vw, 100px);
    background: linear-gradient(135deg, #1f2937, #374151);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: clamp(12px, 1.4vw, 17px);
    letter-spacing: 1px;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
    transition: all 0.3s ease;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.faq-btn:hover {
    background: linear-gradient(135deg, #111827, #1f2937);
    transform: translateX(3px);
}

/* FAQ Title */

.faq-title {
    font-size: clamp(32px, 5vw, 60px);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    text-align: left;
}

.faq-title span {
    color: #21d4c4;
}

.faq-item {
    margin-bottom: clamp(14px, 2vw, 25px);
}

.faq-question {
    width: clamp(280px, 90vw, 700px);
    background: #fff;
    color: #0f172a;
    border: none;
    padding: clamp(2px, 0.5vw, 3px) clamp(8px, 1vw, 11px);
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question .icon {
    width: clamp(28px, 3vw, 37px);
    height: clamp(28px, 3vw, 37px);
    background: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    padding: 0 clamp(10px, 1.5vw, 16px);
}

.faq-item.active .faq-answer {
    max-height: clamp(60px, 10vw, 80px);
    margin-top: clamp(10px, 1.5vw, 15px);
}

.faq-answer p {
    color: white;
    font-size: clamp(11px, 1.2vw, 13px);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    line-height: 1.5;
}
@media (max-width: 991px) {
    .faq-question{
         width: 500px;
    }
   
}
@media (max-width: 915px) {
    .faq {
        max-width: 800px;
        color: #fff;
        z-index: 3;
    }
    .faq-title {
        font-size: 40px;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 700;
        line-height: 0.9;
        margin-bottom: 0.2rem;
        text-align: left;
    }
    .faq-question {
        width: 500px;
        padding: 2px 9px;
        font-size: 13px;
    }
    .faq-item.active .faq-answer {
        max-height: 40px;
        margin-top: 10px;
    }

    .faq-answer p {
        color: white;
        font-size: 11px;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 600;
        line-height: 1.2;
    }
    .faq-question .icon {
        width: 25px;
        height: 25px;
        background: #0f172a;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: 0.3s;
    }

    .faq-item.active .icon {
        transform: rotate(45deg);
    }
}

@media (max-width: 815px) {
    .faq {
        max-width: 700px;
        top: 15rem;
    }
    .faq-title {
        font-size: 35px;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 700;
        line-height: 0.9;
        margin-bottom: 0.4rem;
        text-align: left;
    }
    .faq-question {
        width: 400px;
        padding: 1px 7px;
        font-size: 12px;
    }

    .faq-btn:hover {
        background: linear-gradient(135deg, #111827, #1f2937);
        transform: translateX(0.5px);
    }
    .faq-item.active .faq-answer {
        max-height: 33px;
        margin-top: 5px;
    }

    .faq-answer p {
        font-size: 10px;
        line-height: 1.2;
    }
    .faq-question .icon {
        width: 25px;
        height: 25px;
    }

    .faq-item.active .icon {
        transform: rotate(45deg);
    }
}

@media (max-width: 670px) {
    .faq {
       
        max-width: 600px;

        top: 13rem;
    }
    .faq-title {
        font-size: 17px;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 700;
        line-height: 0.9;
        margin-bottom: 0.2rem;
        text-align: left;
    }
    .faq-question {
        width: 350px;
        padding: 0px 4px;
        font-size: 9px;
    }
    .faq-item {
        margin-bottom: 15px;
    }
    }
    .faq-item.active .faq-answer {
        max-height: 34px;
        margin-top: 5px;
    }
    .faq-answer {
        padding: 0 5px;
    }
    .faq-answer p {
        font-size: 10px;
        line-height: 1.2;
    }
    .faq-question .icon {
        width: 18px;
        height: 18px;
    }

    .faq-item.active .icon {
        transform: rotate(45deg);
    }

@media (max-width: 570px) {
    .faq {
        
        max-width: 600px;

        top: 10rem;
    }
    .faq-title {
        font-size: 15px;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 700;
        line-height: 0.9;
        margin-bottom: 0.2rem;
        text-align: left;
    }
    .faq-question {
        width: 300px;
        padding: 1px 4px;
        font-size: 9px;
    }

    .faq-btn:hover {
        background: linear-gradient(135deg, #111827, #1f2937);
        transform: translateX(0.5px);
    }
    .faq-item.active .faq-answer {
        max-height: 30px;
        margin-top: 4px;
    }
    .faq-answer {
        padding: 0 5px;
    }
    .faq-answer p {
        font-size: 9px;
        line-height: 1.2;
    }
    .faq-question .icon {
        width: 13px;
        height: 13px;
    }

    .faq-item.active .icon {
        transform: rotate(45deg);
    }
}

@media (max-width: 500px) {
    .faq {
        max-width: 500px;

        top: 9.5rem;
    }
    .faq-title {
        font-size: 15px;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 0.2rem;
        text-align: left;
    }
    .faq-item {
        margin-bottom: 10px;
    }
    .faq-question {
        width: 250px;
        padding: 1px 3px;
        font-size: 9px;
        line-height: 0;
    }

    .faq-btn:hover {
        background: linear-gradient(135deg, #111827, #1f2937);
        transform: translateX(0.5px);
    }
    .faq-item.active .faq-answer {
        max-height: 25px;
        margin-top: 4px;
    }
    .faq-answer {
        padding: 0 6px;
    }
    .faq-answer p {
        font-size: 7.5px;
        line-height: 1.2;
    }
    .faq-question .icon {
        width: 11px;
        height: 11px;
    }

    .faq-item.active .icon {
        transform: rotate(45deg);
    }
}

@media (max-width: 424px) {
    .faq {
        max-width: 500px;

        top: 8.5rem;
    }
    .faq-title {
        font-size: 14px;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 700;
        line-height: 1;
        margin-bottom: 0.2rem;
        text-align: left;
    }
    .faq-question {
        width: 220px;
        padding: 1px 3px;
        font-size: 7px;
        line-height: 0;
    }

    .faq-btn:hover {
        background: linear-gradient(135deg, #111827, #1f2937);
        transform: translateX(0.5px);
    }
    .faq-item.active .faq-answer {
        max-height: 23px;
        margin-top: 4px;
    }
    .faq-item {
        margin-bottom: 10px;
    }
    .faq-answer {
        padding: 0 0px;
    }

    .faq-answer p {
        font-size: 7px;
        line-height: 1.2;
    }
    .faq-question .icon {
        width: 9px;
        height: 9px;
    }

    .faq-item.active .icon {
        transform: rotate(45deg);
    }
}

@media (max-width: 390px) {
    .faq {
        max-width: 500px;

        top: 8rem;
    }
    .faq-title {
        font-size: 14px;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 700;
        line-height: 1;
        margin-bottom: 0.1rem;
        text-align: left;
    }
    .faq-question {
        width: 190px;
        padding: 1px 3px;
        font-size: 6.7px;
        line-height: 0;
    }
    .faq-btn:hover {
        background: linear-gradient(135deg, #111827, #1f2937);
        transform: translateX(0.5px);
    }
    .faq-item.active .faq-answer {
        max-height: 23px;
        margin-top: 4px;
    }
    .faq-item {
        margin-bottom: 10px;
    }
    .faq-answer {
        padding: 0 0px;
    }

    .faq-answer p {
        font-size: 7px;
        line-height: 1.2;
    }
    .faq-question .icon {
        width: 8px;
        height: 8px;
    }

    .faq-item.active .icon {
        transform: rotate(45deg);
    }
}

@media (max-width: 350px) {
    .faq {
        max-width: 500px;

        top: 7.5rem;
    }
    .faq-title {
        font-size: 13px;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 700;
        line-height: 1;
        margin-bottom: 0.1rem;
        text-align: left;
    }
    .faq-question {
        width: 180px;
        padding: 1px 3px;
        font-size: 6px;
        line-height: 0;
    }
    .faq-item.active .faq-answer {
        max-height: 20px;
        margin-top: 3px;
    }
    .faq-item {
        margin-bottom: 10px;
    }
    .faq-answer {
        padding: 0 0px;
    }

    .faq-answer p {
        font-size: 5.9px;
        line-height: 1.2;
    }
    .faq-question .icon {
        width: 8px;
        height: 8px;
    }

    .faq-item.active .icon {
        transform: rotate(45deg);
    }
}


/* Responsive */
@media (max-width: 1024px) {
    .maps.m1 {
        top: 32%;
        left: 18%;
    }
    .maps.m2 {
        top: 42%;
        left: 38%;
    }
    .maps.m3 {
        top: 28%;
        left: 58%;
    }
    .maps.m4 {
        top: 52%;
        left: 68%;
    }
    .maps.m5 {
        top: 57%;
        left: 28%;
    }
    .maps.m6 {
        top: 38%;
        left: 78%;
    }

    .maps .marker-img {
        width: 35px;
    }
    .maps .card {
        width: 240px;
        top: 50%;
        left: 45px;
    }
    .person-img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .maps.m1 {
        top: 30%;
        left: 15%;
    }
    .maps.m2 {
        top: 40%;
        left: 35%;
    }
    .maps.m3 {
        top: 25%;
        left: 55%;
    }
    .maps.m4 {
        top: 50%;
        left: 65%;
    }
    .maps.m5 {
        top: 55%;
        left: 25%;
    }
    .maps.m6 {
        top: 35%;
        left: 75%;
    }

    .maps .marker-img {
        width: 30px;
    }
    .maps .card {
        width: 200px;
        top: 50%;
        left: 40px;
        font-size: 14px;
    }
    .person-img {
        width: 40px;
        height: 40px;
    }
}
