/* Variables */

:root{
    --primary-bgcolor: #ebf9ff;
    --primary-bgcolor-2: #e5e5e5 ;
    --secondary-bgcolor: #272a2b;
    --secondary-bgcolor-2: #181a1b ;
    --primary-color: #eb7846;
    --primary-color-2: #fff;
    --secondary-color: #000;
    --secondary-color-2: #c95828;
    --secondary-color-3: #FF6A00;
    --secondary-color-4: #ff8a24;
    --detailed-color: #90A4AE;
    --detailed-color-2: #0065d1;
    --detailed-color-3: #2d85e4;
}


/* Main */

.home_main{
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    color: var(--detailed-color-2);
}

.top_home_section{
    position: relative;
    min-height: 600px;
    overflow: hidden;
    border-radius: 1rem;
}

.base_home_image_container{
    position: relative;
    top: 0;
    z-index: 10;
    
    width: 100%;
    height: 40rem;
    margin-top: -1rem;
    
    background-image: url(../images/hero/remap-ecu-banner-desktop.webp);
    background-size: contain;
    background-repeat: no-repeat;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.hero_seo_image{
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
    pointer-events: none;
}


.home_hero{
    position: absolute;
    top: 15%;
    left: 15%;
    max-width: 28rem;
    
    text-align: right;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    z-index: 10;
}

.home_title{
    font-size: 1.5rem;
    line-height: 4rem;
    font-size: 2.8rem;
    text-align: center;
}

.home_title > h4{
    max-width: 14rem;
}

.home_title > h4 > span{
    color: var(--secondary-color-3);
}

.home_title_details{
    text-align: center;
    margin-top: 1.5rem;
    color: #B0B3B8;
    max-width: 16rem;
}

.home_title_details h1, h2{
    font-size: 1rem;
}



.home_button_containers{
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
}

.btn-1, .btn-2{
    border: none;
    color: var(--primary-color-2);
    padding: 0.6rem 1rem;
    box-shadow: var(--detailed-color) 0 0 8px;
    border-radius: 0.8rem;
    cursor: pointer;
    
    font-size: 1.03rem;
    font-family: "Samim";
    transition: all ease-in 0.2s;
}

.btn-1{
    background: linear-gradient(135deg, var(--secondary-color-2), var(--secondary-color-3));
}

.btn-1:hover, .btn-2:hover{
    transform: translateY(-0.3rem);
}

.btn-2{
    background: linear-gradient(135deg, var(--secondary-bgcolor), var(--secondary-bgcolor-2));
}

/* Skill Box */

.skill_box_wrapper{
    position: absolute;
    z-index: 20;
    top: 79%;
    left: 50%;

    width: 90%;
    height: 5rem;
    border: 2px solid rgba(255, 255, 255, 0.13);
    border-radius: 0.8rem;

    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    transform: translateX(-50%);
}

.skill_box_menu{
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 1.4rem;
}

.skill_box{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-right: 5%;
    border-right: var(--detailed-color) 2px solid;
}

#first_skill_box > .skill_title > h3{
    padding-right: 1.4rem;
}

#first_skill_box > .skill_image{
    margin-bottom: 1rem;
    margin-left: -2.3rem;
    max-width: 1.4rem;
}

#first_skill_box{
    border-right: none;
}

.skill_image{
    max-width: 3rem;
}

.skill_title{
    text-align: right;
}

.skill_title > h3{
    color: var(--secondary-color-3);
    font-size: 1.2rem;
}

.skill_title > p{
    color: var(--detailed-color-2);
    font-size: 0.9rem;
}

/* Skill Box */


/* --------------responsive for top_home_section--------------- */
@media (max-width: 1270px){
    .base_home_image_container{
        background-size: cover;
        background-image: url(../images/hero/remap-ecu-banner-laptop.webp);
    }

    .home_hero{
        top: 12%;
        left: 10%;
    }

    .skill_box{
        padding-right: 3%;
    }
}

@media (max-width: 960px){
    .skill_box{
        padding-right: 1%;
    }
}


@media (max-width: 900px){

    .base_home_image_container{
        height: 34rem;
        background-position: center;
    }

    .home_hero{
        top: 7%;
        left: 2%;
    }

    .home_title h4{
        font-size: 2.1rem;
        line-height: 2.6rem;
        max-width: 10rem;
    }

    .home_title_details{
        color: var(--secondary-color);
        margin-top: 1rem;
        font-size: 0.95rem;
    }

    .home_title_details h1, h2{
        font-size: 0.95rem;
    }

    .home_button_containers{
        justify-content: center;
    }

    /* Skill Box */
    .skill_box_wrapper{
        top: 62%;
        width: 95%;
        height: auto;
    }

    .skill_box_menu{
        flex-wrap: wrap;
        gap: 1rem;
    }

    .skill_box{
        flex: 1 1 45%;
        justify-content: center;
    }

    .skill_title > h3{
        font-size: 1.1rem;
    }

    .skill_title > p{
        font-size: 0.9rem;
    }

    #third_skill_box{
        border-right: none;
    }
}

@media (max-width: 600px){

    .base_home_image_container{
        height: 50rem;
        background-image: url(../images/hero/remap-ecu-banner-tablet.webp);
        background-size: cover;
        background-position: center;
    }

    .home_hero{
        top: 5%;
        right: 0;
        margin-right: 1.4rem;
        max-width: 96%;
        justify-content: center;
        gap: 0.6rem;
    }

    .home_title h4{
        font-size: 2.2rem;
        max-width: 100%;
    }

    .home_title_details{
        margin-top: 0;
    }

    .home_title_details h1, h2{
        font-size: 1.2rem;
        line-height: 1.8rem;
    }

    .home_button_containers{
        margin-top: 0.4rem;
        gap: 0.8rem;
    }

    .btn-1, .btn-2{
        padding: 0.4rem 0.8rem;
        
        font-size: 0.9rem;
    }

    #home_project_btn{
        padding: 0.8rem 5rem;
        font-size: 1.1rem;
    }

    /* Skill Box */
    .skill_box_wrapper{
        top: 75%;
        width: 95%;
        padding: 0.6rem;
        height: 11rem;
    }

    
    #second_skill_box{
        display: none;
    }
    
    #third_skill_box{
        display: none;
    }
    
    .skill_box{
        flex: 1 1 100%;
        justify-content: center;
        border-right: none;
    }

    #fourth_skill_box{
        border-top: var(--detailed-color) 2px solid;
        padding-top: 0.8rem;
    }
}


@media (max-width: 480px){

    .base_home_image_container{
        background-image: url(../images/hero/remap-ecu-banner-mobile.webp);
    }

    .home_title h4{
        font-size: 1.6rem;
    }

    .home_title_details h1, h2{
        font-size: 1rem;
    }

    .skill_box{
        flex: 1 1 100%;
    }

    #home_project_btn{
        padding: 0.7rem 3.5rem;
        font-size: 1rem;
    }
}


/* --------------responsive for top_home_section--------------- */


/*-----------Services-----------  */

.services_section{
    padding: 5rem 7rem 0;
}

.services_hiro{
    text-align: center;
    font-size: 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--secondary-color-3);
}

.services_hiro > h2{
    font-size: 2rem;
    max-width: 80rem;
    color: var(--detailed-color-2);
}

.services_wrapper{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

.service_card{
    background: #dde9f0;
    background: linear-gradient(90deg, #dde9f0, #c9d1d6);

    box-shadow: var(--detailed-color) 0 0 8px;
    width: 28rem;
    padding: 2rem 1rem 1.2rem;
    border-radius: 1.2rem;
    transition: all ease-in 0.3s;
    margin-bottom: 2rem;
    color: var(--primary-color-2);
}

.service_status{
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

.status-badge {
    padding: 0.2rem 0.5rem;
    border-radius: 2rem;
    
    position: absolute;
    right: 0;
}

.status-vip { background-color: #76FF03; }
.status-normal { background-color: #FF6F00; }

.service_data{
    display: flex;
    justify-content: right;
    gap: 2rem;
    color: var(--secondary-color-2);
    font-size: 1.2rem;
}

.service_image_container{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-radius: 100%;
    background-color: var(--primary-bgcolor);
    max-width: 6rem;
    max-height: 6rem;
}

.service_image_container > img{
    transition: all ease-in 0.2s;
}

.service_details{
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.short_description{
    color: var(--secondary-color);
}

.service_link{
    position: relative;
    margin-top: 0.6rem;
    margin-right: 8rem;
    max-width: 6rem;
}

.service_link > a{
    color: var(--detailed-color-2);
    transition: all ease-in-out 0.3s;
}

.service_card:hover{
    border: 1px solid var(--secondary-color-3);
    transform: rotate(1deg);
}

.service_card:hover .service_title{
    color: var(--secondary-color-3);
}

.service_card:hover .service_image_container > img{
    transform: translateY(-0.5rem);
}

.service_button{
    display: flex;
    justify-content: center;
}

.link_border_bottem{
    position: absolute;
    top: 1.5rem;
    right: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background-color: var(--detailed-color-2);
    transition: all 0.3s ease-in;
}

.service_link > a:hover > .link_border_bottem{
    width: 100%;
}

/* --------------responsive for Services--------------- */

@media (max-width: 900px){

    .services_section{
        padding: 4rem 2rem 0;
    }

    .services_hiro h2{
        font-size: 1.6rem;
        max-width: 40rem;
    }

    .status-badge{
        font-size: 0.9rem;
    }

    .service_card{
        padding: 1.6rem 1.2rem;
    }

    .service_title{
        font-size: 1rem;
    }

    .service_data{
        gap: 1rem;
    }

    .service_image_container{
        width: 4.2rem;
        height: 4.2rem;
    }

    .service_image_container img{
        width: 2.4rem;
    }
}

@media (max-width: 600px){

    .services_section{
        padding: 3rem 1rem 0;
    }

    .services_hiro h2{
        font-size: 1.3rem;
        line-height: 2rem;
    }

    .status-badge{
        padding: 0.15rem 0.4rem;
        font-size: 0.8rem;
    }

    .services_wrapper{
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service_card{
        padding: 1.4rem 1rem;
    }

    .service_data{
        flex-direction: column;
        text-align: center;
    }

    .service_image_container{
        margin-bottom: 0.2rem;
    }

    .service_title h3{
        font-size: 1.2rem;
    }

    .short_description h5{
        font-size: 0.85rem;
    }

    .service_link{
        margin: 0.8rem auto 0;
    }
}
@media (max-width: 480px){

    .services_hiro h2{
        font-size: 1.2rem;
    }

    .status-badge{
        padding: 0.1rem 0.3rem;
        font-size: 0.75rem;
    }


    .service_card{
        padding: 1.2rem 0.8rem;
    }

    .service_image_container{
        width: 3.6rem;
        height: 3.6rem;
    }

    .service_image_container img{
        width: 2rem;
    }
}


/* --------------responsive for Services--------------- */

/* -----------Services-----------  */


/* -----------confidence------------ */


.confidence_section{
    padding: 3rem 0;

}

.confidence_wrapper{
    padding: 3rem 2rem 0;
    border-radius: 3rem;
    border-top: var(--detailed-color) 2px solid;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
}

.comments_section{
    width: 48%;
}

.confidence_title > h3{
    font-size: 2rem;
    border-left: 0.1rem solid var(--secondary-bgcolor-2);
    padding-left: 0.6rem;

    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    max-width: 0;

    animation: typing 6s infinite;
}


@keyframes typing{
    0%   { max-width: 0; }
    50%  { max-width: 20rem; }
    70%  { max-width: 20rem; }
    100% { max-width: 0; }
}

.comments_wrapper{
    margin-top: 4rem;
}

.comment_card{
    box-shadow: var(--secondary-bgcolor) 0 0 6px;
    padding: 0.5rem 1rem;
    height: auto;
    max-width: 90%;
    border-radius: 1rem;

    transition: all ease-in 0.3s;
}

.comment_card:hover{
    transform: scale(1.01);
    box-shadow: var(--secondary-bgcolor) 0 0 8px;
}

.comment_slide {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.comment_slide.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.comment_title{
    font-size: 1.2rem;
    color: var(--secondary-color-2);
}

.comment_details{
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.comment_photo{
    max-width: 3.5rem;

    display: flex;
    justify-content: center;
    align-items:flex-start;
}

.comment_photo img{
    border-radius: 100%;
}

.comment_info_wrapper{
    width: 83%;
}

.comment_info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.comment_stars_container img{
    width: 20px;
    height: 20px;
    margin-left: 2px;
}

.comment_description{
    color: var(--detailed-color);
    font-size: 0.9rem;
}

.comment_button{
    margin-top: 2rem;
}


.confidence_cards_container{
    width: 45%;
}


.confidence_cards_container{
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.confidence_right_card{
    width: 45%;
}

.confidence_card{
    border-radius: 0.5rem;
    padding: 0.6rem 0;
    box-shadow: var(--detailed-color) 0 0 4px;
    color: var(--secondary-bgcolor);

    font-size: 1.1rem;
    transition: all ease-out 0.2s;
}

#confidence_card_1{
    height: 80%;
    background-image: url(../images/home/confidence_card_image_1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;

    color: var(--primary-color-2);
    font-size: 1.5rem;
}

#confidence_card_2{
    background-image: url(../images/home/confidence_card_image_2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;

    color: var(--secondary-color);
    width: 12rem;
    height: 10rem;
}

#confidence_card_3{
    background-image: url(../images/home/confidence_card_image_3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;

    height: 14rem;
    width: 12rem;
}

#confidence_card_1:hover{
    transform: rotate(1deg) scale(1.03);
}

#confidence_card_2:hover, #confidence_card_3:hover{
    transform: scale(1.02);
    box-shadow: var(--detailed-color) 0 0 16px;
}

.confidence_card_title{
    padding: 0 1rem;
}

.confidence_card_title p{
    font-size: 0.8rem;
    margin-top: -0.4rem;
}

.confidence_left_card{
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 35%;
}

@media (max-width: 900px){

    .confidence_wrapper{
        flex-direction: column;
        padding: 2rem 1rem 0;
    }
    
    .comments_section{
        width: 90%;
    }

    .confidence_title{
        padding-right: 5%;
    }

    .comments_wrapper{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
    }

    .comment_card{
        width: 100%;
    }

    .comment_button{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    #add_comment_btn{
        padding: 0.5rem 11rem;
    }

    .confidence_cards_container{
        width: 95%;
        margin-top: 1rem;
    }
}

@media (max-width: 600px){

    .confidence_wrapper{
        padding: 2rem 1rem 0;
        gap: 2rem;
    }

    .confidence_title h3{
        font-size: 1.6rem;
    }

    .comments_section{
        width: 100%;
    }

    .comments_wrapper{
        margin-top: 1rem;
    }

    .comment_card{
        max-width: 100%;
        padding: 1rem;
    }

    .comment_info{
        font-size: 0.9rem;
    }

    .comment_stars_container img{
        width: 18px;
        height: 18px;
    }

    .comment_description{
        font-size: 0.85rem;
    }

    #add_comment_btn{
        padding: 0.5rem 10rem;
    }

    .confidence_cards_container{
        width: 100%;
        flex-direction: column;
        align-items: center;
        flex-basis: content;
    }

    .confidence_right_card,
    .confidence_left_card{
        width: 100%;
    }

    .confidence_card_title{
        font-size: 0.9rem;
    }
    
    .confidence_card_title p{
        margin-top: 0rem;
        font-size: 0.9rem;
    }

    #confidence_card_1,
    #confidence_card_2,
    #confidence_card_3{
        width: 60%;
        margin: 0 auto;
        height: 12rem;
    }

    #confidence_card_2 > .confidence_card_title,
    #confidence_card_3 > .confidence_card_title{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.4rem;
    }

    #confidence_card_1{
        background-image: url(../images/home/confidence_card_image\(1\).jpg);
        height: 15rem;
        text-align: left;
    }

    #confidence_card_2{
        background-image: url(../images/home/confidence_card_image\(2\).jpg);
    }
}

@media (max-width: 480px){

    .confidence_title h3{
        font-size: 1.4rem;
    }

    .comment_title{
        font-size: 1.05rem;
    }

    .comment_card{
        padding: 0.8rem;
    }

    .comment_photo{
        max-width: 2.8rem;
    }

    .comment_info{
        font-size: 0.85rem;
    }

    .comment_stars_container img{
        width: 16px;
        height: 16px;
        margin-left: 0px;
    }

    .comment_description p{
        font-size: 0.8rem;
    }

    #confidence_card_2,
    #confidence_card_3{
        height: 10rem;
    }

    .comment_button{
        margin-top: 1rem;
    }
    
    #add_comment_btn{
        padding: 0.5rem 6rem;
    }

}



/* -----------confidence------------ */

/* --------------Project Section-------------- */

.projects_section_container{
    border-radius: 1rem;
    padding: 3rem 0;
}

.projects_title h2{
    text-align: center;
    font-size: 2.4rem;
}

.projects_wrapper{
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
    gap: 2.2rem;
    padding: 2rem 1rem 0;
}

.project_card{
    background-color: var(--primary-bgcolor);
    box-shadow: var(--detailed-color) 0 0 16px;
    border-radius: 1rem;
    padding: 0.8rem 1rem;
    transition: all ease-in 0.2s;
}

.project_card:hover{
    transform: translateY(-0.3rem);
    box-shadow: var(--detailed-color) 0 0 30px;
}

.project_image_container{
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

.project_image_container img{
    width: 100%;
    height: 14rem;
    object-fit: cover;
    border-radius: 1rem;
}

.project_details{
    color: var(--secondary-bgcolor);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.95rem;
}

.project_improvement{
    margin: 1.2rem 0;
    display: flex;
    justify-content: space-between;
    color: var(--primary-color-2);
}

.improvement_card h3{
    font-size: 0.9rem;
    color: var(--detailed-color);
}

.project_link{
    text-align: center;
    margin-top: 1rem;
}

#project_link{
    width: 80%;
}

.more_project_link{
    grid-column: 1 / -1;
    text-align: center;
}

#project_btn{
    font-size: 1.2rem;
    padding: 1rem 4rem;
    border-radius: 1.4rem;
}

@media (max-width: 900px){

    .projects_section_container{
        padding: 2rem 0;
    }

    .projects_wrapper{
        grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
        gap: 1.8rem;
    }

    .project_image_container img{
        height: 12rem;
    }

    .project_details{
        font-size: 0.9rem;
    }

    .improvement_card h3{
        font-size: 0.85rem;
    }
}

@media (max-width: 600px){

    .projects_section_container{
        padding: 1.5rem 0;
    }

    .projects_title h2{
        font-size: 1.4rem;
    }

    .projects_wrapper{
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .project_card{
        padding: 0.8rem;
    }

    .project_image_container img{
        height: 11rem;
    }

    .project_details{
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }

    .project_improvement{
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }

    .project_link{
        margin-top: 0.8rem;
    }

    #project_btn{
        padding: 0.8rem 2.5rem;
        font-size: 1rem;
    }
}
@media (max-width: 480px){

    .project_image_container img{
        height: 10rem;
    }

    .projects_title h2{
        font-size: 1.1rem;
    }

    .improvement_card h3{
        font-size: 0.8rem;
    }

    #project_btn{
        padding: 0.7rem 2rem;
        font-size: 0.95rem;
    }
}


/* --------------Project Section-------------- */


/* ---------------About Us Section------------------ */

.about_container{
    padding: 4rem 0;
    position: relative;
}

.about_title{
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
}

.about_title h2{
    font-size: 2.2rem;
    color: var(--secondary-color-3);
    display: inline-block;
    padding: 0 1rem;
    background-color: var(--primary-bgcolor);
    position: relative;
    z-index: 2;
}

.about_title::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(90%, 40rem);
    height: 2px;
    background-color: var(--detailed-color-2);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.about_top_section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.about_details{
    flex: 1 1 45%;
    animation: fadeUp 0.7s ease;
}

.about_description h3{
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about_description p{
    color: var(--detailed-color-2);
    font-size: 1.15rem;
    line-height: 2.4rem;
}

.about_button{
    margin-top: 1.5rem;
}

.about_image_container{
    flex: 1 1 45%;
    animation: fadeUp 0.9s ease;
}

.about_image_container img{
    width: 100%;
    border-radius: 1rem;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about_image_container img:hover{
    transform: scale(1.03);
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

.about_bottem_section{
    margin-top: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_cards_container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.about_card{
    background: linear-gradient(45deg, var(--secondary-bgcolor), var(--secondary-bgcolor-2));
    max-width: 18rem;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: var(--detailed-color) 0 0 4px;
    height: auto;
    color: var(--primary-color-2);

    transition: all ease-in 0.3s;
}

.about_card_image_container{
    background-color: var(--primary-color-2);
    box-shadow: var(--secondary-bgcolor) 0 0 4px;
    width: 3rem;
    height: 3rem;
    border-radius: 100%;
    padding: 0.5rem;

    display: flex;
    justify-content: center;
    align-items: center;
}
.about_card_title{
    margin-top: 0.5rem;
    font-size: 1.2rem;
}
.about_card_description{
    font-size: 0.9rem;
    margin-top: 0.7rem;
}

#about_card_2{
    background: linear-gradient(45deg, var(--secondary-color-2), var(--secondary-color-3));
}

.about_card:hover{
    transform: translateY(-0.2rem) scale(1.01);
    box-shadow: var(--detailed-color) 0 0 8px;
}

@media (max-width: 768px){
    .about_top_section{
        flex-direction: column;
        text-align: center;
    }

    .about_details, .about_image_container{
        flex: 1 1 100%;
    }

    .about_title h2{
        font-size: 1.8rem;
    }

    .about_cards_container{
        justify-content: center;
    }
}

/* ---------------About Us Section------------------ */

/* -----------------FAQ Section----------------- */

.faq_section{
    margin-top: 5.5rem;
}

.faq_title{
    display: flex;
    justify-content: center;
    align-items: center;
    
    margin-bottom: 2rem;
}

.faq_title h2{
    font-size: 2.4rem;
}

.faq_container{
    color: var(--secondary-color-2);
    margin-top: 2rem;
    border-radius: 1.2rem;
    box-shadow: var(--primary-bgcolor-2) 0 0 6px;
}

.faq_box{
    margin-bottom: 1rem;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 0.8rem;
    overflow: hidden;
}

.faq_box.hidden {
    display: none;
}

.faq_question_header{
    padding: 1rem 1.5rem;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq_question_header h2{
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.faq_answer_content{
    padding: 1rem 1.5rem;
    background-color: var(--primary-color-2);
    color: var(--detailed-color);
    line-height: 1.6rem;
    
    max-height: 0; 
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out; 
}

.faq_box.active .faq_answer_content {
    max-height: 600px;
    padding-top: 1rem; 
    padding-bottom: 2rem;
}

.faq_show_more_button {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: -2.2rem;
}

.faq_btn{
    background-color: var(--primary-color-2);
    color: var(--secondary-color);
    box-shadow: var(--detailed-color) 0 0 2px;
    border: none;
    border-radius: 0.8rem;
    cursor: pointer;    
    padding: 0.2rem 0.9rem;
    
    font-size: 1.4rem;
    font-family: "Samim";
    transition: all ease-in 0.2s;
}

.faq_btn:hover{
    box-shadow: var(--detailed-color) 0 0 6px;
}

.faq_more_link{
    text-align: center;
    margin-top: 1rem;
}

@media (max-width: 900px){

    .faq_title h2{
        font-size: 1.7rem;
    }

    .faq_question_header h2{
        font-size: 1.15rem;
    }

    .faq_answer_content{
        font-size: 0.95rem;
        line-height: 1.6rem;
    }
}

@media (max-width: 600px){

    .faq_section{
        margin-top: 4rem;
    }

    .faq_title h2{
        font-size: 1.5rem;
    }

    .faq_container{
        padding: 0.5rem;
    }

    .faq_box{
        margin-bottom: 0.8rem;
    }

    .faq_question_header{
        padding: 0.8rem 1rem;
    }

    .faq_question_header h2{
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .faq_answer_content{
        padding: 0 1rem;
        font-size: 0.9rem;
        line-height: 1.5rem;
    }

    .faq_box.active .faq_answer_content{
        padding: 0.8rem 1rem 1rem;
    }

    .faq_btn{
        font-size: 1.2rem;
        padding: 0.2rem 0.8rem;
    }
}

@media (max-width: 480px){

    .faq_title h2{
        font-size: 1.3rem;
    }

    .faq_question_header h2{
        font-size: 0.95rem;
    }

    .faq_answer_content{
        font-size: 0.85rem;
    }
}



/* -----------------FAQ Section----------------- */


/* -----------------Add Comment Page---------------- */

.comment_form_container{
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    color: var(--secondary-bgcolor);
}

.comment_form_title{
    margin-top: 0.6rem;
    text-align: center;
    font-size: 1.1rem;
    animation: fadeIn 0.8s ease-in-out;
}

.comment_form_title h1{
    font-size: 1.8rem;
    color: var(--secondary-color-3);
}

.comment_form_title h3{
    margin-top: 0.4rem;
    color: var(--detailed-color);
}

.comment_form_wrapper{
    max-width: 40rem;
    margin: 1.4rem auto 0;
    padding: 0.8rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    background-color: var(--primary-bgcolor);
    animation: slideUp 0.7s ease;
}

.form_input{
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 0.6rem;
    border: 2px solid var(--detailed-color);
    background-color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: "Samim";
}

.form_input:focus{
    border-color: var(--secondary-color-3);
    box-shadow: 0 0 8px rgba(0, 102, 209, 0.4);
    outline: none;
    transform: translateY(-2px);
}

.form-input-container{
    margin-bottom: 1rem;
}

.upload-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 0 12px rgba(255, 106, 0, 0.5);
}

.change-photo-wrapper{
    margin-bottom: 1rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.change-photo-wrapper input[type="file"]{
    display: none;
}

.preview-wrapper{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 0.8rem;
}

#preview-image{
    width: 100px;
    height: 100px;
    border-radius: 100%;
    object-fit: cover;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
    animation: fadeIn 0.4s ease-in-out;
}

#submit-btn, .upload-btn{
    width: 100%;
    padding: 0.9rem;
    border: none;
    border-radius: 0.7rem;
    background: linear-gradient(135deg, var(--secondary-color-2), var(--secondary-color-3));
    color: var(--primary-color-2);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-btn{
    width: 30%;
}

.rating-stars{
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin: 1rem 0;
}

.rating-stars span{
    font-size: 2rem;
    cursor: pointer;
    color: #ccc;
    transition: all 0.25s ease;
    user-select: none;
}

.rating-stars span:hover{
    transform: scale(1.2);
}

.rating-stars .active{
    color: var(--secondary-color-3);
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.6);
}


#submit-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 0 12px rgba(255, 106, 0, 0.5);
}

@keyframes fadeIn{
    from{ opacity: 0; }
    to{ opacity: 1; }
}

@keyframes slideUp{
    from{
        opacity: 0;
        transform: translateY(20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px){
    .comment_form_wrapper{
        padding: 1.5rem;
    }

    .comment_form_title h1{
        font-size: 1.6rem;
    }

    .form_input{
        font-size: 0.95rem;
    }
}

/* -----------------Add Comment Page---------------- */

/* -----------------Project List Page--------------- */

.project-list-page{
    max-width: 75rem;
    margin: 3.5rem auto 4rem;
    padding: 0 1rem;
}

.project-list-breadcrumb{
    font-size: 0.95rem;
    color: var(--detailed-color-2);
    margin-bottom: 1.2rem;
}

.project-list-breadcrumb a{
    color: var(--secondary-color-3);
}

.project-list-header{
    text-align: center;
    margin-bottom: 2.5rem;
}
.project-list-header h1{
    font-size: 2.4rem;
    color: var(--secondary-color-3);
    margin-bottom: 0.7rem;
}

.project-list-header p{
    max-width: 40rem;
    margin: 0 auto;
    color: var(--detailed-color-2);
    line-height: 2.4rem;
    font-size: 1.2rem;
}

@media (max-width: 1024px){
    .project-list-header h1{
        font-size: 1.8rem;
    }
}

@media (max-width: 640px){
    .project-list-page{
        margin-top: 2.5rem;
    }

    .project-list-header h1{
        font-size: 1.5rem;
    }

    .project-list-header p{
        font-size: 0.95rem;
    }
}

/* -----------------Project List Page--------------- */

/* -----------------Project Detail---------------- */

.project_detail_main{
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem 1rem 3rem;
    color: var(--secondary-bgcolor);
}

.project_header{
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: stretch;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.project_title_block{
    flex: 1 1 50%;
}

.project_title_block h1{
    font-size: 2.1rem;
    color: var(--secondary-color-3);
}

.project_subtitle{
    margin-top: 0.5rem;
    color: var(--detailed-color);
    font-size: 0.98rem;
}

.project_date{
    margin-top: 0.3rem;
    font-size: 0.85rem;
    color: var(--detailed-color-2);
}

.project_power_card{
    flex: 1 1 40%;
    background: linear-gradient(135deg, #1c1f20, #0f1112);
    color: #fff;
    padding: 1.8rem 1.8rem;
    border-radius: 1.2rem;
    box-shadow: 0 12px 28px rgba(0,0,0,0.45);
    position: relative;
    overflow: hidden;
    animation: fadeUp 0.7s ease;
}

.project_power_card::before{
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 70%);
    opacity: 0.5;
}

.power_header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.power_header h3{
    font-size: 1.3rem;
}

.power_badge{
    background: linear-gradient(135deg, #00c853, #64dd17);
    padding: 0.4rem 0.8rem;
    border-radius: 0.6rem;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(0,255,0,0.4);
}

.power_row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
}

.power_row strong{
    font-size: 1rem;
}

.power_percent{
    margin-top: 0.6rem;
    font-size: 0.95rem;
    color: #b0bec5;
    position: relative;
    z-index: 2;
}

.power_percent strong{
    color: #00e676;
    font-size: 1.1rem;
}

.power_bar_wrapper{
    margin-top: 1.2rem;
    position: relative;
    z-index: 2;
}

.power_bar{
    position: relative;
    background-color: rgba(255,255,255,0.08);
    border-radius: 999px;
    height: 1rem;
    overflow: hidden;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.4);
}

.power_bar_before{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #ff8a24, #ff6a00);
    opacity: 0.8;
    transition: width 0.8s ease-out;
}

.power_bar_after{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #00c853, #64dd17);
    transition: width 0.8s ease-out;
}

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}


.project_gallery{
    margin-top: 3rem;
}

.project_gallery h2{
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color-3);
}

.gallery_slider_container{
    position: relative;
    overflow: hidden;
    width: 100%;
}

.gallery_slider{
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 0.5rem;
}

.gallery_slider::-webkit-scrollbar{
    display: none;
}

.gallery_slide{
    min-width: calc(33.35% - 1rem);
    border-radius: 0.9rem;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0,0,0,0.22);
    background-color: #000;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery_slide img{
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.gallery_btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary-bgcolor);
    color: #fff;
    border: none;
    font-size: 2rem;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery_btn:hover{
    opacity: 1;
    transform: translateY(-50%) scale(1.3);
}

.prev_btn{
    right: 0.5rem;
}

.next_btn{
    left: 0.5rem;
}


.project_content{
    margin-top: 2.8rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.3rem;
}

.project_box{
    background-color: var(--primary-color-2);
    border-radius: 1rem;
    padding: 1.3rem 1.5rem;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.project_box::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,101,209,0.06), transparent 60%);
    pointer-events: none;
}

.project_box h3{
    color: var(--secondary-color-3);
    margin-bottom: 0.7rem;
    position: relative;
    z-index: 1;
}

.project_box p{
    color: var(--detailed-color);
    font-size: 0.95rem;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.project_back_button{
    margin-top: 2.8rem;
    text-align: center;
}

@media (max-width: 992px){
    .project_header{
        flex-direction: column;
    }

    .project_power_card{
        order: -1;
    }

    .project_title_block h1{
        font-size: 1.8rem;
    }
}

@media (max-width: 768px){
    .project_detail_main{
        padding: 1.5rem 1rem 2.5rem;
    }

    .gallery_slide{
        min-width: calc(50% - 1rem);
    }

    .project_power_card{
        padding: 1.4rem 1.4rem;
    }

    .project_gallery_grid{
        grid-template-columns: 1fr;
    }

    .project_content{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px){
    .project_title_block h1{
        font-size: 1.5rem;
    }

    .gallery_slide{
        min-width: 100%;
    }
    
    .project_subtitle{
        font-size: 0.9rem;
    }

    .project_gallery_item img{
        aspect-ratio: 16 / 10;
    }
}

/* -----------------Project Detail---------------- */

/* -----------------Service List-------------- */
.service-list-page{
    max-width: 75rem;
    margin: 3.5rem auto 4rem;
    padding: 0 1rem;
}

/* Breadcrumb */
.service-list-breadcrumb{
    font-size: 0.95rem;
    color: var(--detailed-color-2);
    margin-bottom: 1.2rem;
}

.service-list-breadcrumb a{
    color: var(--secondary-color-3);
}

/* Header */
.service-list-header{
    text-align: center;
    margin-bottom: 2.5rem;
}

.service-list-header h1{
    font-size: 2.1rem;
    color: var(--secondary-color-3);
    margin-bottom: 0.7rem;
}

.service-list-header p{
    max-width: 40rem;
    margin: 0 auto;
    color: var(--detailed-color-2);
    line-height: 1.8rem;
    font-size: 0.98rem;
}

/* Grid */
.service-list-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

/* Card */
.service-list-card{
    position: relative;
    background: linear-gradient(135deg, #dde9f0, #c9d1d6);
    border-radius: 1.1rem;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
    border: 1px solid transparent;
}

.service-list-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.12);
    border-color: var(--secondary-color-3);
}

/* Badge */
.service-list-badge{
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    color: #111827;
    background-color: #bbf7d0;
    z-index: 2;
}

.service-list-badge_vip{
    background: linear-gradient(135deg, #facc15, #f97316);
    color: #111827;
}

.service-list-badge_new{
    background: linear-gradient(135deg, #6ee7b7, #22c55e);
    color: #022c22;
}

/* Image */
.service-list-image-link{
    display: block;
    width: 100%;
    overflow: hidden;
}

.service-list-image-link img{
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.service-list-card:hover .service-list-image-link img{
    transform: scale(1.04);
}

/* Content */
.service-list-content{
    padding: 1.1rem 1.2rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    color: var(--primary-color-2);
}

.service-list-title{
    font-size: 1.15rem;
    margin: 0;
}

.service-list-title a{
    color: var(--secondary-color-2);
}

.service-list-short{
    font-size: 0.95rem;
    color: var(--detailed-color);
    line-height: 1.6rem;
    min-height: 3rem;
}

.service-list-meta{
    font-size: 0.85rem;
    color: var(--detailed-color-2);
}

.service-list-actions{
    margin-top: 0.4rem;
}

.service-list-more{
    font-size: 0.9rem;
    color: var(--secondary-color-3);
    position: relative;
    display: inline-block;
    padding-bottom: 0.1rem;
}

.service-list-more::after{
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color-3);
    transition: width 0.25s ease;
}

.service-list-more:hover::after{
    width: 100%;
}

/* Empty state */
.service-list-empty{
    grid-column: 1 / -1;
    text-align: center;
    color: var(--detailed-color-2);
}

/* Responsive */
@media (max-width: 1024px){
    .service-list-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-list-header h1{
        font-size: 1.8rem;
    }
}

@media (max-width: 640px){
    .service-list-page{
        margin-top: 2.5rem;
    }

    .service-list-grid{
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .service-list-header h1{
        font-size: 1.5rem;
    }

    .service-list-header p{
        font-size: 0.95rem;
    }

    .service-list-image-link img{
        height: 190px;
    }
}

/* -----------------Service List-------------- */


/* -----------------Service Detail---------------- */

.service_detail_section{
    max-width: 80rem;
    margin: 0 auto;
    padding: 3rem 1rem;
    color: var(--detailed-color);
}

.service_detail_header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.service_detail_image{
    flex: 1 1 35%;
    max-width: 30rem;
}

.service_detail_image img{
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.service_detail_intro{
    flex: 1 1 55%;
}

.service_detail_intro h1{
    font-size: 2.2rem;
    color: var(--secondary-color-3);
}

.service_detail_intro h3{
    margin-top: 0.8rem;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.service_detail_created{
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: var(--detailed-color-2);
}

.service_detail_description{
    margin-top: 2rem;
    background-color: var(--primary-bgcolor);
    padding: 1.8rem;
    border-radius: 1rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    overflow-x: hidden;
}

.service_detail_description h2{
    color: var(--secondary-color-3);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service_detail_description p{
    line-height: 2rem;
    font-size: 1rem;
    height: auto;
    font-size: 1.2rem;
    line-height: 2.4rem;
}

.service_features_container{
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 1.5rem;
}

.service_feature_card{
    background-color: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service_feature_card:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.service_feature_card img{
    width: 3rem;
    margin-bottom: 1rem;
}

.service_feature_card h3{
    color: var(--secondary-color-3);
    margin-bottom: 0.5rem;
}

.service_detail_cta{
    margin-top: 3rem;
    text-align: center;
}

@media (max-width: 900px){

    .service_detail_header{
        flex-direction: column;
        text-align: center;
    }

    .service_detail_intro h1{
        font-size: 1.8rem;
    }

    .service_detail_image{
        max-width: 18rem;
    }
}

@media (max-width: 600px){

    .service_detail_section{
        padding: 2rem 1rem;
    }

    .service_detail_intro h1{
        font-size: 1.6rem;
    }

    .service_detail_description{
        padding: 1.2rem;
    }

    .service_feature_card{
        padding: 1.2rem;
    }
}

/* -----------------Service Detail---------------- */


/* -----------------Faq Page---------------- */

.faq_page_section{
    max-width: 70rem;
    margin: 4rem auto;
    padding: 1rem;
}

.breadcrumb{
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--detailed-color-2);
}

.breadcrumb a{
    color: var(--secondary-color-3);
}

.faq_page_title{
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq_page_title h1{
    font-size: 2.2rem;
    color: var(--secondary-color-3);
}

.faq_page_title p{
    margin-top: 0.5rem;
    color: var(--detailed-color-2);
}

.faq_page_container{
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq_page_box{
    border: 1px solid #ddd;
    border-radius: 0.8rem;
    padding: 1.2rem 1.5rem;
    background-color: var(--primary-bgcolor);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq_page_question h2{
    font-size: 1.3rem;
    color: var(--secondary-color-3);
    margin-bottom: 0.6rem;
}

.faq_page_answer p{
    color: var(--detailed-color);
    line-height: 1.8rem;
}

.faq_page_cta{
    text-align: center;
    margin-top: 3rem;
}

.btn-1{
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 0.8rem;
}

@media (max-width: 600px){

    .faq_page_title h1{
        font-size: 1.7rem;
    }

    .faq_page_question h2{
        font-size: 1.1rem;
    }

    .faq_page_box{
        padding: 1rem;
    }
}

/* -----------------Faq Page---------------- */

/* -----------------About Us Page------------------- */

.about-page{
    max-width: 75rem;
    margin: 3rem auto;
    padding: 0 1rem;
}

/* Breadcrumb */
.about-page-breadcrumb{
    font-size: 0.95rem;
    color: var(--detailed-color-2);
    margin-bottom: 1.5rem;
}

.about-page-breadcrumb a{
    color: var(--secondary-color-3);
}

/* Header */
.about-page-header{
    text-align: center;
    margin-bottom: 3rem;
}

.about-page-header h1{
    font-size: 2.2rem;
    color: var(--secondary-color-3);
}

.about-page-header p{
    max-width: 45rem;
    margin: 0.8rem auto 0;
    color: var(--detailed-color-2);
    line-height: 1.9rem;
}

.about-page-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.about-page-text{
    flex: 1 1 45%;
}

.about-page-text h2{
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-page-text p{
    color: var(--detailed-color-2);
    line-height: 2rem;
    margin-bottom: 1rem;
}

.about-page-btn{
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.6rem;
    background-color: var(--secondary-color-3);
    color: #fff;
    border-radius: 0.6rem;
    transition: 0.3s ease;
}

.about-page-btn:hover{
    background-color: var(--secondary-color-2);
}

.about-page-image{
    flex: 1 1 45%;
}

.about-page-image img{
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: 0.3s ease;
}

.about-page-image img:hover{
    transform: scale(1.03);
}

.about-page-cards{
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 2rem;
}

.about-page-card{
    background: linear-gradient(45deg, var(--secondary-bgcolor), var(--secondary-bgcolor-2));
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--detailed-color) 0 0 6px;
    transition: 0.3s ease;
}

.about-page-card:hover{
    transform: translateY(-4px);
    box-shadow: var(--detailed-color) 0 0 10px;
}

.about-page-card-icon{
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    background-color: var(--primary-color-2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-page-card-icon img{
    width: 70%;
}

.about-page-card h3{
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--secondary-color-3);
}

.about-page-card p{
    font-size: 0.95rem;
    color: var(--detailed-color);
    line-height: 1.6rem;
}

@media (max-width: 768px){
    .about-page-header h1{
        font-size: 1.8rem;
    }

    .about-page-top{
        flex-direction: column;
        text-align: center;
    }

    .about-page-text, .about-page-image{
        flex: 1 1 100%;
    }
}

/* -----------------About Us Page------------------- */
/* Main */