
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.btn {
    text-transform: uppercase;
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-dark);
}

.btn.btn-primary:hover {
    box-shadow: inset 200px 0 0 0 var(--bs-dark) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-dark {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-dark:hover {
    box-shadow: inset 200px 0 0 0 var(--bs-primary);
    color: rgb(169, 169, 224)!important;
}



/*** Topbar Start ***/


/*** Navbar Start ***/

/* Custom Navbar Background */
.navbar-bg {
    background-color: #6c757d !important;
}

.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 15px;
    color: rgb(247, 247, 248);
    font-weight: 500;
    font-size: 16px;
    outline: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active  {
    color: #ffc107;
    transition: .5s;
}

/* Mobile navbar improvements */
@media (max-width: 991px) {
    .navbar .navbar-nav {
        padding: 10px 0;
        text-align: center;
    }
    
    .navbar .navbar-nav .nav-link {
        padding: 10px 15px;
        font-size: 15px;
    }
    
    .navbar-brand h1 {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .navbar-brand h1 {
        font-size: 1.2rem !important;
    }
    
    .navbar .navbar-nav .nav-link {
        padding: 8px 15px;
        font-size: 14px;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 800;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: green;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover,
.dropdown .dropdown-menu a.active {
    background: var(--bs-dark);
    color: var(blue);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

.navbar-toggler {
    background: var(--bs-secondary);
    color: var(--bs-light) !important;
    padding: 5px 12px;
    border: 2px solid var(--bs-primary) !important;
}

/*** Navbar End ***/



/*** Carousel Start ***/

.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    object-position: center bottom;
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 5;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.container_carousel_content {
    padding: 0 15px;
}

.carousel-caption h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff !important;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.carousel-caption h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffc107 !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 0;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3) !important;
    border: 2px solid rgba(255,255,255,0.5) !important;
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0,0,0,0.6) !important;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    width: 30px;
    height: 30px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .carousel-item img {
        height: 50vh;
        object-position: center bottom;
    }
    
    .carousel-caption h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .carousel-caption h4 {
        font-size: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    .carousel-item img {
        height: 40vh;
        object-position: center bottom;
    }
    
    .carousel-caption h1 {
        font-size: 1.2rem;
    }
    
    .carousel-caption h4 {
        font-size: 0.9rem;
    }
    
    .container_carousel_content {
        padding: 0 10px;
    }
}

/*** Carousel End ***/


/*** About Start ***/

.about-img {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 30px 30px 30px 30px ;
    overflow: hidden;
}

.about-img::before {
    content: "";
    width: 100%;
    height: 40%;
    background: var(--bs-dark);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    border-radius: 10px 10px 10px 10px;
}


.about-img::after {
    content: "";
    width: 100%;
    height: 60%;
    background: var(--bs-primary);
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    border-radius: 10px 10px 10px 10px;
}

.rotate-left {
    width: 150px;
    height: 100px;
    position: absolute;
    top: 28%;
    left: -10%;
    rotate: 25deg;
    z-index: 2;
}

.rotate-right {
    width: 150px;
    height: 100px;
    position: absolute;
    top: 28%;
    right: -10%;
    rotate: -25deg;
    z-index: 2;
}

.about-img img {
    position: relative;
    z-index: 2;
    border-radius: 10px;
}

.experiences {
    width: 160px;
    height: 200px;
    position: absolute;
    top: -0;
    right: 0;
    padding: 35px 35px;
    text-align: center;
    border-radius: 10px;
    z-index: 3;
    animation: mymove 5s infinite;
    animation-timing-function: ease-in-out;
}

@keyframes mymove {
    from {top: -202px;}
    to {top: 102%;}
}

/*** About End ***/


/*** Services Start ***/
.services-inner-icon {
    width: 120px;
    height: 120px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #0d6efd;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
    transition: all 0.3s ease;
}

.service-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.services-item {
    height: 100%;
    transition: all 0.3s ease-in-out;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.services-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.1), transparent);
    transition: left 0.5s;
}

.services-item:hover::before {
    left: 100%;
}

.services-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.2);
}

.services-item:hover .services-inner-icon {
    border-color: #ffc107;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

.services-item:hover .service-img {
    transform: scale(1.1);
}

.services-item h4 {
    color: #2c3e50;
    font-weight: 600;
    transition: color 0.3s ease;
}

.services-item:hover h4 {
    color: #0d6efd;
}

.services-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* Mobile responsive services */
@media (max-width: 1200px) {
    .services-item {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .services-inner-icon {
        width: 100px;
        height: 100px;
    }
    
    .service-img {
        width: 70px;
        height: 70px;
    }
    
    .services-item {
        margin-bottom: 2rem;
    }
    
    /* Make services 2 columns on tablet */
    .services-section .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .services-inner-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-img {
        width: 60px;
        height: 60px;
    }
    
    .services-item h4 {
        font-size: 1.1rem;
    }
    
    .services-item p {
        font-size: 0.9rem;
    }
    
    /* Make services single column on mobile */
    .services-section .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/*** Services end***/

/*** Services Page Section Start ***/
.services-page-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-page-section .services-item {
    background: #ffffff !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
    border: none;
    transition: all 0.4s ease;
}

.services-page-section .services-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.25) !important;
}

.services-page-section .services-item ul li {
    padding: 5px 0;
    font-size: 0.95rem;
    color: #6c757d;
}

.services-page-section .services-item ul li i {
    font-size: 0.9rem;
}

/* Mobile responsive for services page section */
@media (max-width: 992px) {
    .services-page-section .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .services-page-section .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .services-page-section .services-item {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .services-page-section .services-item h4 {
        font-size: 1.1rem;
    }
    
    .services-page-section .services-item p {
        font-size: 0.9rem;
    }
    
    .services-page-section .services-item ul li {
        font-size: 0.85rem;
    }
}

/*** Services Page Section End ***/

/*** Gallery Start ***/
.gallery-item {
    transition: all 0.3s ease-in-out;
    border: 1px solid #e9ecef;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item h5 {
    color: #2c3e50 !important;
    font-weight: 600;
}

.gallery-item p {
    color: #6c757d !important;
    font-size: 0.9rem;
}

/* Mobile responsive for gallery */
@media (max-width: 768px) {
    .gallery-item {
        margin-bottom: 2rem;
    }
    
    .gallery-item img {
        height: 200px !important;
    }
}

@media (max-width: 576px) {
    .gallery-item img {
        height: 180px !important;
    }
    
    .gallery-item h5 {
        font-size: 1.1rem;
    }
    
    .gallery-item p {
        font-size: 0.85rem;
    }
}

/*** Gallery End ***/

/*** Project Start ***/
.project-item {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 30px 30px 30px 30px ;
    overflow: hidden;
}

.project-item::before {
    content: "";
    width: 100%;
    height: 40%;
    background: var(--bs-dark);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    border-radius: 10px 10px 10px 10px;
}


.project-item::after {
    content: "";
    width: 100%;
    height: 60%;
    background: var(--bs-primary);
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    border-radius: 10px 10px 10px 10px;
}

.project-left {
    width: 180px;
    height: 70px;
    position: absolute;
    top: 22%;
    left: -18%;
    rotate: 30deg;
    z-index: 2;
}

.project-right {
    width: 180px;
    height: 70px;
    position: absolute;
    top: 22%;
    right: -18%;
    rotate: -30deg;
    z-index: 2;
}

.project-item img {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-item a {
    position: absolute;
    padding: 25px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0) rotate(-360deg);
    border-radius: 10px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    opacity: 0;
}

.project-item:hover a {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    background: var(--bs-primary);
    color: var(--bs-dark) !important;
    opacity: 1;

}


/*** prohect Start ***/


/*** Blog Start ***/

.blog-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}


.blog-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 80px;
    height: 50px;
    background: var(--bs-primary);
    top: -51px;
    left: 0;
    border: 0;
    border-radius: 10px 30px 30px 10px;
}

.blog-carousel .owl-nav .owl-prev {
    box-shadow: inset 0 0 0 0 var(--bs-dark);
    transition: .5s;
}

.blog-carousel .owl-nav .owl-prev:hover {
    box-shadow: inset 200px 0 0 0 var(--bs-dark);
    color: var(--bs-primary) !important;
}

.blog-carousel .owl-prev,
.blog-carousel .owl-next {
    color: var(--bs-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-carousel .owl-nav .owl-next {
    position: absolute;
    width: 80px;
    height: 50px;
    background: var(--bs-primary);
    top: -51px;
    right: 0;
    border-radius: 30px 10px 10px 30px;
}

.blog-carousel .owl-nav .owl-next {
    box-shadow: inset 0 0 0 0 #000000;
    transition: .5s;
}

.blog-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 200px 0 0 0 #000000;
    color: var(--bs-primary) !important;
}

/*** Blog End ***/


/*** Pricing Start ***/
.pricing-item {
    transition: .5s;
    
}

.pricing-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .5);
    margin: -20px 0 20px 0;
}

.pricing-label {
    border-bottom: 20px solid var(--bs-light);
    border-radius: 0 0 300px 300px;
    transition: .5s;
}

.pricing-item:hover .pricing-label {
    border-color: rgba(0, 0, 0, .5);
}

.pricing-item:hover .pricing-label.pricing-featured {
    border-color: rgba(255, 255, 255, .5);
}


/*** Pricing End ***/


/*** Call To Action start ***/

.call-to-action {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../images/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

/*** Call To Action End ***/


/*** Team Start ***/
.team-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.team-item .team-icon {
    position: absolute;
    top: 15px;
    right: -80px;
    rotate: -30deg;
    transition: .5s;
    visibility: hidden;
}

.team-item:hover .team-icon {
    visibility: visible;
    margin-right: 95px;
    rotate: 0deg;
}

.team-item .team-icon .btn {
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
}

.team-item .team-content {
    box-shadow: inset 0 0 0 0 var(--bs-dark);
    transition: 1s;
    
}

.team-item:hover .team-content {
    box-shadow: inset 550px 0 0 0 var(--bs-dark);
    color: var(--bs-primary) !important;
}
/*** Team End ***/

/*** testimonial Start ***/
.testimonial-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--bs-light);
    z-index: 1;
}

.testimonial-content::before {
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    left: 50px;
    bottom: -15px;
    rotate: 45deg;
    z-index: -5;
    background: var(--bs-light);
}

.testimonial-carousel {
    position: relative;
    padding-left: 60px;
    padding-right: 60px;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 60px;
    height: 40px;
    background: var(--bs-primary);
    color: var(--bs-dark);
    font-size: 22px;
    top: 14%;
    left: 0px;
    border-radius: 30px 0 0 30px;
    box-shadow: inset 0 0 0 0 var(--bs-dark);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover {
    box-shadow: inset 200px 0 0 0 var(--bs-dark);
    color: var(--bs-primary) !important;
}

.testimonial-carousel .owl-nav .owl-next {
    left: auto;
    right: 0px;
    border-radius: 0 30px 30px 0;
}

.testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 200px 0 0 0 var(--bs-dark);
    color: var(--bs-primary) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-secondary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

/*** testimonial End ***/


/*** Contact Start ***/
.contact-link a i,
.contact-link a h5,
.contact-link a.h5 {
    transition: .5s;
}

.contact-link a i:hover,
.contact-link a h5:hover,
.contact-link a.h5:hover {
    color: var(--bs-primary) !important;
}

/*** Contact End ***/

/*** Footer Start ***/
.footer {
    background: linear-gradient(135deg, rgba(52, 58, 64, 0.95), rgba(33, 37, 41, 0.95)), 
                url(../images/foot.jpg) center bottom no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #ffffff;
    margin-top: 4rem;
    text-align: center;
    padding: 3rem 0 2rem 0;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-item {
    margin-bottom: 2rem;
}

.footer-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffc107 !important;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.footer-item,
.footer-item a {
    color: #e9ecef !important;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    font-weight: 500;
}

.footer-item a:hover {
    color: #ffc107 !important;
    transform: translateY(-2px);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.footer_copyright {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(255, 193, 7, 0.3);
    color: #ffc107 !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Mobile footer styles */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem 0;
        background-attachment: scroll;
        background-position: center bottom;
    }
    
    .footer-item {
        margin-bottom: 1.5rem;
    }
    
    .footer-item h4 {
        font-size: 1.1rem;
    }
    
    .footer_copyright {
        font-size: 0.8rem;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 1.5rem 0 0.5rem 0;
        background-attachment: scroll;
        background-position: center bottom;
    }
    
    .footer-item {
        margin-bottom: 1rem;
    }
    
    .footer-item h4 {
        font-size: 1rem;
    }
    
    .footer-item a {
        font-size: 0.9rem;
    }
}
/*** Footer End ***/



/*** Copywright Start ***/

.copyright .copyright-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright .copyright-icon {
    width: 44px; 
    height: 44px; 
    display: flex;
    align-items: center; 
    justify-content: center;
}

/*** Copywright End ***/
/* General responsive improvements */
.container-fluid.py-5 {
    padding: 3rem 0 !important;
}

/* Main content section styling */
.bg-light.px-4.py-5.rounded {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border: 1px solid #dee2e6;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.bg-light.px-4.py-5.rounded h1 {
    color: #2c3e50 !important;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.bg-light.px-4.py-5.rounded p {
    color: #495057 !important;
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .container-fluid.py-5 {
        padding: 2rem 0 !important;
    }
    
    .display-5 {
        font-size: 1.8rem !important;
    }
    
    .bg-light.px-4.py-5.rounded {
        padding: 2rem 1rem !important;
        margin: 0 1rem;
    }
    
    .bg-light.px-4.py-5.rounded p {
        font-size: 18px !important;
    }
    
    .carousel-caption {
        padding: 1.5rem;
    }
    
    .carousel-caption h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .carousel-caption h4 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .container-fluid.py-5 {
        padding: 1.5rem 0 !important;
    }
    
    .display-5 {
        font-size: 1.5rem !important;
    }
    
    .bg-light.px-4.py-5.rounded {
        padding: 1.5rem 0.5rem !important;
        margin: 0 0.5rem;
    }
    
    .bg-light.px-4.py-5.rounded p {
        font-size: 16px !important;
    }
    
    .carousel-caption {
        padding: 1rem;
        width: 95%;
    }
    
    .carousel-caption h1 {
        font-size: 1.2rem;
    }
    
    .carousel-caption h4 {
        font-size: 0.9rem;
    }
}

/* Start Whatsapp animation */
.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 100px;
	right: 20px;
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 35px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
	z-index: 1000;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

.btn-whatsapp-pulse-border {
	bottom: 100px;
	left: 20px;
	animation-play-state: paused;
	z-index: 1000;
}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid #25d366;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

/* Mobile WhatsApp buttons */
@media (max-width: 768px) {
    .btn-whatsapp-pulse {
        bottom: 80px;
        right: 15px;
        font-size: 30px;
        padding: 25px;
    }
    
    .btn-whatsapp-pulse-border {
        bottom: 80px;
        left: 15px;
        font-size: 30px;
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .btn-whatsapp-pulse {
        bottom: 70px;
        right: 10px;
        font-size: 25px;
        padding: 20px;
    }
    
    .btn-whatsapp-pulse-border {
        bottom: 70px;
        left: 10px;
        font-size: 25px;
        padding: 20px;
    }
}