@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');

*, body{
    /* font-family: 'Poppins', sans-serif; */
    font-family: "Public Sans", sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


:root{
    --primary-color: #003D9B;
    --highlight-primary-color: #0052CC;
    --secondary-color: #F7931E;
    --highlight-secondary-color: #904D00;
    --light-color: #F5F5F5;
    --text-color: #191C1E;
}

.custom_button{
    background: linear-gradient(90deg, var(--primary-color), var(--highlight-primary-color));
    color: var(--light-color);
    border: none;
    padding: 7px 20px!important;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: max-content;
}
.custom_button:hover{
    background: linear-gradient(90deg, var(--highlight-secondary-color), var(--secondary-color));
    color: var(--light-color);
}

.custom_button_light{
    background: var(--light-color);
    color: var(--primary-color);
    border: none;
    padding: 7px 20px!important;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: max-content;
}

.custom_button_light:hover{
    background: linear-gradient(90deg, var(--highlight-secondary-color), var(--secondary-color));
    color: var(--light-color);
}
  

/* ==================================== Main ==================================== */

main{
    position: relative;
    overflow: hidden;
}

/* Hero sec starts */
.hero_sec{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;
    position: relative;
    z-index: 1;
}
.hero_sec > *{
    position: relative;
    z-index: 3;
}

.circle_1{
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(#fffeac, #f8fdca3c, transparent);
    border-radius: 50%;
    top: -200px;
    right: -150px;
    z-index: 2;
}
    
.circle_2{
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(#786bb488, transparent, transparent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.circle_3{
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(#de9cf5, transparent, transparent);
    border-radius: 50%;
    bottom: -65%;
    left: -20%;
    z-index: 2;
}

.hero_left{
    padding-left: 50px;
}

.hero_left h1{
    font-size: 66px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 600;
}
.hero_left p{
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 30px;
}
.section_title_top_text{
    font-size: 20px;
    color: var(--secondary-color);
    background-color: #f7921e22;
    width: max-content;
    display: inline;
    padding: 8px 12px;
    text-transform: uppercase;
    font-weight: 600;
}
.hero_right{
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero_right img{
    max-width: 100%;
    height: auto;
    min-height: calc(100vh - 150px) !important;
    object-fit: cover;
}

.hero_btns{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

@media screen and (max-width: 1200px) {
    .hero_left h1{
        font-size: 48px;
    }
    .hero_left p{
        font-size: 18px;
    }
    .hero_left h4{
        font-size: 16px;
    }

    .hero_right img{
        min-height: 400px !important;
        object-fit: contain;
    }
    .circle_1{
        width: 600px;
        height: 600px;
        top: -150px;
        right: -100px;
    }
    .circle_2{
        width: 400px;
        height: 400px;
    }
    .circle_3{
        width: 800px;
        height: 800px;
        bottom: -50%;
        left: -10%;
    }
}

@media screen and (max-width: 992px) {
    .hero_left h1{
        font-size: 36px!important;
    }
    .hero_left p{
        font-size: 16px;
    }
    .hero_left h4{
        font-size: 14px;
    }
    .hero_left{
        padding: 30px;
    }
    .hero_right img{
        min-height: 300px !important;
        object-fit: contain;
    }

    .circle_1{
        width: 400px;
        height: 400px;
        top: -150px;    
        right: -150px;
    }
    .circle_2{
        width: 300px;
        height: 300px;
    }
    .circle_3{
        width: 400px;
        height: 400px;
        bottom: -40%;
        left: -25%;
    }
}

@media screen and (max-width: 768px) {
    .hero_right img{
        min-height: 250px !important;
        object-fit: contain;
    }
}

/* Hero sec ends */


/* Custom Section starts*/

.custom_section{
    padding: 50px;
    position: relative;
    z-index: 2;
}

.custom_section > *{
    position: relative;
    z-index: 3;
}

.section_title{
    font-size: 36px;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 40px;
}
.section_title span{
    color: var(--secondary-color);
    font-weight: 600;
}

.your_assets{
    /* margin: 50px; */
    background-color: var(--light-color);
    padding: 40px 40px 20px 40px;
}

.custom_section h2{
    font-size: 36px;
    color: var(--text-color);
    text-align: center;
    font-weight: 600;
}
.custom_section p.cs_p{
    font-size: 18px;
    color: var(--text-color);
    text-align: center;
    margin: 0 auto 40px auto;
}
.custom_section span{
    color: var(--secondary-color);
    font-weight: 600;
}
.custom_section img.your_assets_img{
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
}

@media screen and (max-width: 992px) {
    .custom_section{
        padding: 30px;
    }
    .your_assets{
        margin: 0;
        padding: 30px 30px 15px 30px;
    }
    .custom_section h2{
        font-size: 28px;
    }
    .custom_section p.cs_p{
        font-size: 16px;
        margin: 0 auto 30px auto;
    }
}

@media screen and (max-width: 425px) {
    .custom_section{
        padding: 10px;
    }
}


/* Custom Section ends*/


.custom_card{
    background-color: var(--light-color);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.custom_card:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid var(--primary-color);
}

.cc_header{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cc_height{
    height: 100%;
}

.cc_header i{
    font-size: 28px;
    color: var(--secondary-color);
}

.cc_custom_bg{
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-primary-color));
    color: var(--light-color);
}

.cc_custom_bg .cc_header{
    color: var(--light-color);
}
.cc_custom_bg .cc_header i{
    color: var(--light-color);
}

.cc_ul{
    list-style: none;
    padding-left: 20px;
}
.cc_img{
    height: 250px!important;
    object-fit: cover;
    width: 100%;
}

.cc_height_2{
    min-height: 250px;
    height: 100%;
}

.cc_bg_img2{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

/* How it works starts */
.progress_box{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}

.progress_box .progress_card{
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    text-align: center;
    z-index: 4;
    position: relative;
}
.progress_box .progress_card> *{
    position: relative;
    z-index: 4;
}

.progress_box .progress_card .progress_no{
    height: 60px;
    width: 60px;
    background-color: var(--light-color);
    border: 4px solid var(--primary-color);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 20px;

}
.progress_box .progress_card::before {
    content: '';
    position: absolute;
    top: 60px;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    z-index: 3;
    left: 100%;
    min-width: 100px;
}
.progress_box .progress_card:last-child::before{
    display: none;
}
.progress_box .progress_card .progress_no .pro_num{
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
}
.progress_box .progress_card .pb_header{
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    min-height: 50px;
}
.progress_box .progress_card:nth-child(even) .progress_no .pro_num{
    color: var(--secondary-color);
}
.progress_box .progress_card:nth-child(even) .progress_no{
    border: 4px solid var(--secondary-color);
}
.progress_box .progress_card:nth-child(even) .pb_header{
    color: var(--secondary-color);
}

@media screen and (max-width: 992px) {

    .custom_card{
        padding: 30px;
    }

    .progress_box{
        flex-direction: column;
        align-items: flex-start;
    }
    .progress_box .progress_card{
        display: flex;
        flex-direction: row;
        gap: 20px;
    }

    .progress_body{
        width: 100%;
        text-align: left;
    }

    .progress_box .progress_card::before {
        content: '';
        position: absolute;
        top: 110%;
        transform: translate(-50%, -50%);
        height: 120%;
        width: 3px;
        background-color: var(--primary-color);
        z-index: 3;
        left: 60px;
        min-height: 100px;
        min-width: 3px;
    }

    .progress_box .progress_card .pb_header {
        margin-bottom: 5px;
        min-height: unset;
    }

}

/* How it works ends */

/* Feature starts*/

.features .feature_cards{
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.features .feature_cards:nth-child(even) i{
    background-color: #FFDCC3;
    color: var(--highlight-secondary-color);
}
.features .feature_cards:nth-child(odd) i{
    background-color: #DAE2FF;
    color: var(--primary-color);
}
.features .feature_cards i{
    font-size: 25px;
    padding: 12px 25px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fd_heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
}

.fd_descp {
    font-size: 16px;
    color: var(--text-color);
}

.features2 .features_card_2 i{
    font-size: 22px;
    border-radius: 15px;
    color: var(--secondary-color);
}
.features2 .features_card_2{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 15px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
    margin-bottom: 10px;
    background-color: var(--light-color);
}

.features2 .features_card_2:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid var(--primary-color);
}
/* Feature ends*/


/* brochure starts */
.hrms_brochure_details{
    list-style-type: none;
    margin-left: 15px;
    padding: 0;
}
.hrms_brochure_details li{
    position: relative;
    margin-left: 60px;
    min-height: 50px;
}
.hrms_brochure_details li::before {
    content: '✓';
    color: #24432f;
    margin-right: 10px;
    background: #defff9;
    padding: 10px;
    border-radius: 25px;
    height: 40px;
    width: 40px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    left: -60px;
    font-weight: 900;
}

.brochure_form{
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
}

.brochure_img{
    max-width: 500px;
    max-height: 500px;
    padding: 20px;
}

/* brochure ends */

/* Authority starts */
.authority_card{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    background-color: var(--light-color);
    border-left: 5px solid var(--primary-color);
    border-radius: 10px;
    height: 100%;
}

.authority_details{
    display: flex;
    justify-content: start;
    gap: 15px;
    align-items: center;
}
.authority_details img{
    width: 60px;
    height: 60px;
    border-radius: 15px;
    object-fit: cover;
}
.circle_4{
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(#fffeac, #f8fdca3c, transparent);
    border-radius: 50%;
    top: 35%;
    left: -20%;
    z-index: 2;
}
/* Authority ends */

/* Footer starts */
.footer-section {
    background: #f3f5f9;
    padding: 60px 0 20px;
    color: #5f6b7a;
}

.footer-logo {
    width: 140px;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #6c7a89;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #2f5fb3;
}

.footer-divider {
    margin: 30px 0 20px;
    border-color: #dfe3ea;
}

.footer-bottom {
    font-size: 14px;
}

.footer-icons i {
    font-size: 16px;
    margin-left: 15px;
    cursor: pointer;
    color: #6c7a89;
    transition: 0.3s;
}

.footer-icons i:hover {
    color: #2f5fb3;
}

@media screen and (max-width: 768px) {
    .footer-section .container-fluid{
        padding: 30px;
    }
}
@media screen and (min-width: 768px) {
    .footer-section .container-fluid{
        padding: 60px;
    }
}
/* Footer ends */