/********** Template CSS **********/
:root {
    --primary: #977a54;
    --secondary: #8D9297;
    --light: #F8F9FA;
    --dark: #977a54;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
    font-family: 'Tenor Sans';
}

.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 ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 25px 0;
    color: #a99a85;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #977a54;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 25px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    background: rgba(0, 0, 0, .65);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    /*background-color: var(--dark);
    border: 15px solid var(--dark);*/
    border-radius: 50px;
}

.carousel-caption .breadcrumb-item+.breadcrumb-item::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
        border-width: 12px;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}

/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
}


/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8efe6 !important;
    border-radius: 50%;
    border: 1px solid #977a54;
}

/*** Animal ***/
.gallery-item {
    position: relative;
    display: block;
}

.gallery-item .gallery-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 100px !important;
    opacity: 0;
    transition: .5s;
}

.gallery-item:hover .gallery-text {
    opacity: 1;
    padding-bottom: 20px !important;
}

/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .5)), url(../img/ctaimg.jpg) center center no-repeat;
    background-size: cover;
}

.appointment2 {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .5)), url(../img/ctaimg2.jpg) center center no-repeat;
    background-size: cover;
}

/*** CTA ***/
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.65)), url(../img/ea3.webp) center center no-repeat;
    background-size: cover;
}

/*** CTA ***/
.cta2 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.65)), url(../img/configurationbg.jpg) center center no-repeat;
    background-size: cover;
}


/*** Floor ***/
.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-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--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(--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);
    /* semi-transparent dark */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: .5s;
    opacity: 1;
}


/*** Connectivity ***/
.connectivity-carousel .owl-item img {
    width: 64px;
    height: 64px;
}

.connectivity-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.connectivity-carousel .owl-nav .owl-prev,
.connectivity-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.connectivity-carousel .owl-nav .owl-prev:hover,
.connectivity-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    color: #999999;
}

.footer .copyright {
    padding: 5px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.fadeclass {
    display: inline-block;
    animation: fadeZoom 3s ease-in-out infinite;
}

@keyframes fadeZoom {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/*new css */

/*whats app start*/
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    left: 20px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    padding: 6px 14px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 999;
    text-align: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

@media (max-width: 767px) {
    .whatsapp-float {
        display: none;
    }
}

/*whats app end*/

/*modal form start*/
/* Limit modal width and center it */
@media (max-width: 576px) {
    .modal-dialog.modal-custom-width {
        max-width: 90%;
    }
}

.modal-backdrop.show {
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-dialog.modal-custom-width {
    max-width: 900px;
}

.img-fluid.object-fit-cover {
    object-fit: cover;
    height: 100%;
}

/* Icon Styling */
.input-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 16px;
    z-index: 2;
}

.input-with-icon {
    padding-left: 40px;
    border: none;
}

.modal.fade .modal-dialog {
    transform: translateY(-50px);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: translateY(0);
}

.input-with-icon:focus {
    box-shadow: 0 0 0 4px rgba(81, 45, 168, 0.15);
}

/*modal form end*/

.logoclass {
    width: 120px;
}

/*style for table start*/
/* Semi-opaque background for tbody cells */
.table tbody td {
    background-color: rgba(255, 255, 255, 0.85);
    /* White with opacity for image visibility */
    color: #333;
    /* Dark text for readability */
    border: 1px solid #dee2e6;
}

.table thead tr {
    background: linear-gradient(90deg, #977a54 10%, #d3c7b7 100%);

}

/* Make th background transparent so it inherits */
.table thead th {
    background: transparent;
    color: #fff;
    border: 1px solid #dee2e6;
}

/* Ensure table cells always collapse nicely */
.table {
    border-collapse: collapse;
}

/* Optional: Make sure borders look sharp */
.table th,
.table td {
    border: 1px solid #dee2e6;
}

/* Optional: Zebra striping with semi-opacity */
.table tbody tr:nth-of-type(odd) td {
    background-color: rgba(255, 255, 255, 0.9);
}

/*end*/

.mouse-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: #e31e25;
    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 #977a54;
    transition: transform 0.1s ease-out;
}

.ring2 {
    width: 15px;
    height: 15px;
    border: 2px solid #977a54b8;
    transition: transform 0.15s ease-out;
}

/*sticky button start*/
.container-box1 {
    display: inline-block;
    position: fixed;
    top: 80%;
    right: -178px;
    z-index: 30;
}

.rotated1 {
    -webkit-transform: rotate(-90deg);
    transform-origin: top left;
}

.bgimg {
    background-image: url(../img/abtbg.png);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.pulseanimation {
    animation: pulse-cust 2s infinite;
}

@-webkit-keyframes pulse-cust {
    0% {
        -webkit-box-shadow: 0 0 0 0 #a99a85;
    }

    70% {
        -webkit-box-shadow: 0 0 0 25px #a99a85;
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 #a99a85;
    }
}

@keyframes pulse-cust {
    0% {
        -webkit-box-shadow: 0 0 0 0 #a99a85;
    }

    70% {
        -webkit-box-shadow: 0 0 0 25px rgba(227, 56, 56, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(227, 56, 56, 0);
    }
}

@media (max-width: 767px) {
    h5.eameh5 {
        font-size: 12px;
    }

    .project-item .project-title {
        height: 5px;
    }

    .project-item:hover .project-title,
    .project-carousel .owl-item.center .project-title {
        bottom: -20px;
    }

    .project-carousel .owl-nav .owl-prev,
    .project-carousel .owl-nav .owl-next {
        width: 35px;
        height: 35px;
        font-size: 10px;
    }

    .project-item .project-title::before {
        display: none;
    }
    p.footercontactp {
    font-size: 20px;
    }
    .project-item:hover img, .project-carousel .owl-item.center img {
    margin-top: -30px;
    }
}

/*abt arrow*/
.animate-up-down {
    position: relative;
    animation: animateUpDown 1s ease infinite;
}

@keyframes animateUpDown { 
    0% { 
        top: 0px;
    }
    50% { 
        top: 10px;
    }
    100% { 
        top: 0px;
    } 
}

.animate-rotate {
    position: absolute;
    animation: animateRotate 8s linear infinite;
}

@keyframes animateRotate { 
    100% { 
        transform: rotate(360deg); 
    } 
}

/*** Testimonial ***/
.testimonial-title {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 150px 150px 0px 0px;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-img {
    position: relative;
    padding: 45px 5px 45px 90px;
}

.testimonial-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: #f3e9dd;
    z-index: -1;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.testimonial-carousel .owl-prev,
.testimonial-carousel .owl-next {
    margin-bottom: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #977a54;
    border: 2px solid #977a54;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-prev:hover,
.testimonial-carousel .owl-next:hover {
    color: #977a54;
    background: #fff;
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-nav {
        top: 6.3rem;
    }
}

img.iconimg {
    filter: invert(48%) sepia(62%) saturate(257%) hue-rotate(354deg) brightness(90%) contrast(90%);
}

h2.ambh2 {
font-size: 35px;
font-weight: 300;
}

.sideimg {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px; /* space between text and images */

}

.sideimg::before,
.sideimg::after {
  content: "";
  width: 40px;              /* image width */
  height: 40px;             /* image height */
  background: url("../img/sideimg.webp") no-repeat center;
  background-size: contain;
  display: inline-block;
  transform: rotate(180deg);
}

.sideimg::before {
  transform: rotate(360deg);
}


.sideimg2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px; /* space between text and images */
}

.sideimg2::before,
.sideimg2::after {
  content: "";
  width: 40px;              /* image width */
  height: 40px;             /* image height */
  background: url("../img/sideimgwhite.webp") no-repeat center;
  background-size: contain;
  display: inline-block;
  transform: rotate(180deg);
}

.sideimg2::before {
  transform: rotate(360deg);
}
@media (max-width: 767px) {
    
    .overlay-text {
    margin-right: 5px;
}
h2.ambh2 {
    font-size: 25px;
    margin-top: 40px;
}
.artimg::after {
  right: 35px!important;
  font-size: 5px!important;
}
.overlay-text {
    font-size: 10px!important;
}
}

/* Tab nav active state */
.event .tab-class .nav-item a.active {
  background: #977a54 !important;
}

/* FORCE span text to white when active */
.event .tab-class .nav-item a.active .textchng {
  color: #fff !important;
}
.textchng {
  color: #907148;
}



.artimg {
  position: relative;
}

/* Text overlay */
.artimg::after {
  content: "Artistic Image";
  position: absolute;
  top: 100px;
  right: 105px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(0, 0, 0, 0.35);
  padding: 4px 8px;
  border-radius: 3px;
  z-index: 3;
}
@media (min-width: 1920px) and (max-width: 2560px) {
    .artimg::after {
    right: 125px;
}
}

