/* google font */
@import url('https://fonts.googleapis.com/css2?family=Electrolize&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
*{
    &::selection{
        color: var(--Clor-white);
        background-color: var(--Clor-black);
    }
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Electrolize", sans-serif;
    font-display: swap;
    --Clor-black: #000;
    --Clor-white: #fff;
    --Clor-lightBlack: #444;
    --Clor-darkWhite: #e5e5e5;
}
section{
    padding: 7vw 0 0 0;
    background-color: var(--Clor-white);
    position: relative;
}
a{
    text-decoration: none;
}
.row{
    --bs-gutter-x: none;
}
.sec-headings{
    text-align: center;
    font-size: clamp(26px, 0.711rem + 2.675vw, 80px);
    margin-bottom: clamp(20px, 4vw, 70px);
    position: relative;
    &::before{
        position: absolute;
        content: "";
        width: 15vw;
        height: 1px;
        background-color: var(--Clor-black);
        top: -15%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}
.btnn button{
    font-size: clamp(0.438rem, 0.179rem + 1.295vw, 2.25rem);
    padding: .8vw 3vw;
    background-color: var(--Clor-lightBlack);
    color: var(--Clor-white);
    font-weight: 700;
    border: 1px solid var(--Clor-darkWhite);
    border-radius: 5px;
    transition: .4s ease;
    & > a{
        color: var(--Clor-darkWhite);
        text-decoration: none;
        transition: .4s ease;
    }
    &:hover{
        background-color: var(--Clor-white);
        color: var(--Clor-lightBlack);
        border: 1px solid var(--Clor-black);
    }
    &:hover a{
        color: var(--Clor-black);
    }
}
.right,
.left{
    width: 50%;
}
.more{
    display: flex;
    justify-content: right;
    align-items: center;
    & > a{
        text-decoration: none;
        color: var(--Clor-black);
        font-weight: 700;
        font-size: 1.2vw;
        letter-spacing: 2px;
        margin-right: 2vw;
        position: relative;
        transition: .5s ease;
        transform: translate(0) !important;
        &::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--Clor-black);
            transition: width 0.3s ease;
        }
        &:hover{
            transform: translateX(1vw) !important;
        }
        &:hover::before {
            font-weight: 900;
            width: 100%;
        }
    }
}
.col-lg-3,
.col-lg-4{
    z-index: 2;
}
.box-shadow-white{
    box-shadow: inset 0 0 5px 5px rgba(0, 0, 0, 0.144);
}
.box-shadow-black{
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1),
    inset 0 0 5px 5px rgba(255, 255, 255, 0.123);
}
.graphic-circle-white{
    background-color: #d5d5d5e8 !important;
}
.graphic-line-white{
    background-color: rgba(0, 0, 0, 0.1) !important;
    opacity: 0.5 !important;
}
/* preloader */
#preloader{
    width: 100vw;
    height: 100vh;
    background: var(--Clor-white) url(../images/preloader.gif) no-repeat center center;
    filter: grayscale(100%);
    background-size: 50%;
    position: fixed;
    z-index: 9999;
}
/* preloader */
/* navbar */
.navbar{
    width: 100vw;
    position: fixed;
    z-index: 999;
    padding: 0vw 5vw;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 0 10px 5px rgba(0, 0, 0, 0.05);
}
.navbar .navbar-brand{
    display: flex;
    align-items: center;
    transform: translate(0) !important;
    & > h1{
        font-size: 1.6vw;
        font-weight: 600;
        margin-bottom: 0;
    }
}
.navbar .container-fluid{
    padding: 1.5% 0;
    & > .navbar-brand{
        font-weight: 600;
    }
}
.navbar .navbar-nav .nav-item{
    margin-right: 1vw;
    font-weight: 600;
    position: relative;
    transition: .3s ease;
    &::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--Clor-black);
        transition: width 0.3s ease;
    }
    &:hover::before {
        font-weight: 900;
        width: 100%;
    }
    & > .nav-link{
        transform: translate(0) !important;
        &:hover{
            color: var(--Clor-black);
        }
    }
}
/* navbar */
/* banner */
#banner{
    background: linear-gradient(135deg, #000 0%, #111 50%, #000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow: hidden;
    position: relative;
    & > .container{
        max-width: 100vw;
    }
}
#banner .banner-contents .sub-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}
#banner .banner-contents .sub-container .auto-text-blank-span{
    color: var(--Clor-white);
    font-size: clamp(1.25rem, -0.179rem + 7.143vw, 11.25rem);
    text-transform: capitalize;
    letter-spacing: .1vw;
    margin-bottom: 3vw;
    cursor: pointer;
}
#banner .banner-contents .sub-container .text-auto-effect .main-heading-text{
    font-size: clamp(1.25rem, -0.179rem + 7.143vw, 11.25rem);
    color: transparent;
    -webkit-text-stroke: 1px var(--Clor-darkWhite);
    background: linear-gradient(45deg, var(--Clor-white), #a0a0a0, var(--Clor-white));
    background-clip: text;
    text-transform: capitalize;
    letter-spacing: .1vw;
    margin-bottom: 3vw;
    transform: translate(0) !important;
    cursor: pointer;
}
#banner .banner-contents .sub-container h2{
    font-size: clamp(1.25rem, 0.063rem + 5.938vw, 9.563rem);
    color: transparent;
    -webkit-text-stroke: 2px var(--Clor-darkWhite);
    text-transform: capitalize;
    letter-spacing: .1vw;
    margin-bottom: 3vw;
    transform: translate(0) !important;
    cursor: pointer;
}
#banner .typed-cursor{
    font-size: clamp(1.25rem, -0.179rem + 7.143vw, 11.25rem);
    color: var(--Clor-darkWhite);
}
#banner .banner-contents .para{
    color: #fff;
    display: flex;
    justify-content: center;
    & > span{
        transition: .5s ease;
        &:hover{
            transform:skewX(15deg);
            cursor: pointer;
        }
        color: transparent;
        -webkit-text-stroke: 1px var(--Clor-white);
        text-transform: capitalize;
        letter-spacing: .1vw;
        font-size: 1.4vw;
    }
}
#banner .btnn{
    margin-top: 5%;
    display: flex;
    justify-content: center;
}
.graphic-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.circle-1 {
    width: 15vw;
    height: 15vw;
    top: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}
.circle-2 {
    width: 12vw;
    height: 12vw;
    top: 40%;
    left: 80%;
    animation: float 6s ease-in-out infinite;
}
.circle-3 {
    width: 8vw;
    height: 8vw;
    top: 60%;
    left: 15%;
    animation: float 4s ease-in-out infinite;
}
.circle-4 {
    width: 7vw;
    height: 7vw;
    top: 80%;
    left: 75%;
    animation: float 3s ease-in-out infinite;
}
.line {
    position: absolute;
    background: rgba(255,255,255,0.05);
}
.line-1 {
    width: 2px;
    height: 100%;
    top: 0;
    left: 30%;
}
.line-2 {
    width: 100%;
    height: 2px;
    top: 30%;
    left: 0;
}
.line-3 {
    width: 2px;
    height: 100%;
    top: 0;
    right: 30%;
}
.line-4 {
    width: 100%;
    height: 2px;
    bottom: 30%;
    left: 0;
}
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}
/* banner */
/* services */
#services .col-lg-4{
    margin-bottom: 2.5%;
}
#services .service-contents{
    height: 100%;
    padding: 1vw;
    margin: 0 5% 0% 0;
    border: 1px solid var(--Clor-lightBlack);
    border-top: 5px solid var(--Clor-lightBlack);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: .5s ease;
    & > span{
        font-size: 3vw;
    }
    & > h4{
        font-size: 2vw;
        font-weight: 500;
        margin: 1vw 0;
    }
    & > p{
        font-size: 1.2vw;
        font-weight: 500;
        font-family: "Raleway", sans-serif;
    }
    &:hover{
        cursor: pointer;
        box-shadow: .5px .5px 51px var(--Clor-darkWhite);
        transform: translateY(-10px);
    }
}
/* services */
/* about */
#about{
    margin-top: 2vw;
    background-color: var(--Clor-lightBlack);
}
#about .sec-headings{
    color: var(--Clor-white);
    &::before{
        background-color: var(--Clor-white);
    }
}
#about .about-contents{
    display: flex;
    width: 100%;
}
#about .about-contents .left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2vw;
    color: var(--Clor-darkWhite);
    & > h4{
        color: var(--Clor-white);
        font-size: 3vw;
        margin-bottom: 2vw;
        transform: translate(0) !important;
    }
    & > p{
        line-height: 2vw;
        font-size: 1.4vw;
    }
    & > .more{
        justify-content: left;
        margin-top: 1vw;
        & > a{
            color: var(--Clor-white) !important;
            &::before{
                background-color: var(--Clor-white) !important;
            }
        }
    & > a{
        text-decoration: none;
        color: var(--Clor-black);
        font-weight: 700;
        font-size: 1.4vw;
        letter-spacing: 2px;
        margin-right: 2vw;
        position: relative;
        transition: .5s ease;
        transform: translate(0) !important;
        &::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--Clor-black);
            transition: width 0.3s ease;
        }
        &:hover{
            transform: translateX(1vw) !important;
        }
        &:hover::before {
            font-weight: 900;
            width: 100%;
        }
    }
    }
}
#about .about-contents .right{
    display: flex;
    justify-content: center;
    align-items: center;
    & > .img{
        border-radius: 5%;
        overflow: hidden;
        & > img{
            width: 100%;
            height: auto;
            transition: .5s ease;
            &:hover{
                transform: scale(1.08);
            }
        }
    }
}
#about .graphic-elements .circle-1{
    top: 30%;
}
#about .graphic-elements .circle-3{
    top: 70%;
    left: 20%;
}
/* about */
/* achivements */
#achivements{
    background-color: var(--Clor-lightBlack);
    border-radius: 5px;
    padding: 5vw 0 4vw 0;
}
#achivements .achivements-contents{
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.062);
    padding: 2vw;
    border-radius: 10px;
}
#achivements .row .achivements-contents .counter-parent{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    & > .counter-child{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        & > .texts{
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-bottom: 1vw;
            & > h4{
                color: var(--Clor-darkWhite);
                font-size: 3vw;
                margin-bottom: 0;
                transform: translate(0) !important;
                cursor: pointer;
            }
            & > span{
                color: var(--Clor-darkWhite);
                text-align: center;
                font-size: 3vw;
                transform: translate(0) !important;
                cursor: pointer;
            }
        }
        & > p{
            font-size: 1.8vw;
            color: var(--Clor-white);
        }
    }
}
/* achivements */
/* difference */
#difference .diff-containers{
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 5%;
}
#difference .diff-containers .diff-main{
    background-color: #e5e5e51a;
    border: 1px solid var(--Clor-lightBlack);
    border-radius: 15px;
    padding: 2vw;
    height: 100%;
    transition: .5s ease;
    & > .header{
        padding: 1vw;
        margin-bottom: 3vw;
        & > h4{
            font-size: 2.4vw;
            margin-bottom: 2vw;
        }
        & > span{
            font-size: 1.5vw;
            border: 1px solid var(--Clor-lightBlack);
            padding: 1vw;
            border-radius: 10px;
        }
    }
    & > .lists > ul{
        list-style-type: none;
        padding: 0;
        & > li{
            font-family: "Raleway", sans-serif;
            opacity: .8;
            padding: 1.5vw 0;
            border-bottom: 1px solid var(--Clor-lightBlack);
            font-size: 1.5vw;
            transform: translate(0) !important;
            & > span{
                margin-right: 2vw;
            }
        }
    }
    &:hover{
        transform: translateY(-10px);
    }
}
.diff-divider{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    & > .vs-circle{
        width: 5vw;
        height: 5vw;
        border: 1px solid var(--Clor-lightBlack);
        padding: 1vw;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2vw;
        background: var(--Clor-darkWhite);
        transform: translate(0) !important;
    }
    & > .divider-line{
        width: 2px;
        height: 25%;
        background: linear-gradient(to bottom, transparent, #000, transparent);
        margin: 1vw 0;
    }
}
#difference .diff-containers .diff-ascender{
    background-color: var(--Clor-black);
    border: 1px solid var(--Clor-lightBlack);
    & > .header{
        & > h4{
            color: var(--Clor-white);
        }
        & > span{
            color: var(--Clor-darkWhite);
            border: 1px solid var(--Clor-darkWhite);
        }
    }
    & > .lists > ul{
        & > li{
            color: var(--Clor-darkWhite);
        }
    }
}
/* difference */
/* portfolio */
.portfolio {
    background-color: var(--Clor-lightBlack);
    margin-top: 5vw;
    padding-bottom: 5vw;
}
#portfolio .sec-headings{
    color: var(--Clor-white);
    &::before{
        background-color: var(--Clor-darkWhite);
    }
}
.portfolio-intro {
    color: var(--Clor-darkWhite);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3vw;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background-color: var(--Clor-lightBlack);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--Clor-darkWhite);
    border-radius: 10px;
    z-index: 2;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.747);
}

.portfolio-img {
    height: 250px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    & > div > span > .img > img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
}
.portfolio-item:hover .portfolio-img img {
    transform: scale(1.05);
}
.portfolio-content {
    padding: 2vw;
    color: var(--Clor-darkWhite);
}
.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.portfolio-tag {
    background-color: var(--Clor-black);
    color: var(--Clor-white);
    padding: .3vw .6vw;
    font-size: .8vw;
    margin-right: 5px;
    margin-bottom: 5%;
    text-transform: uppercase;
    letter-spacing: 0px;
    border-radius: 10px;
}
/* portfolio */
/* testimonials */
.testimonials{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 70%;
    margin: 0 auto 80px;
}
.testimonials-item {
    display: flex;
    width: 100%;
    margin-bottom: 4vw;
    align-items: center;
}
.testimonials-item:nth-child(odd) {
    flex-direction: row;
}
.testimonials-item:nth-child(even) {
    flex-direction: row-reverse;
}
.testimonials-content {
    flex: 1;
    padding: 2vw;
    background: linear-gradient(to right, rgba(255, 251, 251, 0.95), rgba(255, 255, 255, 0.95)), url(../images/quatation-testimonials-client-reviews-ascender-solutions-services.webp) no-repeat center center;
    background-size: 15vw;
    padding: 3vw;
    border-radius: 15px;
    border-left: 4px solid var(--Clor-lightBlack);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}
.testimonials-item:nth-child(even) .testimonials-content{
    border-left: none;
    border-right: 4px solid var(--Clor-lightBlack);
}
.testimonials-text{
    font-style: italic;
    font-size: 1.2vw;
    line-height: 1.7;
    margin-bottom: 1vw;
}
.testimonials-client {
    display: flex;
    align-items: center;
    border-radius: 5px;
    padding: 1vw;
    transform: translate(0) !important;
}
.testimonials-avatar {
    width: 5vw;
    height: 5vw;
    border-radius: 50%;
    background: var(--Clor-darkWhite);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1vw;
    font-size: 1.4vw;
    color: var(--Clor-lightBlack);
    border: 2px solid var(--Clor-black);
    overflow: hidden;
}
.testimonials-details h4{
    font-size: 1.4vw;
}
.testimonials-details p {
    margin: 0;
    color: var(--Clor-lightBlack);
    font-size: 1.1vw;
}
.testimonials-gap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 20%;
    height: 2px ;
    background-color: var(--Clor-lightBlack);
    z-index: 2;
    & > span > i{
        padding-left: 1vw;
    }
}
#testimonials .odd{
    justify-content: flex-start;
    & > span > i{
        padding-left: 0;
        padding-right: 1vw;
    }
}
/* testimonials */
/* contact */
#contact{
    background-color: var(--Clor-black);
}
#contact .sec-headings{
    color: var(--Clor-white);
    z-index: 2;
    &::before{
        background-color: var(--Clor-darkWhite);
    }
}
.social-section {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 5vw;
    padding-bottom: 4vw;
    border-bottom: 1px solid var(--Clor-darkWhite);
    & > h4{
        font-size: 1.2rem;
        margin-bottom: 25px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--Clor-darkWhite);
    }
    & > .social-links{
        display: flex;
        justify-content: center;
        gap: 2vw;
        width: 100%;
        & > .social-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--Clor-darkWhite);
            transition: all 0.3s ease;
            padding: 1vw;
            border-radius: 10px;
            background-color: var(--Clor-lightBlack);
            width: 14%;
            height: 14%;
            &:hover {
                transform: translateY(-5px);
                background-color: #222222;
                box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
            }
        }
    }
}
.social-icon {
    font-size: 2vw;
    margin: .5vw 0 1vw 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-name {
    font-size: 1.2vw;
    text-transform: uppercase;
}
/* contact */
/* footer */
#footer{
    padding: 0 0 2vw 0;
    background-color: var(--Clor-black);
    color: var(--Clor-darkWhite);
    position: relative;
}
#footer .col-lg-3{
    z-index: 9;
    & > .footer-contents > h4{
        color: var(--Clor-white);
        font-size: 1.6vw;
        margin-bottom: 2vw;
        text-shadow: var(--Clor-darkWhite) 1px 5px 5px;
    }
}
#footer .footer-contents .img{
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(0) !important;
    & > img{
        width: 50%;
        height: auto;
        margin-bottom: 2vw;
    }
}
#footer .footer-contents p{
    font-size: 1.2vw;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    margin-bottom: 2vw;
    text-shadow: var(--Clor-darkWhite) 1px 5px 15px;
}
#footer .footer-contents #social-p{
    font-weight: 400;
    text-shadow: none;
}
#footer .footer-contents ul li{
    list-style-type: none;
    margin-bottom: .5vw;
    font-size: 1.2vw;       /*all texts*/
    & > a{
        text-decoration: none;
        color: var(--Clor-darkWhite);
        transition: .3s ease;
    &:hover{
        color: #ffffffd0;
    }
    }
}
.footer-contents .social ul,
.footer-contents .schedule ul{
    padding: 0;
}
.footer-contents ul li span{
    margin-right: .5vw;
}
#footer .footer-contents .follow-us{
    & > h4{
        color: var(--Clor-white);
        font-size: 1.6vw;
        margin-bottom: 2vw;
        text-shadow: var(--Clor-darkWhite) 1px 5px 5px;
    }
    & > ul{
        display: flex;
        gap: 2vw;
        list-style-type: none;
        & > li > a{
            display: flex;
            justify-content: center;
            align-items: center;
            width: 3vw;
            height: 3vw;
            border-radius: 50%;
            background-color: var(--Clor-darkWhite);
            color: var(--Clor-lightBlack);
            transform: translate(0) !important;
            transition: .3s ease;
            &:hover{
                background-color: var(--Clor-lightBlack);
                color: var(--Clor-darkWhite);
            }
            & > span{
                margin: 0;
                font-size: 1.5vw;
            }
        }
    }
}
/* copyright */
.copyright {
    text-align: center;
    padding-top: 1.5vw;
    border-top: 1px solid var(--Clor-lightBlack);
    color: var(--Clor-darkWhite);
    font-size: 1vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    & > p{
        font-family: "Raleway", sans-serif;
    }
}
.copyright-links{
    margin-right: 5%;
    & >  a {
        color: var(--Clor-darkWhite);
        text-decoration: none;
        margin-left: 1vw;
        transition: color 0.3s ease;
        transform: translate(0) !important;
        &:hover{
            color: var(--Clor-white);
        }
    }
}
/* copyright */
#footer .graphic-elements .circle{
    background-color: #00000050;
}
#footer .graphic-elements .circle-1{
    top: -80%;
}
#footer .graphic-elements .circle-2{
    top: -40%;
}
#footer .graphic-elements .circle-3{
    top: 20%;
    left: 25%;
}
#footer .graphic-elements .circle-4{
    top: 50%;
    left: 70%;
}
/* footer */
/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 5%;
    right: 2.5%;
    width: 4vw;
    height: 4vw;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--Clor-white);
    font-size: 2vw;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
    &:hover {
        transform: scale(1.1);
        background-color: black;
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.7),
        -0 -5px 20px rgba(37, 211, 102, 0.7);
        animation: none;
    }
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
/* WhatsApp Button */