@import url('./mobile.css');

:root{
    --primary-color: #273c75;
    --secondary-color: #e84118;
    --light-color: #f5f6fa;
    --white-color: #fff;
    --dark-color: #353b48;
    --black-color: #000;
}

#apply{
    padding: 80px 0;
}

.btn-theme-primary{
    background: var(--primary-color);
    color: var(--light-color);
    padding: 14px 80px;
    border-radius: 40px;
    border: 0;
    text-decoration: none;
    display: inline-block;
}

#about{
    background: var(--light-color);
}

.icons-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.icon-box{
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-box img{
    height: 60px;
}

.process-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 20px auto;
    width: 80%;
    border: 2px solid var(--dark-color);
    border-radius: 100px 0 100px 0;
    overflow: hidden;
}

.process-wrapper{
    background: var(--light-color);
    padding: 50px;
    display: grid;
    grid-template-columns: min-content 1fr;
    gap: 10px;
}

.process-wrapper .icon{
    background: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50px;
    border: 2px solid var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-wrapper.primary{
    background: var(--primary-color);
    color: var(--white-color);
}

.process-wrapper.primary .icon{
    background: var(--light-color);
}


#stats{
    background: var(--primary-color);
    padding: 100px 0;
}

.stats-bx{
    background: var(--light-color);
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
}

.stats-bx h1{
    font-size: 50px;
    font-weight: 700;
    color: var(--primary-color);
}

.stats-bx span{
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
}

#services{
    padding: 80px 0;
}

.service-box{
    padding: 100px 20px 20px;
    background-size: cover !important;
    margin: 10px 0;
    background-position: center center;
    position: relative;
    overflow: hidden;
}

.service-box::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black-color);
    opacity: 0.6;
    /* z-index: -1; */
}

.service-box::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.9;
    transform: translateY(100%);
    transition: 0.4s linear;
    /* z-index: -1; */
}

.service-box:hover::after{
    transform: translateY(0)
}

.service-box .body{
    position: relative;
    z-index: 99;
    color: var(--white-color);
}

.box{
    background: var(--white-color);
    padding: 40px;
    box-shadow: 0 10px 10px rgba(0,0,0,0.4);
    border-radius: 10px;
}

.box h4{
    margin-bottom: 20px;
}

#cta{
    padding: 80px 0;
}

#cta p{
    font-size: 20px;
}

#footer{
    background: var(--primary-color);
    padding: 40px 0;
    color: var(--white-color);
}

#footer h4{
    margin-bottom: 40px;
}
.btn-footer{
    color: var(--white-color);
    text-decoration: none;
    display: block;
}

#copyright{
    background: var(--black-color);
    color: var(--white-color);
}

#header{
    padding: 120px 0;
    background: var(--primary-color);
    color: var(--white-color);
}

.whatsapp{
    background: #128C7E;
    width: 60px;
    height: 60px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 20px;
    border-radius: 60px;
    left: 20px;
    z-index: 99;
    color: var(--white-color);
}

.phone{
    background: #2ecc71;
    color: var(--white-color);
    width: 60px;
    height: 60px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 60px;
    z-index: 99;
}
