:root {
    /* --colorPrimary: #06adb8; */
    --colorPrimary: #05ACBC;
    --colorPrimaryLight: #57b6c0;
    --colorSecondary: #005483;
    --colorBlueDark: #115782;
    --colorGolden: #a48a35;
    --colorBtn: #fff;
}

.primary-color {
    color: var(--colorPrimary);
}

.secondary-color {
    color: var(--colorSecondary);
}

.golden-color {
    color: var(--colorGolden);
}

.effetMoveGradient,
.effetMoveGradient:hover {
    text-shadow: 0px 3px 6px var(--colorPrimary);
    background-color: var(--colorSecondary);
    background: linear-gradient(-45deg, var(--colorPrimary), var(--colorSecondary), var(--colorPrimary), var(--colorSecondary));
    background-size: 400% 400%;
    -webkit-animation: Gradient 3s ease infinite;
    animation: Gradient 3s ease infinite;
    color: var(--colorBtn);
    border: none;
}

@keyframes Gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.effectScale {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/* golden pulse button start */
.call-to-action-button .btn {
    background-color: #d19e02 !important;
    animation: golden-pulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(209, 158, 2, 0.4);
}

.call-to-action-button .btn:hover {
    animation: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(209, 158, 2, 0.6);
}

@keyframes golden-pulse {

    0%,
    100% {
        box-shadow: 0 2px 8px rgba(209, 158, 2, 0.4);
        transform: translateY(0);
    }

    50% {
        box-shadow: 0 4px 15px rgba(209, 158, 2, 0.7);
        transform: translateY(-3px);
    }
}

@-webkit-keyframes golden-pulse {

    0%,
    100% {
        box-shadow: 0 2px 8px rgba(209, 158, 2, 0.4);
        transform: translateY(0);
    }

    50% {
        box-shadow: 0 4px 15px rgba(209, 158, 2, 0.7);
        transform: translateY(-3px);
    }
}

/* golden pulse button end */

/* pulse button start */
.download-btn {
    /* background-color: #025baa !important; */
    background-color: var(--colorPrimary) !important;
    border: 1px solid var(--colorPrimary) !important;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    color: #fff !important;
    margin-left: 5px;
    animation: pulse-button 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background-color: #023f7a;
    color: white;
    text-decoration: none;
    animation: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@keyframes pulse-button {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 163, 211, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(0, 163, 211, 0);
    }
}

@-webkit-keyframes pulse-button {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 163, 211, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(0, 163, 211, 0);
    }
}

/* pulse button end */

.about-img {
    width: 90%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 12px solid white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0;
    display: inline-block;
    overflow: hidden;
}

.about-img .middle {
    border-radius: 6px;
    overflow: hidden;
}

/* Zoom in–zoom out animation on image */
.about-img img {
    border-radius: 6px;
    /* Apply zoom animation */
    animation: zoomInOut 5s ease-in-out infinite alternate;

    /* Keep zoom centered */
    transform-origin: center;

    /* Improve performance */
    will-change: transform;
}

/* Keyframes for smooth zoom effect */
@keyframes zoomInOut {

    /* Normal size */
    from {
        transform: scale(1);
    }

    /* Slight zoom-in for luxury feel */
    to {
        transform: scale(1.2);
    }
}

#highlights {
    position: relative;
}

.imgdiv::after {
    content: "";
    position: absolute;
    right: 0;
    top: 8%;
    height: 29.5%;
    width: 15%;
    background: url(../images/vectorimg.webp);
    /* z-index: -1; */
}

#highlights .topimg {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 10px solid #fff;
    width: 76%;
    margin-bottom: 18%;
    transition: all 0.5s ease;
    animation: floatImageUp 5s ease-in-out infinite;

}

@keyframes floatImageUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}

#highlights .topimg:hover {
    transform: scale(1.5);
}

#highlights .bottomimg {
    position: absolute;
    right: 0%;
    bottom: -50px;
    border: 10px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    width: 60%;
    transition: all 0.5s ease;
    animation: floatImageDown 6s ease-in-out infinite;
}

@keyframes floatImageDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }
}

#highlights .bottomimg:hover {
    transform: scale(1.5);
}


#gallery {
    padding: 50px 0px;
}

#amenities {
    padding: 50px 0px;
}


#pricelist {
    padding: 50px 0px;
}


#floorplan {
    padding: 50px 0px;
    height: 280px;
    background-color: var(--colorBlueDark);
    /* background: linear-gradient(135deg, var(--colorPrimary), var(--colorSecondary)); */
    margin-bottom: 300px;
    background-image: url(../images/background-pattern.png);
}

#floorplan .container {
    padding: 0 80px;
}

#floorplan .item_wrap {
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.20);
}

#floorplan .img_sec img {
    border-radius: 5px;
}

#floorplan .title {
    /* background-color: var(--colorBlueDark); */
    background: linear-gradient(135deg, #00a3d3 0%, #00c9e0 100%);
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 400;
}

#location {
    padding: 50px 0px;
    padding-bottom: 0px !important;
}

.location-map {
    border: 2px solid #0f7e9f;
    border-radius: 5px;
    overflow: hidden;
}

.location-map .map {
    overflow: hidden;
    border-radius: 4px;
    border: 8px solid #c2eaef;
}

.location-map img {
    width: 100%;
    border-radius: 4px;
    transition: all 0.5s ease;
}

.location-map img:hover {
    scale: 1.2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#specification {
    padding: 50px 0px;

}


#question {
    padding: 50px 0px;
}

#about {
    padding: 50px 0px;
}

.consulting img {
    height: 25px;
    width: auto;
}

/* Responsive Styles */
@media screen and (max-width:567px) {
    #about {
        padding: 30px 0px !important;
    }

    #highligts {
        padding: 30px 0px !important;
    }

    #gallery {
        padding: 30px 0px !important;
    }

    #amenities {
        padding: 30px 0px !important;
    }


    #pricelist {
        padding: 30px 0px !important;
    }


    #floorplan {
        padding: 30px 0px !important;
    }

    #location {
        padding: 30px 0px !important;
        padding-bottom: 0px !important;
    }

    #specification {
        padding: 30px 0px !important;
        padding-bottom: 0px !important;
    }


    #question {
        padding: 30px 0px !important;
    }



}


.project-info-section {
    display: none;
}

.container {
    max-width: 1280px;
}

header {
    /* background-color:#fff;  */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    transition: all .5s;
    padding: 10px 0;
}

.darkHeader {
    background-color: #000
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.project-logo {
    max-width: 100px
}

.luxury-logo {
    max-width: 130px
}

.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.menu ul li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    text-decoration: none;
    font-family: 'system-ui';
    padding: 10px 11px;
    font-weight: 700;
    width: auto;
    display: inline-block
}

.menu ul li a:hover {
    background-color: #d19e02
}

.fixed-header .menu ul li a {
    color: #000;
    font-weight: 600;
}

.menu ul li a:hover {
    border-bottom: 2px solid var(--colorSecondary);
    background-color: transparent;
}

/* Slow zoom in/out background for desktop banner */
.home-banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Background image layer */
.home-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/banner1.jpg') center / cover no-repeat;
    transform-origin: center;
    will-change: transform;
    animation: bannerZoom 5s ease-in-out infinite alternate;
    z-index: 0;
}

/* Keep banner content above background */
.home-banner>* {
    position: relative;
    z-index: 2;
}

/* Optional dark overlay for text readability */
.home-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* Smooth zoom animation */
@keyframes bannerZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.25);
    }
}

/* end of banner zoom animation */

/* Hide the pseudo background on small screens and show the inline image instead */
@media (max-width: 767.98px) {
    .home-banner::before {
        display: none;
    }

    .home-banner .home-banner-img {
        display: block;
    }
}

@media (min-width: 768px) {
    .home-banner .home-banner-img {
        display: none;
    }
}

/* .home-banner{
    position:relative;
    background-image:url(../images/banner1.jpg);
    background-color:#dcdcdc;
    height:100vh;
    background-size:cover;
    background-position:center center;
    padding-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    white-space: nowrap;
} */
.home-banner-img {
    display: none;
}

.project-configurations {
    text-shadow: 0px 1px 2px #000;
    padding-left: 30px;
}

.project-rera {
    position: relative;
    margin: 3px 0 0 0;
}

.project-rera-mobile {
    display: none;
}

.banner-cnt {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 15px;
    z-index: 1;
}

.project-configurations h1 {
    color: #fff;
    font-size: 42px;
    font-family: 'poppinsbold';
}

.project-configurations p {
    font-size: 18px;
    color: #fff;
    font-family: 'poppinsbold';
}

.configuration-item {
    padding-right: 20px;
}

.configuration-item h4 {
    color: #d19e02;
    font-size: 20px;
    font-family: 'poppinssemibold';
    text-transform: uppercase;
}

.configurations-size {
    position: relative;
}

.banner-configurations-site-visit {
    display: flex;
    align-items: center;
}

.banner-configurations {
    display: flex;
}

.configurations-size::after {
    content: "";
    background-color: gainsboro;
    width: 1px;
    height: 100%;
    position: absolute;
    right: 10px;
    bottom: 0;
}

.project-configurations .configuration-item p {
    margin: 0;
}

.project-configurations .configuration-item p span {
    color: #d19e02;
}

.btn {
    background-color: #0f57a3;
    border-radius: 0;
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid #d19e02;
    padding: 10px 25px;
}

.project-site-visit {
    display: flex;
    align-items: center;
}

.project-info-item {
    text-align: center;
    padding-top: 30px;
    height: 100%;
}

.project-info-item h3 {
    color: #232323;
    font-size: 16px;
    margin: 10px 0;
    font-weight: 700;
}

.project-info-item p {
    color: #232323;
    font-size: 14px;
}

.project-info-border {
    border-right: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

.inner-title h2 {
    color: #2a2a2a;
    font-size: 36px;
    /* font-weight: 600; */

}

.inner-title p {
    color: #1c1b1b;
    font-size: 17px !important;
    line-height: 1.8em;
    text-align: center;

}

.trans-btn {
    color: #fff !important;

}

.prosummary ul li {
    font-size: 15px;
    margin: .5rem;
    color: #6b6a6a;
    font-weight: 500;
    text-align: center;
}

.prosummary ul li strong {
    color: #2d2d2d;
}

#floor-plan .project-site-visit a:hover {
    color: #fff;
}

.about-video {
    position: relative;
    height: 100%;
}

.about-video::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
}

.img-box {
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    display: inline-block;
    background-position: 100% 100%;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
}

.highlight-div {
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.highlight-div h3 {
    background-color: #d19e02;
    color: #fff;
    font-size: 20px;
    padding: 20px 32px;
    margin: 0 0 30px 0;
}

.price-card {
    background: rgb(243 245 246);
    background: #eee;
    padding: 1.5rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-card .price-category {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--colorSecondary);
}


.table.table-bordered tr th,
.table.table-bordered tr td {
    color: #000;
    border: 2px solid #eaeff0;
    text-align: center;
    font-size: 18px;
    font-family: 'Calibri', sans-serif !important
}

.table.table-bordered tr th {
    background-color: var(--colorBlueDark);
    color: #fff;
    opacity: .9;
    font-size: 20px;
}

@media screen and (max-width:567px) {

    .table.table-bordered tr th,
    .table.table-bordered tr td {
        font-size: 10px;
    }

    #btnidi {
        font-size: 10px !important;
    }
}

.accodion_content span {
    font-family: 'Calibri', sans-serif !important
}



.highlight-div ul {
    list-style: none;
    width: 100%;
    display: inline-block;
    padding-right: 10px;
}

.highlight-div ul li {
    color: #666666;
    font-size: 16px;
    font-weight: 600;
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
}

.highlight-div ul li::before {
    position: absolute;
    content: '\f00c';
    left: 0px;
    top: 0px;
    color: #d19e02;
    font-size: 18px;
    font-weight: 400;
    font-family: 'FontAwesome';
}

.highlight-image {
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-title {
    margin: 0 0 50px 0;
}

.section-title h2 {
    font-size: 36px;
    color: #2a2a2a;
    line-height: 1em;
    font-weight: 600;
}

.gray-background {
    background-color: #2a2a2a;
}

.gray-background .inner-title h2 {
    color: #fff;
}

.gray-background .inner-title p {
    color: #fff;
}

.floor-plan-section .container-fluid {
    padding: 0;
}

.features-section .container-fluid {
    padding: 0;
}

#gallery .container-fluid {
    padding: 0;
}

.location-advantage-section .container-fluid {
    padding: 0;
}

.floor-plan {
    background-color: #fff;
    padding: 15px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floor-plan-img {
    box-shadow: 0px 0 5px gainsboro;
    text-align: center;
    padding: 15px;
    width: 100%;
}

.floor-plan-cnt {
    padding: 45px;
    height: 100%;
    display: flex;
    align-items: center;
}

.inner-title {
    width: 100%;
}

.inner-title .project-site-visit {
    margin: 40px 0 0 0;
}

.featured-inner h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-left: 25px;
    border-left: 6px solid #d19e02;
}

.featured-inner p {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 0;
    padding-left: 30px;
}

.featured-inner {
    margin-top: 35px;
}

.gray-background .inner-title ul {
    padding: 0;
    list-style: none;
    color: #fff;
    margin: 0;
}

.gray-background .inner-title ul li {
    font-size: 16px;
    font-weight: 500;
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
}

.gray-background .inner-title ul li::before {
    content: '\f00c';
    font-size: 16px;
    font-weight: 400;
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    top: 0;
    color: #d19e02;
}

.location-map-div {
    height: 100%;
}

.call-to-action-section {
    background-color: var(--colorBlueDark);
    padding: 40px 0;
}

.call-to-action-button {
    text-align: right;
}

.call-to-action-button .btn {
    background-color: #fff;
    color: white;
    border-color: #fff;
}

.call-to-action-cnt p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.specialist-block {
    margin-bottom: 25px;
    color: #fff;


    min-height: 90%;
}

.specialist-block a {
    color: #fff;
    text-decoration: none;
}

.faq-section {
    background-color: #2a2a2a;
    /*padding: 40px 0;*/
}

.faq-section .section-title h2 {
    color: #fff;
    margin: 0 0 20px 0;
}

.faq-section .section-title p {
    color: #fff;
}

.faq-section .section-title p a {
    color: #fff;
}

.specialist-block h5 {
    margin-bottom: 10px;
    padding-left: 20px;
    border-left: 6px solid #d19e02;
}

.specialist-block p {
    text-align: justify;
    margin: 0;
    font-size: 15.3px;
    font-family: 'Calibri', sans-serif !important;
}

.top-footer {
    position: relative;
    padding: 50px 0px 50px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.top-footer::before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #f7f8f9;
}

.top-footer .container {
    position: relative;
}

.about-developer h3 {
    font-size: 40px;
    /* color: var(--colorSecondary); */
}

.about-developer p {
    color: #6b6a6a;
}

.location-detail {
    padding: 30px 30px;
    /* background-color: #2c2c2c; */
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.location-detail h4 {
    margin: 0;
    font-size: 25px;
    font-weight: 600;
}

.location-item {
    margin-top: 30px;
}

.location-item h5 {
    font-size: 22px;
}

.location-item p {
    margin: 0;
    font-size: 14px;
}

.location-item p a {
    color: #fff;
    text-decoration: none;
}

.form-footer {
    padding: 5px !important;
    border-radius: 5px;
    /* background-color: var(--colorPrimary); */
    background: linear-gradient(-45deg, var(--colorPrimary), var(--colorSecondary), var(--colorPrimary), var(--colorSecondary));
}

.form-footer h4 {
    color: #d19e02;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 30px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-control {
    border-radius: 0;
    padding: 10px 15px;
}

textarea.form-control {
    min-height: 180px;
    resize: none;
}

.form-control {
    border-radius: 0;
    padding: 10px 15px;
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
}

.countryCode {
    position: absolute;
    width: 100px;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    height: 57%;
    border: 0;
    background-color: transparent;
    z-index: 1;
    color: #025baa;
}

.countryCode~.form-control {
    padding-left: 120px;
}

.countryCode option {
    color: #000;
}

.form-control::placeholder {
    color: #fff;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #fff;
}

.form-control::-ms-input-placeholder {
    color: #fff;
}

.form-control:focus {
    color: #fff;
    background-color: transparent;
    border-color: #fff;
    outline: 0;
    box-shadow: none;
}

.mid-footer {
    background-color: #2a2a2a;
    padding-top: 30px;
    width: 100%;
    display: inline-block;
}

.footer-menu {
    margin-bottom: 15px;
}

.footer-menu h4 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-left: 20px;
    border-left: 6px solid white;
    text-align: left;
}

.footer-menu ul {
    padding: 0;
    list-style: none;
    margin: 0;
    width: 100%;
    display: inline-block;
}

.footer-menu ul li {
    width: auto;
    display: inline-block;
    margin: 0 10px 0 0;
    position: relative;
    padding: 0 0 0 12px;
}

/*.footer-menu ul li::before {
    content: "";
    width: 5px;
    height: 5px;
    position: absolute;
    left: 0;
    top: 50%;
    background-color: #777;
    border-radius: 100%;
    transform: translateY(-50%);
}*/
.footer-menu ul li a {

    text-decoration: none;

    font-family: system-ui;
    display: block;
    font-size: 12px;
    margin-left: 10px;
    opacity: 1;

}

.rera-strip ul {
    padding: 0;
    list-style: none;
    text-align: center;
    margin: 0;
}

.rera-strip {
    background-color: #696969;
    padding-top: 10px;
}

.rera-strip ul li {
    padding: 0 15px;
    text-align: center;
    font-size: 13px;
    border-right: 1px solid #fff;
    width: auto;
    display: inline-block;
    color: #fff;
    margin-bottom: 10px;
}

.rera-strip ul li:last-child {
    border-right: 0;
}

.footer-para p {
    text-align: justify;
    margin-top: 16px;
    font-size: 13px;
}

.btm-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btm-footer .copyright {
    font-size: 13px;
}

.social-icons a {
    background-color: #0f57a3;
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    display: inline-flex;
    border-radius: 100%;
    color: #fff;
    margin: 0 0 0 10px;
}

.btm-footer {
    /* background-color: rgb(211 209 209); */
    padding: 15px 0;
}

.modal-body .top-footer {
    padding: 15px 0px 15px;
}

.close {
    padding: 0;
    position: absolute;
    right: 5px;
    top: 0px;
    z-index: 9;
    background-color: transparent;
    border: 0;
    color: #fff;
    font-size: 20px;
}

.modal-body .top-footer {
    padding: 15px 0px 15px;
    background-attachment: inherit;
}

.modal-body {
    padding: 0;
}

.modal-content {
    border: 0;
    background-color: #500ccd;
    padding: 5px;
}

.call-to-action-section .logo {
    width: 110px;
    height: 110px;
    overflow: hidden;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
}

.call-to-action-section .logo img {
    max-width: 100%;
    padding: 10px;
    border-radius: 5px;
}

.fix-mobile-strip {
    display: none;
}

a.whatsapp {
    background-color: #2fb842;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 25px;
    text-decoration: none;
    border-radius: 100%;
    text-align: center;
    width: 50px;
    height: 50px;
    position: fixed;
    left: 10px;
    bottom: 20px;
    margin: 0;
    z-index: 2;
}

@media only screen and (max-width: 1320px) {
    .container {
        max-width: 1230px;
    }
}

@media only screen and (max-width: 1279px) {
    .rera-strip ul li {
        padding: 0 7px;
    }

    a.whatsapp {
        font-size: 20px;
        width: 44px;
        height: 44px;
    }

    .project-configurations {
        padding-left: 45px;
    }

    .project-configurations h1 {
        font-size: 35px;
    }

    .project-configurations p {
        font-size: 16px;
    }

    .configuration-item h4 {
        font-size: 18px;
    }

}

@media only screen and (max-width: 1199px) {
    .menu ul li a {
        font-size: 11px;
        padding: 20px 10px;
    }

    .highlight-div h3 {
        font-size: 18px;
        padding: 15px 32px;
        margin: 0 0 15px 0;
    }

    .highlight-div ul li {
        font-size: 14px;
        padding-left: 30px;
        margin-bottom: 5px;
    }

    .same-section {
        margin-bottom: 35px;
    }

    .inner-title h2 {
        font-size: 30px;
    }

    .inner-title p {
        font-size: 14px;
    }

    .featured-inner h4 {
        font-size: 18px;
        margin-bottom: 10px;
        padding-left: 10px;
        border-left: 5px solid #d19e02;
    }

    .featured-inner p {
        font-size: 14px;
        padding-left: 15px;
        line-height: 1.6em;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .project-configurations h1 {
        font-size: 30px;
    }

    .banner-configurations-site-visit {
        width: auto;
        display: inline-block;
    }

    .configuration-item {
        padding-right: 18px;
    }

    .project-site-visit {
        margin: 12px 0 0 0;
    }

}

@media only screen and (max-width: 991px) {
    .button_container {
        position: absolute;
        top: 30%;
        right: 0;
        height: 10px;
        width: 25px;
        cursor: pointer;
        z-index: 100;
        transition: opacity 0.25s ease;
        transform: translateY(-5%);
    }

    .button_container:hover {
        opacity: 0.7;
    }

    .button_container.active .top {
        transform: translateY(11px) translateX(0) rotate(45deg);
        background: #fff;
    }

    .button_container.active .middle {
        opacity: 0;
        background: #fff;
    }

    .button_container.active .bottom {
        transform: translateY(-11px) translateX(0) rotate(-45deg);
        background: #fff;
    }

    .button_container span {
        background: #0f57a3;
        border: none;
        height: 2px;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 0.35s ease;
        cursor: pointer;
    }

    .button_container span:nth-of-type(2) {
        top: 10px;
    }

    .button_container span:nth-of-type(3) {
        top: 20px;
    }

    .overlay {
        position: fixed;
        background: black;
        top: 0;
        left: 0;
        width: 100%;
        height: 0%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s, visibility 0.35s, height 0.35s;
        overflow: hidden;
        z-index: 9;
    }

    .overlay.open {
        opacity: 0.9;
        visibility: visible;
        height: 100%;
    }

    .overlay.open li {
        -webkit-animation: fadeInRight 0.5s ease forwards;
        animation: fadeInRight 0.5s ease forwards;
        -webkit-animation-delay: 0.35s;
        animation-delay: 0.35s;
    }

    .overlay.open li:nth-of-type(2) {
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }

    .overlay.open li:nth-of-type(3) {
        -webkit-animation-delay: 0.45s;
        animation-delay: 0.45s;
    }

    .overlay nav {
        position: relative;
        height: 70%;
        top: 50%;
        transform: translateY(-50%);
        text-align: center;
    }

    .overlay ul {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        display: inline-block;
        position: relative;
        height: 100%;
    }

    .overlay ul li {
        display: block;
        position: relative;
        opacity: 0;
        margin: 0 0 15px 0;
    }

    .overlay ul li a {
        display: block;
        position: relative;
        color: #fff;
        text-decoration: none;
        overflow: hidden;
        font-size: 25px;
        padding: 0;
        font-weight: 400;
    }

    .menu ul li a:hover {
        background-color: transparent;
    }

    .overlay ul li a:hover:after,
    .overlay ul li a:focus:after,
    .overlay ul li a:active:after {
        width: 100%;
    }

    .overlay ul li a:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0%;
        transform: translateX(-50%);
        height: 3px;
        background: #fff;
        transition: 0.35s;
    }

    @-webkit-keyframes fadeInRight {
        0% {
            opacity: 0;
            left: 20%;
        }

        100% {
            opacity: 1;
            left: 0;
        }
    }

    @keyframes fadeInRight {
        0% {
            opacity: 0;
            left: 20%;
        }

        100% {
            opacity: 1;
            left: 0;
        }
    }

    .project-info-item p {
        font-size: 13px;
    }

    .project-info-item h3 {
        font-size: 12px;
    }

    .luxury-logo {
        display: none;
    }

    .same-section {
        margin-bottom: 25px;
    }

    .inner-title h2 {
        font-size: 25px;
        margin-bottom: 15px;
    }

    .inner-title .project-site-visit {
        margin: 15px 0 0 0;
    }

    .about-video {
        height: 400px;
        margin-top: 20px;
    }

    .highlight-image {
        display: none;
    }

    .section-title h2 {
        font-size: 25px;
    }

    .form-footer h4 {
        font-size: 26px;
    }

    .specialist-block h5 {
        font-size: 18px;
    }

    /* header {
        padding: 10px 0;
    } */

    .home-banner {
        padding-top: 15px;
    }

    .project-configurations h1 {
        font-size: 30px;
    }

    .project-configurations p {
        font-size: 16px;
    }

    .project-configurations p {
        font-size: 13px;
    }

    .btn {
        font-size: 13px;
        padding: 8px 10px;
    }

    a.whatsapp {
        bottom: 14px;
    }

    .banner-text {
        position: relative;
        padding: 0;
        color: #000;
        background-color: rgb(249, 245, 234);
        width: 100%;
        border-radius: 2px;
        text-align: center;
        opacity: 0.9;
    }

    .banner-text .info-text {
        padding: 20px;
        text-align: center;
    }

    .banner-text h1 {
        font-size: 32px;
        font-weight: 600;
    }

    .banner-text p {
        font-size: 11px;
    }

    .banner-text .eoi-card {
        margin-top: 20px;
        padding: 10px;
        background-color: #e1f1f6;
        /* background-color: #eee; */
        border-radius: 2px;
    }

    .payment-plan-card {
        margin-top: 12px;
        padding: 7px;
        color: #fff;
        background-color: var(--colorSecondary);
        letter-spacing: 0.8px;
        font-weight: 500;
        text-align: center;
        border-radius: 3px;
    }
}

@media only screen and (max-width: 768px) {

    .project-logo {
        max-width: 80px
    }

    .value-card {
        padding: 15px 10px !important;
    }

    .value-card i,
    .value-card svg {
        font-size: 24px !important;
        margin-bottom: 8px !important;
    }

    .value-card h6 {
        font-size: 14px !important;
    }

    #floorplan {
        margin-bottom: 230px;
    }

    #floorplan .container {
        padding: 0;
    }

    .project-info-section {
        display: block;
    }

    .banner-text h1 {
        font-size: 28px;
    }

    .overlay-img-right {
        position: absolute;
        top: 95px;
        right: 0px;
        height: 20%;
        width: 25%;
    }

    a.whatsapp {
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
    }

    .overlay ul li a {
        font-size: 22px;
    }

    .btm-footer .container {
        display: block;
        text-align: center;
    }

    .copyright {
        margin-bottom: 10px;
    }

    .logo {
        text-align: center;
        margin: 0 0 15px 0;
    }

    .call-to-action-cnt {
        text-align: center;
        margin: 0 0 15px 0;
    }

    .call-to-action-button {
        text-align: center;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .form-footer h4 {
        font-size: 20px;
        margin-bottom: 20px;
        /* margin-top: 25px; */
    }

    .fix-mobile-strip {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1;
        box-shadow: 0 0 5px #696969;
    }

    .fix-mobile-strip ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
    }

    .fix-mobile-strip ul li {
        width: 50%;
        text-align: center;
    }

    .fix-mobile-strip ul li a {
        display: block;
        text-decoration: none;
        color: #fff;
        background-color: #0f57a3;
        padding: 10px;
        font-size: 16px;
    }

    .btm-footer {
        padding: 0px;
        /* padding: 15px 0 59px 0;    */
    }

    .banner-cnt {
        display: none;
    }

    .home-banner-img {
        display: block;
        height: 270px;
        padding-top: 50px;
    }

    .home-banner {
        background-image: none;
        height: auto;
    }

    header {
        /* background-color: #fff; */
        background-color: transparent;
    }

    .project-rera-mobile {
        position: absolute;
        left: 15px;
        bottom: 0px;
        display: block;
        z-index: 2;
        color: #fff;
    }
}


@media only screen and (max-width: 575px) {
    .overlay ul li a {
        font-size: 20px;
    }

    .project-configurations {
        border: 15px solid rgba(255, 255, 255, 0.20);
        padding: 15px;
    }

    .configuration-item {
        text-align: left;
        margin: 0 0 12px 0;
    }

    .configurations-size::after {
        width: 100%;
        height: 1px;
        right: 0;
        bottom: 4px;
    }

    .configuration-item h4 {
        font-size: 18px;
    }

    .configuration-item h4 {
        margin: 0;
    }

    .project-configurations h1 {
        font-size: 20px;
        margin: 0;
    }

    .btn {
        font-size: 13px;
        padding: 8px 15px;
        letter-spacing: 1px;
    }

    .inner-title p {
        font-size: 13px;
        line-height: 1.5em;
        text-align: justify !important;
    }

    .about-video {
        height: 250px;
    }

    .highlight-div h3 {
        font-size: 16px;
        padding: 15px;
    }

    .highlight-div ul {
        padding-left: 15px;
    }

    .highlight-div ul li {
        font-size: 13px;
        padding-left: 25px;
    }

    .section-title h2 {
        font-size: 20px;
        padding: 0 15px;
    }

    .section-title {
        margin: 0 0 20px 0;
    }

    .floor-plan-cnt {
        padding: 15px;
    }

    .inner-title h2 {
        font-size: 20px;
    }

    .featured-inner {
        margin-top: 20px;
    }

    .featured-inner h4 {
        font-size: 16px;
    }

    .gray-background .inner-title ul li {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .rera-strip ul li {
        border-right: 0;
    }

    .specialist-block h5 {
        font-size: 16px;
    }

    .project-info-item .icon {
        max-width: 50px;
        height: auto;
        margin: 0 5px 0 0;
    }

    .fix-mobile-strip ul li a {
        font-size: 14px;
    }

    .project-info-border {
        border-right: 0;
        border-bottom: 1px solid #e6e6e6;
        flex: auto;
    }

    .project-info-item {
        padding-top: 10px;
        padding-bottom: 10px;
        height: auto;
        display: flex;
        align-items: center;
        text-align: left;
    }

    .project-info-item h3 {
        margin: 0 0 5px 0;
    }

    .project-info-item p {
        margin-bottom: 0;
    }

    .project-info-item-txt h3 {
        width: auto;
        display: inline-block;
    }

    .project-info-item-txt p {
        width: auto;
        display: inline-block;
    }

    a.whatsapp {
        font-size: 18px;
        width: 41px;
        height: 41px;
    }

    .same-section {
        margin-bottom: 15px;
    }
}






@media screen and (max-width:567px) {
    .tabcontent {
        padding: 0px !important;
    }

    #slides {
        max-width: 100% !important;
    }
}


#frame {
    margin: 0 auto;
    width: 800px;
    max-width: 100%;
    text-align: center;
}

#frame input[type=radio] {
    display: none;
}

#frame label {
    cursor: pointer;
    text-decoration: none;
}



#overflow {
    width: 100%;
    overflow: hidden;
}

#frame1:checked~#slides .inner {
    margin-left: 0;
}

#frame2:checked~#slides .inner {
    margin-left: -100%;
}

#frame3:checked~#slides .inner {
    margin-left: -200%;
}

#frame4:checked~#slides .inner {
    margin-left: -300%;
}

#slides .inner {
    transition: margin-left 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
    width: 400%;
    line-height: 0;
    height: 300px;
}

#slides .frame {
    width: 25%;
    float: left;
    display: inline-table;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: BLACK;
}



#controls {
    margin: -180px 0 0 0;
    width: 100%;
    height: 50px;
    z-index: 3;
    position: relative;
}

#controls label {
    transition: opacity 0.2s ease-out;
    display: none;
    width: 50px;
    height: 50px;
    opacity: .4;
}

#controls label:hover {
    opacity: 1;
}

#frame1:checked~#controls label:nth-child(2),
#frame2:checked~#controls label:nth-child(3),
#frame3:checked~#controls label:nth-child(4),
#frame4:checked~#controls label:nth-child(1) {
    background:
        url(https://image.flaticon.com/icons/svg/130/130884.svg) no-repeat;
    float: right;
    margin: 0 -50px 0 0;
    display: block;
}

#frame1:checked~#controls label:nth-last-child(2),
#frame2:checked~#controls label:nth-last-child(3),
#frame3:checked~#controls label:nth-last-child(4),
#frame4:checked~#controls label:nth-last-child(1) {
    background:
        url(https://image.flaticon.com/icons/svg/130/130882.svg) no-repeat;
    float: left;
    margin: 0 0 0 -50px;
    display: block;
}

#bullets {
    margin: 10px 0 0;
    text-align: center;
}

#bullets label {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #ccc;
    margin: 0 10px;
}



@media screen and (max-width: 900px) {

    #frame1:checked~#controls label:nth-child(2),
    #frame2:checked~#controls label:nth-child(3),
    #frame3:checked~#controls label:nth-child(4),
    #frame4:checked~#controls label:nth-child(1),
    #frame1:checked~#controls label:nth-last-child(2),
    #frame2:checked~#controls label:nth-last-child(3),
    #frame3:checked~#controls label:nth-last-child(4),
    #frame4:checked~#controls label:nth-last-child(1) {
        margin: 0;
    }

    #slides {
        max-width: calc(100% - 140px);
        margin: 0 auto;
    }
}



.tab {
    overflow: hidden;


    text-align: center;
}

@media screen and (max-width:567px) {
    #pidd {
        padding: 0px !important;
    }
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;

    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
    text-align: center;
    color: grey;
}

/* Change background color of buttons on hover */
.tab button:hover {
    color: black;
}

/* Create an active/current tablink class */
.tab button.active {

    border-bottom: 1px solid black;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    padding-top: 50px;
    border-top: none;
    text-align: center;
}

@media screen and (max-width:567px) {

    .smart_home.mapsect .row {
        flex-direction: column-reverse;
    }
}


.accordion {
    border-radius: 1px;
    color: #444;
    /* cursor: pointer; */
    padding: 14px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 13px;
    transition: 0.4s;
    margin-top: -10px;
}

.active,
.accordion:hover {
    background-color: #fff0;
    border: 1px solid white
}


.panel {
    padding: 0px 10px !important;
    background-color: #f2f2f2;
    max-height: 0;
    overflow: hidden;
    font-family: sans-serif;
    transition: max-height 0.2s ease-out;
}

@media screen and (max-width:567px) {
    #wmobile {
        height: 270px !important;
    }

    #jdhs {
        margin-left: 70px !important;
    }

    #uidid {
        margin-top: 0px !important;
        padding: 0px !important;
    }

    #bantextid {
        font-size: 30px !important;
    }
}

#aliid {
    font-family: 'Calibri', sans-serif !important;
    font-size: 16px;
    padding: 8px;
}


#iframehw {
    height: 600px;
    width: 100%;
}

@media screen and (max-width:567px) {
    #iframehw {
        width: 100%;
        height: 300px !important;
    }

    #maing {
        font-size: 26px !important;
        padding-top: 20px;
    }

    .progallery {
        padding: 0px;
    }

    #picture-features {
        padding: 0px;
    }

    #h44id {
        font-size: 18px !important;
    }
}

#maing {
    color: black;
    text-align: center;
    font-size: 38px;
    padding: 5px 0px;
    margin-top: -5px;
    position: relative;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 15px;
}

#maing::after,
#maing::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 1px solid #ddd;
}

#maing::before {
    border-bottom: 3px solid var(--colorSecondary);
    width: 50%;
    bottom: -1px;
    z-index: 1;
    left: 25%;
}

.sticky-icon {
    z-index: 1;
    position: fixed;
    top: 40%;
    right: 0%;
    width: 220px;
    display: flex;
    flex-direction: column;
}

.sticky-icon a {
    transform: translate(160px, 0px);
    border-radius: 50px 0px 0px 50px;
    text-align: left;
    margin: 2px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px;
    font-size: 18px;
    font-family: 'Oswald', sans-serif;
    transition: all 0.8s;
}

.sticky-icon a:hover {
    color: #FFF;
    transform: translate(0px, 0px);
}

.sticky-icon a:hover i {
    transform: rotate(360deg);
}

/*.search_icon a:hover i  {
    transform:rotate(360deg);}*/
.Facebook {
    background-color: #2C80D3;
    color: #FFF;
}

.Youtube {
    background-color: black;
    color: white;
}


.Instagram {
    background-color: #FD1D1D;
    color: #FFF;
}


.sticky-icon a i {
    background-color: #FFF;
    height: 40px;
    width: 40px;
    color: #000;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 20px;
    transition: all 0.5s;
}

.sticky-icon a i.fa-facebook-f {
    background-color: #FFF;
    color: #2C80D3;
}



.sticky-icon a i.fa-instagram {
    background-color: #FFF;
    color: #FD1D1D;
}


#myBtn {
    height: 50px;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    text-align: center;
    padding: 10px;
    text-align: center;
    line-height: 40px;
    border: none;
    outline: none;
    background-color: #1e88e5;
    color: white;
    cursor: pointer;
    border-radius: 50%;
}

.fa-arrow-circle-up {
    font-size: 30px;
}

#myBtn:hover {
    background-color: #555;
}

.form-control {
    padding: 10px !important;
}


@media screen and (max-width:567px) {
    .bgptn {
        padding: 0px 10px !important;
    }

    .bgptn1 {
        padding: 0px 0px !important;
    }

}


.bgptn {
    padding: 0px 100px;
}

.bgptn1 {
    padding: 0px 100px;
}

.site-footer {
    position: relative;
    background: linear-gradient(135deg, #1c2a44, #0f1a2e);
    color: #fff;
    overflow: hidden;
}

.footer-line-art {
    position: absolute;
    inset: 0;
    background:
        url('/images/footer1.png') bottom center / 100% auto no-repeat;
    background-position: bottom center;
    background-size: cover;
    /* opacity: 0.18; */
    pointer-events: none;
}

.footer-content {
    position: relative;
    padding: 50px 20px 10px 20px;
    z-index: 2;
}

/* FOOTER CSS STARTS HERE */
.copyright p {
    margin: 0;
    font-size: 16px;
    color: #000;
    font-family: 'poppinssemibold';
}


@media only screen and (max-width: 768px) {
    .top-footer {
        padding: 0px 0px 50px;
    }

    footer {
        padding-bottom: 50px;
    }

    .copyright p {
        font-size: 12px;
    }
}

/* Pill Button Styling */
.pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    /* background: linear-gradient(135deg, #14aeb9 0%, #00c9e0 100%); */
    background: linear-gradient(135deg, #00a3d3 0%, #00c9e0 100%);
    color: #fff;
    padding: 5px 7px 5px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 163, 211, 0.3);
    border: none;
    cursor: pointer;
}

.pill-btn:hover {
    box-shadow: 0 6px 20px rgba(0, 163, 211, 0.5);
    transform: translateY(-2px);
}

.pill-text {
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
}

.pill-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    margin-left: 8px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.pill-btn:hover .pill-icon {
    transform: scale(1.1);
}

.pill-icon svg {
    width: 20px;
    height: 20px;
}

/* Download Icon Animation */
@keyframes bounceDownload {
    0% {
        transform: translateY(-5px);
    }

    50% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(-5px);
    }
}

@keyframes moveLeftRight {
    0% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(-5px);
    }
}

@keyframes wobble {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-15deg);
    }

    75% {
        transform: rotate(15deg);
    }
}

.fa-download.animate-flip {
    animation: bounceDownload 1.5s infinite ease-in-out;
    display: inline-block;
}

.value-card {
    background-color: #115782;
    /* background-color: #edf0f0; */
    border: 1px solid #333;
    border-radius: 12px;
    transition: all 0.3s ease;
    padding: 25px 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(164, 138, 53, 0.2);
    border-color: var(--colorGolden);
    background: linear-gradient(135deg, var(--colorPrimary) 0%, var(--colorSecondary) 100%);
    color: #fff;
}

.value-card i,
.value-card svg {
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.value-card:hover i,
.value-card:hover svg {
    color: #fff;
    transform: scale(1.1);
}

.value-card h6 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

/* Floating Buttons */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    animation: bounceBtn 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.float-call {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background-color: #0c8f96;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    animation: bounceBtn 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.my-float {
    margin-top: 0px;
}

.float-whatsapp:hover,
.float-call:hover {
    color: #fff;
    text-decoration: none;
}

@keyframes bounceBtn {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}