@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /*transition: ease-out 0.3s;*/
    
}
@font-face {
  font-family: myfont;
  src: url(../font/heading.ttf);
}

body {
    font-family: "Rubik", sans-serif;
    transition: ease-out 0.3s;
    overflow-x: hidden !important;
    width: 100%;
    background-color: #F7F6ED;
}

:root{
    --fadgy:#ddd;
    --black:#000;
    --fade:#fff;
    --grey:#1d1d1f;
    --grey1:#1f1f1d;
    --pdcolor:#c39755;
    --pddark:#00ad1d;
    --back:#dfeff1;
}

h1,
h2,
h3,
h4,
h5,
h6,
p{
    padding: 0;
    margin: 0;
}

ul,
ol{
    padding: 0;
    margin: 0;
    list-style: none;
}
section{
    position: relative;
}
.section-padding{
    padding:60px 0;
}
.padding-top{
    padding-top: 60px;
}
.padding-bottom{
    padding-bottom: 60px;
}
.padding-half{
    padding-top: 30px;
    padding-bottom: 30px;
}
.bg-color {
    background-color: #fff;
}
.container {
    max-width: 84%;
}

header {
    position: fixed;
    z-index: 99;
    width: 100%;
    padding: 30px 0;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
}
.is-sticky{
    padding: 10px 0;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}
.logo img{
    width: 90%;
    transition: all 0.3s ease-in-out;
}
.is-sticky .logo img {
    width: 60%;
    transition: all 0.3s ease-in-out;
    filter: invert(1);
}

.navigation-area {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 40px;
}
.sedule-btn {
    background-color: #fff;
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    border: none;
    position: relative;
    overflow:hidden;
    z-index: 1;
}
.is-sticky .sedule-btn{
    background:#026A52;
    color:#fff;
    transition: all 0.3s ease-in-out;
}
.sedule-btn::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #B89C50;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    z-index: -1;
}
.sedule-btn:hover {
    color: #fff;
    transition: all 0.3s ease-in-out;
    border-color: transparent;
    background: transparent;
}
.sedule-btn:hover::after{
    opacity:1;
    width:100%;
    transition:all 0.3s ease-in-out;
}
.top-am-logo {
    filter: brightness(0) invert(1);
    width: 172px;
}
.is-sticky .top-am-logo{
    filter: invert(0);
    transition:all 0.3s ease-in-out;
}
.is-sticky .menu-bar img {
    filter: invert(1);
}
.bn-img {
    position: absolute;
    top: 70%;
/*    left: 50%;
    transform: translate(-50%, -50%);*/
    font-size: 67px;
    color: #fff;
    text-transform: uppercase;
    font-family: myfont;
    width: 100%;
    text-align: center;
}

.video{
    position: relative;
}
.video video{
    position: relative;
} 


/*navigation*/
.navigation-header {
    position: fixed;
    width: 0%;
    height: 100%;
    background-color: #000000a1;
    top: 0;
    right: -100%;
    z-index: 9999;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
}
.navigation-header-open{
    right: 0;
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.navigation-part {
    width: 0%;
    background: #026A52;
    display: flex;
    float: right;
    padding: 70px;
    position: relative;
    height: 100%;
    align-items: center;
    transition: all 0.8s ease-in-out;
    overflow-y: auto;
    scrollbar-width: none;          /* Firefox */
    -ms-overflow-style: none;       /* IE/Edge */
}

/* Hide scrollbar in Webkit browsers */
.navigation-part::-webkit-scrollbar {
    display: none;
}
.navigation-header-open .navigation-part{
    width: 50%;
    transition: all 0.8s ease-in-out;
}
.navigation-part::after {
    content: "";
    position: absolute;
    width: 75%;
    height: 73%;
    background-color: #46464663;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.menu-listing{
    position: relative;
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.navigation-header-open .menu-listing{
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease-in-out;
    transition-delay: 0.5s;
}
.menu-listing li a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    display: inline-block;
    text-transform: uppercase;
    margin-bottom: 9px;
    position: relative;
    transition: all 0.3s ease-in-out;
    font-weight: 600;
    font-family: 'myfont';
}
.dropdown-li {
    margin-bottom: 10px;
}
.dropdown-li>a {
    margin-bottom: 0;
   
}
.menu-listing li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: #fff;
    left: 0;
    bottom: 0;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}
.menu-listing li a:hover::after{
    width: 100%;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
.menu-listing li a:hover{
    padding-left: 20px;
    transition: all 0.3s ease-in-out;
}
.menu-close {
    position: absolute;
    top: -28px;
    right: -28px;
    width: 110px;
    height: 110px;
    background: #fff;
    font-size: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 121px;
    z-index: 999;
    cursor: pointer;
    color: #026A52;
}
.menu-close i {
    margin-right: 10px;
}
.logis-logo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.logis-logo img {
    width: 400px;
    margin-left: 50px;
    opacity: 0.2;
}
.menu-listing>li {
    position: relative;
}
.drop-list li a {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 400;
    font-family:"Rubik", sans-serif !important;
}
.menu-toggle {
    background: #fff;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 34px;
    text-align: center;
    margin-left: 15px;
    cursor: pointer;
    display: none;
}
/*icon section */
.icon-area {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 30px;
}
.icon-part img {
    width: 100px;
    /* height: 88px; */
    object-fit: contain;
}
.icon-content p {
    font-size: 13px;
    text-transform: uppercase;
    line-height: 20px;
    font-weight: 400;
    padding: 0 15px;
}
.icon-listing li{
    border-right: 1px solid #CFCDC1;
    transition:all 0.3s ease-in-out;
}
.icon-listing li:hover {
    box-shadow: 10px 10px 10px #ddd;
    transition: all 0.3s ease-in-out;
    padding-bottom: 20px;
}
.icon-listing li:last-child{
    border-right: 1px solid transparent;
}
.icon-listing{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

/*=== video sec ====*/
.section-heading span{
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    color: #000000;
}
.section-heading h1{
    font-size: 50px;
    color: #026A52;
    text-transform: uppercase;
    line-height: 64px;
    margin: 0;
    font-family: myfont;
}
.section-heading p {
    font-size: 15px;
    line-height: 30px;
    margin: 20px 0 30px;
    color: #000000;
}
/*.readMore-btn{*/
/*    display: inline-block;*/
/*    padding: 15px 20px;*/
/*    background-color: #B89C50;*/
/*    color: #fff;*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 0.7px;*/
/*    font-size: 14px;*/
/*    font-weight: 500;*/
/*    text-decoration: none;*/
/*    border-radius: 4px;*/
/*    transition: all 0.3s ease-in-out;*/
/*    border: 1px solid #B89C50;*/
/*}*/
/*.readMore-btn:hover{*/
/*    background: transparent;*/
/*    color: #B89C50;*/
/*    transition: all 0.3s ease-in-out;*/
/*}*/
.readMore-btn {
    position: relative;
    display: inline-block;
    padding: 15px 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    border: 1px solid #B89C50;
    z-index: 1;
}

.readMore-btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    transition: 0.3s ease-in-out;
    z-index: -1;
    background:#B89C50;
}
.readMore-btn:hover::after{
    width:0%;
    transition: 0.3s ease-in-out;
}

/* Change text color on hover */
.readMore-btn:hover {
    color: #B89C50;
}
.video-heading {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
    color: #026A52;
    font-family: myfont;
}
.video-img{
    position: relative;
}
.video-img img {
    width: 100%;
}
.video-play{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.video-btns{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}
.border-btn{
    display: inline-block;
    padding: 15px 20px;
    background-color: transparent;
    color: #B89C50;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #B89C50;
    text-align: center;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow:hidden;
}
.border-btn:hover {
    background: #B89C50;
    color: #fff !important;
    border-color: #B89C50;
    transition: all 0.3s ease-in-out;
}
.border-btn::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #B89C50;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    z-index: -1;
}
.border-btn:hover::after{
    opacity:1;
    width:100%;
    transition:all 0.3s ease-in-out;
}
.video-btns .border-btn {
    width: auto;
    justify-content: center;
    background: transparent;
    color: #B89C50;
}
 /* boxcard-area sec */
 .boxcard-area{
    position: relative;
 }
.boxcard-overley {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, black, transparent);
    display: flex;
    padding: 30px 20px;
    gap: 10px;
}
.location-content .boxcard-overley {
    gap: 0;
    flex-direction: column;
    color: #fff;
}
.boxcard-overley h5 {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
}
.boxcard-overley a {
    display: inline-block;
    position: absolute;
    top: 7px;
    right: 7px;
}
.boxcard-overley a img {
    width: 20px;
}

.slider_01{
    position: relative;
}
.slider_01 .owl-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.slider_01 .owl-next, .owl-prev{
    border: 2px solid #B89C50 !important;
    color: #B89C50 !important;
    border-radius: 50%;
    width: 35px !important;
    height: 35px !important;
    line-height: 32px !important;
}

/*nova sec*/
.novas-item {
    margin-top: 40px;
    overflow: hidden;
}
.novas-item a img{
    transform:scale(1);
    transition: transform 0.3s ease;
}
.novas-item a {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}
.novas-item:hover a img{
    transform:scale(1.3);
    transition: transform 0.3s ease;
}
.nova-cards-mobile{
    display: none !important;
}
.novas-item h5{
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    margin: 15px 0 0;
    text-align:center;
}

/*location sec*/
.location-span{
    position: relative;
    margin: 0;
}
.location-span img {
    position: absolute;
    right: -50px;
    top: -35px;
}
/*.location-sec .section-heading h1 {*/
/*    line-height: 56px;*/
/*}*/
.play-span {
    float: right;
    font-size: 14px !important;
    letter-spacing: 0.6px !important;
    margin-bottom: 20px !important;
}
.play-span img {
    width: 60px;
    margin-left: 5px;
}
.location-img .readMore-btn{
    display: none;
}

/*gallery grid sec*/

.galle-grid li a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.snd-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.grid-content a {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}
.grid-overley {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, black, transparent);
    display: flex;
    padding: 25px;
    gap: 25px;
}
.grid-overley h5 {
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 400;
}
.gallery-sec{
    margin-bottom: 50px;
}

/*floor plan sec*/
.floor-grid{
    display: grid;
    grid-template-columns: repeat(2, 50% 50%);
}
.floor-content {
    background-color: #026A52;
    padding-left: 115px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.floor-span {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    position: relative;
    width: 100%;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 20px;
    padding-left: 15px;
    padding-bottom: 10px;
}
.floor-span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ffffff45;
}
.floor-span::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 155px;
    height: 1px;
    background: #fff;
}
.show-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    font-family: 'Rubik';
    font-weight: 400;
}
.show-content p{
    margin: 0;
}
.tablinks.active .show-content{
    height: auto;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease-in-out;
}
.tablinks {
    border: none;
    background: transparent;
    color: #fff;
    display: block;
    text-align: left;
    font-family: heading;
    font-size: 40px;
    border-bottom: 1px solid #ffffff78;
    width: 100%;
    padding: 15px 30px 15px 15px;
    text-transform: uppercase;
}
.tabcontent{
    display: none;
}
.floor-img-slider{
   /* background-color: #F1EDEA;*/
    padding-right: 115px;
    padding-top: 80px;
    padding-bottom: 50px;
    padding-left: 50px;
}
.floor-img-slider .owl-nav {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
    margin-top: 25px;
}
.floor-img-slider .owl-next{
    border: 2px solid #B89C50 !important;
    color: #B89C50 !important;
    border-radius: 50%;
    width: 35px !important;
    height: 35px !important;
    line-height: 32px !important;
}
.floor-select{
    display: none;
}
.mobile-btn-floor{
    display: none;
}

/*master plan*/
.master-plan{
    background-color: #F1EDEA;
    padding-top: 100px;
    padding-bottom: 100px;
}
.accordion-button:not(.collapsed) {
    color: #000;
    background-color: #D9D9D9;
    box-shadow: none;
    border-radius: 8px;
    text-transform: uppercase;
}
.accordion-item {
    background-color: transparent;
    border: none;
}
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
#accordionExample {
    margin-top: 40px;
}
.accordion-body {
    padding: 1rem 0 0;
}
.master-plan .section-heading h1 {
    font-size: 40px;
    line-height: 40px;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23B89C50'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(360deg);
}
.master-form {
    margin-top: 40px;
}
.master-form select {
    height: 76px;
    background: ;
}
.master-form select {
    height: 76px;
    background-color: #D9D9D9;
    border: none;
    font-size: 20px;
    padding: 0 40px;
    text-transform: uppercase;
    color: #000;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23B89C50'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-size: 18px;
    box-shadow: none !important;
    border-radius: 10px;
}
.master-pera {
    margin-top: 50px;
}


/*contact us*/
.contact-us{
    padding-top: 100px;
}
.form-group{
    margin-bottom: 1.2rem;
}
.form-group label{
    font-size: 20px;
    display: block;
    color: #000;
    margin-bottom: 5px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    padding-left: 15px;
}
.form-group input {
    border: none;
    border-bottom: 1px solid #9090908A;
    color: #6F6F6F;
    padding: 10px;
    font-size: 15px;
    background-color: transparent;
    width: 100%;
    padding-left: 15px;
    outline: none !important;
    border-radius: 0;
}
.form-btn{
    margin-top: 1.2rem;
    float: right;
}

.custom-select {
    position: relative;
    width: 100%;
}

.select-box {
    padding: 10px;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid #9090908A;
    width: 100%;
    font-size: 15px;
    color: #6F6F6F;
}

.options-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #ccc;
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 150px;
  overflow-y: auto;
}

.option {
  padding: 10px;
  cursor: pointer;
}

.option:hover {
  background: #f0f0f0;
}

.show {
  display: block;
}
.custom-select span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

/*apply sec*/
.apply-now-sec{
    position: relative;
}
.apply-now-sec a {
    text-align: center;
    display: block;
    padding: 47px 0;
    background-color: #026A52;
    color: #fff;
    font-size: 20px;
    letter-spacing: 0.7px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    border-radius: 0;
    position: relative;
    z-index:1;
    transition:0.3s;
}
/*.apply-now-sec a::after{*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    height: 100%;*/
/*    width: 0%;*/
/*    transition: 0.3s ease-in-out;*/
/*    z-index: -1;*/
/*    background: #B89C50;*/
/*    opacity:0;*/
/*}*/
/*.apply-now-sec a:hover::after{*/
/*    width:100%;*/
/*    transition: 0.3s ease-in-out;*/
/*    opacity:1;*/
/*}*/
.apply-now-sec a:hover {
    transition: 0.3s;
    letter-spacing: 5.5px;
}
/*.apply-now-sec a:hover img {*/
/*    filter: brightness(0) saturate(100%) invert(89%) sepia(93%) saturate(6810%) hue-rotate(314deg) brightness(78%) contrast(80%);*/
/*}*/


/*footer*/
footer{
    background-color: #202020;
}
.project-by h5{
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.7px;
    color: #8F8F8F;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.project-content {
    padding-top: 50px;
}
.project-content p{
    font-size: 16px;
    font-weight: 400;
    color: #A0A0A0;
    line-height: 25px;
}
.project-add h5 {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 25px;
}
.project-add p{
    font-size: 16px;
    font-weight: 400;
    color: #A0A0A0;
}
.social-list {
    display: flex;
    gap: 20px;
}
.social-list li a img {
    width: 14px;
}
.social-list li a {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #B89C50;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s ease;
    z-index: 1;
}
/* Icon scaling + shine effect on hover */
.social-list li a:hover {
    transform: scale(1.1);
}

/* Shine effect */
.social-list li a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: #B89C50;
    transform: scale(0);
    transition: all 0.5s ease-in-out;
    z-index: 0;
    opacity: 0;
}

.social-list li a:hover::before {
    /* animation: shineMove 0.7s forwards; */
    opacity: 1;
    transform: scale(1.5);
    top: 0;
    left: 0;
    border-radius: 100%;
}


.social-list li a img {
    width: 24px;
    height: 24px;
    z-index: 2;
    transition: transform 0.3s;
}

.social-list li a:hover img {
    transform: scale(1.1);
    filter: brightness(0) invert(1);
}

/* Keyframes */
@keyframes shineMove {
    0% {
        transform: translateX(-100%) rotate(25deg);
    }
    100% {
        transform: translateX(100%) rotate(25deg);
    }
}

@keyframes spinPulse {
    0% {
        transform: rotate(0deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1.2);
    }
}
.div-line{
    width: 100%;
    height: 1px;
    background-color: #9090908A;
    margin-bottom: 30px;
    position: relative;
}
.copyright-sec{
    background-color: #202020;
}
.copyright-sec p,a{
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    color: #6F6F6F;
    text-align: center;
    text-decoration: none;
}
.copyright-p{
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    color: #6F6F6F;
    text-align: center;
    text-decoration: none; 
    margin-top: 30px;  
    padding-bottom: 30px;
}
.copyright-p a{
    color: #C0C0C0;
}

.copyright-sec a:hover{
    color:#fff;
}

.scroll-to-top {
    height: 68px;
    width: 68px;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s, transform 0.3s;
    background: transparent;
    border: 1px solid #9090908A;
    position: absolute;
    bottom: 0;
    right: 0;
    border-bottom: 0;
    overflow:hidden;
    transition: opacity 0.3s ease;
}


/* Glow ring effect */
.scroll-to-top::before,
.scroll-to-top::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    transition: all 0.5s ease;
    z-index: 0;
}

/* Inner pulse ring */
.scroll-to-top::before {
    width: 100%;
    height: 100%;
    background-color: #B89C50;
    transform: scale(0);
    opacity: 0;
}

/* Outer ring sweep */
.scroll-to-top::after {
    width: 150%;
    height: 150%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: scale(0);
    opacity: 0;
}

/* Hover animations */
.scroll-to-top:hover::before {
    transform: scale(1);
    opacity: 1;
    border-radius:0px;
}

.scroll-to-top:hover::after {
    transform: scale(1);
    opacity: 1;
    animation: ringSweep 0.6s ease-out forwards;
}

.scroll-to-top img {
    width: 22px;
    z-index: 1;
    transition: transform 0.3s ease;
}

/* Icon lift effect */
.scroll-to-top:hover img {
    transform: translateY(-3px);
    filter: brightness(0) invert(1);
}

/* Sweep animation keyframe */
@keyframes ringSweep {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}


.scroll-to-top.show {
    display: flex; /* Show when needed */
}



/*========== animation css start =========*/
.animatable {
  
    /* initially hide animatable objects */
    visibility: hidden;
    
    /* initially pause animatable objects their animations */
    -webkit-animation-play-state: paused;   
    -moz-animation-play-state: paused;     
    -ms-animation-play-state: paused;
    -o-animation-play-state: paused;   
    animation-play-state: paused; 
  }
  
  /* show objects being animated */
  .animated {
    visibility: visible;
    
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
  
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -ms-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
  }
  

  @-webkit-keyframes fadeInDown {
      0% {
          opacity: 0;
          -webkit-transform: translateY(-20px);
      } 100% {
          opacity: 1;
          -webkit-transform: translateY(0);
      }
  }
  
  @-moz-keyframes fadeInDown {
      0% {
          opacity: 0;
          -moz-transform: translateY(-20px);
      }
  
      100% {
          opacity: 1;
          -moz-transform: translateY(0);
      }
  }
  
  @-o-keyframes fadeInDown {
      0% {
          opacity: 0;
          -o-transform: translateY(-20px);
      }
  
      100% {
          opacity: 1;
          -o-transform: translateY(0);
      }
  }
  
  @keyframes fadeInDown {
      0% {
          opacity: 0;
          transform: translateY(-20px);
      }
      100% {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  
  
  @-webkit-keyframes fadeIn {
      0% {
          opacity: 0;
      }
      20% {
          opacity: 0;
      }
      100% {
          opacity: 1;
      }
  }
  
  @-moz-keyframes fadeIn {
      0% {
          opacity: 0;
      }
      20% {
          opacity: 0;
      }
      100% {
          opacity: 1;
      }
  }
  
  @-o-keyframes fadeIn {
      0% {
          opacity: 0;
      }
      20% {
          opacity: 0;
      }
      100% {
          opacity: 1;
      }
  }
  
  @keyframes fadeIn {
      0% {
          opacity: 0;
      }
      60% {
          opacity: 0;
      }
      20% {
          opacity: 0;
      }
      100% {
          opacity: 1;
      }
  }
  @-webkit-keyframes bounceInLeft {
      0% {
          opacity: 0;
          -webkit-transform: translateX(-2000px);
      }
      60% {
          -webkit-transform: translateX(20px);
      }
  
      80% {
          -webkit-transform: translateX(-5px);
      }
  
      100% {
          opacity: 1;
          -webkit-transform: translateX(0);
      }
  }
  
  @-moz-keyframes bounceInLeft {
      0% {
          opacity: 0;
          -moz-transform: translateX(-2000px);
      }
  
      60% {
          -moz-transform: translateX(20px);
      }
  
      80% {
          -moz-transform: translateX(-5px);
      }
  
      100% {
          opacity: 1;
          -moz-transform: translateX(0);
      }
  }
  
  @-o-keyframes bounceInLeft {
      0% {
          opacity: 0;
          -o-transform: translateX(-2000px);
      }
  
      60% {
          opacity: 1;
          -o-transform: translateX(20px);
      }
  
      80% {
          -o-transform: translateX(-5px);
      }
  
      100% {
          opacity: 1;
          -o-transform: translateX(0);
      }
  }
  
  @keyframes bounceInLeft {
      0% {
          opacity: 0;
          transform: translateX(-2000px);
      }
  
      60% {
          transform: translateX(20px);
      }
  
      80% {
          transform: translateX(-5px);
      }
  
      100% {
          opacity: 1;
          transform: translateX(0);
      }
  }
  @-webkit-keyframes bounceInRight {
      0% {
          opacity: 0;
          -webkit-transform: translateX(2000px);
      }
  
      60% {
          -webkit-transform: translateX(-20px);
      }
  
      80% {
          -webkit-transform: translateX(5px);
      }
  
      100% {
          opacity: 1;
          -webkit-transform: translateX(0);
      }
  }
  
  @-moz-keyframes bounceInRight {
      0% {
          opacity: 0;
          -moz-transform: translateX(2000px);
      }
  
      60% {
          -moz-transform: translateX(-20px);
      }
  
      80% {
          -moz-transform: translateX(5px);
      }
  
      100% {
          opacity: 1;
          -moz-transform: translateX(0);
      }
  }
  
  @-o-keyframes bounceInRight {
      0% {
          opacity: 0;
          -o-transform: translateX(2000px);
      }
  
      60% {
          -o-transform: translateX(-20px);
      }
  
      80% {
          -o-transform: translateX(5px);
      }
  
      100% {
          opacity: 1;
          -o-transform: translateX(0);
      }
  }
  
  @keyframes bounceInRight {
      0% {
          opacity: 0;
          transform: translateX(2000px);
      }
  
      60% {
          transform: translateX(-20px);
      }
  
      80% {
          transform: translateX(5px);
      }
  
      100% {
          opacity: 1;
          transform: translateX(0);
      }
  }
  @-webkit-keyframes fadeInUp {
      0% {
          opacity: 0;
          -webkit-transform: translateY(20px);
      } 100% {
          opacity: 1;
          -webkit-transform: translateY(0);
      }
  }
  
  @-moz-keyframes fadeInUp {
      0% {
          opacity: 0;
          -moz-transform: translateY(20px);
      }
  
      100% {
          opacity: 1;
          -moz-transform: translateY(0);
      }
  }
  
  @-o-keyframes fadeInUp {
      0% {
          opacity: 0;
          -o-transform: translateY(20px);
      }
  
      100% {
          opacity: 1;
          -o-transform: translateY(0);
      }
  }
  
  @keyframes fadeInUp {
      0% {
          opacity: 0;
          transform: translateY(20px);
      }
  
      100% {
          opacity: 1;
          transform: translateY(0);
      }
  }
  @-webkit-keyframes bounceIn {
      0% {
          opacity: 0;
          -webkit-transform: scale(.3);
      }
      50% {
          -webkit-transform: scale(1.05);
      }
  
      70% {
          -webkit-transform: scale(.9);
      }
  
      100% {
          opacity: 1;
          -webkit-transform: scale(1);
      }
  }
  
  @-moz-keyframes bounceIn {
      0% {
          opacity: 0;
          -moz-transform: scale(.3);
      }
  
      50% {
          -moz-transform: scale(1.05);
      }
  
      70% {
          -moz-transform: scale(.9);
      }
  
      100% {
          opacity: 1;
          -moz-transform: scale(1);
      }
  }
  
  @-o-keyframes bounceIn {
      0% {
          opacity: 0;
          -o-transform: scale(.3);
      }
  
      50% {
          -o-transform: scale(1.05);
      }
  
      70% {
          -o-transform: scale(.9);
      }
  
      100% {
          opacity: 1;
          -o-transform: scale(1);
      }
  }
  
  @keyframes bounceIn {
      0% {
          opacity: 0;
          transform: scale(.3);
      }
  
      50% {
          transform: scale(1.05);
      }
  
      70% {
          transform: scale(.9);
      }
  
      100% {
          opacity: 1;
          transform: scale(1);
      }
  }
  @-webkit-keyframes moveUp {
      0% {
          opacity: 1;
          -webkit-transform: translateY(40px);
      } 100% {
          opacity: 1;
          -webkit-transform: translateY(0);
      }
  }
  
  @-moz-keyframes moveUp {
      0% {
          opacity: 1;
          -moz-transform: translateY(40px);
      }
  
      100% {
          opacity: 1;
          -moz-transform: translateY(0);
      }
  }
  
  @-o-keyframes moveUp {
      0% {
          opacity: 1;
          -o-transform: translateY(40px);
      }
  
      100% {
          opacity: 1;
          -o-transform: translateY(0);
      }
  }
  
  @keyframes moveUp {
      0% {
          opacity: 1;
          transform: translateY(40px);
      }
  
      100% {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  @-webkit-keyframes fadeBgColor {
      0%{
          background:none;
      }
    70%{
          background:none;
      }
      100%{
          background:#464646;
      }
  }
  @-o-keyframes fadeBgColor {
      0%{
          background:none;
      }
    70%{
          background:none;
      }
      100%{
          background:#464646;
      }
  }
  @keyframes fadeBgColor {
      0%{
          background:none;
      }
    70%{
          background:none;
      }
      100%{
          background:#464646;
      }
  }
  
  .animated.animationDelay{
      animation-delay:.2s;
      -webkit-animation-delay:.2s;
  }
  .animated.animationDelayMed{
      animation-delay:1s;
      -webkit-animation-delay:1s;
  }
  .animated.animationDelayLong{
      animation-delay:1s;
      -webkit-animation-delay:1s;
  }
  .animated.fadeBgColor {
      -webkit-animation-name: fadeBgColor;
      -moz-animation-name: fadeBgColor;
      -o-animation-name: fadeBgColor;
      animation-name: fadeBgColor;
  }
  .animated.bounceIn {
      -webkit-animation-name: bounceIn;
      -moz-animation-name: bounceIn;
      -o-animation-name: bounceIn;
      animation-name: bounceIn;
  }
  .animated.bounceInRight {
      -webkit-animation-name: bounceInRight;
      -moz-animation-name: bounceInRight;
      -o-animation-name: bounceInRight;
      animation-name: bounceInRight;
  }
  .animated.bounceInLeft {
      -webkit-animation-name: bounceInLeft;
      -moz-animation-name: bounceInLeft;
      -o-animation-name: bounceInLeft;
      animation-name: bounceInLeft;
  }
  .animated.fadeIn {
      -webkit-animation-name: fadeIn;
      -moz-animation-name: fadeIn;
      -o-animation-name: fadeIn;
      animation-name: fadeIn;
  }
  .animated.fadeInDown {
      -webkit-animation-name: fadeInDown;
      -moz-animation-name: fadeInDown;
      -o-animation-name: fadeInDown;
      animation-name: fadeInDown;
  }
  .animated.fadeInUp {
      -webkit-animation-name: fadeInUp;
      -moz-animation-name: fadeInUp;
      -o-animation-name: fadeInUp;
      animation-name: fadeInUp;
  }
  .animated.moveUp {
      -webkit-animation-name: moveUp;
      -moz-animation-name: moveUp;
      -o-animation-name: moveUp;
      animation-name: moveUp;
  }

  /*======= inner banner ======*/
.inner-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, #000000c7, transparent);
}
   /*====== inner banner =======*/

  /*====== webpage css ======*/
#inner-page .header-sec::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000000bd, transparent);
    z-index: -1;
}
  .section-heading h4 {
    color: #026A52;
    text-transform: uppercase;
    margin: 0;
    font-family: myfont;
}
.mob-view{
    display: none;
}
.banner-img img{
    width: 100%;
}
  @media (max-width: 600px){
      .webpage-sec{
    text-align: center;
  }
  .dask-view{
    display: none;
  }
  .mob-view{
    display: block;
  }
  }


  /*===== animeties sec =====*/
  #amenitiesp-sec .section-heading h3 {
    font-family: 'myfont';
    margin: 30px 0 0;
    color: #026A52;
}
#amenitiesp-sec .section-heading h5 {
    font-family: 'myfont';
    margin: 45px 0 50px;
    color: #026A52;
    font-style: italic;
    font-size: 25px;
}
/* Style the buttons inside the tab */
.menu-tabs button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 5px 0px;
    transition: 0.3s;
    font-size: 14px;
    position: relative;
    font-weight: 400;
}

/* Style the tab content */
.menu-content {
  display: none;
}
.menu-tabs {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    margin-bottom: 25px;
    gap: 11px;
}
.menu-tabs button:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background:#026A52;
    transform: 0.3s;
}
/* Create an active/current tablink class */
.menu-tabs button.active {
  color: #026A52;
}
.menu-tabs button.active:after{
    width: 100%;
    transition: 0.3s;
}
.aminities-tabs-sec {
    padding-bottom: 120px;
}

  /*===== animeties sec =====*/

  /*===== architect note page =====*/
#architect-note-page .section-heading p {
    font-size: 15px;
}
.card-container {
    perspective: 1000px;
    height: 200px;
}
        .card {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.6s;
        }

        .card-container:hover .card {
            transform: rotateY(180deg);
        }

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #004d00;
    font-size: 18px;
    text-align: left;
    background: #f8f8f8;
    padding: 60px 15px 30px;
    text-transform: capitalize;
}

        .card-front {
            color: #004d00;
        }

.card-back {
    background: #026A52;
    color: white;
    transform: rotateY(180deg);
    text-transform: capitalize;
    font-size: 14px;
}
        .fliping-card-area{
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .card-front a {
    position: absolute;
    top: 10px;
    right: 10px;
}
#architect-note-page{
    padding-bottom: 120px;
}

/*========= clud nova page start ========*/
#amenitiesp-sec .video-btns .border-btn {
    width: 240px;
}
.amenity-content{
    display: none;
}
.exprience-club-sec .menu-tabs {
    margin-bottom: 0;
    margin-top: 30px;
}
.exprience-club-sec {
    margin-bottom: 60px;
}

/*======== contact page sec start ========*/
.details-ct-listing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
}
.details-ct-listing li {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    justify-content: center;
}
.details-ct-listing li:after {
    content: "";
    position: absolute;
    top: 0;
    left: 34px;
    width: 1px;
    height: 100%;
    background: #ddd;
}
.details-ct-listing li:first-child:after{
    display: none;
}
.details-ct-listing li:last-child:after{
    left:-30px;
}
.details-ct-listing li .ct-icon {
    width: 70px;
    height: 70px;
    border: 2px solid #026A52;
    color: #026A52;
    font-size: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 7px;
}
.details-ct-listing li .cti-content p{
    color: #000000;
    font-size: 14px;
}
.details-ct-listing li .cti-content a{
    color: #000000;
    font-size: 14px;
}
.contact-form-sec{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.contact-right {
    padding: 0 100px 0 40px;
}
.contact-right .form-btn {
    float: none;
}
.contact-form-sec{
    margin-bottom: 60px;
}


/*========== download page sec ========*/
.download-page .card-front, .card-back {
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    line-height: 23px;
    padding: 44px 30px 9px;
}
.download-page .card-front span {
    color: #000;
    font-size: 15px;
    text-transform: capitalize;
}
.download-page .card-back a {
    color: #fff;
    display: block;
    text-align: center;
}
.download-img img{
    width: 100%;
}
.download-img{
    margin-bottom: 60px;
}

/*======= location sec ======*/
.location-content{
    display: none;
}

.location-content .boxcard-area{
    margin-top: 30px;
}
.loaction-tabs button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 5px 0px;
    transition: 0.3s;
    font-size: 14px;
    position: relative;
    font-weight: 400;
}
.loaction-tabs button.active {
    color: #026A52;
}
.loaction-tabs button:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #026A52;
    transform: 0.3s;
}
.loaction-tabs button.active:after {
    width: 100%;
    transition: 0.3s;
}
.loaction-tabs {
    display: flex;
    gap: 25px;
    flex-flow: wrap;
}
.boxcard-area img{
    width: 100%;
}

/*==== video panel ====*/
.video-tabs {
    display: flex;
    margin-bottom: 2rem;
    justify-content: center;
}

.video-button {
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
    font-size: 18px;
    font-weight: 500;
}

.video-button.active {
    border-bottom: 2px solid #026A52;
    color: #026A52;
}

    .video-panel {
      display: none;
    }

    .video-panel.active {
      display: block;
    }

    .subtitle {
    font-family: 'myfont';
    color: #026A52;
}
.grecaptcha-badge {
    display: none !important;
}
.ar-content p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 26px;
}
.footer-logo {
    filter: brightness(0) invert(1);
    width: 38%;
    margin-top: 15px;
}
.modal-title {
    font-family: 'myfont';
    text-transform: uppercase;
    color: #026A52;
}

.open_modal_download {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background-color: #B89C50;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 4px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

/* Text shift left and arrow image shift right */
.open_modal_download:hover span {
    transform: translateX(-5px);
}

.open_modal_download img {
    transition: transform 0.3s ease;
}

.open_modal_download:hover img {
    transform: translateX(5px);
}
.grid-content {
    position: relative;
    overflow: hidden;
}
.grid-content a img{
    transform:scale(1);
}
.grid-content:hover a img{
    transform:scale(1.3);
    transition: transform 0.3s ease;
}
.grid-overley img {
    position: absolute;
    top: 10px;
    right: 10px;
}
.grid-content:hover .grid-overley{
    height:auto;
    transition: transform 0.3s ease;
}
.location-sec .download-page .card-front, .card-back {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 44px 30px 44px;
    font-size:18px;
}
.location-sec .download-page .card-front, .card-back a{
    color:#fff;
    text-decoration:none;
}
@keyframes blingPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.play-span {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex !important;
    align-items: center;
    transition: 0.3s;
    z-index: 1;
    cursor: pointer;
}
.play-span:hover{
    color:#6F6F6F;
}

/* 🔁 Constant pulse using after */
.play-span::after {
    content: "";
    position: absolute;
    top: -5px;
    right: -5px;
    width: 70px;
    height: 70px;
    background: #B89C50;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0;
    animation: blingPulse 1.5s ease-out infinite;
}

.play-span img {
    filter: invert(0);
    transition: 0.3s;
    border-radius: 50%;
    z-index: 1;
    position: relative;
}
#arci-grid {
    /* grid-template-columns: repeat(4, 1fr); */
    display: flex;
    justify-content: center;
}
#arci-grid .card-container {
    width: 206px;
}
#arci-grid .card-front, .card-back {
    padding: 30px 15px 30px;
    text-align: center;
    line-height: 24px;
}
.download-img iframe {
    margin-bottom: -7px;
}
#nova-tab1 .novas-item {
    margin-top: 24px;
}
.location-sec .card-front, .card-back {
    align-items: baseline;
    padding-top: 50px;
}
.location-sec .card-back {
    text-align: center;
    align-items: center;
    padding-top: 30px;
}
#arci-grid .card-front {
    text-align: left;
    justify-content: start;
    align-items: start;
}
.h-overlay {
    position: absolute;
    bottom: 0;
    z-index: 1;
    padding: 20px;
    width: 100%;
    text-align: left;
    color: #fff;
    text-transform: uppercase;
    background: linear-gradient(0deg, black, transparent);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.slider01-item:hover .h-overlay {
    opacity: 1;
    visibility: visible;
    transition: 0.3s;   
}
.mobile-ft-fixed {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: #026A52;
}
.mobile-ft-fixed li:first-child {
    border-right: 0px solid #fff;
}
.mobile-ft-fixed li a {
    padding: 10px;
    color: #fff !important;
    width: 100%;
    display: flex;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
    font-size:14px;
    border-radius:0;
}
.more-contant-area {
    padding: 20px;
    border: 1px solid #026A52;
    background: #fff;
    min-height: 509px;
    margin-bottom: 30px;
    text-align: center;
}
.more-contant-area img {
    margin-bottom: 30px;
}
.more-contant-area h3 {
    color: #026A52;
    margin-bottom: 35px;
    font-family:'myfont';
}
.more-contant-area ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    
}
.accordion-item:not(:first-of-type) {
    border-top: 1px solid #026A52;
}
    .accordion-header {
    background: none;
    border: none;
    color: #026A52;
    padding: 20px;
    width: 100%;
    text-align: left;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    outline: none;
    font-weight: 500;
    font-family: myfont;
}
.icon {
    font-size: 20px;
}
.accordion-body {
    padding: 0 20px 20px;
    display: none;
    font-size: 14px;
    color: #333;
    border-radius: 5px;
}
.accordion-item.active .accordion-body {
    display: block;
}
.accordion-container {
    border-radius: 5px;
    overflow: hidden;
}
.accordion-item {
    border: 1px solid #026A52;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}
.faq-img {
    overflow: hidden;
    border-radius: 5px;
}
.faq-img img {
    transition: 0.5s;
    transform: scale(1);
    object-fit: cover;
}
.faq-img:hover img {
    transition: 1s;
    transform: scale(1.3);
}
.faq-img img {
    transition: 0.5s;
    transform: scale(1);
}
.accordion-body ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
@media (max-width:767px){
    .mobile-ft-fixed{
        display:grid !important;
    }
    .show-content {
    height: auto;
    opacity: 1;
    visibility: visible;
    margin-top: 20px;
    color: #fff;
    display:none;
}
.navigation-header-open .navigation-part {
    width: 80%;
}
.location-sec .card-front, .card-back {
    height: 166px;
}
.location-sec .card-container {
    height: 166px;
}
.nova-logo {
    margin-top: 30px;
}
.copyright-sec {
    padding-bottom: 30px;
}
.more-contant-area{
    min-height:auto;
}
.accordion-container {
    margin-top: 30px;
}
}
#nova-tab1 .novas-item h5 {
    font-size: 16px;
}

/*==== otp form =====*/
.otp-form {
    padding: 50px;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
}
.otp-container {
    border-radius: 12px;
    text-align: center;
    width: 300px;
    margin: 0 auto;
}

    .otp-container h2 {
      margin-bottom: 20px;
      color: #333;
    }

    .otp-inputs {
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .otp-inputs input {
      width: 40px;
      height: 45px;
      font-size: 20px;
      text-align: center;
      border: 1px solid #ccc;
      border-radius: 8px;
      outline: none;
    }

    .otp-inputs input:focus {
      border-color: #026A52;
    }

    .resend-btn {
      background-color: transparent;
      border: none;
      color: #026A52;
      cursor: pointer;
      font-size: 14px;
      text-decoration: underline;
      margin-top: 10px;
    }

    .submit-btn {
      margin-top: 15px;
      background-color: #026A52;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 16px;
    }

    .submit-btn:hover {
      background-color: #026A52;
    }
    @media(max-width:600px){
        .otp-container {
    width: auto;
}
    }