/********** Template CSS **********/
:root {
    --primary: #FF6F0F;
    --secondary: #FFF0E6;
    --light: #F8F8F9;
    --dark: #001D23;
}

.justifyp {
    text-align: justify;
}

/*mouse follower pointer*/

.mouse-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--bs-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}


.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.ring1 {
  width: 10px;
  height: 10px;
  border: 2px solid var(--bs-primary);
  transition: transform 0.1s ease-out;
}

.ring2 {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(156, 109, 65, 0.5);
  transition: transform 0.15s ease-out;}



.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Button ***/
.btn {
    color: #9C6D41;
    transition: .5s;
}

/*.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    color: var(--primary);
    background: transparent;
}*/

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.menu-btn {
    width: 42px;
    height: 42px;
    border: 1px solid var(--bs-primary);
    border-radius: 50%;
    color: var(--bs-primary);
    font-size: 24px;
    transition: .3s;
    background-color: #fff
}

.menu-btn:hover {
    background: #fff;
    color: var(--bs-primary);
}
@media (max-width: 768px) {
    .menu-btn {
    width: 32px;
    height: 32px;
    font-size: 20px;
    border:0px !important;
    background: transparent;
    }
}
    

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: var(--dark);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/* Fullscreen Menu */
.menu-left {
    width: 50%;
    overflow-y: auto;
    height: 100vh;
}

.menu-left::-webkit-scrollbar {
    width: 0;
}

.menu-left {
    scrollbar-width: none;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

.menu-wrapper {
    display: flex;
    background: #fff;
    overflow: hidden;
    transform: translateY(-20px);
    transition: .3s;
}

.menu-overlay.show .menu-wrapper {
    transform: none;
}

.menu-left,
.menu-right {
    width: 50%;
}

.menu-list a {
    color: var(--bs-primary);
    text-decoration: none;
    transition: .3s;
}

.menu-list a:hover,
.submenu a:hover {
    color: var(--bs-primary);
    padding-left: 8px;
}

.submenu a {
    color: #666;
    text-decoration: none;
}

.menu-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bs-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s;
}

.menu-social a:hover {
    transform: translateY(-3px);
}

.menu-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border: 1px solid #000;
    border-radius: 50%;
    background: #fff;
}



@media (max-width:991.98px) {

    .menu-wrapper {
        flex-direction: column;
    }

    .menu-left,
    .menu-right {
        width: 100%;
    }

    .menu-right {
        height: 250px;
    }

}

@media (max-width: 768px) {
    .menu-close {
    width: 30px;
    height: 30px;
    }
}

.bg-dark1 {
    background-color: #00000024 !important;
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 29, 35, .8);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 12px solid var(--dark);
    border-radius: 3rem;
}

@media (max-width: 768px) {

   #header-carousel .carousel-item {
      position: relative;
      min-height: auto;
      height: auto;
   }

   #header-carousel .carousel-item img {
      position: static;
      width: 100%;
      height: auto;
      object-fit: unset;
   }

}

.page-header {
    padding-top: 200px;
    padding-bottom: 100px;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.about-header {
    background: linear-gradient(rgba(0, 29, 35, .5), rgba(0, 29, 35, .5)),
        url(../img/banner/aboutbanner.webp) center center / cover no-repeat;
}

.redev-header {
    background: linear-gradient(rgba(0, 29, 35, .5), rgba(0, 29, 35, .5)),
        url(../img/banner/redevbanner.webp) center center / cover no-repeat;
}

.contact-header {
    background: linear-gradient(rgba(0, 29, 35, .5), rgba(0, 29, 35, .5)),
        url(../img/banner/contactbanner.webp) center center / cover no-repeat;
}

.ongoing-header {
    background: linear-gradient(rgba(0, 29, 35, .5), rgba(0, 29, 35, .5)),
        url(../img/banner/ongoingbanner.webp) center center / cover no-repeat;
}

.upcoming-header {
    background: linear-gradient(rgba(0, 29, 35, .5), rgba(0, 29, 35, .5)),
        url(../img/banner/upcomingbanner.webp) center center / cover no-repeat;
}

.completed-header {
    background: linear-gradient(rgba(0, 29, 35, .5), rgba(0, 29, 35, .5)),
        url(../img/banner/completedbanner.webp) center center / cover no-repeat;
}

.thankyou {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/banner/aboutbanner.webp) center center no-repeat;
    background-size: cover;
}

.project-header {
    padding-top: 250px;
    padding-bottom: 250px;
}

@media (min-width: 1920px) {
   .project-header {
      padding-top: 350px;
      padding-bottom: 350px;
   }
}

.shrivar-header {
    background: linear-gradient(rgba(0, 29, 35, .5), rgba(0, 29, 35, .5)),
        url(../img/banner/shrivarbanner.webp) center center / cover no-repeat;
}

.sai-header {
    background: linear-gradient(rgba(0, 29, 35, .5), rgba(0, 29, 35, .5)),
        url(../img/banner/saibanner.webp) center center / cover no-repeat;
}

.heritage-header {
    background: linear-gradient(rgba(0, 29, 35, .5), rgba(0, 29, 35, .5)),
        url(../img/banner/heritagebanner.jpg) center center / cover no-repeat;
}

.elite-header {
    background: linear-gradient(rgba(0, 29, 35, .5), rgba(0, 29, 35, .5)),
        url(../img/banner/elitebanner.jpg) center center / cover no-repeat;
}

/*** Testimonial ***/

.testimonial-item {
    padding: 30px;
    height: 100%;
}

.testimonial-item hr {
    margin: 1.5rem 0;
    opacity: .2;
}

.testimonial-item .fa-star {
    color: var(--bs-primary);
    font-size: .9rem;
}

.testimonial-nav .btn {
    width: 48px;
    height: 48px;
    padding: 0;
}

.testimonial-carousel .owl-stage {
    display: flex;
}

.testimonial-carousel .owl-item {
    display: flex;
}

.testimonial-carousel .testimonial-item {
    width: 100%;
}

@media (max-width:991.98px) {

    .testimonial-nav {
        margin-bottom: 2rem;
    }

    .testimonial-item {
        padding: 25px;
    }

}


/*** Footer ***/
.footerbg {
    background: url("../img/footerbg.png") center center / cover no-repeat;
}

.footerbg,
.footerbg h5,
.footerbg p,
.footerbg li,
.footerbg a {
    color: #212529;
}

.footerbg a {
    text-decoration: none;
    transition: .3s ease;
}

.footerbg a:hover {
    color: var(--bs-primary);
}

.footer-links {
    border-left: 1px solid rgba(0, 0, 0, .15);
    padding-left: 1rem;
}

.footer-links li {
    margin-bottom: .75rem;
}

.footer-social {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--bs-primary) !important;
    transition: .3s ease;
}

.footer-social:hover {
    background: var(--bs-primary);
    color: #fff !important;
}

.footer-bottom {
    background: #fff;
    font-size: .95rem;
}

.footer-bottom a {
    color: #212529;
    text-decoration: none;
    transition: .3s ease;
}

.footer-bottom a:hover {
    color: var(--bs-secondary);
}

@media (max-width:991.98px) {

    .footer-links {
        border-left: none;
        padding-left: 0;
        text-align: center;
    }

    .footerbg h5 {
        text-align: center;
    }

    .footerbg p {
        text-align: center;
    }

    .footer-social {
        margin: auto;
    }

}

/*new css*/

/**/
.logoclass {
    width: 180px;
}

.footerlogo{
    width:300px;
}

@media (max-width: 768px) {
    .logoclass {
    width: 130px;
    }
    .footerlogo{
    width:200px;
    }


}



/**/
.section-title {
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.section-title::before,
.section-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 80px;
    /* Adjust line length */
    height: 1px;
    background: #000;
    /* Theme color */
    transform: translateY(-50%);
}

.section-title::before {
    right: 100%;
    margin-right: 15px;
}

.section-title::after {
    left: 100%;
    margin-left: 15px;
}

@media (max-width: 768px) {
    .section-title::before,
.section-title::after {
    width: 40px;
}

.section-title::before {
    margin-right: 10px;
}

.section-title::after {
    margin-left: 10px;
}
}

/**/

.bgabout {
    background: url(../img/bg1.png) center center no-repeat;
    background-size: cover;
}

.bg2 {
    background: url(../img/bg2.png) center center no-repeat;
    background-size: cover;
}

.bg3 {
    background: url(../img/bg3.png) center center no-repeat;
    background-size: cover;
}


/* ===== Ongoing Projects ===== */

.project-nav button {
    width: 45px;
    height: 45px;
    border: 1px solid var(--bs-primary);
    background: #fff;
    border-radius: 50%;
    color: var(--bs-primary);
    transition: .4s;
}

.project-nav button:hover {
    background: var(--bs-primary);
    color: #fff;
}

.project-img {
    border-radius: .5rem;
}

.project-img img {
    transition: .7s;
}

.project-carousel .item:hover .project-img img {
    transform: scale(1.06);
}

.project-title {
    transition: .3s;
}

.project-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--bs-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    text-decoration: none;
    transition: .3s;
}

.project-btn:hover {
    background: var(--bs-primary);
    color: #fff;
}

.project-progress {
    width: 100%;
    height: 2px;
    background: #e8e8e8;
    overflow: hidden;
    position: relative;
}

.project-progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--bs-primary);
}

.project-content>* {
    opacity: 0;
    transform: translateY(25px);
}

.project-content.animate .project-title {
    animation: fadeUp .6s forwards;
}

.project-content.animate p {
    animation: fadeUp .6s .15s forwards;
}

.project-content.animate .project-btn {
    animation: fadeUp .6s .3s forwards;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@media(max-width:991.98px) {

    .project-content {
        padding: 2rem 0 0;
    }

    .project-nav {
        text-align: left !important;
    }

}

.project-carousel .owl-stage-outer {
    overflow: visible;
}

.project-carousel {
    overflow: hidden;
}

/*** Ongoing Carousel End ***/

/*** wcs ***/
/*** Why Choose Us ***/

.wcs-slider img {
    width: 100%;
    border-radius: 10px;
}

.wcs-slider h4 {
    margin-top: 15px;
    margin-bottom: 10px;
}

.wcs-slider p {
    margin-bottom: 0;
}

.wcs .owl-stage {
    display: flex;
}

.wcs .owl-item {
    display: flex;
}

.wcs .wcs-slider {
    width: 100%;
}

/* Custom Navigation */

.wcs-nav .btn {
    width: 48px;
    height: 48px;
    padding: 0;
}

@media (max-width: 991.98px) {

    .wcs-nav {
        margin-bottom: 2rem;
    }

    .wcs-slider {
        text-align: center;
    }

}


/**/
.accordion-button {
    background: #fbf8ef;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: #fbf8ef;
    color: var(--bs-primary);
}

.accordion-body {
    background: #fbf8ef;
}

.accordion-button::after {
    filter: grayscale(100%);
}

/**/


/*project page floor plan start*/

/* Project Page Floor Plans */

.floor-carousel .owl-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.floor-carousel .owl-nav .owl-prev,
.floor-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-dark);
    border: 2px solid var(--bs-primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.floor-carousel .owl-nav .owl-prev:hover,
.floor-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--bs-primary);
}

.floor-item .floor-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 4px;
    background: rgba(34, 36, 41, 0.4);
    border: 1px solid var(--bs-primary);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: .5s;
    opacity: 1;
}

/*project page floor plan end*/

/* Amenities Carousel */

.amenities-carousel .owl-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.amenities-carousel .owl-nav .owl-prev,
.amenities-carousel .owl-nav .owl-next {
    margin: 0 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-dark);
    border: 2px solid var(--bs-primary);
    border-radius: 50%;
    font-size: 18px;
    transition: .5s;
}

.amenities-carousel .owl-nav .owl-prev:hover,
.amenities-carousel .owl-nav .owl-next:hover {
    color: #fff;
    background: var(--bs-primary);
}
/* Amenities Carousel */

.cta-section-residency{
   background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
               url("../img/shrivarresidency/cta.jpg") center center no-repeat;
   background-size: cover;
   background-attachment: fixed;
   padding: 250px 0px;
}
@supports (-webkit-touch-callout: none) {
   .cta-section-residency {
      background-attachment: scroll;
   }
}

.img-hover-zoom {
    transition: transform 0.5s ease;
}

.img-hover-zoom:hover {
    transform: scale(1.08);
}