@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Pacifico&display=swap');
/* Import Quicksand font */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

/* Header */

html {
    scroll-behavior: smooth;
}

/* Page Scroll animation */

.scroll_scale {
    opacity: 0;
    /* transform: scale(.6);
    transition: all 2s; */
}

.show-items {
    opacity: 1;
    transform: translateX(0);
}

.scroll_card {
    transform: translateX(-300px);
    opacity: 0;
    transition: calc(1s * var(--i));
}

.scroll_card.show-items {
    transform: translateX(0);
    opacity: 1;
}

.scroll_Top {
    transform: translateY(20px);
    opacity: 0;
    transition: 2s;
    overflow: hidden;
}

.scroll_Top.show-items {
    transform: translateY(0);
    opacity: 1;
}

.scroll_Bottom {
    transform: translateY(-20px);
    transition: 3s;
    opacity: 0;
}

.scroll_Bottom.show-items {
    transform: translateY(0);
    opacity: 1;
}


/* Page Scrolling Animation End */

.section-1 {
    width: 100%;
    top: 0;
    left: 0;
    background: #000;
    padding: 10px;
    position: sticky;
    z-index: 9999;
}

.sticky1 {
    background: #000 !important;
    height: auto;

}

.section-1>.headerItems {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-bar .navigation-items a {
    text-decoration: none;
    color: white;
    opacity: 10;
    margin-left: 30px;
    position: relative;
    font-weight: 600;
    transition: all .5s ease-in-out;
}

.navigation-items a {
    display: flex;
}

.navigation-items a {
    display: inline-block;
    padding: 10px 5px;
    top: 0;
    right: 0;
    animation: animated 1s ease forwards;
    animation-delay: calc(.2s * var(--a));
}

@keyframes animated {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.navLink::after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 2px;
    background: #2d4865;
    transition: width .3s ease-in-out;
    left: 0;
    bottom: -10px;
}

.navLink:hover::after {
    width: 100%;
}

.navLink:hover {
    color: #fff !important;
}

.navLink.active1 {
    color: #fff !important;
}

.navLink.active1::after {
    width: 100%;
}

.active1::after {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    left: 0;
    top: 120%;
    background: #2d4865;
    transition: all .5s ease-in-out;
}



/* Buttons */

.buttons {
    background: linear-gradient(to right, #2d4865 50%, #000 50%);
    background-size: 200% 100%;
    background-position: right;
    padding: 8px 20px;
    border: 1px solid #2d4865;
    border-radius: 6px;
    transition: all .5s ease-in-out;
    font-weight: 500;
}

.buttons:hover {
    background-position: left;
}

.buttons:hover {
    color: #000;

}

.btn1 {
    text-decoration: none;
    color: white;
}


.buttons-hero {
    background: linear-gradient(to right, #2d4865 50%, #000 50%);
    background-size: 200% 100%;
    background-position: right;
    padding: 8px 20px;
    border: 1px solid #2d4865;
    border-radius: 6px;
    transition: all .5s ease-in-out;
    font-weight: 500;
}

.buttons-hero:hover {
    background-position: left;
}

.btn2 {
    text-decoration: none;
    color: white;
}

.buttons-event {
    background: linear-gradient(to right, #5bd2bc 50%, #000 50%);
    background-size: 200% 100%;
    background-position: right;
    padding: 8px 20px;
    border: 1px solid #5bd2bc;
    border-radius: 6px;
    transition: all .5s ease-in-out;
    font-weight: 500;
    cursor: pointer;
}

.buttons-event:hover {
    background-position: left;
}

.buttons-event:hover .btn3 {
    color: #000;
}

.btn3 {
    text-decoration: none;
    color: white;
    cursor: pointer;
}


/* Toggle */

.toggle {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    display: none;
}

.toggle>span {
    width: 40px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    border-radius: 6px;
    transition: all .5s ease-in-out;
    top: 28px;
    left: 10px;
}

.toggle.active span:nth-child(3) {
    transform: translateX(60px);
}

.toggle>span:nth-child(1) {
    width: 25px;
    left: 10px;
    transform: translateY(-15px);
}

.toggle.active>span:nth-child(1) {
    width: 40px;
    transform: translateY(0) rotate(45deg);
    transition-delay: 0.125s;
}

.toggle.active>span:nth-child(2) {
    width: 40px;
    transform: translateY(0) rotate(315deg);
    transition-delay: 0.25s;
}

.toggle>span:nth-child(2) {
    width: 25px;
    left: 10px;
    transform: translateY(15px);
}

/* NavBar & Toggle responsive */

@media screen and (max-width: 992px) {
    .toggle {
        display: block;
    }

    .navLink::after {
        content: '';
        position: absolute;
        display: block;
        width: 0;
        height: 2px;
        background: #2d4865;
        transition: width .3s ease-in-out;
        left: 0;
        bottom: -10px;
    }

    .nav-bar {
        display: block;
        position: absolute;
        top: 128px;
        left: 0;
        width: 95%;
        max-width: 95%;
        margin: 20px 20px;
        border-radius: 10px;
        border: 1px solid #fff;
        padding: 40px;
        background: #000;
        height: 0;
        opacity: 0;
        padding: 20px;
        display: flex;
        align-items: center;
        flex-direction: column;
        transition: height .3s ease-in-out, opacity .3s ease-in-out;
    }

    .nav-bar.open {
        height: auto;
        opacity: 1;

    }


    .navigation-items a {
        display: block;
        text-align: center;
    }

    .navigation-items a:not(:last-child) {
        margin-bottom: 20px;
    }

    .navLink {
        color: #fff !important;
    }


}

@media screen and (max-width: 568px) {
    .nav-bar {
        margin: 10px 10px;
    }
}


/* Section 1 Home */
.home video {
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    object-fit: cover;
    position: absolute;
    z-index: 000;
}

.video-slider {
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
}


.video-slider.active {
    clip-path: circle(150% at 0 50%);
    transition: 1s ease-in-out;
    transition-property: clip-path;
}

.home {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.home::before {
    z-index: 777;
    content: '';
    position: absolute !important;
    background: rgba(0, 0, 0, 0.6) !important;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.home>.content-hero {
    color: white;
    width: 70%;
    z-index: 888;
    text-align: center;
    position: absolute;
    display: none;
}

.home>.content-hero.active {
    display: block;
}

.home>.content-hero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 80px;
}

.home>.content-hero>p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: center;
}

.home>.media-icons {
    z-index: 888;
    position: absolute;
    right: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all .3s ease-in-out;
    margin-top: 80px;
}

.home>.media-icons>a {
    color: white;
    font-size: 1.3em;
    transition: all .3s ease-in-out;
}

.home>.media-icons>a:not(:last-child) {
    margin-bottom: 20px;
}

.home>.media-icons>a:hover {
    transform: scale(1.3);
    color: #2d4865;
}

@media screen and (max-width: 840px) {
    .home>.media-icons {
        right: 90px;
    }

}

@media screen and (max-width: 562px) {

    .home>.media-icons {
        right: 40px;
    }

    .home>.content-hero>h1 {
        font-size: 2.5rem;
    }

    .home>.content-hero>p {
        font-size: 1rem;
    }
}

/* slider - navigation */

.slider-navigation {
    z-index: 888;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    transform: translateY(240px);
    margin-bottom: 20px;
}

.slider-navigation>.nav-btn {
    width: 12px;
    height: 12px;
    background: #fff;
    cursor: pointer;
    border-radius: 50%;
    transition: all .3s ease-in-out;
}

.slider-navigation>.nav-btn.active {
    background: #2d4865;
}

.slider-navigation>.nav-btn:not(:last-child) {
    margin-right: 20px;
}

/* Events Section */
.sec-heading {
    color: #2d4865;
    margin: 20px 0px;
    text-align: center;
    font-weight: 600;
}

.card {
    border-radius: 5px !important;
    transition: all .3s ease-in-out;
    overflow: hidden;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    height: 600px;
}

.card-body h2 {
    text-align: left;
    font-size: 1.3rem;
    color: #ff5900;
    font-weight: 600;
}

.card-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-link:hover {
    color: #2d4865;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover {
    color: #2d4865 !important;
}

.card-Image img {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.card-Image img.fade-out {
    opacity: 0.7;
    background: #000;
}

.card-Image img {
    width: 100%;
    height: 200px;
}

.fa-volume-off {
    color: #2d4865;
    font-size: 20px;
    transition: all .5s ease-in-out;
    padding: 5px;
}

.fa-volume-off:hover {
    color: #ff5900;
}

/* Discover Our Highlights */

.card1 {
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    width: 100%;
    height: 100%;
    padding: 20px 20px;
}

.card-col-1::after {
    content: '';
    display: block;
    left: 0;
    background: #2d4865;
    width: 0;
    height: 2px;
    transition: width .5s ease-in-out;
}

.card-col-1:hover::after {
    width: 100%;
}

.card1>h1 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 20px 0px;
}

/* Food Menu Section */
.food-menu {
    text-align: center;
    font-family: "Pacifico", cursive;
    font-size: 1.5rem;
    font-weight: 600;
    color: #5bd2bc;
}

.des {
    text-align: center;
    color: #000;
    font-size: 1em;
    font-weight: 600;
}

.tabs {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabs>a {
    margin: 0px 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin: 0px 20px;
    cursor: pointer;
    color: #050a30;
    font-weight: 600;
    transition: all .5s ease-in-out;
}

.tabs>a>span {
    padding: 0px 10px;
}

.tabs>a:hover {


    color: #ff5900;
    transform: translateX(2px);
}

.Items-Menu img {
    border-radius: 6px;
    text-align: center;
    width: 200px;
}


.Items-Menu h3 {
    color: #ff5900;
    font-size: 1.2rem;
    text-align: center;
    margin: 10px 0px;
    font-weight: 600;
}

.Items-Menu h4 {
    color: #000;
    font-size: 1rem;
    text-align: center;
    margin: 10px 0px;
    font-weight: 600;
}

.menu-Items {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    display: none;
    flex-wrap: wrap;
}

.menu-Items.Menus-I {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-Items_I {
    display: flex;
    align-items: center;
    justify-content: space-between;
    display: none;
    flex-wrap: wrap;
}


.menu-Items_III {
    display: flex;
    align-items: center;
    justify-content: space-between;
    display: none;
    flex-wrap: wrap;
}

.tabs>a.menu_active {
    color: #ff5900;
}

.menu-Items_I.Men_active {
    display: flex;
}

.fade-out1 {
    opacity: 0.7;
    transition: opacity .5s ease-in-out;
}

/* Teams Members Sections */

.section_4 {
    background: url(../Images/Banners/section\ -04\ background.jpg);
    background-size: cover;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;

}

.card-2 {
    margin-bottom: 30px;
}

.card-2 img {
    padding: 10px;
    border-radius: 10px;
    border: 10px solid #ff5900;
}

.card-2>p {
    color: #fff;
    text-align: center;
}

.card-2>h4 {
    color: #5bd2bc;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin: 20px 0px;
}

.card-2>.icons-Media {
    text-align: center;
}

.card-2>.icons-Media>a:not(:last-child) {
    margin-right: 30px;
}

.card-2 img {
    border: 1px solid #fff;
    border-radius: 6px;
}

.card-2>.icons-Media>a>i {
    font-size: 1.2rem;
    margin: 0px 0px;
    color: #fff;
    transition: all .5s ease-in-out;
}

.card-2>.icons-Media>a>i:hover {
    color: #ff5900;
    transform: scale(1.2);
}

.icons-media {

    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.icons-media a i {
    font-size: 22px;
    color: #5bd2bc;
    transition: all .5s ease-in-out;
}

.icons-media a i:hover {
    transform: scale(1.3);
}





/* product carousel */
.sec-5 {
    width: 100%;
    height: 100vh;
}

.product-card {
    padding: 30px;
    border: 1px solid #fff;
    border-radius: 6px;
    width: 50%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: auto;
    width: 100%;
}

@media screen and (max-width: 600px) {
    .testimonials-card {
        width: 100%;
        margin: 0px;
    }
}

.quote img {
    width: 90px;
    height: 90px;
    text-align: center;
}

.testimonials-card p {
    font-size: 0.9rem;
    font-weight: 400;
    color: #fff;
    margin: 20px 0px;
    text-align: center;
}

.owl-theme .owl-dot.active span {

    background-color: #2d4865;
    background: #2d4865 !important;
}

.img_t {
    width: 100%;
    height: 300px;
}

.owl-theme .owl-dots .owl-dot span {
    background: #000 !important;
}

/* testimonials start */

.testimonial-section {
    text-align: center;
    padding: 20px 0;
    background-color: #f9f9f9;
}

.testimonial-section>h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.slider-container {
    width: 100%;
    /* Display 3 cards at a time */
    overflow: hidden;
    margin: 0 auto;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    /* Smooth transition */
}

.testimonial-card {
    min-width: 350px;
    /* Each card is 400px wide */
    margin: 0 15px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.slider-controls {
    margin-top: 20px;
}

#prevBtn,
#nextBtn {
    background-color: #2d4865;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
}

.testimonial-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}




/* testimonials End */












/* Search Bar Css Start */
.search-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* Align items with space between */
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#location {
    margin-top: 0px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin: 10px;
    flex: 1;
    /* Allow items to grow equally */
}

.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
}


.form-group select,
.form-group input[type="range"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group input[type="text"] {
    width: 100%;
}

.form-group input[type="range"] {
    background: #2d4865;
}


#priceRange {
    margin-top: 10px;

}

@media screen and (max-width: 992px) {
    .card {
        height: auto !important;
    }
}

.searBtn {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .form-group input[type="text"] {
        width: 100%;
    }
}

#searchBtn {
    background: linear-gradient(to right, #2d4865 50%, #000 50%);
    background-size: 200% 100%;
    background-position: right;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 20px;
    transition: all .5s ease-in-out;
}

#searchBtn:hover {
    background-position: left;
}

/* Search Bar css End */













































/* footer  */
.footer {
    background: #101010;
    background-size: cover;
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-position: top;
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.newsletter {
    text-align: center;
    color: #fff !important;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: "Inter", sans-serif !important;
}

.footer-heading {
    text-align: left;
    color: #fff !important;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: underline;
    font-family: "Inter", sans-serif !important;
}

form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

input[type=text] {
    padding: 10px;
    border: 1px solid #5bd2bc;
    border-radius: 6px;
    margin: 20px 0px;
    outline: none;
    width: 500px;
}

@media screen and (max-width: 600px) {
    input[type=text] {
        width: 300px;
    }
}

::placeholder {
    font-size: 13px;
    font-weight: 500;
}

.Sub-Btn1 {
    padding: 10px 40px;
    border: 1px solid #fff !important;
    border-radius: 6px;
    color: #000;
    background: linear-gradient(to right #2d4865 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right;
    margin: 10px 0px;
    transition: all .5s ease-in-out;
    font-weight: 600;
}

.Sub-Btn1:hover {
    background: #2d4865;
    color: #fff !important;

}

.f-menus a {
    display: block;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    margin: 15px 0px;
    transition: all .5s ease-in-out;
}

.f-menus a:hover {
    transform: translateX(10px);
}

.f-menus a i {
    font-size: 12px;
    margin-right: 20px;
}

.timings h4 {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    line-height: 30px;
}

.icons-media-1 a i {
    color: #fff !important;
    font-size: 2rem;
    transition: all .3s ease-in-out;
}

.icons-media-1 a:not(:last-child) {
    margin-right: 30px;
}

.icons-media-1 a i {
    margin: 5px 0px;
}

.icons-media-1 a i:hover {
    transform: scale(1.3);
}

.owl-prev,
.owl-next {
    display: none !important;
}

.owl-dots.active span {
    background: #ff5900 !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #ff5900 !important;
}

/* single_properties css start */

.header_strip {
    background-color: #000;
    width: 0px;
    height: 0px;
    display: none !important;
}

.product_Name {
    font-size: 2rem;
    font-weight: 600;
    color: #2d4865;
}

.product_by {
    color: #ff5900;
}

.product_testimonial img {
    width: 100%;
    height: 200px;
    margin-top: 10px;
    margin-bottom: 15px;
    border-radius: 10px;
}

video {
    width: 100%;
}

.product_testimonial {
    padding: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 1px solid #2d4865;
    margin: 5px;
    border-radius: 6px;
}

.text-left {
    text-align: left;
}

.icon img {
    width: 50px;
    text-align: center;
}

.icon {
    border: 2px solid #2d4865;
    padding: 20px;
    border-radius: 6px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.icon h4 {
    font-size: 1.2rem;
    line-height: 30px;
    margin-top: 20px;
}

.Carousel_item img {
    width: 100%;
    height: 400px !important;
    object-fit: cover;
    border-radius: 10px;

}

.community_content img {
    width: 100px;
    height: 150px;
    border-radius: 10px;
    margin-block: 10px;
    object-fit: cover;
}

.community_content {
    padding: 10px;
}

.community_content h2 {
    color: #2d4865;
    font-size: 1.5rem;
}

.community_content p {
    color: #000;
    font-size: .9rem;
}

.carousel_cards {
    position: sticky;
    height: 100vh;
    overflow-y: hidden;
    top: 100px;
    transition: all .5s ease-in-out;
}

@media screen and (max-width: 992px) {
    .icon h4 {
        font-size: 15px;
        height: 40px;
    }

    .community_content img {
        width: 100%;
        height: 100px;
    }

    .community_content h2 {
        font-size: 15px;
    }

}

/* single_properties css end*/

/* Search */

.fa-magnifying-glass {
    color: #fff;
}

.carousel-item video {
    outline: none;
    margin-top: 30px;
    background-color: #000;
    border-radius: 15px;
}

.slide {
    min-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.vidoeSlider {
    display: flex;
    height: 480px;
    transition: all .5s ease-in-out;
}

.slider {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.textBox {
    display: none;
    background: #2d4865;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #000;
    border-radius: 6px;
}

.textBox h2 {
    font-size: 25px;
    margin-top: 10px;
    color: #fff;
}

.textBox p {
    color: #fff;
    line-height: 30px;

}

.textBox.active {
    display: block;
}

.btn2 {
    background: transparent;
    padding: 10px 30px;
    border: 1px solid #fff;
    border-radius: 6px;
    color: #fff;
    transition: all .5s ease-in-out;
}

.btn2:hover {
    background: #000;
}

.pre_btn {
    background-color: #2d4865;
    color: #fff;
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    transition: all .4s ease-in-out;
}

.pre_btn:hover {
    background-color: #000;
}

.cardBody,
.card-title,
.card-text {
    text-align: center;
}

.testCard {
    width: 100%;
    height: auto;
    margin-top: 20px;
}

.selectProperty {
    display: flex;
    align-items: center;
    justify-content: space-around;

}

select {
    flex: 1;
    width: 100%;
    padding: 10px 20px 10px 20px;
    appearance: none;
    margin-top: 10px;
    border-radius: 6px;
    outline: none;
    cursor: pointer;
}

select:hover {
    box-shadow: #2d4865;
}

.btn-search {
    background-color: #2d4865;
    color: white;
    width: 100% !important;
    height: 45px;
    margin-top: 15px;
    /* transition: all .5s ease-in-out; */
}

.btn-search:hover {
    background-color: #000000;
    color: #fff;
}

.message textarea {
    width: 95%;
    height: 50px;
    margin: 10px 10px;
    outline: none;
    border-radius: 6px;
}

.btn-primary1 {
    background-color: #050a30;
    color: #fff;
    transition: all .5s ease-in-out;
}

.btn-primary1:hover {
    background-color: #ff5900;
    color: #fff;
}

.btn-primar2 {
    background-color: #fff;
    border: 1px solid #ff5900;
    color: #ff5900;
    transition: all .5s ease-in;
    text-align: right;
}

.btn-primar2:hover {
    background-color: #ff5900;
    border: 1px solid #ff5900;
    color: #fff;
}

.btn_S {
    background-color: #ff5900 !important;
    color: #fff;
    border: 1px solid #ff5900;
}



#chatbot-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;

    border: none;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
    /* Ensure the button is above the chatbot popup */
}


/* About Us Page Styles */
.about-content-prada-about-us {
    font-family: 'Quicksand', sans-serif;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

/* Header Section */
.header-section-prada-about-us {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.main-title-prada-about-us {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.subtitle-prada-about-us {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    color: #4a5568;
    font-weight: 600;
    letter-spacing: -0.3px;
}

/* Introduction Section */
.intro-section-prada-about-us {
    margin-bottom: 40px;
}

.intro-section-prada-about-us p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Section Titles */
.section-title-prada-about-us {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.75rem;
    color: #2d3748;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
    font-weight: 700;
    letter-spacing: -0.3px;
}

/* Services List */
.services-list-prada-about-us {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.services-list-prada-about-us li {
    padding: 15px 20px;
    margin-bottom: 15px;
    background: #f8fafc;
    border-left: 4px solid #3182ce;
    border-radius: 0 8px 8px 0;
    transition: transform 0.3s ease;
    font-weight: 500;
}

.services-list-prada-about-us li:hover {
    transform: translateX(10px);
}

.services-list-prada-about-us li strong {
    color: #2b6cb0;
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

/* Section Spacing */
.expertise-section-prada-about-us,
.why-choose-section-prada-about-us,
.leader-section-prada-about-us {
    margin-bottom: 40px;
}

.expertise-section-prada-about-us p,
.why-choose-section-prada-about-us p,
.leader-section-prada-about-us p {
    font-weight: 500;
    line-height: 1.8;
}

/* Contact Section */
.contact-section-prada-about-us {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.registration-info-prada-about-us,
.contact-info-prada-about-us {
    margin: 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Closing Section */
.closing-section-prada-about-us {
    text-align: center;
    padding: 30px 0 10px;
    font-style: italic;
    color: #4a5568;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content-prada-about-us {
        padding: 15px;
    }

    .main-title-prada-about-us {
        font-size: 2rem;
    }

    .subtitle-prada-about-us {
        font-size: 1.25rem;
    }

    .services-list-prada-about-us li {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .main-title-prada-about-us {
        font-size: 1.75rem;
    }

    .subtitle-prada-about-us {
        font-size: 1.1rem;
    }

    .section-title-prada-about-us {
        font-size: 1.5rem;
    }
}

/* Vertical Carousel Styles */
.testimonial-carousel-prada {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-container-prada {
    position: relative;
    height: 100%;
}

/* Navigation Group Styles */
.carousel-nav-group-prada {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-nav-prada {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #2563eb;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-nav-prada:hover {
    background: #1d4ed8;
}

.nav-icon-prada {
    font-size: 1rem;
    line-height: 1;
}

/* Testimonial Item Styles */
.testimonial-item-prada {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateY(100%);
}

.testimonial-item-prada.active {
    opacity: 1;
    transform: translateY(0);
}

/* Card Styles */
.testimonial-card-prada {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Header Row Styles */
.testimonial-header-prada {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #edf2f7;
}

/* Image Styles */
.testimonial-image-prada {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f0f0f0;
}

.testimonial-image-prada img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Styles */
.testimonial-info-prada {
    text-align: left;
    flex-grow: 1;
}

/* Body Row Styles */
.testimonial-body-prada {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 0 !important;
}

/* Client Details Styles */
.client-name-prada {
    font-size: 1.5rem;
    color: #2d3748;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.client-position-prada {
    font-size: 1rem;
    color: #4a5568;
    margin: 0 0 5px 0;
}

.client-location-prada {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

.testimonial-text-prada {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    padding: 0 20px;
}

/* Hover Effects */
.testimonial-card-prada:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.carousel-nav-prada:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Animation for Slide Transition */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonial-carousel-prada {
        height: 450px;
    }

    .carousel-nav-group-prada {
        top: 10px;
        right: 10px;
    }

    .carousel-nav-prada {
        width: 35px;
        height: 35px;
    }

    .nav-icon-prada {
        font-size: 1rem;
    }

    .testimonial-header-prada {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .testimonial-info-prada {
        text-align: center;
    }

    .testimonial-image-prada {
        width: 100px;
        height: 100px;
    }

    .client-name-prada {
        font-size: 1.3rem;
    }

    .testimonial-text-prada {
        font-size: 1rem;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .testimonial-carousel-prada {
        height: 500px;
    }

    .carousel-nav-group-prada {
        top: 5px;
        right: 5px;
    }

    .testimonial-card-prada {
        padding: 15px;
    }

    .testimonial-header-prada {
        padding-bottom: 15px;
    }

    .testimonial-body-prada {
        padding: 0 !important
    }
}


/* Popular properties */
.Popular_Properties_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.sec-heading {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 2.5em;
}

.Popular_Properties_cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.Popular_Properties_card {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.Popular_Properties_card:hover {
    transform: scale(1.05);
}

.Popular_Properties_video {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.Popular_Properties_card_body {
    padding: 15px;
}

.Popular_Properties_card_title {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    color: #333;
    font-weight: 700;
    display: -webkit-box;
    /* Enables the line-clamp behavior */
    -webkit-line-clamp: 2;
    /* Limits to 2 lines */
    -webkit-box-orient: vertical;
    /* Specifies vertical orientation for the box */
    overflow: hidden;
    /* Hides overflowed text */
    text-overflow: ellipsis;
    /* Adds ellipsis for overflowed text */
}

.Popular_Properties_list_group {
    flex-grow: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.Popular_Properties_list_item {
    border-top: 1px solid #eee;
    padding: 10px 15px;
    color: #666;
    display: -webkit-box;
    /* Enables the box model */
    -webkit-line-clamp: 2;
    /* Limits to 2 lines */
    -webkit-box-orient: vertical;
    /* Sets the box orientation to vertical */
    overflow: hidden;
    /* Hides overflowed text */
    text-overflow: ellipsis;
    /* Adds ellipsis to the overflowed text */
}

.Popular_Properties_list_item b {
    color: #333;
    margin-right: 5px;
}

.Popular_Properties_card_link {
    display: block;
    text-align: center;
    padding: 10px;
    background-color: #2d4865;
    color: white;
    text-decoration: none;
    border-radius: 0 0 8px 8px;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.Popular_Properties_card_link:hover {
    background-color: #2d4865;
}


@media (max-width: 768px) {
    .section-1>.headerItems {
        height: 60px !important;
    }
    .section-1>.headerItems img {
        height: 50px !important;
        object-fit: contain;
    }
}

.testimonial-container-prada {
    height: 490px; /* Set a fixed height */
    overflow-y: scroll; /* Enable vertical scrolling */
    scrollbar-width: none; /* Hide scrollbar in Firefox */
    -ms-overflow-style: none; /* Hide scrollbar in Internet Explorer & Edge */
}

.testimonial-container-prada::-webkit-scrollbar {
    display: none; /* Hide scrollbar in Chrome, Safari, and newer Edge */
}


.testimonial-card {
     height: 490px; /* Set a fixed height */
    overflow-y: scroll; /* Enable vertical scrolling */
    scrollbar-width: none; /* Hide scrollbar in Firefox */
    -ms-overflow-style: none; /* Hide scrollbar in Internet Explorer & Edge */
    
}

.testimonial-card::-webkit-scrollbar {
    display: none; /* Hide scrollbar in Chrome, Safari, and newer Edge */
}