@import url("https://fonts.googleapis.com/css2?family=Elms+Sans:ital,wght@0,100..900;1,100..900&family=Fjalla+One&family=Poiret+One&display=swap");

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body {
    font-family: var(--font1);
}

a {
    text-decoration: none;
}
/* Color & Padding-Margin */

:root {
    --primary: #000c26;
    --secondary: #f0f0ee;
    --light: #ffffff;
    --dark: #000000;
    --text: #ccc;
    --font1: "Elms Sans", sans-serif;
    --font2: "Poiret One", sans-serif;
    --font3: "Fjalla One", sans-serif;
    --gap: 1.25rem;
    --speed: 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --closed: 5rem;
    --open: 40rem;
    --accent: #a8802d;
}

img {
    object-fit: cover;
}

/* Header Section Start */

.header_section {
    text-align: left;
}
.header_section .title {
    display: flex;
    align-items: center;
}
.header_section .title span {
    font-weight: 800;
    font-size: 15px;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    letter-spacing: 5px;
    font-family: var(--font3);
}
.header_section .title img {
    margin-right: 6px;
    height: 26px;
}
.header_section .subtitle {
    font-size: 22px;
    font-weight: 500;
    margin: 15px 0px;
    line-height: 1;
    text-transform: capitalize;
}
.header_section .subtitle span {
    font-size: 55px;
    color: var(--primary);
}

/* Header Section End */

/* Navbar Section Start */

.navbar {
    padding: 10px 0px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}
.navbar .navbar-toggler {
    padding: 5px;
}
.navbar .navbar-toggler-icon {
    height: 1.2em;
    width: 1.2em;
}

.navbar .navbar-brand img {
    height: 50px;
}
.navbar .navbar-nav .nav-item {
    margin: 0px 15px;
}
.navbar .navbar-nav .nav-item .nav-link {
    font-size: 17px;
    color: var(--dark);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.navbar .navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}
.navbar .navbar-nav .nav-item .nav-link::before,
.navbar .navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s;
}

.navbar .navbar-nav .nav-item .nav-link::before {
    top: 0;
    left: 0;
}

.navbar .navbar-nav .nav-item .nav-link::after {
    bottom: 0;
    right: 0;
}

.navbar .navbar-nav .nav-item .nav-link:hover::before {
    width: 100%;
    transition: width 0.25s ease-in-out;
}

.navbar .navbar-nav .nav-item .nav-link:hover::after {
    width: 100%;
    transition: width 0.25s ease-in-out 0.25s;
}

/* Navbar Section End */

/* Slider Section Start */

.slider {
    background-image: url("../images/p1.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100%;
    position: relative;
    z-index: 0;
    /* padding: 120px 10px; */
    display: flex;
    align-items: center;
}
.slider::after {
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--primary);
    opacity: 0.9;
    position: absolute;
    z-index: 1;
}
.slider > * {
    position: relative;
    z-index: 2;
}

.slider .short-img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 25px;
}
.slider .carousel .carousel-inner .carousel-item img {
    height: 650px;
    border-radius: 10px;
}
.slider .form_card {
    background-color: transparent;
    padding: 40px 30px 40px 30px;
    border-radius: 10px;
}
.slider .form_card .header_section {
    text-align: center;
}
.slider .form_card .header_section .title {
    justify-content: center;
}
.slider .form_card .header_section .title span {
    font-size: 18px;
    color: var(--light);
    border-bottom: 2px solid var(--light);
}
.slider .form_card .header_section .subtitle {
    color: var(--light);
    margin: 10px;
}
.slider .form_card .header_section .content {
    color: var(--light);
    line-height: 1;
    padding-bottom: 10px;
}
.slider .slider_details {
    width: 70%;
    border: 2px solid var(--primary);
    border-radius: 10px;
    padding: 30px;
    background-color: var(--light);
}
.slider .new {
    width: 70%;
    text-align: center;
}
.slider .new h4 {
    background-color: var(--light);
    width: fit-content;
    margin: 0px auto;
    padding: 10px 15px;
    font-size: 20px;
    border-radius: 10px 10px 0px 0px;
    border-top: 2px dashed var(--primary);
    border-left: 2px dashed var(--primary);
    border-right: 2px dashed var(--primary);
    color: var(--primary);
    font-weight: 800;
}
.slider .p_name {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
}
.slider .p_location i {
    color: var(--primary);
}
.slider .p_location {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}
.slider .p_builder {
    font-size: 18px;
    font-weight: 500;
}
.slider .key_highlights {
    background-color: rgba(128, 128, 128, 0.225);
    padding: 15px 20px;
    margin: 10px 0px;
}
.slider .key_highlights .key {
    display: flex;
    align-items: center;
    justify-content: left;
    font-size: 17px;
    padding: 2px;
    border-bottom: 1px dashed var(--primary);
}
.slider .p_bhk i {
    font-size: 18px;
    color: var(--primary);
}
.slider .p_bhk {
    font-size: 24px;
    font-weight: 600;
}
.slider .p_price {
    margin: 10px 0px;
    font-size: 24px;
}
.slider .p_price span {
    font-weight: 800;
    font-size: 28px;
    color: var(--primary);
}
.slider .brochure_btn {
    padding: 8px 20px;
    font-size: 17px;
    background-color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 10px;
    color: var(--light);
}
.slider .brochure_btn:hover {
    border: 2px solid var(--primary);
    background-color: var(--light);
    color: var(--primary);
    font-weight: 600;
}
/* Slider Section End */

/* Highlights Section Start */

.highlights {
    margin-top: -60px;
}
.highlights .row {
    padding: 0px;
    margin: 0px;
}
.highlights .row .col-lg-3 {
    padding: 0px;
    margin: 0px;
    overflow: visible !important;
}

@keyframes toptoDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.highlights .card {
    border: 1px solid var(--secondary);
    border-radius: 0px;
    text-align: center;
    display: block;
    transition: transform 0.4s ease;
    transform-origin: center;
    animation: toptoDown 0.6s ease-out forwards;
    opacity: 0;
}

.highlights .row > div:nth-child(1) .card {
    animation-delay: 0.3s;
}
.highlights .row > div:nth-child(2) .card {
    animation-delay: 0.4s;
}
.highlights .row > div:nth-child(3) .card {
    animation-delay: 0.5s;
}
.highlights .row > div:nth-child(4) .card {
    animation-delay: 0.6s;
}

.highlights .card:hover {
    background-color: var(--secondary);
}
.highlights .card img {
    height: 40px;
    margin-bottom: 10px;
}
.highlights .card .card-title {
    font-weight: 600;
    color: var(--primary);
}
.highlights .card .card-body {
    padding: 15px 20px;
}

/* Highlights Section End */

/* Overview Section Start */

.overview {
    padding: 80px 0px 60px 0px;
}
.overview .box {
    height: 260px;
    width: 260px;
    background-color: var(--primary);
    border-radius: 15px;
    rotate: 12deg;
    position: relative;
    z-index: 0;
    margin: 20px auto;
}
.overview .o_img {
    background-image: url("../images/bg11.png");
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
}
.overview .box img {
    rotate: 348deg;
    height: 260px;
    width: 260px;
    position: absolute;
    z-index: 1;
    border-radius: 15px;
}

.overview .overview_details {
    padding: 10px;
}
.overview .overview_details .content ul {
    padding-left: 0px;
}
.overview .overview_details .content ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 14px;
}
.overview .overview_details .content ul li i {
    color: var(--primary);
}
.overview .overview_details p {
    text-align: justify;
}

/* Overview Section End */

/* Highlights Point Section Start */

.h_points {
    background-color: var(--secondary);
    padding: 80px 0px;
}
.h_points .header_section {
    text-align: center;
    width: 100%;
    margin: 0px auto;
}
.h_points .header_section .title {
    justify-content: center;
}
.h_points .header_section .subtitle {
    text-transform: capitalize;
    line-height: 1;
}
.h_points .card .col-md-3 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.h_points .card {
    border: none;
    padding: 15px 5px;
    display: flex;
    align-items: center;
    text-align: center;
}
.h_points .card .card_img {
    height: 60px;
    text-align: center;
    justify-content: center;
}
.h_points .card .card-title {
    font-size: 22px;
    text-align: center;
    font-weight: 600;
}
.h_points .card .card-text {
    line-height: 1;
}

/* Highlights Point Section End */

/* Pricelist Section Start */

.pricelist {
    padding: 80px 0px;
}
.pricelist .row {
    margin-top: 40px;
}
.pricelist .price_img img {
    height: 100%;
    width: 100%;
    border: 2px solid var(--primary);
    filter: blur(2px);
    margin-bottom: 20px;
}
.pricelist .table tbody {
    text-align: center;
}
.pricelist .table thead tr th {
    background-color: var(--primary);
    text-align: center;
    color: var(--light);
    padding: 5px;
}
.pricelist .table tbody tr td {
    padding: 10px 5px;
    font-size: 14px;
}
.pricelist .table tbody button {
    background-color: var(--primary);
    border: 0px;
    padding: 2px 5px;
    color: var(--light);
    border: 2px solid var(--primary);
    transition: 0.4s ease-in-out;
    font-size: 14px;
}
.pricelist .table tbody button:hover {
    background-color: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
}

/* Pricelist Section End */

/* Contact Form Section Start */

.contact_form {
    background-image: url("../images/p2.webp");
    padding: 80px 0px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 0;
    text-align: center;
}
.contact_form::after {
    content: "";
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: var(--primary);
    opacity: 0.8;
    position: absolute;
    z-index: 1;
}
.contact_form > * {
    position: relative;
    z-index: 2;
}
.contact_form .c1 .lines {
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact_form .c1 {
    font-size: 20px;
    color: var(--light);
}
.contact_form .c1 .lines .line1 {
    height: 2px;
    width: 100px;
    margin: 0px 20px;
    background: linear-gradient(to left, #ffffff, #ffffff09);
}
.contact_form .c1 .lines .line2 {
    height: 2px;
    width: 100px;
    margin: 0px 20px;
    background: linear-gradient(to right, #ffffff, #ffffff09);
}
.contact_form .c2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--light);
}
.contact_form .c3 {
    color: var(--light);
}

.g_btn {
    padding: 8px 30px;
    border: 2px solid var(--light);
    margin-top: 10px;
    font-weight: 800;
    font-size: 18px;
    border-radius: 10px;
    transition: all 0.3s;
}
.g_btn:hover {
    border: 2px solid var(--light);
    background-color: transparent;
    color: var(--light);
}

/* Contact Form Section End */

/* Amenities Section Start */

.amenities {
    padding: 80px 0px;
}
.amenities .header_section {
    width: 100%;
    margin: 0px auto;
    text-align: center;
}
.amenities .header_section .title {
    justify-content: center;
}
.amenities .subtitle {
    line-height: 1;
}
.amenities .card {
    border-radius: 10px;
    margin-bottom: 25px;
}
.amenities .card img {
    border-radius: 10px;
    height: 350px;
    position: relative;
    z-index: 0;
}
.amenities .card .card-body {
    position: absolute;
    z-index: 1;
    bottom: 0;
    text-align: center;
    background-color: #000c26f5;
    margin: 10px;
    color: var(--light);
    border-radius: 10px;
}
.amenities .card .card-body > * {
    position: relative;
    z-index: 2;
}
.amenities .card .card-body .card-text {
    line-height: 1;
}

/* Amenities Section End */

/* Gallery Section Start */

.gallery {
    padding: 80px 0px;
    background-color: var(--secondary);
}
.gallery .header_section {
    text-align: center;
    width: 100%;
    margin: 0px auto;
}
.gallery .header_section .title {
    justify-content: center;
}
.gallery .header_section .subtitle {
    line-height: 1;
    margin: 20px 0px 10px 0px;
}

@media (min-width: 1024px) {
    .head h2 {
        font-size: 2.25rem;
    }
}
.gallery_slider {
    margin: auto;
    overflow: hidden;
}
.controls {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    visibility: hidden;
}
.track {
    display: flex;
    gap: var(--gap);
    align-items: flex-start;
    justify-content: center;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 0px;
}
.track::-webkit-scrollbar {
    display: none;
}

.project-card {
    position: relative;
    flex: 0 0 var(--closed);
    height: 20rem;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition:
        flex-basis var(--speed),
        transform var(--speed);
}
.project-card[active] {
    flex-basis: var(--open);
}
.project-card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        filter 0.3s,
        transform var(--speed);
}
.project-card:hover .project-card__bg {
    filter: brightness(0.9) saturate(100%);
    transform: scale(1.06);
}

.project-card__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    padding: 0;
    background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}
@media (max-width: 767px) {
    :root {
        --closed: 100%;
        --open: 100%;
        --gap: 0.8rem;
    }

    .head {
        padding: 30px 15px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .track {
        flex-direction: column;
        scroll-snap-type: y mandatory;
        gap: 0.8rem;
        padding-bottom: 20px;
    }

    .project-card {
        height: auto;
        min-height: 80px;
        flex: 0 0 auto;
        width: 100%;
        scroll-snap-align: start;
    }

    .project-card[active] {
        min-height: 300px;
        transform: none;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
}

/* Gallery Section End */

/* Floorplan Section Start */

.floorplan {
    padding: 80px 0px;
}
.floorplan .header_section {
    width: 100%;
    margin: 0px auto;
    text-align: center;
}
.floorplan .header_section .title {
    justify-content: center;
}
.floorplan .header_section .subtitle {
    line-height: 1;
    margin: 20px 0px 30px 0px;
}
.floorplan .card {
    border-radius: 0px;
    border: 2px solid var(--primary);
    width: 100%;
    margin: 10px auto;
    padding: 20px;
    text-align: center;
}
.floorplan .card img {
    height: 200px;
    border: 1px solid grey;
}
.floorplan .card .card-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
}
.floorplan .card .card-text ul {
    padding-left: 0px;
    margin: 0px;
}
.floorplan .card .card-text ul li {
    list-style: none;
    padding: 15px 0px 15px 0px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.floorplan .f_btn {
    background-color: var(--primary);
    padding: 10px;
    color: var(--light);
    border: 2px solid var(--primary);
    font-weight: 800;
    transition: all 0.4s ease-in-out;
}
.floorplan .f_btn:hover {
    border: 2px solid var(--primary);
    background-color: transparent;
    color: var(--primary);
    font-weight: 600;
}

/* Floorplan Section End */

/* Location Section Start */

.location {
    padding: 80px 0px;
    background-color: var(--primary);
}
.location {
    position: relative;
    width: 100%;
}

.location .location_img {
    width: 100%;
    height: 450px;
    display: block;
    filter: blur(3px); /* Image blur */
    margin-top: 20px;
}

.explore-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--dark);
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
}

.location .header_section .title span {
    color: var(--light);
    border-bottom: 2px solid var(--light);
}
.location .header_section .subtitle span {
    color: var(--light);
}
.location .header_section .subtitle {
    color: var(--light);
    line-height: 0.6;
}
.location .accordion {
    --bs-accordion-border-radius: 0px;
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: none;
}
.accordion-button:not(.collapsed),
.accordion-item .accordion-header .accordion-button,
.accordion-item:first-of-type > .accordion-header .accordion-button,
.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
    background-color: var(--light);
    border-radius: 0px;
}
.location .accordion-item {
    margin-bottom: 10px;
}
.location .accordion-button {
    padding: 0px 20px 0px 0px;
    border-radius: 0px;
    border: 2px solid var(--light);
}
.location .accordion-button .icon {
    height: 40px;
    width: 40px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    /* border: 2px solid var(--primary); */
    color: var(--light);
}
.location .accordion-body {
    border: 2px solid var(--light);
    border-top: 0px;
}
.location .accordion-body ul {
    margin-bottom: 0px;
    padding-left: 0px;
}
.location .accordion-body ul li {
    list-style: none;
    color: var(--light);
    padding: 0px;
    margin-bottom: 0px;
}

/* Location Section End */

/* Form Section Start */

.c_form {
    padding: 80px 0px;
}
.c_form .row {
    display: flex;
    justify-content: center;
}
.c_form .header_section {
    text-align: center;
}
.c_form .header_section .title {
    justify-content: center;
}
.c_form .header_section .subtitle {
    margin: 10px 0px 10px 0px;
    line-height: 0.7;
}
.c_form .header_section .content {
    line-height: 0.8;
    font-weight: 600;
    margin-bottom: 20px;
}
.c_form .card {
    border-radius: 20px;
    border: 10px solid #000c267a;
    padding: 20px;
}
.c_form .c_img {
    border-radius: 20px;
    border: 10px solid #000c267a;
    height: 250px;
    width: 100%;
    margin-bottom: 20px;
}
.form-control {
    height: 50px;
    border: 1px solid var(--primary);
}
.form-control::placeholder {
    color: var(--primary);
}
.btnn {
    background-color: var(--light);
    border: 2px solid var(--light);
    padding: 10px;
    color: var(--primary);
    font-weight: 800;
    transition: all 0.4s ease-in-out;
    border-radius: 10px;
}
.btnn:hover {
    border: 2px solid var(--light);
    background-color: var(--primary);
    color: var(--light);
}
/* Form Section End */

/* Footer Section Start */

footer {
    background-color: var(--dark);
    text-align: justify;
    color: rgb(190, 188, 188);
    font-size: 12px;
}
footer b {
    color: var(--light);
    font-size: 12px;
}
footer .footer h5 {
    font-size: 30px;
    color: var(--light);
}
footer .footer {
    padding: 20px 10px;
}
footer .form-control::placeholder {
    color: #ffffffd8;
}
footer .form-control {
    height: 45px;
    border-radius: 0px;
    border: 1px solid var(--light);
    background-color: transparent;
}
footer .btnn {
    background-color: var(--primary);
    border: 2px solid var(--primary);
    padding: 6px;
    color: var(--light);
    transition: all 0.4s ease-in-out;
}
footer .btnn:hover {
    border: 2px solid var(--light);
    background-color: var(--light);
    color: var(--primary);
}

/* Footer Section End */

/* Model Section Start   */

.modal {
    --bs-modal-width: 600px;
    --bs-modal-border-radius: 0px;
    --bs-modal-border-width: 2px;
    --bs-modal-border-color: #fff;
}
.modal .modal-content {
    background-image: url("../images/p1.webp");
    background-position: center;
    background-size: cover;
    backdrop-filter: initial;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}
.modal .modal-content::after {
    content: "";
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    background-color: var(--primary);
    opacity: 0.9;
    position: absolute;
    z-index: 1;
    border-radius: 0px;
}
.modal .modal-content > * {
    position: relative;
    z-index: 2;
}
.modal .modal-header {
    border-bottom: 0px;
    padding: 20px 20px 0px 0px;
}
.btn-close {
    --bs-btn-close-opacity: 1;
    background-color: #fff;
    --bs-btn-close-color: var(--primary);
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000C26'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
}
.modal .modal-title {
    font-size: 26px;
    color: var(--light);
}
.modal .modal-body {
    text-align: center;
    padding: 0px 40px;
}
.modal .modal-text {
    font-size: 16px;
    line-height: 1;
    color: var(--light);
    margin-bottom: 15px;
}
.modal .modal-body .header_section .title span {
    color: var(--light);
}
.modal .modal-body .header_section .title {
    justify-content: center;
}
.modal .modal-body .header_section .subtitle {
    font-size: 30px;
    text-align: center;
    color: var(--light);
    margin: 10px;
}
.modal .modal-body .header_section .content {
    line-height: 1;
    width: 80%;
    margin: 10px auto;
    text-align: center;
    color: var(--light);
}
.modal .modal-body .btnn {
    background-color: var(--light);
    border: 2px solid var(--primary);
    padding: 10px;
    color: var(--primary);
    transition: all 0.4s ease-in-out;
    border-radius: 10px;
}
.modal .modal-body .btnn:hover {
    border: 2px solid var(--light);
    background-color: var(--primary);
    color: var(--light);
}

/* Model Section End   */

@media (max-width: 480px) {
    .slider {
        padding: 120px 0px;
    }
    .overview .o_img {
        /* height: 100%; */
        margin-bottom: 20px;
    }
    .overview .box {
        rotate: 355deg;
        height: 300px;
        width: 300px;
    }
    .overview .box img {
        height: 300px;
        width: 300px;
        rotate: 5deg;
    }
    .slider .new {
        width: 100%;
    }
    .slider .new h4 {
        font-size: 18px;
    }
    .slider .key_highlights {
        padding: 10px;
    }
    .slider .key_highlights .key {
        font-size: 15px;
    }
    .slider .p_bhk {
        font-size: 18px;
    }
    .slider .p_price {
        font-size: 20px;
    }
    .slider .p_price span {
        font-size: 22px;
        line-height: 1;
    }
    .slider .form_card {
        padding: 40px 20px;
    }
    .slider .slider_details {
        width: 100%;
        padding: 20px;
    }
    .slider .p_name {
        font-size: 28px;
    }
    .header_section .subtitle {
        font-size: 19px;
    }
    .contact_form .c1 .lines .line1,
    .contact_form .c1 .lines .line2 {
        width: 40px;
    }
    .contact_form .c1 {
        font-size: 16px;
    }
    .contact_form .c2 {
        font-size: 24px;
        line-height: 1;
    }
    .contact_form .c3 {
        margin-top: 10px;
        font-size: 14px;
    }
    .floorplan .card img {
        filter: blur(2px);
    }
    .location .header_section .subtitle span {
        display: none;
    }
    .location .header_section .subtitle {
        line-height: 1.5;
    }
    .location .accordion-body {
        padding: 10px;
    }
    .location .accordion-body ul li {
        font-size: 14px;
    }
    .location .accordion-button .icon {
        display: none;
    }
    .floorplan .card .card-text ul li {
        font-size: 16px;
    }
    .floorplan .card .card-title {
        font-size: 20px;
    }
    .location .accordion-button {
        font-size: 14px;
        padding: 5px 0px;
    }
    .location .location_img {
        height: 350px;
    }
}
@media (min-width: 481px) and (max-width: 767px) {
    .slider {
        padding: 120px 0px;
    }
    .overview .o_img {
        /* height: 100%; */
        margin-bottom: 20px;
    }
    .overview .box {
        rotate: 355deg;
        height: 350px;
        width: 350px;
    }
    .overview .box img {
        height: 350px;
        width: 350px;
        rotate: 5deg;
    }
    .slider {
        padding: 120px 0px;
    }
    .overview .o_img {
        /* height: 100%; */
        margin-bottom: 20px;
    }
    .overview .box {
        rotate: 355deg;
        height: 300px;
        width: 300px;
    }
    .overview .box img {
        height: 300px;
        width: 300px;
        rotate: 5deg;
    }
    .slider .new {
        width: 100%;
    }
    .slider .new h4 {
        font-size: 18px;
    }
    .slider .key_highlights {
        padding: 10px;
    }
    .slider .key_highlights .key {
        font-size: 16px;
    }
    .h_points .card .card_img {
        height: 50px;
    }
    .slider .p_bhk {
        font-size: 18px;
    }
    .slider .p_price {
        font-size: 20px;
    }
    .slider .p_price span {
        font-size: 22px;
        line-height: 1;
    }
    .slider .form_card {
        padding: 40px 20px;
    }
    .slider .slider_details {
        width: 100%;
        padding: 20px;
    }
    .slider .p_name {
        font-size: 28px;
    }
    .pricelist .price_img img {
        height: 300px;
    }
    .amenities .card .card-body {
        width: 95%;
    }
    .header_section .subtitle {
        font-size: 19px;
    }
    .contact_form .c1 .lines .line1,
    .contact_form .c1 .lines .line2 {
        width: 40px;
    }
    .contact_form .c1 {
        font-size: 16px;
    }
    .contact_form .c2 {
        font-size: 24px;
        line-height: 1;
    }
    .contact_form .c3 {
        margin-top: 10px;
        font-size: 14px;
    }
    .floorplan .card img {
        filter: blur(2px);
    }
    .location .header_section .subtitle span {
        display: none;
    }
    .location .header_section .subtitle {
        line-height: 1.5;
    }
    .location .accordion-body {
        padding: 10px;
    }
    .location .accordion-body ul li {
        font-size: 14px;
    }
    .location .accordion-button .icon {
        display: none;
    }
    .floorplan .card .card-text ul li {
        font-size: 16px;
    }
    .floorplan .card .card-title {
        font-size: 20px;
    }
    .location .accordion-button {
        font-size: 14px;
        padding: 5px 0px;
    }
    .location .location_img {
        height: 350px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    :root {
        --gap: 1.25rem;
        --speed: 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        --closed: 3rem;
        --open: 15rem;
        --accent: #a8802d;
    }
    .slider {
        padding: 120px 0px;
    }
    .slider .form_card {
        margin-top: 30px;
    }
    .slider .new,
    .slider .slider_details {
        width: 100%;
    }

    .overview .o_img {
        margin-bottom: 30px;
    }
    .overview .box {
        height: 500px;
        width: 500px;
    }
    .overview .box img {
        height: 500px;
        width: 500px;
    }
    .h_points .card {
        text-align: justify;
    }
    .h_points .card .col-md-3 {
        width: 100%;
    }
    .h_points .card .col-md-9 {
        width: 100%;
        text-align: center;
    }
    .h_points .card .card-text {
        font-size: 16px;
        line-height: 1.2;
    }
    .contact_form .c2 {
        font-size: 28px;
    }
    .floorplan .card .masterplan {
        height: 245px;
    }
    .floorplan .card .card-text ul li {
        font-size: 18px;
    }
    .pricelist .price_img img {
        height: 250px;
    }
    .pricelist .table tbody tr td {
        font-size: 16px;
    }
    .floorplan .card img {
        height: 200px;
    }
    .project-card {
        position: relative;
        flex: 0 0 var(--closed);
        height: 20rem;
        border-radius: 10px;
        overflow: hidden;
        cursor: pointer;
        transition:
            flex-basis var(--speed),
            transform var(--speed);
    }
    .project-card[active] {
        flex-basis: var(--open);
    }
    .project-card__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition:
            filter 0.3s,
            transform var(--speed);
    }
    .project-card:hover .project-card__bg {
        filter: brightness(0.9) saturate(100%);
        transform: scale(1.06);
    }
    .location .location_img {
        height: 450px;
    }
    footer .footer {
        text-align: center;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    :root {
        --gap: 1.25rem;
        --speed: 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        --closed: 3rem;
        --open: 30rem;
        --accent: #a8802d;
    }
    .navbar .navbar-brand img {
        height: 45px;
    }
    .navbar .navbar-nav .nav-item {
        margin: 0px 2px;
    }
    .navbar .navbar-nav .nav-item .nav-link {
        font-size: 16px;
    }
    .animated-button {
        padding: 5px 30px !important;
        font-size: 14px;
    }
    .slider {
        padding: 120px 0px;
    }
    .slider .col-lg-4 {
        display: flex;
        align-items: center;
    }
    .slider .new,
    .slider .slider_details {
        width: 100%;
    }
    .overview .overview_details .content ul li {
        font-size: 14px;
    }
    .overview .box {
        height: 400px;
        width: 300px;
    }
    .overview .box img {
        height: 400px;
        width: 350px;
    }
    .overview .o_img {
        height: 90%;
    }
    .contact_form .c2 {
        font-size: 28px;
    }
    .floorplan .card .card-title {
        font-size: 20px;
    }
    .location .header_section .subtitle {
        font-size: 20px;
        line-height: 1.2;
    }
    .location .header_section .subtitle span {
        display: none;
    }
    .location .accordion-body ul li {
        font-size: 14px;
    }
    .floorplan .card .card-text ul li {
        font-size: 16px;
    }
    .h_points .card {
        text-align: left;
    }
    .h_points .card .card-body {
        padding: 10px;
    }
    .h_points .card .card-title {
        text-align: left;
    }
    .amenities .col-lg-3 {
        width: 33.33%;
    }
    .project-card {
        position: relative;
        flex: 0 0 var(--closed);
        height: 25rem;
        border-radius: 10px;
        overflow: hidden;
        cursor: pointer;
        transition:
            flex-basis var(--speed),
            transform var(--speed);
    }
    .project-card[active] {
        flex-basis: var(--open);
    }
    .project-card__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition:
            filter 0.3s,
            transform var(--speed);
    }
    .project-card:hover .project-card__bg {
        filter: brightness(0.9) saturate(100%);
        transform: scale(1.06);
    }
    .floorplan .card img {
        height: 200px;
    }
    .location .location_img {
        height: 420px;
    }
    .c_form .c_img {
        height: 420px;
    }
    .slider .form_card {
        padding: 20px;
    }
    .slider .col-lg-8 {
        width: 60%;
    }
    .slider .col-lg-4 {
        width: 40%;
    }
}
@media (min-width: 1200px) and (max-width: 1600px) {
    :root {
        --gap: 1.25rem;
        --speed: 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        --closed: 5rem;
        --open: 30rem;
        --accent: #a8802d;
    }
    /* Navbar Section Start */
    .navbar {
        padding: 10px 20px;
    }
    .navbar .navbar-nav .nav-item {
        margin: 0px 5px;
    }
    /* Navbar Section End */

    /* Slider Section Start */
    .slider {
        padding: 120px 0px;
    }
    /* Slider Section End */

    /* HIghlights Section Start */
    .highlights .card img {
        height: 60px;
    }
    .highlights .card .card-body {
        padding: 20px;
    }

    /* HIghlights Section End */

    /* overview Section Start */
    .overview {
        padding: 120px 0px;
    }
    .overview .o_img {
        height: 450px;
    }
    .overview .box,
    .overview .box img {
        height: 450px;
        width: 450px;
    }
    .overview .overview_details .content ul li {
        font-size: 16px;
    }
    /* overview Section End */

    /* H Point Section Start */

    .h_points .header_section {
        width: 80%;
        margin: 0px auto;
    }
    .h_points .card .card-body {
        text-align: left;
    }
    .h_points .card .card-body .card-title {
        text-align: left;
    }
    .h_points .card .card-text {
        line-height: 1.4;
    }
    .h_points .card .card_img {
        height: 70px;
    }

    /* H Point Section End */

    /* pricelist Section Start */
    .pricelist .table tbody tr td {
        font-size: 17px;
        padding: 10px;
    }
    .pricelist .table tbody button {
        padding: 5px 10px;
    }

    /* pricelist Section End */

    /* Amenities Section Start */

    .amenities .header_section {
        width: 80%;
    }
    .amenities .card .card-body {
        padding: 10px;
    }

    /* Amenities Section End */

    /* Gallery Section Start */
    .gallery .header_section {
        width: 80%;
    }

    .project-card {
        position: relative;
        flex: 0 0 var(--closed);
        height: 30rem;
        border-radius: 10px;
        overflow: hidden;
        cursor: pointer;
        transition:
            flex-basis var(--speed),
            transform var(--speed);
    }
    .project-card[active] {
        flex-basis: var(--open);
    }
    .project-card__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition:
            filter 0.3s,
            transform var(--speed);
    }
    .project-card:hover .project-card__bg {
        filter: brightness(0.9) saturate(100%);
        transform: scale(1.06);
    }
    /* Gallery Section End */

    /* Floorplan Section Start */
    .floorplan .header_section {
        width: 80%;
    }

    /* Floorplan Section End */

    /* Location Section Start */

    .location .location_img {
        height: 420px;
    }
    .c_form .c_img {
        height: 420px;
    }
    /* Location Section End */

    /* Header Section Start */

    .header_section .subtitle {
        font-size: 30px;
    }
    footer .footer {
        text-align: center;
    }
    /* Header Section End */
}
@media (min-width: 1601px) {
    /* Header Section Start */

    .header_section {
        text-align: left;
    }
    .header_section .title {
        display: flex;
        align-items: center;
    }
    .header_section .title span {
        font-weight: 800;
        font-size: 18px;
        color: var(--primary);
        border-bottom: 2px solid var(--primary);
        letter-spacing: 5px;
        font-family: var(--font3);
    }
    .header_section .title img {
        margin-right: 6px;
    }
    .header_section .subtitle {
        font-size: 34px;
        font-weight: 500;
        margin: 25px 0px;
        line-height: 1;
        text-transform: capitalize;
    }
    .header_section .subtitle span {
        font-size: 55px;
        color: var(--primary);
    }

    /* Header Section End */

    /* Navbar Section Start */

    .navbar {
        padding: 12px 120px;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
    }
    .navbar .navbar-brand img {
        height: 50px;
    }
    .navbar .navbar-nav .nav-item {
        margin: 0px 15px;
    }
    .navbar .navbar-nav .nav-item .nav-link {
        font-size: 17px;
        color: var(--dark);
        font-weight: 500;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        transition: all 0.3s;
    }
    .navbar .navbar-nav .nav-item .nav-link:hover {
        color: var(--primary);
    }
    .navbar .navbar-nav .nav-item .nav-link::before,
    .navbar .navbar-nav .nav-item .nav-link::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: all 0.3s;
    }

    .navbar .navbar-nav .nav-item .nav-link::before {
        top: 0;
        left: 0;
    }

    .navbar .navbar-nav .nav-item .nav-link::after {
        bottom: 0;
        right: 0;
    }

    .navbar .navbar-nav .nav-item .nav-link:hover::before {
        width: 100%;
        transition: width 0.25s ease-in-out;
    }

    .navbar .navbar-nav .nav-item .nav-link:hover::after {
        width: 100%;
        transition: width 0.25s ease-in-out 0.25s;
    }

    /* Navbar Section End */

    /* Slider Section Start */

    .slider {
        background-image: url("../images/p12.webp");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        height: 100vh;
        position: relative;
        z-index: 0;
        padding: 170px 80px;
    }
    .slider::after {
        content: "";
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        background-color: var(--primary);
        opacity: 0.4;
        position: absolute;
        z-index: 1;
    }
    .slider > * {
        position: relative;
        z-index: 2;
    }

    .slider .short-img {
        width: 100%;
        height: 200px;
        border-radius: 10px;
        margin-bottom: 25px;
    }
    .slider .carousel .carousel-inner .carousel-item img {
        height: 650px;
        border-radius: 10px;
    }

    /* Slider Section End */

    /* Highlights Section Start */

    .highlights {
        margin-top: -60px;
    }
    .highlights .row {
        padding: 0px;
        margin: 0px;
    }
    .highlights .row .col-lg-3 {
        padding: 0px;
        margin: 0px;
        overflow: visible !important;
    }

    @keyframes toptoDown {
        0% {
            opacity: 0;
            transform: translateY(-20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .highlights .card {
        border: 1px solid var(--secondary);
        border-radius: 0px;
        text-align: center;
        display: block;
        transition: transform 0.4s ease;
        transform-origin: center;
        animation: toptoDown 0.6s ease-out forwards;
        opacity: 0;
    }

    .highlights .row > div:nth-child(1) .card {
        animation-delay: 0.3s;
    }
    .highlights .row > div:nth-child(2) .card {
        animation-delay: 0.4s;
    }
    .highlights .row > div:nth-child(3) .card {
        animation-delay: 0.5s;
    }
    .highlights .row > div:nth-child(4) .card {
        animation-delay: 0.6s;
    }

    .highlights .card:hover {
        background-color: var(--secondary);
    }
    .highlights .card img {
        height: 60px;
        margin-bottom: 10px;
    }
    .highlights .card .card-title {
        font-weight: 600;
        color: var(--primary);
    }
    .highlights .card .card-body {
        padding: 30px 20px;
    }

    /* Highlights Section End */

    /* Overview Section Start */

    .overview {
        padding: 160px 0px 120px 0px;
    }
    .overview .box {
        height: 550px;
        width: 550px;
        background-color: var(--primary);
        border-radius: 15px;
        rotate: 12deg;
        position: relative;
        z-index: 0;
    }
    .overview .box img {
        rotate: 348deg;
        height: 550px;
        width: 550px;
        position: absolute;
        z-index: 1;
        border-radius: 15px;
    }

    .overview .overview_details {
        padding: 20px;
    }
    .overview .overview_details .content ul {
        padding-left: 0px;
    }
    .overview .overview_details .content ul li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
        font-weight: 600;
        font-size: 16px;
    }
    .overview .overview_details .content ul li i {
        color: var(--primary);
    }
    .overview .overview_details p {
        text-align: justify;
    }

    .overview .o_img {
        background-image: url("../images/bg11.png");
        height: 600px;
        background-repeat: no-repeat;
        background-size: cover;
    }

    /* Overview Section End */

    /* Highlights Point Section Start */

    .h_points {
        background-color: var(--secondary);
        padding: 120px 0px;
    }
    .h_points .header_section {
        text-align: center;
        width: 80%;
        margin: 0px auto;
    }
    .h_points .header_section .title {
        justify-content: center;
    }
    .h_points .header_section .subtitle {
        text-transform: capitalize;
        line-height: 1;
    }
    .h_points .card .col-md-3 {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .h_points .card {
        border: none;
        padding: 10px;
        display: flex;
        align-items: center;
        text-align: left;
    }
    .h_points .card .card_img {
        height: 60px;
        text-align: center;
        justify-content: center;
    }
    .h_points .card .card-title {
        font-size: 24px;
        text-align: left;
        font-weight: 600;
    }
    .h_points .card .card-text {
        line-height: 1.2;
        font-size: 17px;
    }

    /* Highlights Point Section End */

    /* Pricelist Section Start */

    .pricelist {
        padding: 120px 0px;
    }
    .pricelist .row {
        margin-top: 40px;
    }
    .pricelist .price_img img {
        height: 100%;
        width: 100%;
        border: 2px solid var(--primary);
        filter: blur(2px);
    }
    .pricelist .table tbody {
        text-align: center;
    }
    .pricelist .table thead tr th {
        background-color: var(--primary);
        text-align: center;
        color: var(--light);
        padding: 15px;
    }
    .pricelist .table tbody tr td {
        padding: 15px;
        font-size: 17px;
    }
    .pricelist .table tbody button {
        background-color: var(--primary);
        border: 0px;
        padding: 5px 10px;
        color: var(--light);
        border: 2px solid var(--primary);
        transition: 0.4s ease-in-out;
        font-size: 16px;
    }
    .pricelist .table tbody button:hover {
        background-color: #fff;
        border: 2px solid var(--primary);
        color: var(--primary);
    }

    /* Pricelist Section End */

    /* Contact Form Section Start */

    .contact_form {
        background-image: url("../images/p1.webp");
        padding: 80px 0px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        position: relative;
        z-index: 0;
    }
    .contact_form::after {
        content: "";
        top: 0px;
        left: 0px;
        height: 100%;
        width: 100%;
        background-color: var(--primary);
        opacity: 0.8;
        position: absolute;
        z-index: 1;
    }

    /* Contact Form Section End */

    /* Amenities Section Start */

    .amenities {
        padding: 120px 0px;
    }
    .amenities .header_section {
        width: 80%;
        margin: 0px auto;
        text-align: center;
    }
    .amenities .header_section .title {
        justify-content: center;
    }
    .amenities .subtitle {
        line-height: 1;
    }
    .amenities .card {
        border-radius: 10px;
        margin-bottom: 30px;
    }
    .amenities .card img {
        border-radius: 10px;
        height: 350px;
        position: relative;
        z-index: 0;
    }
    .amenities .card .card-body {
        position: absolute;
        z-index: 1;
        bottom: 0;
        text-align: center;
        background-color: #000c26f5;
        margin: 10px;
        color: var(--light);
        border-radius: 10px;
        padding: 10px 20px;
    }
    .amenities .card .card-body > * {
        position: relative;
        z-index: 2;
    }
    .amenities .card .card-body .card-title {
        margin: 0px auto;
        margin-bottom: 0px;
        width: 100%;
    }
    .amenities .card .card-body .card-text {
        line-height: 1;
    }

    /* Amenities Section End */

    /* Gallery Section Start */

    .gallery {
        padding: 120px 0px;
        background-color: var(--secondary);
    }
    .gallery .header_section {
        text-align: center;
        width: 80%;
        margin: 0px auto;
    }
    .gallery .header_section .title {
        justify-content: center;
    }
    .gallery .header_section .subtitle {
        line-height: 1;
        margin: 20px 0px 30px 0px;
    }

    @media (min-width: 1024px) {
        .head h2 {
            font-size: 2.25rem;
        }
    }
    .gallery_slider {
        margin: auto;
        overflow: hidden;
    }
    .controls {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        visibility: hidden;
    }
    .track {
        display: flex;
        gap: var(--gap);
        align-items: flex-start;
        justify-content: center;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        padding-bottom: 40px;
    }
    .track::-webkit-scrollbar {
        display: none;
    }

    .project-card {
        position: relative;
        flex: 0 0 var(--closed);
        height: 30rem;
        border-radius: 10px;
        overflow: hidden;
        cursor: pointer;
        transition:
            flex-basis var(--speed),
            transform var(--speed);
    }
    .project-card[active] {
        flex-basis: var(--open);
    }
    .project-card__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition:
            filter 0.3s,
            transform var(--speed);
    }
    .project-card:hover .project-card__bg {
        filter: brightness(0.9) saturate(100%);
        transform: scale(1.06);
    }

    .project-card__content {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.7rem;
        padding: 0;
        background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.85) 100%);
        z-index: 2;
    }

    /* Gallery Section End */

    /* Floorplan Section Start */

    .floorplan {
        padding: 120px 0px;
    }
    .floorplan .header_section {
        width: 80%;
        margin: 0px auto;
        text-align: center;
    }
    .floorplan .header_section .title {
        justify-content: center;
    }
    .floorplan .header_section .subtitle {
        line-height: 1;
        margin: 20px 0px 30px 0px;
    }
    .floorplan .card {
        border-radius: 0px;
        border: 2px solid var(--primary);
        width: 95%;
        margin: 0px auto;
        padding: 30px;
        text-align: center;
        margin-bottom: 45px;
    }
    .floorplan .card .masterplan {
        height: 290px;
        filter: blur(5px);
    }
    .floorplan .card img {
        height: 250px;
        border: 1px solid grey;
    }
    .floorplan .card .card-title {
        font-size: 24px;
        font-weight: 600;
        color: var(--primary);
    }
    .floorplan .card .card-text ul {
        padding-left: 0px;
        margin: 0px;
    }
    .floorplan .card .card-text ul li {
        list-style: none;
        padding: 15px 0px 15px 0px;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .floorplan .f_btn {
        background-color: var(--primary);
        padding: 10px;
        color: var(--light);
        border: 2px solid var(--primary);
        font-weight: 800;
        transition: all 0.4s ease-in-out;
    }
    .floorplan .f_btn:hover {
        border: 2px solid var(--primary);
        background-color: transparent;
        color: var(--primary);
        font-weight: 600;
    }

    /* Floorplan Section End */

    /* Location Section Start */

    .location {
        padding: 120px 0px;
        background-color: var(--primary);
    }
    .location {
        position: relative;
        width: 100%;
    }

    .location .location_img {
        width: 100%;
        height: 450px;
        display: block;
        filter: blur(3px); /* Image blur */
    }

    .explore-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: var(--dark);
        color: #fff;
        padding: 12px 25px;
        border: none;
        border-radius: 6px;
        font-size: 18px;
        cursor: pointer;
        z-index: 10;
    }

    .location .header_section .title span {
        color: var(--light);
        border-bottom: 2px solid var(--light);
    }
    .location .header_section .subtitle span {
        color: var(--light);
    }
    .location .header_section .subtitle {
        color: var(--light);
        line-height: 0.6;
    }
    .location .accordion {
        --bs-accordion-border-radius: 0px;
        --bs-accordion-bg: transparent;
        --bs-accordion-border-color: none;
    }
    .accordion-button:not(.collapsed),
    .accordion-item .accordion-header .accordion-button,
    .accordion-item:first-of-type > .accordion-header .accordion-button,
    .accordion-item:last-of-type
        > .accordion-header
        .accordion-button.collapsed {
        background-color: var(--light);
        border-radius: 0px;
    }
    .location .accordion-item {
        margin-bottom: 10px;
    }
    .location .accordion-button {
        padding: 0px 20px 0px 0px;
        border-radius: 0px;
        border: 2px solid var(--light);
    }
    .location .accordion-button .icon {
        height: 40px;
        width: 40px;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--primary);
        /* border: 2px solid var(--primary); */
        color: var(--light);
    }
    .location .accordion-body {
        border: 2px solid var(--light);
        border-top: 0px;
    }
    .location .accordion-body ul {
        margin-bottom: 0px;
        padding-left: 0px;
    }
    .location .accordion-body ul li {
        list-style: none;
        color: var(--light);
        padding: 0px;
        margin-bottom: 0px;
    }

    /* Location Section End */

    /* Form Section Start */

    .c_form {
        padding: 80px 0px;
    }
    .c_form .row {
        display: flex;
        justify-content: center;
    }
    .c_form .header_section {
        text-align: center;
    }
    .c_form .header_section .title {
        justify-content: center;
    }
    .c_form .header_section .subtitle {
        margin: 10px 0px 10px 0px;
        line-height: 0.7;
    }
    .c_form .header_section .content {
        line-height: 0.8;
        font-weight: 600;
        margin-bottom: 20px;
    }
    .c_form .card {
        border-radius: 20px;
        border: 10px solid #000c267a;
        padding: 30px;
    }
    .c_form .c_img {
        border-radius: 20px;
        border: 10px solid #000c267a;
        height: 450px;
        width: 100%;
    }
    .form-control {
        height: 50px;
        border: 1px solid var(--primary);
    }
    .form-control::placeholder {
        color: var(--primary);
    }
    .c_form .btnn {
        background-color: var(--primary);
        border: 2px solid var(--primary);
        padding: 10px;
        color: var(--light);
        transition: all 0.4s ease-in-out;
        border-radius: 10px;
    }
    .c_form .btnn:hover {
        border: 2px solid var(--primary);
        background-color: var(--light);
        color: var(--primary);
    }
    /* Form Section End */

    /* Footer Section Start */

    footer {
        background-color: var(--dark);
        text-align: center;
        color: rgb(190, 188, 188);
        font-size: 15px;
    }
    footer b {
        color: var(--light);
        font-size: 17px;
    }
    footer .footer h5 {
        font-size: 30px;
        color: var(--light);
    }
    footer .footer {
        padding: 60px 60px 40px 60px;
    }
    footer .form-control::placeholder {
        color: #ffffffd8;
    }
    footer .form-control {
        height: 45px;
        border-radius: 0px;
        border: 1px solid var(--light);
        background-color: transparent;
    }
    footer .btnn {
        background-color: var(--primary);
        border: 2px solid var(--primary);
        padding: 6px;
        color: var(--light);
        transition: all 0.4s ease-in-out;
    }
    footer .btnn:hover {
        border: 2px solid var(--light);
        background-color: var(--light);
        color: var(--primary);
    }

    /* Footer Section End */

    /* Model Section Start   */

    .modal {
        --bs-modal-width: 600px;
        --bs-modal-border-radius: 0px;
        --bs-modal-border-width: 2px;
        --bs-modal-border-color: #fff;
    }
    .modal .modal-content {
        background-image: url("../images/p1.webp");
        background-position: center;
        background-size: cover;
        backdrop-filter: initial;
        background-repeat: no-repeat;
        position: relative;
        z-index: 0;
    }
    .modal .modal-content::after {
        content: "";
        height: 100%;
        width: 100%;
        top: 0px;
        left: 0px;
        background-color: var(--primary);
        opacity: 0.8;
        position: absolute;
        z-index: 1;
        border-radius: 0px;
    }
    .modal .modal-content > * {
        position: relative;
        z-index: 2;
    }
    .modal .modal-header {
        border-bottom: 0px;
        padding: 20px 20px 0px 0px;
    }
    .btn-close {
        --bs-btn-close-opacity: 1;
        background-color: #fff;
        --bs-btn-close-color: var(--primary);
        --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000C26'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
    }
    .modal .modal-title {
        font-size: 26px;
        color: var(--light);
    }
    .modal .modal-body {
        text-align: center;
        padding: 0px 40px;
    }
    .modal .modal-text {
        font-size: 16px;
        line-height: 1;
        color: var(--light);
        margin-bottom: 15px;
    }
    .modal .modal-body .header_section .title span {
        color: var(--light);
    }
    .modal .modal-body .header_section .title {
        justify-content: center;
    }
    .modal .modal-body .header_section .subtitle {
        font-size: 30px;
        text-align: center;
        color: var(--light);
        margin: 10px;
    }
    .modal .modal-body .header_section .content {
        line-height: 1;
        width: 80%;
        margin: 10px auto;
        text-align: center;
        color: var(--light);
    }
    .modal .modal-body .btnn {
        background-color: var(--light);
        border: 2px solid var(--primary);
        padding: 10px;
        color: var(--primary);
        transition: all 0.4s ease-in-out;
        border-radius: 10px;
    }
    .modal .modal-body .btnn:hover {
        border: 2px solid var(--light);
        background-color: var(--primary);
        color: var(--light);
    }
}

.outer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.outer .whatsapp {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: 0.2s;
}

.outer .whatsapp:hover {
    transform: scale(1.1);
    transition: 0.2s;
}

/* Call */
.outer1 {
    position: fixed;
    bottom: 20px;
    left: 20px;
    /* Moved slightly inside for better UI */
    z-index: 999;
}

.outer1 .call {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background: #000c26;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border: 1px solid #fff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(221, 221, 221, 0.3);
    transition: transform 0.2s ease-in-out;
}

.outer1 .call:hover {
    transform: scale(1.1);
}

@media (max-width: 480px) {
    .outer1 {
        left: 10px;
    }

    .outer1 .call {
        height: 40px;
        width: 40px;
        font-size: 18px;
    }

    .outer {
        right: 10px;
    }

    .outer .whatsapp {
        height: 40px;
        width: 40px;
        font-size: 20px;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .outer1 {
        left: 10px;
    }

    .outer1 .call {
        height: 45px;
        width: 45px;
        font-size: 18px;
    }

    .outer {
        right: 10px;
    }

    .outer .whatsapp {
        height: 45px;
        width: 45px;
        font-size: 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .outer1 {
        left: 10px;
    }

    .outer1 .call {
        height: 50px;
        width: 50px;
        font-size: 20px;
    }

    .outer {
        right: 10px;
    }

    .outer .whatsapp {
        height: 50px;
        width: 50px;
        font-size: 24px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .outer1 {
        left: 10px;
    }

    .outer1 .call {
        height: 55px;
        width: 55px;
        font-size: 22px;
    }

    .outer {
        right: 10px;
    }

    .outer .whatsapp {
        height: 55px;
        width: 55px;
        font-size: 26px;
    }
}
