     .whatsapp-link {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 1000;
            border-radius: 50%;
            padding: 10px;
            transition: bottom 0.3s ease;
        }

        .whatsapp-icon {
            width: 50px;
            height: 50px;
        }
        .title, a, p, button, span{
     font-family: "Sen", sans-serif !important;
  font-optical-sizing: auto !important;
  font-weight: <weight> !important;
  font-style: normal !important;
}

        @media (max-width: 768px) {
            .whatsapp-link {
                bottom: 15px;
                left: 2px;
                padding: 2px;
            }

            .whatsapp-icon {
                width: 40px;
                height: 40px;
            }
        }
 .carousel-item  {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @media (max-width: 767px) {
            .carousel-item {
               height: 100%;
            }
        }

        @media (max-width: 479px) {
            .carousel-item {
               height: 100%;
            }
        }
        .social-linkss {
    margin: 1.5rem 0;
    text-align: center;
}

.social-linkss h4 {
    color: #4a154b;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.link-follows {
    display: flex;
  
    gap: 0.8rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.link-followss li {
    margin: 0;
}

.link-follows a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b 0%, #8d3fd1 100%);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-follows a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(141, 63, 209, 0.3);
}

.link-follows i {
    font-size: 1.1rem;
}

    




    .notification-container {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1000;
        width: 300px;
    }

    .notification {
        padding: 15px;
        border-radius: 8px;
        color: white;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.5s ease;
    }

    .notification.show {
        opacity: 1;
        transform: translateX(0);
    }

    .notification-success {
        background-color: #28a745;
    }

    .notification-error {
        background-color: #dc3545;
    }

    .notification-icon {
        margin-right: 10px;
        font-size: 24px;
    }

    .notification-close {
        margin-left: auto;
        background: none;
        border: none;
        color: white;
        font-size: 20px;
        cursor: pointer;
    }

