@font-face {
    font-family: 'TheYoungestrg';
    src: url('../../fonts/The\ Youngest\ Script-Rg.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TheYoungestbook';
    src: url('../../fonts/The\ Youngest\ Serif-Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DroidSerif';
    src: url('../../fonts/DroidSerif-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppins';
    src: url('../../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

#loading-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}
/* Wedding Packages Card Styling */
.section-title {
    font-family: "TheYoungestbook", sans-serif;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #e49999;
}

.card {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 2rem 1.5rem;
}

.card-title {
    font-family: "TheYoungestbook", sans-serif;
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mb-2 {
    font-family: "droidserif";
}

.package-price {
    font-family: "poppins", sans-serif;
    color: #e49999;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 1rem 0;
}

/* Services List Styling */
.card-body h6 {
    font-family: "The Youngest", sans-serif;
    color: #666;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
}

.card-body h6::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #e49999;
}

.card-body ul {
    margin-top: 1.5rem;
    padding: 0 1rem;
}

.card-body ul li {
    font-family: "The Youngest", sans-serif;
    color: #555;
    padding: 0.8rem 0;
    position: relative;
    margin-bottom: 0.5rem;
    text-align: left;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.card-body ul li:hover {
    transform: translateX(5px);
}

.card-body ul li:not(:last-child) {
    border-bottom: 1px solid rgba(228, 153, 153, 0.2);
}

/* Checkmark styling */
.card-body ul li::before {
    margin-right: 10px;
    font-size: 1.1em;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card {
        margin-bottom: 2rem;
    }

    .card-img-top {
        height: 180px;
    }

    .package-price {
        font-size: 1.5rem;
    }

    .card-body ul li {
        font-size: 0.9rem;
    }
}

/* Animation for AOS */
[data-aos="fade-up"] {
    transform: translate3d(0, 30px, 0);
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

[data-aos="fade-up"].aos-animate {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

/* Previous styles remain the same */

/* WhatsApp Button Styling */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-family: "The Youngest", sans-serif;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    margin-right: 8px;
    font-size: 1.2rem;
}

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn-whatsapp {
        padding: 10px 20px;
        font-size: 1rem;
    }
    #card-pricelist {
        margin-left: 2.5rem;
    }

}
