:root{
--burgundy:#6b0f2b;
--gold:#c89b3c;
--light:#fffaf7;
}
img{
    max-width:100%;
    display:block;
}
section{
    position:relative;
    overflow:hidden;
    padding:100px 0;
}
*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:var(--light);
overflow-x:hidden;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title h2{
font-size:2.5rem;
color:var(--burgundy);
}

header{
position:fixed;
top:0;
left:0;
width:100%;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,.1);
z-index:1000;
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0;
    min-height:110px;
}

.logo img{
    height:89px;
    transition:.3s;
}
@media(max-width:768px){
    .logo img{
        height:60px;
    }
}

nav ul{
    display:flex;
    gap:35px;
    list-style:none;
    align-items:center;
}
nav a{
    text-decoration:none;
    color:var(--burgundy);
    font-weight:600;
    font-size:16px;
    transition:.3s;
}

nav a:hover{
    color:var(--gold);
}

#menu-btn{
display:none;
font-size:24px;
cursor:pointer;
}
@media(max-width:768px){

    #menu-btn{
        display:block;
        font-size:30px;
        cursor:pointer;
        color:var(--burgundy);
        z-index:1001;
    }

}

.hero{
position:relative;
overflow:hidden;
}

.slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
opacity:0;
transition:1s;
}

.slide:nth-child(1){
background-image:url('Images/hero1.jpg');
}

.slide:nth-child(2){
background-image:url('Images/hero2.jpg');
}

.slide:nth-child(3){
background-image:url('Images/hero3.jpg');
}

.slide.active{
opacity:1;
}

/* ================= HERO ================= */

.hero{
    min-height:auto;
    padding-top:140px;
    padding-bottom:60px;
    background:linear-gradient(
        135deg,
        #faf6f3 0%,
        #fff 50%,
        #f8f1ec 100%
    );
    display:flex;
    align-items:center;
}

.hero-container{
    width:90%;
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

.hero-content{
    z-index:2;
}

.hero-tag{
    display:inline-block;
    background:rgba(200,155,60,.15);
    color:var(--gold);
    padding:10px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:4.2rem;
    line-height:1.1;
    color:var(--burgundy);
    margin-bottom:20px;
    font-family:'Playfair Display',serif;
}

.hero-content h1 span{
    color:var(--gold);
}

.hero-content p{
    font-size:1.1rem;
    line-height:1.9;
    color:#555;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-stats{
    display:flex;
    gap:50px;
    margin-top:45px;
}

.hero-stats h3{
    font-size:2rem;
    color:var(--gold);
}

.hero-stats p{
    margin:0;
    color:#666;
    font-size:.95rem;
}

/* SLIDER */

.hero-slider{
    position:relative;
    width:100%;
    max-width:100%;
    height:550px;
    overflow:hidden;
    border-radius:30px;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.hero-slide{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity 1s ease;
}

.hero-slide.active{
    opacity:1;
}

/* MOBILE */

@media(max-width:991px){

    .hero-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-content h1{
        font-size:3rem;
    }

    .hero-buttons,
    .hero-stats{
        justify-content:center;
    }

    .hero-slider{
        height:450px;
    }
}

@media(max-width:768px){

    .hero{
        padding-top:150px;
    }

    .hero-content h1{
        font-size:2.4rem;
    }

    .hero-stats{
        gap:25px;
    }

    .hero-slider{
    height:260px;
}
}
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:200px;
    height:58px;
    padding:0 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    font-size:16px;
    margin:0;
    transition:.3s;
}
.primary:hover,
.secondary:hover{
    transform:translateY(-3px);
}

.primary{
background:var(--gold);
color:white;
}

.secondary{
background:var(--burgundy);
color:white;
}

.about-grid{
    display:grid;
    grid-template-columns:520px 1fr;
    gap:60px;
    align-items:center;   /* keeps image and content vertically aligned */
    max-width:1200px;
    margin:0 auto;
}

.about-image{
    width:100%;
    max-width:520px;
    justify-self:start;
    margin-top:25px;
}

.about-content{
    width:100%;
    max-width:none;
}

.about-grid{
    display:grid;
    grid-template-columns:520px 1fr;
    gap:60px;
    align-items:stretch;
}

.about-image{
    height:100%;
}

.about-image img{
    width:100%;
    height:100%;
    min-height:550px;
    object-fit:cover;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.about-content{
    max-width:650px;
}

.about-tag{
    display:inline-block;
    background:rgba(200,155,60,.12);
    color:var(--gold);
    padding:10px 18px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.about-content h3{
    font-size:2.8rem;
    line-height:1.2;
    color:var(--burgundy);
    margin-bottom:25px;
    font-family:'Playfair Display', serif;
}

.about-content p{
    font-size:1.08rem;
    line-height:1.9;
    color:#555;
    margin-bottom:18px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin:30px 0;
}

.feature{
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
    padding:14px 18px;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.feature i{
    color:var(--gold);
    font-size:18px;
}

.feature span{
    font-weight:600;
    color:#333;
}

.about-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:20px;
}

@media (max-width:768px){

    .about-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .about-image{
        max-width:100%;
        order:-1;
    }

    .about-image img{
        height:320px;
        width:100%;
        object-fit:cover;
        border-radius:20px;
    }

    .about-content{
        max-width:100%;
        text-align:center;
    }

}
.stats{
display:flex;
gap:40px;
margin-top:30px;
}

.stats h3{
color:var(--burgundy);
font-size:2rem;
}

/* ================= SERVICES ================= */
.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:50px;
}

.service-card{
    position:relative;
    height:420px;
    border-radius:25px;
    overflow:hidden;
    cursor:pointer;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.service-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease;
}

.service-card:hover img{
    transform:scale(1.12);
}

.service-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:25px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.25),
        transparent
    );
}

.service-overlay span{
    color:var(--gold);
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:8px;
}

.service-overlay h3{
    color:#fff;
    font-size:1.8rem;
    margin-bottom:10px;
    font-family:'Playfair Display',serif;
}

.service-overlay p{
    color:#f3f3f3;
    font-size:15px;
    line-height:1.7;
}

@media(max-width:992px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .services-grid{
        grid-template-columns:1fr;
    }

    .service-card{
        height:350px;
    }
}
/* ================= SERVICES ================= */

.services-showcase{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:40px;
    align-items:center;
}

.service-tabs{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.service-tab{
    border:none;
    background:#fff;
    padding:18px 22px;
    border-radius:14px;
    text-align:left;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.service-tab:hover,
.service-tab.active{
    background:var(--burgundy);
    color:#fff;
    transform:translateX(8px);
}

.service-preview{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:30px;
    align-items:center;
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.service-image img{
    width:100%;
    height:520px;
    object-fit:cover;
    display:block;
}

.service-content{
    padding:40px;
}

.service-content span{
    color:var(--gold);
    font-weight:600;
    letter-spacing:1px;
}

.service-content h3{
    font-size:2.3rem;
    margin:15px 0;
    color:var(--burgundy);
    font-family:'Playfair Display',serif;
}

.service-content p{
    line-height:1.9;
    color:#555;
    margin-bottom:30px;
}

@media(max-width:991px){

    .services-showcase{
        grid-template-columns:1fr;
    }

    .service-tabs{
        display:grid;
        grid-template-columns:repeat(2,1fr);
    }

    .service-preview{
        grid-template-columns:1fr;
    }

    .service-image img{
        height:350px;
    }
}

@media(max-width:768px){

    .service-tabs{
        grid-template-columns:1fr;
    }

    .service-content{
        padding:25px;
        text-align:center;
    }

    .service-content h3{
        font-size:1.8rem;
    }

    .service-image img{
        height:280px;
    }
}

.service-actions{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:25px;
}

.service-btn{
    background:var(--gold);
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;
    transition:.3s;
}

.service-btn:hover{
    transform:translateY(-3px);
}

.service-whatsapp{
    width:52px;
    height:52px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:22px;
    transition:.3s;
}
.service-whatsapp i{
    animation:whatsappRing 1.2s infinite;
}

.service-whatsapp:hover{
    transform:translateY(-3px);
}
@keyframes whatsappRing{

    0%{
        transform:rotate(0deg);
    }

    10%{
        transform:rotate(15deg);
    }

    20%{
        transform:rotate(-15deg);
    }

    30%{
        transform:rotate(15deg);
    }

    40%{
        transform:rotate(-15deg);
    }

    50%{
        transform:rotate(0deg);
    }

    100%{
        transform:rotate(0deg);
    }

}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
}

.gallery-grid img{
width:100%;
height:300px;
object-fit:cover;
border-radius:15px;
cursor:pointer;
}

.lightbox{
position:fixed;
inset:0;
background:rgba(0,0,0,.9);
display:none;
justify-content:center;
align-items:center;
z-index:9999;
}

.lightbox img{
max-width:90%;
max-height:90%;
}

.close{
position:absolute;
top:20px;
right:30px;
font-size:40px;
color:white;
cursor:pointer;
}

#testimonials{
    background:linear-gradient(
        180deg,
        #fff,
        #faf7f2
    );
}

.testimonial-slider{
    position:relative;
    max-width:850px;
    margin:auto;
    min-height:260px;
}

.testimonial-card{
    display:none;
    text-align:center;
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    animation:fade .6s ease;
}

.testimonial-card.active{
    display:block;
}

.stars{
    font-size:28px;
    color:#B8944F;
    margin-bottom:20px;
}

.testimonial-card p{
    font-size:18px;
    line-height:1.8;
    color:#555;
    margin-bottom:25px;
}

.client h4{
    color:#B8944F;
    margin-bottom:5px;
}

.client span{
    color:#888;
    font-size:14px;
}

.testimonial-dots{
    margin-top:25px;
    text-align:center;
}

.dot{
    width:12px;
    height:12px;
    display:inline-block;
    border-radius:50%;
    background:#ddd;
    margin:0 5px;
    cursor:pointer;
}

.dot.active{
    background:#B8944F;
}

@keyframes fade{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:768px){

    .testimonial-card{
        padding:30px;
    }

    .testimonial-card p{
        font-size:16px;
    }

}

.contact-grid{
    display:grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap:50px;
    align-items:stretch;
}
.contact-grid > div:first-child{
    display:flex;
    flex-direction:column;
}
.contact-grid iframe{
    width:100%;
    height:100%;
    min-height:420px;
    border:none;
    border-radius:20px;
    margin-top:15px;
}
.contact-grid > div:last-child{
    max-width:650px;
    width:100%;
    justify-self:end;
}
#contactForm{
    display:flex;
    flex-direction:column;
    gap:16px;
    height:100%;
}

#contactForm input,
#contactForm textarea{
    width:100%;
    padding:18px 20px;
    border:1px solid #ddd;
    border-radius:14px;
}

#contactForm textarea{
    min-height:180px;
    resize:none;
}
@media(max-width:992px){

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-grid > div:last-child{
        max-width:100%;
    }

    .contact-grid iframe{
        min-height:350px;
    }

}

.contact-grid form{
display:flex;
flex-direction:column;
gap:15px;
}

.contact-grid input,
.contact-grid textarea{
padding:15px;
border:1px solid #ddd;
border-radius:10px;
}

.contact-grid button{
padding:15px;
background:var(--burgundy);
color:white;
border:none;
border-radius:10px;
cursor:pointer;
}


.call-btn,
.whatsapp-btn{
    position:fixed;
    right:25px;
    width:62px;
    height:62px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    color:#fff;
    font-size:24px;
    text-decoration:none;
    z-index:9999;
    box-shadow:0 10px 25px rgba(0,0,0,.18);
    transition:.3s ease;
}

.call-btn:hover,
.whatsapp-btn:hover{
    transform:translateY(-3px);
}

.call-btn{
    bottom:105px;
    background:var(--burgundy);
}

.whatsapp-btn{
    bottom:25px;
    background:#25D366;
}

@media(max-width:768px){

    .call-btn{
        bottom:95px;
        right:20px;
    }

    .whatsapp-btn{
        bottom:20px;
        right:20px;
    }

}

@media(max-width:768px){

    #menu-btn{
        font-size:30px;
        padding:10px;
        line-height:1;
    }

    header{
        background:rgba(255,255,255,.95);
        backdrop-filter:blur(10px);
    }

    .nav-container{
        min-height:75px;
    }

}

/* Desktop */
nav{
    display:block;
}

nav ul{
    display:flex;
    flex-direction:row;
    gap:35px;
    list-style:none;
    align-items:center;
}

/* Mobile only */
@media(max-width:768px){

    nav{
        display:none;
    }

    nav.active{
        display:block;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:white;
        box-shadow:0 10px 25px rgba(0,0,0,.08);
    }

}

@media(max-width:768px){

    nav ul{
        flex-direction:column;
        padding:20px;
    }

}

.stats{
flex-direction:column;
gap:20px;
}

.hero h1{
font-size:2.5rem;
}
.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    align-items:center;
}

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
}
.hero-image img{
    width:100%;
    max-width:550px;
    height:420px;
    object-fit:cover;
    border-radius:25px;
    box-shadow:0 25px 50px rgba(0,0,0,.35);
    border:4px solid rgba(255,255,255,.15);
}

.hero-stats h3{
    color:var(--gold);
    font-size:2rem;
    transition:transform .3s ease;
}

.hero-stats h3:hover{
    transform:scale(1.08);
}
/* ================= FOOTER ================= */

footer{
    background:linear-gradient(135deg,#1a1a1a,#2b0b18,#111);
    color:#fff;
    padding:30px 0 0;
}

.footer-container{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:1.3fr .9fr .9fr 1.4fr;
    gap:20px;
    align-items:start;
}

.footer-col{
    display:flex;
    flex-direction:column;
}

.footer-logo{
    width:65px;
    margin-bottom:10px;
}
.footer-col:first-child{
    max-width:280px;
    margin-right:40px;
}
.footer-col h3,
.footer-col h4{
    min-height:35px;
}

.footer-col p,
.footer-col li,
.footer-col a{
    font-size:14px;
    line-height:1.6;
    color:#d8d8d8;
    text-decoration:none;
}

.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:6px;
}

.footer-contact p{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:8px;
}

.footer-contact i{
    color:var(--gold);
    min-width:15px;
    margin-top:3px;
}

.social-links{
    display:flex;
    gap:8px;
    margin-top:10px;
}

.social-links a{
    width:34px;
    height:34px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.08);
}

.footer-bottom{
    margin-top:20px;
    padding:12px 0;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.1);
}

.footer-bottom p{
    font-size:13px;
    margin:0;
}
.gallery-slider-wrapper{
    position:relative;
    display:flex;
    align-items:center;
    gap:15px;
}

.gallery-slider{
    overflow:hidden;
    width:100%;
}

.gallery-track{
    display:flex;
    transition:transform .5s ease;
}

.gallery-item{
    width:calc(100% / 4);
    min-width:calc(100% / 4);
    padding:10px;
    height:280px;
    object-fit:cover;
    border-radius:20px;
}

.gallery-nav{
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:var(--burgundy);
    color:#fff;
    cursor:pointer;
    font-size:20px;
    flex-shrink:0;
    transition:.3s;
}

.gallery-nav:hover{
    background:var(--gold);
    transform:scale(1.08);
}

@media(max-width:992px){

    .gallery-item{
        width:50%;
        min-width:50%;
    }

}

@media(max-width:768px){

    .gallery-item{
        width:100%;
        min-width:100%;
    }

    .gallery-nav{
        width:45px;
        height:45px;
    }

}
@media(max-width:768px){

    .hero{
        min-height:auto;
        padding-top:100px;
    }

    .hero-container{
        display:flex;
        flex-direction:column;
        gap:20px;
    }

    .hero-slider{
        width:100%;
        height:340px;
        margin:0 auto;
    }

    .hero-slide{
        width:100%;
        height:100%;
        object-fit:cover;
    }

     .about-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

}

    .about-image img{
        width:100%;
        height:auto;
        max-height:350px;
    }
.image-viewer{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.35);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
    backdrop-filter:blur(4px);
}

.image-viewer.active{
    display:flex;
}

.image-viewer img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}

#closeViewer{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
}
.viewer-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:#fff;
    font-size:22px;
    cursor:pointer;
    backdrop-filter:blur(5px);
    transition:.3s;
}

.viewer-nav:hover{
    background:var(--gold);
}

#prevImage{
    left:120px;
}

#nextImage{
    right:120px;
}

@media(max-width:768px){

    #prevImage{
        left:10px;
    }

    #nextImage{
        right:10px;
    }

}
footer{
    position:relative;
    z-index:1;
}

.call-btn,
.whatsapp-btn{
    border:none;
    outline:none;
}
.about-buttons .btn.primary{
    position:relative;
    overflow:hidden;
    animation:pulseGallery 2s infinite;
}

.about-buttons .btn.primary{
    position:relative;
    animation:pulseGallery 2s infinite;
}

.about-buttons .btn.primary::after{
    content:"↓";
    margin-left:8px;
    display:inline-block;
    animation:arrowDown 1s infinite;
}

@keyframes pulseGallery{

    0%{
        transform:translateY(0);
        box-shadow:0 0 0 rgba(206,159,55,0);
    }

    50%{
        transform:translateY(-4px);
        box-shadow:0 10px 25px rgba(206,159,55,.35);
    }

    100%{
        transform:translateY(0);
        box-shadow:0 0 0 rgba(206,159,55,0);
    }

}

@keyframes arrowDown{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(6px);
    }

    100%{
        transform:translateY(0);
    }

}
.service-btn{
    position:relative;
    overflow:hidden;
    background:var(--gold);
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;
    transition:.3s;
}

.service-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.7),
        transparent
    );
    animation:shine 2.2s infinite;
}

@keyframes shine{

    0%{
        left:-100%;
    }

    100%{
        left:200%;
    }

}
/* FLOATING CALL BUTTON */

.call-btn{
    animation:callPulse 2s infinite;
}

.call-btn i{
    animation:phoneRing 1s infinite;
}

/* FLOATING WHATSAPP BUTTON */

.whatsapp-btn{
    animation:whatsappPulse 2s infinite;
}

.whatsapp-btn i{
    animation:whatsappShake 1.2s infinite;
}

/* PHONE RING */

@keyframes phoneRing{

    0%,100%{
        transform:rotate(0deg);
    }

    10%{
        transform:rotate(20deg);
    }

    20%{
        transform:rotate(-20deg);
    }

    30%{
        transform:rotate(20deg);
    }

    40%{
        transform:rotate(-20deg);
    }

    50%{
        transform:rotate(0deg);
    }

}

/* CALL BUTTON PULSE */

@keyframes callPulse{

    0%{
        box-shadow:0 0 0 0 rgba(107,15,43,.5);
    }

    70%{
        box-shadow:0 0 0 18px rgba(107,15,43,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(107,15,43,0);
    }

}

/* WHATSAPP ICON SHAKE */

@keyframes whatsappShake{

    0%,100%{
        transform:rotate(0deg);
    }

    20%{
        transform:rotate(15deg);
    }

    40%{
        transform:rotate(-15deg);
    }

    60%{
        transform:rotate(15deg);
    }

    80%{
        transform:rotate(-15deg);
    }

}

/* WHATSAPP BUTTON PULSE */

@keyframes whatsappPulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.55);
    }

    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}