:root {
    --primary-color: #651E7A;
    --primary-deep-color: #3a0749;

}


section {
    padding: 100px 0px;
}

section.about {
    padding: 50px 0px;

}

@media (max-width:768px) {
    section {
        padding: 25px 0px;
        padding-bottom: 0px;
    }

    -link {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }



}


.navbar {
    background-color: var(--primary-color);
    z-index: 1000;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.navbar .nav-link {
    color: #fff;
    font-size:18px;

}
.navbar-toggler{
    background-color: #fff;
}

@media (max-width:991px) {
    .navbar .nav-link {
        padding: 0;

    }
}

.navbar .navbar-brand {
    color: #fff;
}



/* Section Titles */
.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #2c3e50;
}

.section-title-light {
    color: #d4af7f;
}

/* Cards */
.facility-card,
.testimonial-card,
.package-card,
.memorial-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.facility-card:hover,
.testimonial-card:hover,
.package-card:hover,
.memorial-card:hover {
    transform: translateY(-3px);
}

.btn-gold {
    background: #d4af7f;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #b4916c;
}

.card img {
    border-radius: 10px;
    transition: transform 0.2s;
}

.card img:hover {
    transform: scale(1.03);
}

/* Sections */
#facilities,
#spaces,
#faq {
    background-color: #f9f7f6;
}

#packages {
    background-color: #fdf8f3;
}

#contact {
    background-color: #2c3e50;
    color: #ecdbba;
}

/* Footer */
footer {
    background: #2c3e50;
    color: #ecdbba;
    padding: 10px 0;
}


.container-fluid {
    padding-left: 100px;
    padding-right: 100px;
}

/* Large screens (lg and up) */
@media (max-width: 1199px) {
    .container-fluid {
        padding-left: 80px;
        padding-right: 80px;
    }
}

/* Medium screens (md) */
@media (max-width: 991px) {
    .container-fluid {
        padding-left: 60px;
        padding-right: 60px;
    }
}

/* Small screens (sm) */
@media (max-width: 767px) {
    .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* Extra small screens (xs) */
@media (max-width: 575px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/* my csss */
section.hero-section {
    position: relative;
    background: url('../img/bg.png') center/cover no-repeat;
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
}

section.hero-section.align-items-center {
    padding: 50px 0px;

}

section.hero-section .heading {
    font-family: "Bevan", serif;
    font-size: 50px;
    color: #202020;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    margin-bottom: 27px;
}

section.hero-section .sub-heading {
    font-family: "Bevan", serif;
    font-size: 32px;
    color: #202020;
    font-style: normal;
    text-transform: uppercase;
    font-weight: 400;
}

section.hero-section img.brand-logo {
    height: 115px;
    margin-bottom: 40px;
    margin-top: 35px;
}

section.hero-section .btn {
    background-color: var(--primary-color);
    color: #fff;
    transition: all .3s ease-in-out;
    font-size: 18px;
}

section.hero-section .btn i {
    font-size: 18px;
}

section.hero-section .btn:hover {
    background-color: var(--primary-deep-color);

}

@media (max-width: 768px) {
    section.hero-section img.brand-logo {
        height: 80px;
        margin-top: 30px;
        margin-bottom: 25px;
    }




    section.hero-section .heading {

        font-size: 32px;

    }

    section.hero-section .sub-heading {

        font-size: 22px;

    }

    section.hero-section {
        min-height: fit-content;
        padding-top: 80px !important;
        padding-bottom: 36px !important;
    }


}

h1.fw-bold.display-3.text-uppercase {
    color: #000;
}

h3 {
    color: #000;
}

section.hero-section p.lead {
    color: #000;
    font-weight: 600;
}

.container.position-relative.text-white {
    padding-top: 20px;
}

.gap-2.pc {
    float: right;
    margin-top: 40px;
}

.py-5.images img {
    width: 100%;
    object-fit: cover;
}

a.btn.btn-light.btn-lg.rounded-pill.px-4.py-2.d-inline-flex.align-items-center.gap-2.d-none.d-md-block {
    width: max-content;
}

span.fs-4 {
    line-height: 25px;
}


a.btn.px-4.text-white:hover {
    background: transparent !important;
    border: 2px solid #38D430;
}

a.btn.px-4.text-white.rwo:hover {
    background: transparent !important;
    border: 2px solid #0A1A44;
}

.about .item-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.6rem;
}

@media (max-width: 1200px) {
    .about .item-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .about .item-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about .item-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* .about .item-container .item {
    overflow: hidden;
    border: 1.5px solid;
    border-color: #d7d7d7;
    border-radius: 15px;
    transition: all .3s ease-in-out;
    cursor: pointer;
    background: #edededa8;
} */

.about .item-container .item {
    overflow: hidden;
    border: 1.5px solid;
    border-color: #d7d7d7;
    border-radius: 15px;
    transition: all .3s ease-in-out;
    cursor: pointer;
    background: #edededa8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}




/* img container section start here */
/* .item-container .item {
     overflow: hidden;
     border: 0.5px solid;
     border-color:  #fff;
     border-radius: 15px;
     transition: all .3s ease-in-out;
     cursor: pointer;
     background: #000000a8;
 }*/

.item-container .item:hover {
    box-shadow: 0px 0px 15px 6px #641e7aa4;
}

.item-container .item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.item-container .item .content-container {
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
    min-height: 223px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.item-container .item .item-heading-container {
    margin-bottom: 6px;
}

.item-container .item .heading {
    font-family: var(--font-familly-libre-baskerville);
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    text-align: center;
}

.item-container .item .heading a {
    color: #000000;
    text-decoration: none;
}

.item-container .item .heading:hover a {
    text-decoration: underline;
}


.item-container .item .content {
    font-family: var(--font-familly-monserrat);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.item-container .item .content .text {
    margin-bottom: 35px;
    text-align: center;
    color: #000000;
}



.item-container .item .content .links {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: 20px;
    /* margin-left: auto; */
    /* margin-right: auto; */
    transform: translatex(-50%);
    /* margin: auto; */
}

.item-container .item .content .links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #0000006b; */
    background-color: var(--primary-color);

    border-radius: 50%;
    transition: all .3s ease-in-out;
}

.item-container .item .content .links a:hover {
    background-color: var(--primary-deep-color);
}

.item-container .item .content .links i {
    color: #fff;
    font-size: 16px;
}





/* contact section css start here */
.contact-section {
    background: #f8f9fa;
}

.contact-section .card {
    border-radius: 15px;
}

.contact-section .btn-primary {
    border-color: var(--primary-deep-color);
    font-weight: 600;
}

.contact-section .btn-primary {
    background: var(--primary-color);
    transition: 0.3s;
}

.contact-section .btn-primary:hover {
    background: var(--primary-deep-color);
    transform: translateY(-2px);
}

/* Inputs */
.contact-section input:focus,
textarea:focus {
    border-color: #641e7aa4 !important;
    box-shadow: 0 0 0 0.25rem #651e7a3d !important;
}

/* Labels on focus */
.contact-section+label,
.form-label {
    color: var(--primary-color);
    font-weight: 500;
}

/* Button */
.contact-btn {
    background: var(--primary-color);
    border: none;
    transition: 0.3s;
}

.contact-btn:hover {
    background: rgb(210, 150, 0);
    transform: translateY(-2px);
}

.contact-section .error {
    font-size: 14px;
    margin-top: 5px;
}

/* contact section css end here */