/* ==========================================
   PLANET JOBS PREMIUM FOOTER
========================================== */

.footer-wrapper{
    background:#fff;
    border-top:4px solid #ef233c;
    box-shadow:0 -6px 25px rgba(0,0,0,.05);
     margin-bottom:0 !important;
    padding-bottom:0 !important;
}

.footer-main{
    padding:25px 0 0px;
}

/* ==========================
   FOOTER ROW
========================== */

.footer-row{
    align-items:flex-start;
    row-gap:30px;
}

/* ==========================
   LOGO
========================== */

.footer-logo{
    display:inline-block;
}

.footer-logo img{
    width:145px;
    height:auto;
    transition:.3s;
}

.footer-logo img:hover{
    transform:scale(1.03);
}

.footer-text{
    margin:18px 0;
    color:#666;
    font-size:15px;
    line-height:1.9;
    max-width:280px;
}

/* ==========================
   TITLES
========================== */

.footer-title,
.footer-heading{
    font-size:20px;
    font-weight:700;
    color:#111;
    margin-bottom:22px;
}

/* ==========================
   LINKS
========================== */

.footer-links{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-links li{
    margin-bottom:15px;
}

.footer-links li:last-child{
    margin-bottom:0;
}

.footer-links a{
    color:#555;
    text-decoration:none;
    display:inline-block;
    transition:.25s;
}

.footer-links a:hover{
    color:#ef233c;
    transform:translateX(6px);
}

/* underline animation */

.footer-links a::after{
    content:"";
    display:block;
    width:0;
    height:2px;
    background:#ef233c;
    transition:.3s;
}

.footer-links a:hover::after{
    width:100%;
}

/* ==========================
   SOCIAL
========================== */

.footer-social{
    display:flex;
    gap:14px;
    margin-top:18px;
}

.footer-social a{
    width:46px;
    height:46px;
    border-radius:50%;
    background:#f5f5f5;
    color:#444;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
}

.footer-social a:hover{
    background:#ef233c;
    color:#fff;
    transform:translateY(-5px);
    box-shadow:0 10px 22px rgba(239,35,60,.25);
}
/* ==========================================
   APP CARD
========================================== */

.footer-app-card{
    background:#fafafa;
    height:100%;
        transition:.35s;
}

.footer-app-card:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 30px rgba(0,0,0,.08);
}

.footer-app-card h3{
    font-size:30px;
    font-weight:700;
    color:#111;
    margin-bottom:12px;
}

.footer-app-card p{
    color:#666;
    line-height:1.7;
    margin-bottom:22px;
}

/* ==========================
   STORE BUTTONS
========================== */

.store-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.store-buttons img{
    height:48px;
    border-radius:10px;
    transition:.3s;
}

.store-buttons img:hover{
    transform:translateY(-3px) scale(1.05);
}

/* ==========================
   FOOTER BOTTOM
========================== */



.footer-copy{
    margin:0;
    color:#777;
    font-size:15px;
}
.footer-divider{
    margin:0 !important;
    border:0 !important;
    height:1px;
    background:#e5e5e5;
}

/* ==========================
   DESKTOP
========================== */

@media (min-width:992px){

    .footer-accordion{
        display:none;
    }

    .footer-heading{
        display:block;
    }

    .footer-links{
        display:block !important;
    }

}

/* ==========================
   MOBILE START
========================== */

@media (max-width:991px){

   .footer-main{
    padding:18px 0 0;
}

    .footer-row{
        row-gap:0;
    }

    .footer-row>div{
        margin-bottom:18px;
    }

    .footer-logo{
        display:block;
        text-align:center;
    }

    .footer-logo img{
        width:120px;
        margin:auto;
    }

    .footer-text{
        max-width:100%;
        text-align:center;
        margin:18px auto;
    }

    .footer-title{
        text-align:center;
    }

    .footer-social{
        justify-content:center;
        margin-bottom:10px;
    }

}
/* ==========================================
   MOBILE ACCORDION
========================================== */

.footer-heading{
    display:block;
}

.footer-accordion{
    display:none;
    width:100%;
    border:none;
    background:none;
    padding:16px 0;
    cursor:pointer;
    font-size:18px;
    font-weight:700;
    color:#111;
    justify-content:space-between;
    align-items:center;
    transition:.3s;
}

.footer-accordion i{
    transition:.3s;
}

.footer-accordion.active i{
    transform:rotate(180deg);
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:991px){

    .footer-heading{
        display:none;
    }

    .footer-accordion{
        display:flex;
    }

    .footer-links{
        display:none;
        background:#fafafa;
        padding:16px 20px;
        margin:0 0 18px;
        border-radius:14px;
    }

    .footer-links.show{
        display:block;
        animation:fadeMenu .35s ease;
    }

    .footer-links li{
        margin-bottom:12px;
    }

    .footer-links li:last-child{
        margin-bottom:0;
    }

    .footer-links a{
        display:block;
    }

    .footer-app-card{
        margin-top:15px;
        text-align:center;
    }

    .store-buttons{
        justify-content:center;
    }

 .footer-copy{
    margin:0;
    line-height:1;
    font-size:14px;
}

}

/* ==========================================
   ANIMATIONS
========================================== */

@keyframes fadeMenu{

    from{
        opacity:0;
        transform:translateY(-10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@keyframes footerFade{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.footer-main{
    animation:footerFade .6s ease;
}
/* FOOTER BOTTOM */

.footer-bottom{
    width:100%;
    background:#eaecec;
    padding:6px 0;
    margin:0;
}

.footer-bottom-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:40px;
}

.footer-bottom-left{
    display:flex;
    align-items:center;
    gap:18px;
}

.footer-bottom-left h6{
    margin:0;
    font-size:16px;
    line-height:1;
}

.footer-bottom-right .footer-copy{
    margin:0;
    color:#666;
}

@media(max-width:768px){

    .footer-bottom-content{
        flex-direction:column;
        gap:18px;
        text-align:center;
    }

    .footer-bottom-left{
        flex-direction:column;
        gap:12px;
    }

}

/* ==========================================
   PREMIUM EFFECTS
========================================== */

.footer-wrapper *{
    transition:.25s ease;
   
}

.footer-app-card{
    background:#fafafa;
    border:1px solid #ececec;
    border-radius:16px;
    padding:18px 20px;
    transition:.35s;
    overflow:hidden;
    position:relative;
}

.footer-app-card h3{
    font-size:22px;
    font-weight:700;
    margin-bottom:8px;
}

.footer-app-card p{
    font-size:14px;
    color:#666;
    line-height:1.5;
    margin-bottom:15px;
}

.store-buttons{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:nowrap;      /* ഒരേ ലൈനിൽ */
}

.store-buttons img{
    height:38px;
    width:auto;
}

.footer-app-card::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:100%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transition:.7s;
}

.footer-app-card:hover::before{
    left:120%;
}

/* ==========================================
   BACK TO TOP
========================================== */

.back-top{

    position:fixed;

    right:25px;
    bottom:25px;

    width:48px;
    height:48px;

    border-radius:50%;

    background:#ef233c;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(239,35,60,.35);

    z-index:999;

    transition:.3s;
}

.back-top:hover{

    background:#111;

    color:#fff;

    transform:translateY(-6px);

}

@media (max-width:991px){

    .back-top{

        width:42px;
        height:42px;

        right:15px;
        bottom:15px;

    }

}