*==========================
    GOOGLE FONT
==========================*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;500;600&display=swap');

/*==========================
        RESET
==========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    width:100%;
    display:block;
}

:root{

    --black:#111111;
    --white:#ffffff;
    --gold:#D4AF37;
    --overlay:rgba(0,0,0,.55);

}


/* Floating Buttons */

.float-btn{
    position:fixed;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    text-decoration:none;
    z-index:99999;
    transition:.3s;
}


/* Rays Glow Effect */

.float-btn::before{
    content:"";
    position:absolute;
    width:90px;
    height:90px;
    border-radius:50%;
    animation:ripple 2s infinite;
    z-index:-1;
}

.float-btn::after{
    content:"";
    position:absolute;
    width:115px;
    height:115px;
    border-radius:50%;
    animation:ripple2 2s infinite;
    z-index:-2;
}


/* Call Button Left */

.call-btn{
    left:25px;
    background:linear-gradient(135deg,#0066ff,#00c6ff);
    box-shadow:0 0 25px #00c6ff;
}

.call-btn::before{
    background:rgba(0,102,255,.35);
}

.call-btn::after{
    background:rgba(0,198,255,.20);
}


/* WhatsApp Right */

.whatsapp-btn{
    right:25px;
    background:linear-gradient(135deg,#00c853,#25D366);
    box-shadow:0 0 25px #25D366;
}

.whatsapp-btn::before{
    background:rgba(37,211,102,.35);
}

.whatsapp-btn::after{
    background:rgba(0,200,83,.20);
}


/* Animation */

@keyframes ripple{

    0%{
        transform:scale(.8);
        opacity:1;
    }

    100%{
        transform:scale(1.5);
        opacity:0;
    }

}


@keyframes ripple2{

    0%{
        transform:scale(.8);
        opacity:.8;
    }

    100%{
        transform:scale(1.8);
        opacity:0;
    }

}


.float-btn:hover{
    transform:scale(1.12);
}


/* Mobile */

@media(max-width:768px){

.float-btn{
    width:58px;
    height:58px;
    font-size:26px;
}

.call-btn{
    left:15px;
}

.whatsapp-btn{
    right:15px;
}

}

/* ==========================
        DROPDOWN MENU
========================== */

.dropdown{
    position:relative;
}

.dropdown > a{
    display:flex;
    align-items:center;
    gap:6px;
}

.dropdown-content{
    position:absolute;
    top:100%;
    left:0;
    min-width:240px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    padding:10px 0;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.35s ease;
    z-index:9999;
}

.dropdown-content a{
    display:block;
    color:#222 !important;
    padding:12px 20px;
    font-size:15px;
    border:none !important;
    text-transform:capitalize;
}

.dropdown-content a:hover{
    background:#D4AF37;
    color:#fff !important;
    padding-left:28px;
}

.dropdown:hover .dropdown-content{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown:hover > a{
    color:#D4AF37;
}



