/*=========================================
        MODERN LIGHT FOOTER
=========================================*/

@font-face {
    font-family: GilroyRegular;
    src: url(gilroy-regular.ttf);
}
@font-face {
    font-family: GilroyBold;
    src: url(gilroy-bold.ttf);
}

footer{
    width:100%;
    background:#ffffff;
    border-top:1px solid #e5e7eb;
    position:relative;
    overflow:hidden;
    font-family: GilroyRegular;
}

.footer-heading,
.requestdemo-text,
.requestdemo-text2{
    font-family: GilroyBold;
}

.footer-links{
    font-family: GilroyRegular;
}

/* top colored divider */
footer::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#2563eb,#3b82f6,#0ea5e9,#f59e0b);
}

footer .row{
    width:100%;
    margin:0;
}

/*==============================
    COLUMN
===============================*/

footer .col-3{
    padding:2.5rem;
}

/*==============================
    HEADING
===============================*/

.footer-heading{
    font-size:17px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:18px;
    transition:.35s ease;
    display:inline-block;
    position:relative;
}

.footer-heading::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-7px;
    width:45px;
    height:3px;
    border-radius:20px;
    background:#2563eb;
    transition:.35s;
}

.col-3:hover .footer-heading{
    color:#2563eb;
    transform:scale(1.06);
}

.col-3:hover .footer-heading::after{
    width:65px;
}

/*==============================
    LINKS
===============================*/

footer a{
    text-decoration:none;
}

.footer-links{
    display:block;
    color:#475569;
    font-size:15px;
    margin:10px 0;
    padding:4px 0;
    transition:all .3s ease;
    position:relative;
    font-weight:500;
}

.footer-links::before{
    content:"›";
    position:absolute;
    left:-12px;
    opacity:0;
    color:#2563eb;
    transition:all .3s ease;
}

.footer-links:hover{
    color:#2563eb;
    padding-left:14px;
    font-weight:600;
}

.footer-links:hover::before{
    left:0;
    opacity:1;
}

/*==============================
    DIVIDER
===============================*/

.hr-ruler{
    width:100%;
    height:1px;
    background:#e5e7eb;
}

/*==============================
    REQUEST DEMO
===============================*/

footer .requestdemo-text{
    font-size:32px;
    font-weight:700;
    color:#0f172a;
    text-align:center;
}

footer .requestdemo-text::after{
    content:"Discover how ProcessFlow HRM simplifies workforce management.";
    display:block;
    font-size:15px;
    color:#64748b;
    font-weight:400;
    margin-top:12px;
}

footer .requestdemo-text2{
    font-size:32px;
    font-weight:700;
    color:#0f172a;
    text-align:center;
}

/*==============================
    BUTTON
===============================*/

footer .contactBtn{
    display:inline-block;
    margin-top:30px;
    background:linear-gradient(135deg,#2563eb,#0ea5e9);
    color:#fff;
    padding:14px 34px;
    border-radius:40px;
    font-weight:600;
    transition:.35s;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(37,99,235,.18);
}

.contactBtn:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 35px rgba(37,99,235,.30);
}

/*==============================
    SOCIAL ICONS
===============================*/

.each-socialapp{
    display:inline-block;
    margin:0 6px;
}

.each-socialapp i{
    width:46px;
    height:46px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#f8fafc;
    border:1px solid #dbeafe;
    color:#2563eb;
    font-size:18px;
    transition:.35s;
}

.each-socialapp:hover i{
    background:#2563eb;
    color:#fff;
    transform:translateY(-6px) scale(1.08);
    box-shadow:0 10px 25px rgba(37,99,235,.25);
}

/*==============================
    COPYRIGHT
===============================*/

.copyright-text{
    text-align:center;
    color:#64748b;
    font-size:14px;
}

/*==============================
    RESPONSIVE
===============================*/

@media(max-width:992px){

footer .col-3{
    width:50%;
    padding:2rem;
}

}

@media(max-width:768px){

footer .col-3{
    width:100%;
    padding:1.7rem;
}

.requestdemo-text{
    font-size:26px;
}

.footer-heading{
    font-size:16px;
}

.footer-links{
    font-size:14px;
}

.contactBtn{
    padding:12px 28px;
}

.each-socialapp i{
    width:42px;
    height:42px;
}

}