@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-heading-font: "Montserrat", sans-serif;
    --primary-para-font: "Lato", sans-serif;
}

/* About bangalore senior living */
section#about-bangalore-seniorliving {
    padding: 50px 0 20px 0;
}

.about_senior_living_content p,
.about_primus_bangalore_content p {
    font-size: 20px;
    text-align: center;
}

/* Our Projects section */
.card {
    width: 360px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img {
    position: relative;
}

.card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #8c1d5b;
    color: #fff;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 6px;
    font-weight: 600;
    font-family: var(--primary-para-font);
}

.card-content {
    padding: 16px;
}

.title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.info {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
    font-family: var(--primary-para-font);
}

.info svg {
    min-width: 18px;
    height: 18px;
    fill: #888;
    margin-top: 2px;
}

.price {
    margin-top: 12px;
    font-size: 20px;
    font-weight: bold;
    color: #8c1d5b;
}

h3.section_heading,
h1.section_heading {
    margin: 45px auto;
    color: #8c1d5b;
    font-size: 45px;
    font-family: var(--primary-heading-font);
    font-weight: 700;
    text-align: center;
}

section#our-projects {
    padding: 55px 0;
}

.custom-arrow-right span {
    width: 10px;
    height: 10px;
    border-right: 2px solid #8c1d5b;
    border-bottom: 2px solid #8c1d5b;
    transform: rotate(-45deg);
    margin-left: -3px;
}

.custom-arrow-left span {
    width: 10px;
    height: 10px;
    border-right: 2px solid #8c1d5b;
    border-bottom: 2px solid #8c1d5b;
    transform: rotate(135deg);
    margin-left: 3px;
}

.custom-arrow-left,
.custom-arrow-right {
    /* margin-left: auto; */
    display: flex;
    align-items: center;
    width: 50px;
    padding: 15px;
    background: #d7d0d0;
    border-radius: 50px;
    justify-content: center;
    height: 50px;
}


#project_listing_slider .owl-nav {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

/* #project_listing_slider .owl-prev {
    position: absolute;
    top: 25%;
    left: 10px;
}

#project_listing_slider .owl-next {
    position: absolute;
    top: 25%;
    right: 40px;
} */

/* Faqs  */
section#projects-faqs {
    padding: 30px 0 50px 0;
    background-color: #fdf2f8;
}

/* Accordion Item */
.custom-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    /* background: #e9e6e8; */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Button */
.custom-accordion .accordion-button {
    /* background: #e9e6e8; */
    color: #1c1c1c;
    font-weight: 600;
    font-size: 18px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    /* 🔥 Fix vertical alignment */
    gap: 10px;
    box-shadow: none !important;
    outline: none !important;
}

/* Remove default icon */
.custom-accordion .accordion-button::after {
    display: none;
}

/* Custom arrow wrapper */
.custom-arrow {
    margin-left: auto;
    display: flex;
    align-items: center;
}

/* Arrow */
.custom-arrow span {
    width: 10px;
    height: 10px;
    border-right: 2px solid #8c1d5b;
    border-bottom: 2px solid #8c1d5b;
    transform: rotate(45deg);
    transition: 0.3s;
}

/* Rotate when open */
.accordion-button:not(.collapsed) .custom-arrow span {
    transform: rotate(-135deg);
}

.accordion-button:not(.collapsed) {
    background-color: white !important;
}

h2.accordion-header button.accordion-button span {
    color: #364153;
}

/* Body */
.custom-accordion .accordion-body {
    /* background: #e9e6e8; */
    color: #364153;
    font-size: 15px;
    line-height: 1.6;
    font-family: var(--primary-para-font);
    padding: 5px 20px 20px 20px;
}

/* Remove focus */
.accordion-button:focus {
    box-shadow: none;
}

/* FAQs */

/* amenities */
/* Section */
.amenities {
    background: #8c1d5b;
    color: #fff;
    padding: 40px 60px;
    margin-top: 60px;
}

/* Layout */
.amenities-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Left Title */
.amenities-title {
    font-size: 42px;
    font-weight: 700;
    white-space: nowrap;
}

/* Divider */
.divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.5);
}

/* Items */
.amenities-list {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Single Item */
.amenity-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Icon */
.amenity-item svg {
    width: 40px;
    height: 40px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
}

.amenities-wrapper {
    position: relative;
}

.amenities-wrapper:after {
    content: "";
    position: absolute;
    top: 0;
    width: 2px;
    height: 70px;
    background-color: white;
    right: 0;
}

.amenity-item img {
    height: 70px;
    width: 70px !important;
    margin: 0 !important;
}

/* Amenities */

/* Banner section  */

section#hero-banner-section img {
    width: 100%;
    padding: 0 25px;
    border-radius: 50px;
}

section#hero-banner-section {
    position: relative;
}

.new-banner-content {
    position: absolute;
    width: 100%;
    top: 70px;
    left: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.new-banner-content h1 {
    color: white;
    font-size: 80px;
    font-family: var(--primary-heading-font);
    font-weight: 700;
}

.new-banner-content p {
    color: white;
    font-size: 24px;
    font-family: var(--primary-para-font);
}

.card-wrapper {
    display: flex;
    justify-content: center;
}

#project_listing_slider .card {
    display: flex;
    width: 100%;
    gap: 10px;
    flex-direction: row;
    align-items: center;
}

.card-img {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
}

.card-img img {
    height: auto;
    object-fit: cover;
}

#project_listing_slider .card-content {
    flex: 1;
    padding: 20px;
}

#project_listing_slider .owl-nav.disabled {
    display: none;
    opacity: 0;
    visibility: hidden;
}

#project_listing_slider .item a {
    text-decoration: none;
}

#retirement_life .retirement-life-content {
    font-size: 20px;
    text-align: center;
}

#retirement_benefits .retirement-benefits-content ul {
    margin-top: 10px;
    font-size: 20px;

}

/* #retirement_benefits .retirement-benefits-content {
    display: flex;
    justify-content: center;
    width: 100%;
} */

#retirement_benefits .retirement-benefits-content span {
    font-size: 20px;
}





@media screen and (max-width: 1366px) {
    #herolifestysec .banner-container {
        border-radius: 25px;
    }

    #herolifestysec .banner-content h1 {
        font-size: 48px;
    }

    #herolifestysec .banner-content p {
        font-size: 18px;
    }
}

@media(max-width:1200px) {
    section#hero-banner-section img {
        padding-top: 90px;
        border-radius: 0;
    }

}

@media screen and (max-width: 1024px) {

    .stickyForm .sticky_btn {
        left: -100px;
        display: flex;
        align-items: center;
    }

    #herolifestysec .banner-container {
        height: 499px;
        border-radius: 20px;
    }

    #herolifestysec .banner-content h1 {
        font-size: 42px;
    }

    #herolifestysec .banner-content p {
        font-size: 16px;
    }

    .amenities-wrapper:after {
        display: none;
    }

    .amenities-wrapper {
        justify-content: center;
        margin-bottom: 35px;
    }

    .mainfootercontup {
        grid-template-columns: 2fr 2fr 2fr;
        grid-template-rows: 1fr 1fr;
    }

    .amenity-item {
        justify-content: center;
    }

}

@media screen and (max-width: 768px) {
    .new-banner-content h1 {
        font-size: 40px;
    }

    .new-banner-content p {
        font-size: 16px;
        width: 80%;
    }

    .new-banner-content {
        width: 80%;
        top: 70px;
        left: 35px;
    }

    .about_senior_living_content p,
    .about_primus_bangalore_content p {
        font-size: 16px;
    }

    h3.section_heading {
        font-size: 24px;
    }

    .card {
        width: 100%;
    }

    .title {
        font-size: 18px;
    }

    .price {
        font-size: 18px;
    }

    .custom-accordion .accordion-button {
        font-size: 16px;
        padding: 14px;
    }

    .custom-accordion .accordion-body {
        font-size: 14px;
        padding: 0 14px 14px;
    }

    .amenities-title {
        font-size: 32px;
    }

    #project_listing_slider .card {
        flex-direction: column;
    }

    #retirement_benefits .retirement-benefits-content ul {
        font-size: 16px;
    }

    #retirement_life .retirement-life-content p {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    #herolifestysec .banner-container {
        height: 300px;
        border-radius: 10px;
    }

    #herolifestysec .banner-content {
        left: 20px;
        right: 20px;
    }

    #herolifestysec .banner-content h1 {
        font-size: 28px;
    }

    #herolifestysec .banner-content p {
        font-size: 13px;
    }
}