﻿



.package-container {
    position: relative;
    overflow: hidden;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    background-color: #fff;
    transition: color 0.3s ease;
    height: 100%;

}

    /*.package-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0;
        background-color: #d4edda;*/ /* light green */
        /*z-index: 0;
        transition: width 0.4s ease;
    }

    .package-container:hover::before {
        width: 100%;
    }*/

    .package-container:hover {
        color: #155724; /* darker green text */
    }

    .package-container * {
        position: relative;
        z-index: 1;
    }

.package-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.price del {
    color: #6c757d;
}

.price span {
    font-weight: bold;
    color: #28a745;
}

.package-container:hover .price span {
    color: #155724 !important;
}

ul {
    padding-left: 1.2rem;
}

    ul li {
        margin-bottom: 5px;
    }

@media (max-width: 767.98px) {
    .package-container {
        text-align: center;
    }
}

.hurray-offer {
    /*background: linear-gradient(to right, #6a11cb, #2575fc);*/
    background: linear-gradient(to right, #28a745, #a8e063);
    color: white;
    padding: 3px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 1.3rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 767.98px) {
    .hurray-offer {
        font-size: 1rem;
        padding: 15px;
    }
}

.price {
    text-align: center;
    margin-top: 15px;
    font-size: 1rem;
}

    .price del {
        display: block;
        color: #6c757d;
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .price span {
        display: block;
        font-size: 1.5rem;
        font-weight: 800;
        color: #28a745;
        transition: color 0.3s ease;
    }

.package-container:hover .price span {
    color: #155724 !important;
   /* box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);*/
}



/*<---------addalign----------- >*/

.package-container {
    background: linear-gradient(to right, #c2e9fb, #a1c4fd);
    color: #000 !important; /* Black text */
    text-align: center !important; /* Center-align all text */
    font-weight: 500; /* Slightly bold */
}

.package-container ul {
    padding-left: 0;
    list-style-position: inside;
    display: inline-block;
    text-align: left; /* Keep list readable and aligned properly */
}

.package-container li {
    text-align: left; /* Optional: keeps bullet text neat inside center-aligned box */
    margin-bottom: 5px;
}

.package-container .price,
.package-container .package-title,
.package-container p {
    text-align: center;
}
/*  < ---Social link-- ->*/

#sociallink {
    font-size: 40px;
}



