/* Setup */
body {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

:root{
    --primary: #F3833A;
    --secondary: #0F110C;
    --tertary:#ffffff;
    --card-btn-color:#F3833A;
    --bs-bg-opacity: 0;
}

.btn-outline-primary{
    background-color: var(--primary);
    color: var(--tertary) ;
    border: none;
}

.btn-outline-primary:hover{
    border: #F3833A solid 1px;
    color:var(--primary);
    background-color:  transparent;
}

.btn-primary-card{
    background-color: var(--card-btn-color);
    color: var(--secondary);
    border: none;
}

.btn-primary-card:hover{
    background-color: var(--tertary);
    color: var(--secondary);
}

.page{
    margin: 0;
    padding:0;
    box-sizing: border-box;
    color: var(--secondary);
    overflow-x: hidden;
}

.navbar{
    padding:  1rem;
}

@media  screen and (max-width:375px) {
    .navbar img, .footer img  {
        width: 150px;
    }
}

.btn{
    border-radius: 0 !important;
}

.card{
    border-radius: 0;
}

.modal .modal-footer{
    justify-content: center;
}

.card:hover{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

/* Hero Section */
.hero{
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: url(../img/hero.png);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: black;
}

.hero .content{
    color: var(--tertary);
    background-color: #0503006b;
    padding: 30px;
    text-align: center;
}

.hero .content .info{
    border: white dotted 3px;
    padding: 10px;
    font-size: large;
}

.hero .form{
    text-align: center;
    width: 350px;
    background-color: var(--tertary);
    padding: 30px 30px;
    margin: 80px 0 !important;
}

form .form-group{
    margin: 1em 0;
}

@media screen and (max-width:840px){
    .hero{
        display: block;
        text-align: center;
        padding:80px 0 !important;
    }

    .hero .form{
        margin:20px auto !important;
    }
    
}

@media screen and (max-width:450px){
    .hero {
        background: url(../img/heromobile.png);
        background-attachment: fixed;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

@media screen and (max-width:350px){
    .hero .form{
        width: 300px;
    }
}


/* Short Description */
.description{
    margin: 80px auto;
    background-image: url(../img/umbrela.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size:15em;
}

.description hr{
    text-align: center;
    margin:20px auto;
    width: 85%;
}

.description .overviewcontent{
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:600px){
    #overview .overviewcontent{
        display: block;
        margin: 40px auto 80px;
        text-align: center;
        padding: 0 10px;
        
    }  
}




/* about */
.about{
    display: flex;
    background: url(../img/about_bg.jpg) no-repeat;
    background-size: contain;
    justify-content:center;
    align-items: center;
    padding: 80px 0 0;
}

.about .aboutcontent {
    width: 33%;
}

.about .aboutcontent .aboutheading{
    position: relative;
}

.about .aboutcontent .aboutheading::before {
    content: "";
    position: absolute;
    top: 0;
    left: -25px;
    box-shadow: -0.5em 0.5em 0.5em 0.001em black;
    width: 7px; /* Adjust the width of the line as needed */
    height: 100%; /* Make the line span the full height of the div */
    background-color: var(--primary); /* Set the color of the line */
}

.about .aboutimage{
    padding:10px;
    margin-right: 8em;
    width: -moz-fit-content; /* Firefox bug fix */
    width: fit-content;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.about .aboutimage img{
    width: 440px;
}

.about .aboutimage:hover{
    transform: translateY(-10px);
}

@media  screen and (max-width:770px) {
    .about .aboutimage{
        margin-right: 3em;
        width: -moz-fit-content; /* Firefox bug fix */
        width: fit-content;
        margin:0 auto 20px;
    }

    .about{
        display: block;
    }

    .about .aboutcontent .aboutheading::before {
        display: none;

    }

    .about .aboutcontent{
        margin-left: 20px;
        text-align: center;
        margin: auto;
        width: 95%;
    }

    .about .aboutcontent hr, .about .aboutcontent .overline{
        margin:auto;
    }    
}

@media screen and (max-width:550px) {
    .about .aboutimage img{
        width: 400px;
    }
    
}

@media screen and (max-width:380px) {
    .about .aboutimage img{
        width: 285px;
    }
    
}



/* residencesociety */
.residencesociety{
    margin-top: 80px;
    text-align: center;
}

.residencesociety .gallery{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.residencesociety .gallery .s{
    width: 30em;
    height: 15em;
    text-align: center;
    align-content: center;
}

.residencesociety .gallery .s:hover{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

@media screen and (max-width:770px){
    .residencesociety .gallery{
        display: block;
    }

    .residencesociety .gallery .s{
        width: auto;
        margin: auto;
    }
}


/* brochure */
.brochure{
    display: flex;
    padding: 80px 0.8em;
    justify-content: space-evenly;
    align-items: center;
    background-color: var(--primary);
    color: var(--tertary);
}

.brochure img, .brochure1 img{
    width: 30%;
    padding-right: 1em;
}


/* video */
.brochure1{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: var(--primary);
    color: var(--tertary);
}

@media screen and (max-width:1030px){
    .brochure1{
        padding: 40px 0.8em 80px;
    }    
}

@media screen and (max-width:600px){
    .brochure1, .brochure{
        display: block;
        text-align: center;
        
    }
    .brochure img, .brochure1 img{
        width:80%;
    }   
}



/* Price plan */
.priceplan {
    padding:80px;
    text-align: center;
    background-image: linear-gradient(240deg, #F3833A29 47%, #FFFFFF 36%);
}

.priceplan .pricecards .row .card{
    border-color:#F3833A;
    border-radius: 0;
    background: transparent;

}

@media screen and (max-width:770px){
    .priceplan{
        padding: 80px 10px;
        text-align: center;
    }

    .priceplan .line{
        margin: auto;
    }
}


/* Amenities */
.amenities{
    margin:80px auto;
    text-align: center;
}

.amenities .amenity-card img {
    width: 100%;
    object-fit: contain;
    border-radius: 0;
}

.amenities .amenity-card .card-body {
    padding: 20px;
}


/* floor-plan */
.floorplan{
    margin:80px auto 0;
    padding-bottom: 80px;
    text-align: center;
    background: url(../img/floorbg1.png) no-repeat fixed;
    background-position: center;
    background-size: contain;
}

.floorplan .floorcard{
    border:none;
    background: transparent;
}


.floorplan .floorcard:hover{
    box-shadow: none;
    transform: scale(1);
    transition: 0;
    cursor:auto;
} 



/* highlights */
.highlights{
    padding: 80px;
    text-align: center;
    color: var(--secondary);

}


.highlights .highlightpoints{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.highlights .highlightsrow .item{
    display: flex;
    align-items: center;
    margin-bottom: 50px; 
    text-align: left;
}

@media screen and (max-width:900px){
    .highlights .highlightpoints{
        display: block;
    }

    .highlights {
        padding: 80px 10px;
    }

    .highlights .highlightpoints img{
        width: 50%;
    }

    .highlights .highlightsrow .item h3{
        margin: auto;
        width: -moz-fit-content;
        width: fit-content;
    }

    .highlights .highlightsrow .item{
        display: block;
        text-align: center;
    }
    
}


/* testimonials */
.testimonials{
    padding: 80px;
    text-align: center;
    /* background-image: url(../img/award-Icon.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size:15em; */
}

.testimonials .test-img-top{
    width: 50%;
    margin: auto;
    text-align: center;
}

.testimonials .row .col{
    align-items: center;
}

@media screen and (max-width: 900px){
    .testimonials{
        padding: 80px 10px;
    }
}


/* location */
.location{
    padding: 80px;
    text-align: center;
    background-color:#F3833A29;
}

.location .content{
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.location .content .highlightsrow .item{
    display: flex;
    align-items:flex-start;
    margin: 15px auto;
}

.location .content .highlightsrow .item img{
    /* padding-top: 15px; */
    padding-right: 10px;
}

/* .location .content .limg img{
    padding: 12px;
    background-color: var(--tertary);
} */

.location .content .limg iframe{
    width: 48vw;
    height: 58vh;
}


.location .content .highlightsrow .item h3{
    background-color: var(--tertary);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

@media screen and (max-width: 1025px){
    .location .content{
        display:block;
        text-align: center;
    }

    .location{
        padding: 80px 10px;
    }

    .location .content .highlightsrow .item h3{
        margin: auto;
        width: -moz-fit-content;
        width: fit-content;
    }
    
    .location .content .highlightsrow .item {
        display: block;
        text-align: center;
    }

    .location .content .limg iframe{
        width: 80vw;
        height: 65vh;
    }
}

@media screen and (max-width:430px) {
    .location .content .limg iframe{
        width: 85vw;
        height: 45vh;
    }

    .location .content .limg{
        padding: 0 !important;
    }


    .location .content .limg .locationicon{
        width:18%;
        height: 18%;
        margin-top: -3em;
    }
}

/* ending */
.ending{
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: var(--tertary);
    background: url(../img/ending.png) no-repeat fixed;
    background-position:bottom;
    background-size: cover;
    background-color:black;
}

.ending .btn{
    color: var(--tertary);
}

.ending .btn:hover{
    color: var(--secondary);
}

@media screen and (max-width:430px) {
    .ending{
        display: block;
        text-align: center;
        margin: auto;
    }

    .ending h2{
        padding-bottom: 20px;
    }
    
}

/* Call */
#call {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 99;
    font-size: 1.2rem;
    border: none;
    outline: none;
    background-color: rgb(11, 90, 11);
    color: white;
    cursor: pointer;
    padding: 0.8em;
    transition: background-color 0.3s ease;
  }
  
#call:hover {
  background-color: var(--tertary);
  color: var(--secondary);
  border: 2px solid rgb(11, 90, 11);
}


/* Mobile Banner */
/* #scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 1.2rem;
    border: none;
    outline: none;
    background-color: var(--primary);
    color: white;
    cursor: pointer;
    padding: 0.8em;
    transition: background-color 0.3s ease;
  }
  
#scrollToTopBtn:hover {
  background-color: var(--tertary);
  color: var(--secondary);
} */

.fixed-bottom{
    display: none;
}

@media screen and (max-width:430px){
    .fixed-bottom{
        display: block;
    }
}


/* footer */
.footer {
    color: var(--secondary);
    padding: 20px 0;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-nav {
  list-style: none;
  padding-left: 0;
}

.footer-nav li {
  display: inline-block;
  margin-right: 20px;
}

.footer-nav li:last-child {
  margin-right: 0;
}

.footer-nav li a {
  color: var(--secondary);
  text-decoration: none;
}

.footer-nav li a:hover{
    color: var(--primary);
}