@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Jost:ital,wght@0,100..900;1,100..900&family=Merienda:wght@300..900&family=Outfit:wght@100..900&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Salsa&display=swap');

:root {
    --tanspot-font: "Josefin Sans", sans-serif;
    --tanspot-font-two: "Outfit", sans-serif;
    --tanspot-gray: #585b6b;
    --tanspot-gray-rgb: 88, 91, 107;
    --tanspot-base: #C59B53;
    --tanspot-base-rgb: 253, 85, 35;
    --tanspot-primary: #F4F5F9;
    --tanspot-primary-rgb: 244, 245, 249;
    --tanspot-black: #112E51;
    --tanspot-black-rgb: 6, 47, 58;
    --tanspot-white: #ffffff;
    --tanspot-white-rgb: 255, 255, 255;
    --tanspot-bdr-color: #e6e6e6;
    --tanspot-bdr-color-rgb: 230, 230, 230;
    --tanspot-bdr-radius: 10px;
}

.row {
    --bs-gutter-x: 30px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

body {
    font-family: var(--tanspot-font);
    color: var(--tanspot-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

body.locked {
    overflow: hidden;
}

a {
    color: var(--tanspot-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--tanspot-font);
    color: var(--tanspot-black);
    margin: 0;
}

p {
    margin: 0;
    font-family: var(--tanspot-font-two);
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

/*=============== scrollbar-Css =============*/

.xs-sidebar-widget::-webkit-scrollbar {
    width: 0px;
}

@media (min-width: 1320px) {
    .container {
        max-width: 1320px;
    }
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

/*** chat popup ***/

.chat-popup {
    position: fixed;
    left: 0;
    bottom: 0px;
    width: 350px;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    background: var(--tanspot-black);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
    border-radius: 10px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transform: translateX(-100%);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
}

.chat-popup.popup-visible {
    transform: translateX(0%);
    visibility: visible;
    opacity: 1;
}

.chat-popup .popup-inner {
    position: relative;
    display: block;
    padding: 40px 35px;
    padding-top: 32px;
}

.chat-popup .close-chat {
    position: absolute;
    display: flex;
    left: 0px;
    top: -55px;
    width: 60px;
    height: 55px;
    line-height: 44px;
    text-align: center;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    background: var(--tanspot-base);
    cursor: pointer;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    align-items: center;
    justify-content: center;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.chat-popup .popup-inner p {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, .70);
}

.chat-popup .chat-form .form-group {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.chat-popup .chat-form .form-group:last-child {
    margin-bottom: 0px;
}

.chat-popup .chat-form .form-group input[type='text'],
.chat-popup .chat-form .form-group input[type='email'],
.chat-popup .chat-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 5px;
    font-size: 13px;
    color: rgba(255, 255, 255, .70);
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, .10);
    transition: all 500ms ease;
}

.chat-popup .chat-form .form-group textarea {
    height: 120px;
    resize: none;
}

.chat-popup .chat-form .form-group input:focus,
.chat-popup .chat-form .form-group textarea:focus {
    outline: none;
}

.chat-popup .chat-form .form-group button {
    border: none;
}

.chat-popup .chat-form .form-group .thm-btn::before,
.chat-popup .chat-form .form-group .thm-btn::after {
    background-color: var(--tanspot-white);
}

.chat-popup .chat-form .form-group .thm-btn:hover {
    color: var(--tanspot-base);
}

.chat-popup .chat-form .form-group .thm-btn:hover>span {
    background-color: var(--tanspot-base);
    color: var(--tanspot-white);
}

.chat-icon {
    position: fixed;
    display: inline-block;
    left: 30px;
    bottom: 45px;
    z-index: 99;
}

.chat-icon button {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 47px;
    text-align: center;
    font-size: 20px;
    color: #fff;
    border-radius: 5px;
    background: var(--tanspot-base);
    z-index: 1;
    border: none;
}

.chat-icon button:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background-color: rgba(var(--tanspot-base-rgb), .20);
    border-radius: 5px;
    z-index: -1;
}

/***
=============================================
xs sidebar
=============================================
***/

.xs-sidebar-group .xs-overlay {
    left: 0%;
    top: 0;
    position: fixed;
    height: 100%;
    opacity: 0;
    width: 100%;
    visibility: hidden;
    -webkit-transition: all .4s ease-in .8s;
    -o-transition: all .4s ease-in .8s;
    transition: all .4s ease-in .8s;
    cursor: url(../images/icon/cross-out.png), pointer;
    z-index: 99999;
}

.xs-sidebar-group.isActive .xs-overlay {
    opacity: .8;
    visibility: visible;
    -webkit-transition: all .8s ease-out 0s;
    -o-transition: all .8s ease-out 0s;
    transition: all .8s ease-out 0s;
    right: 100%;
}

.xs-sidebar-group .widget-heading {
    position: absolute;
    top: 0;
    right: 0;
    padding: 25px;
}

.xs-sidebar-group .widget-heading a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.xs-sidebar-group .widget-heading a:hover {
    color: var(--tanspot-base);
    border-color: var(--tanspot-base);
}

.xs-sidebar-widget {
    position: fixed;
    left: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 360px;
    z-index: 999999;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    visibility: hidden;
    opacity: 0;
    border-right: 5px solid rgba(var(--tanspot-white-rgb), .50);
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    left: 0;
    background-color: var(--tanspot-black);
    -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
    -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
    transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
    padding: 70px 30px;
}

.sidebar-widget-container {
    position: relative;
    top: 150px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease-in .3s;
    -o-transition: all .3s ease-in .3s;
    transition: all .3s ease-in .3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
    top: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 1s ease-out 1.2s;
    -o-transition: all 1s ease-out 1.2s;
    transition: all 1s ease-out 1.2s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .8;
    z-index: 0;
}

.xs-bg-black {
    background-color: #000000;
}

.xs-sidebar-group .content-inner .logo {
    position: relative;
    max-width: 172px;
    width: 100%;
    margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.xs-sidebar-group .content-inner .content-box {
    margin-bottom: 30px;
    padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box p {
    color: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
    position: relative;
    margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
    margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type='text'],
.xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    font-size: 15px;
    padding: 10px 20px;
    color: var(--tanspot-gray);
    border: none;
    border-radius: var(--tanspot-bdr-radius);
    outline: none;
    transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
    resize: none;
    height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
    border-color: #00224f;
}

.xs-sidebar-group .content-inner .form-inner .form-group button {
    position: relative;
    border: none;
}

.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn::before,
.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn::after {
    background-color: var(--tanspot-white);
}

.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn:hover {
    color: var(--tanspot-black);
}

.sidebar-contact-info {
    position: relative;
    display: block;
    padding-top: 43px;
}

.sidebar-contact-info ul {
    position: relative;
    display: block;
    padding-bottom: 22px;
}

.sidebar-contact-info ul li {
    position: relative;
    display: block;
    color: var(--tanspot-white);
    line-height: 30px;
}

.sidebar-contact-info ul li span {
    position: relative;
    display: inline-block;
    width: 25px;
}

.sidebar-contact-info ul li span:before {
    position: relative;
    display: inline-block;
    color: #ffffff;
}

.sidebar-contact-info ul li a {
    color: var(--tanspot-white);
}

.sidebar-contact-info ul li a:hover {
    color: var(--tanspot-base);
}

.xs-sidebar-group .content-inner .thm-social-link1 {
    overflow: hidden;
}

.thm-social-link1 {
    position: relative;
    display: block;
}

.thm-social-link1 ul {
    position: relative;
}

.thm-social-link1 ul li {
    position: relative;
    display: inline-block;
    margin-right: 6px;
}

.thm-social-link1 ul li:last-child {
    margin-right: 0;
}

.thm-social-link1 ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(var(--tanspot-white-rgb), .10);
    border-radius: 50%;
    color: var(--tanspot-white);
    font-size: 15px;
    text-align: center;
    z-index: 1;
    transition: all 500ms ease;
}

.thm-social-link1 ul li a:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: var(--tanspot-base);
    border-radius: 50%;
    transition: .5s;
    transform: scale(.5);
    opacity: 0;
    content: '';
    z-index: -1;
}

.thm-social-link1 ul li a:hover:before {
    transform: scale(1);
    opacity: 1;
}

.thm-social-link1 ul li a:hover {
    color: var(--tanspot-white);
}

/*=============== scrollbar-Css =============*/

.xs-sidebar-widget::-webkit-scrollbar {
    width: 0px;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/

.custom-cursor__cursor {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 1px solid var(--tanspot-base);
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    -webkit-transform: translate(calc(-50% + 5px), -50%);
    transform: translate(calc(-50% + 5px), -50%);
    z-index: 999991;
}

.custom-cursor__cursor-two {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--tanspot-base);
    opacity: .3;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    -webkit-transition: width .3s, height .3s, opacity .3s;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 999991;
}

.custom-cursor__hover {
    background-color: var(--tanspot-base);
    opacity: 0.4;
}

.custom-cursor__innerhover {
    width: 25px;
    height: 25px;
    opacity: .4;
}

/*---------------------------------
     Preloader CSS
-----------------------------------*/

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 20000;
    overflow-x: hidden !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader div {
    width: 20px;
    height: 20px;
    margin: 0 10px 0;
    border-radius: 50px;
    transform-origin: 50% 0;
    display: inline-block;
    animation: bouncing 1.4s linear infinite;
}

.loader div:last-child {
    margin: 0;
}

.loader div:nth-child(1) {
    background-color: rgba(var(--tanspot-base-rgb), 1.0);
}

.loader div:nth-child(2) {
    background-color: rgba(var(--tanspot-base-rgb), 0.70);
    animation-delay: 0.2s;
}

.loader div:nth-child(3) {
    background-color: rgba(var(--tanspot-base-rgb), 0.40);
    animation-delay: 0.4s;
}

@keyframes bouncing {

    0%,
    100% {
        transform: translateY(0) scale(1, 1);
        animation-timing-function: ease-in;
    }

    45% {
        transform: translateY(50px) scale(1, 1);
        animation-timing-function: linear;
    }

    50% {
        transform: translateY(50px) scale(1.5, 0.5);
        animation-timing-function: linear;
    }

    55% {
        transform: translateY(50px) scale(1, 1);
        animation-timing-function: ease-out;
    }
}

/* scroll to top */

.scroll-to-top {
    display: flex;
    align-items: center;
    width: auto;
    height: 35px;
    background: transparent;
    position: fixed;
    bottom: 60px;
    right: -12px;
    z-index: 99;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: rotate(-90deg);
    cursor: pointer;
    transition: all 0.2s ease;
}

.scroll-to-top:hover {
    color: var(--tanspot-base);
}

.scroll-to-top__text {
    display: inline;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-left: 10px;
}

.scroll-to-top__wrapper {
    display: inline-block;
    width: 30px;
    height: 4px;
    background-color: var(--tanspot-base);
    position: relative;
    overflow: hidden;
}

.scroll-to-top__inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--tanspot-black);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 70px;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 120px;
    width: 100%;
    z-index: 99999;
    transform: translateY(-100%);
    transition: all 0.5s;
}

.search-active .search-popup {
    transform: translateY(0%);
}

.search-popup .color-layer {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 120px;
    width: 100%;
    background-color: var(--tanspot-base);
    transition: all 0.5s;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.05);
}

.sidenav-bar-visible .search-popup {
    display: none;
}

.search-popup .close-search {
    position: absolute;
    right: 25px;
    top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0%;
    cursor: pointer;
    color: #ffffff;
    font-size: 30px;
    transition: all 0.5s;
    border: none;
    opacity: 0;
    transform: translateX(100px);
    visibility: hidden;
    z-index: 9999;
}

.search-popup .close-search:hover {
    color: var(--tanspot-base);
    background-color: rgba(255, 255, 255, 1.0);
}

.search-active .search-popup .close-search {
    opacity: 1;
    transform: translateX(0px);
    visibility: visible;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 25px;
    left: 0px;
    right: 0px;
    margin: 0px auto 0;
    opacity: 0;
    transition: all 0.5s;
    z-index: 999;
}

.search-active .search-popup form {
    opacity: 1;
}

.search-popup .form-group {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
    position: relative;
    display: block;
    background-color: rgba(255, 255, 255, 1.0);
    font-size: 18px;
    color: var(--tanspot-black);
    height: 70px;
    width: 100%;
    padding: 10px 30px 10px 75px;
    font-weight: 500;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    text-transform: capitalize;
    border: 0px solid rgba(0, 0, 0, 0.10)
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"]:focus {
    outline: none;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 70px;
    background: var(--tanspot-black);
    text-align: center;
    font-size: 20px;
    color: var(--tanspot-white);
    padding: 0;
    cursor: pointer;
    border: none;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    width: 60px;
}

.search-popup .form-group button i {
    font-style: normal;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
    background-color: rgba(var(--tanspot-base-rgb), 0.5);
    color: var(--tanspot-black);
}

.search-popup input::placeholder {
    color: var(--tanspot-black);
}

/* Section Title Css */

.section-title {
    position: relative;
    display: block;
    margin-top: -10px;
    margin-bottom: 48px;
    z-index: 1;
}

.section-title__tagline-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.section-title__tagline {
    position: relative;
    display: block;
    font-family: var(--tanspot-font-two);
    color: var(--tanspot-base);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
}

.section-title__tagline-border {
    position: relative;
    display: block;
    width: 40px;
    border: 1px dashed var(--tanspot-base);
}

.section-title__shape-1 {
    position: absolute;
    left: 8px;
    top: -4px;
    transform: rotate(180deg);
}

.section-title__shape-1>i {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--tanspot-base);
    animation: l-r-move 2s linear infinite;
}

.section-title__shape-2 {
    position: absolute;
    right: 8px;
    top: -4px;
}

.section-title__shape-2>i {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--tanspot-base);
    animation: l-r-move 2s linear infinite;
}

.section-title__title {
    font-size: 46px;
    line-height: 1.2em;
    font-weight: 700;
}

.section-title__title span {
    color: var(--tanspot-base);
}

@keyframes l-r-move {

    0%,
    100% {
        transform: translateX(0);
    }

    25%,
    75% {
        transform: translateX(10px);
    }

    50% {
        transform: translateX(-10px);
    }
}

.section-title__title .split-line {
    text-transform: none;
}

/* Thm Btn Css */

.thm-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    vertical-align: middle;
    -webkit-appearance: none;
    outline: none !important;
    background-color: var(--tanspot-base);
    color: var(--tanspot-white);
    font-size: 17px;
    line-height: 17px;
    font-weight: 600;
    padding: 5px 30px 5px;
    padding-right: 8px;
    overflow: hidden;
    border-radius: 30px;
    transition: all 0.5s linear;
    text-transform: capitalize;
    z-index: 1;
}

.thm-btn>span {
    position: relative;
    font-size: 15px;
    height: 44px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--tanspot-black);
    border-radius: 50%;
    color: var(--tanspot-white);
    transition: all 0.5s linear;
}

.thm-btn:hover>span {
    background-color: var(--tanspot-white);
    color: var(--tanspot-base);
}

.thm-btn>span>i {
    position: relative;
    display: inline-block;
}

.thm-btn:hover>span>i {
    -webkit-animation: bounceright .3s alternate ease infinite;
    animation: bounceright .3s alternate ease infinite;
}

.thm-btn::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 50%;
    height: 0;
    visibility: hidden;
    background-color: var(--tanspot-black);
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.thm-btn:hover:before {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.thm-btn::after {
    position: absolute;
    background-color: var(--tanspot-black);
    bottom: 0;
    right: 0;
    content: "";
    width: 50%;
    height: 0;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.thm-btn:hover::after {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.thm-btn:hover {
    color: var(--tanspot-white);
}

.thm-btn-two {
    border-radius: 30px;
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/

.main-header {
    position: relative;
    display: block;
    width: 100%;
    background: transparent;
    transition: all 500ms ease;
    z-index: 999;
}

.main-menu__top {
    position: relative;
    display: block;
    z-index: 1;
}

.main-menu__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 5px 55px 5px;
    background-color: var(--tanspot-black);
    z-index: 1;
}

.main-menu__top-inner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    right: 0;
    bottom: 0;
    background-color: var(--tanspot-base);
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    z-index: -1;
}

.main-menu__contact-list {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu__contact-list li {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu__contact-list li+li {
    margin-left: 46px;
}

.main-menu__contact-list li:before {
    content: "";
    position: absolute;
    top: -3px;
    bottom: 2px;
    left: -23px;
    width: 1px;
    background-color: rgba(var(--tanspot-white-rgb), .30);
}

.main-menu__contact-list li:first-child:before {
    display: none;
}

.main-menu__contact-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu__contact-list li .icon i {
    font-size: 18px;
    color: var(--tanspot-white);
    position: relative;
    display: inline-block;
}

.main-menu__contact-list li .text {
    margin-left: 10px;
}

.main-menu__contact-list li .text p {
    font-size: 16px;
    font-weight: 400;
    color: var(--tanspot-white);
    line-height: 16px;
}

.main-menu__contact-list li .text p a {
    color: var(--tanspot-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu__contact-list li .text p a:hover {
    color: var(--tanspot-base);
}

.main-menu__top-welcome-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--tanspot-white);
    text-transform: capitalize;
    font-family: var(--tanspot-font-two);
    line-height: 18px;
}

.main-menu__top-right {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.main-menu__top-time {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.main-menu__top-time-icon {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.main-menu__top-time-icon span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--tanspot-white);
}

.main-menu__top-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--tanspot-white);
    line-height: 16px;
    margin-left: 10px;
}

.main-menu__social {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.main-menu__social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border: 1px solid rgba(var(--tanspot-white-rgb), .40);
    border-radius: 5px;
    font-size: 15px;
    color: var(--tanspot-white);
    background-color: transparent;
    overflow: hidden;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    z-index: 1;
}

.main-menu__social a:hover {
    color: var(--tanspot-base);
    border: 1px solid var(--tanspot-white);
}

.main-menu__social a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--tanspot-white);
    transform: scale(0.5);
    border-radius: 5px;
    opacity: 0;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    z-index: -1;
}

.main-menu__social a:hover::before {
    transform: scale(1.0);
    opacity: 1;
}

.main-menu__social a+a {
    margin-left: 5px;
}

.main-menu {
    position: relative;
    display: block;
}

.main-menu__wrapper {
    position: relative;
    display: block;
}

.main-menu__wrapper-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 55px;
}

.main-menu__left {
    position: relative;
    display: block;
}

/* .main-menu__left::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: -14px;
  background-color: var(--tanspot-base);
  clip-path: polygon(0 0, 72% 0, 100% 100%, 0% 100%);
  opacity: .60;
  z-index: -1;
} */
/* .main-menu__left::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--tanspot-base);
    clip-path: polygon(0 0, 76% 0, 100% 100%, 0% 100%);
    z-index: -1;
} */

.main-menu__logo {
    position: relative;
    display: block;
    padding: 5px 0;
    /* padding-right: 60px; */
    z-index: 1;
}

/* .main-menu__logo::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1000000px;
    right: 100%;
    background-color: var(--tanspot-base);
    z-index: -1;
} */

.main-menu__main-menu-box {
    display: block;
}

.main-menu__right {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 18px 0;
}

.main-menu__call {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu__call-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: var(--tanspot-base);
    border-radius: 50%;
    color: var(--tanspot-white);
    font-size: 18px;
    top: 3px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu__call-icon:hover {
    background-color: var(--tanspot-black);
    color: var(--tanspot-white);
}

.main-menu__call-content {
    position: relative;
    display: block;
    top: 3px;
    margin-left: 10px;
}

.main-menu__call-sub-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--tanspot-gray);
    line-height: 16px;
    font-family: var(--tanspot-font-two);
    text-transform: capitalize;
}

.main-menu__call-number {
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
    margin-top: 6px;
}

.main-menu__call-number a {
    color: var(--tanspot-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu__call-number a:hover {
    color: var(--tanspot-base);
}

.main-menu__search-cart-box {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu__search-box {
    position: relative;
    display: block;
}

.main-menu__search {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: var(--tanspot-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu__search:hover {
    color: var(--tanspot-base);
}

.main-menu__cart-box {
    position: relative;
    display: block;
    margin-left: 20px;
}

.main-menu__cart {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: var(--tanspot-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu__cart-count {
    position: absolute;
    top: -15px;
    right: -15px;
    height: 20px;
    width: 20px;
    font-size: 10px;
    line-height: 10px;
    font-weight: 500;
    background-color: var(--tanspot-base);
    color: var(--tanspot-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu__cart:hover {
    color: var(--tanspot-base);
}

.main-menu__nav-sidebar-icon {
    position: relative;
    display: block;
}

.main-menu__nav-sidebar-icon .navSidebar-button {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    padding-right: 11px;
    height: 45px;
    width: 45px;
    background-color: var(--tanspot-base);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.icon-dots-menu-one {
    position: relative;
    display: block;
    width: 15px;
    height: 3px;
    background-color: var(--tanspot-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-one {
    width: 22px;
}

.icon-dots-menu-two {
    position: relative;
    display: block;
    width: 22px;
    height: 3px;
    background-color: var(--tanspot-white);
    margin-top: 5px;
    margin-bottom: 5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.icon-dots-menu-three {
    position: relative;
    display: block;
    width: 18px;
    height: 3px;
    background-color: var(--tanspot-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-three {
    width: 22px;
}

.stricky-header.main-menu {
    background-color: var(--tanspot-white);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
}

@media (min-width: 1200px) {

    .main-menu .main-menu__list,
    .main-menu .main-menu__list>li>ul,
    .main-menu .main-menu__list>li>ul>li>ul,
    .stricky-header .main-menu__list,
    .stricky-header .main-menu__list>li>ul,
    .stricky-header .main-menu__list>li>ul>li>ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
    padding-top: 35px;
    padding-bottom: 35px;
    position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
    margin-left: 30px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--tanspot-black);
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 20px;
    font-family: var(--tanspot-font-two);
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
    color: var(--tanspot-base);
}

.main-menu .main-menu__list>li>a::before,
.stricky-header .main-menu__list>li>a::before {
    content: "";
    height: 2px;
    border-radius: 0px;
    background-color: var(--tanspot-base);
    position: absolute;
    bottom: -3px;
    left: 0px;
    right: 0px;
    transition: transform 500ms ease;
    transform: scale(0, 1);
    transform-origin: left center;
    z-index: 1;
}

.main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
    transform: scale(1, 1);
    transform-origin: right center;
}

.main-menu .main-menu__list>li.dropdown>a {
    padding-right: 15px;
}

.main-menu .main-menu__list>li.dropdown>a:after {
    position: absolute;
    top: 56%;
    right: 0;
    font-family: "Font Awesome 5 Pro";
    content: "\f107";
    font-size: 14px;
    color: var(--tanspot-black);
    transform: translateY(-50%);
    font-weight: 400;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.main-menu .main-menu__list>li.current>a::after,
.main-menu .main-menu__list>li:hover>a::after,
.stricky-header .main-menu__list>li.current>a::after,
.stricky-header .main-menu__list>li:hover>a::after {
    color: var(--tanspot-base);
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--tanspot-white);
    min-width: 290px;
    padding: 25px 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    border-bottom-left-radius: var(--tanspot-bdr-radius);
    border-bottom-right-radius: var(--tanspot-bdr-radius);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    transform: perspective(500px) rotatex(-20deg);
    transform-origin: 50% 0%;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
}

.shadow-box {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
    display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: perspective(500px) rotatex(0);
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
    position: relative;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
    border-top: 1px solid rgba(var(--tanspot-black-rgb), 0.10);
    margin-top: 0px;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
    position: relative;
    display: flex;
    align-items: center;
    color: rgba(var(--tanspot-black-rgb), 1);
    font-size: 17px;
    line-height: 17px;
    font-weight: 600;
    font-family: var(--tanspot-font-two);
    text-transform: capitalize;
    padding: 16px 0px 16px;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
    color: rgba(var(--tanspot-base-rgb), 1.0);
    padding-left: 5px;
}

.main-menu .main-menu__list>li>ul>li>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li>a::before {
    position: absolute;
    top: 50%;
    right: 20px;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    content: "\f105";
    font-size: 14px;
    color: var(--tanspot-base);
    transform: translateY(-50%) scale(0);
    -webkit-transition: 500ms;
    transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a::before {
    transform: translateY(-50%) scale(1);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
    top: 0;
    left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
    top: 0;
    left: auto;
    right: 100%;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu,
.main-menu-three__main-menu-box .main-menu__list>.megamenu,
.main-menu-two__main-menu-box .main-menu__list>.megamenu,
.main-menu__wrapper .main-menu__list>.megamenu {
    position: static;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu__wrapper .main-menu__list>.megamenu>ul {
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background-color: transparent;
}

.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu__wrapper .main-menu__list>.megamenu>ul>li {
    padding: 0 !important;
}

.stricky-header {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    visibility: hidden;
    -webkit-transform: translateY(-120%);
    transform: translateY(-120%);
    -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
    -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
    .stricky-header {
        display: none !important;
    }
}

.stricky-header.stricky-fixed {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
}

.stricky-header .main-menu__inner {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-right: 0;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
}

.mobile-nav__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: 10px;
}

@media (min-width: 1200px) {
    .mobile-nav__buttons {
        display: none;
    }
}

.mobile-nav__buttons a {
    font-size: 20px;
    color: var(--tanspot-base);
    cursor: pointer;
}

.mobile-nav__buttons a+a {
    margin-left: 10px;
}

.mobile-nav__buttons a:hover {
    color: var(--tanspot-base);
}

.main-menu .mobile-nav__toggler {
    font-size: 20px;
    color: var(--tanspot-base);
    cursor: pointer;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
    color: var(--tanspot-black);
}

@media (min-width: 1200px) {
    .main-menu .mobile-nav__toggler {
        display: none;
    }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/

.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    visibility: hidden;
}

.mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
}

.mobile-nav__wrapper.expanded {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    visibility: visible;
    -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.5;
    cursor: pointer;
}

.mobile-nav__content {
    width: 300px;
    background-color: var(--tanspot-black);
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: var(--tanspot-white);
    cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
    display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    line-height: 30px;
    color: #ffffff;
    font-size: 14px;
    font-family: var(--tanspot-font, "Rubik", sans-serif);
    font-weight: 500;
    height: 46px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
    color: var(--tanspot-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
    color: var(--tanspot-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
    width: 30px;
    height: 30px;
    background-color: var(--tanspot-base);
    border: none;
    outline: none;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
    padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    background-color: #fff;
    color: var(--tanspot-base);
}

/* no menu after 2rd level dropdown */

.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
    display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
    position: relative;
    top: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
    font-size: 16px;
}

.mobile-nav__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
    color: var(--tanspot-text-dark);
}

.mobile-nav__container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-nav__social a {
    font-size: 16px;
    color: var(--tanspot-white);
    -webkit-transition: 500ms;
    transition: 500ms;
}

.mobile-nav__social a+a {
    margin-left: 30px;
}

.mobile-nav__social a:hover {
    color: var(--tanspot-base);
}

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mobile-nav__contact li {
    color: var(--tanspot-text-dark);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-nav__contact li+li {
    margin-top: 15px;
}

.mobile-nav__contact li a {
    color: #ffffff;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.mobile-nav__contact li a:hover {
    color: var(--tanspot-base);
}

.mobile-nav__contact li>i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--tanspot-base);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    font-size: 11px;
    margin-right: 10px;
    color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
    display: none;
}

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/

.home-showcase {
    margin-top: -25px;
    margin-bottom: -25px;
}

.home-showcase__inner {
    padding: 40px 42px 30px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.home-showcase .row {
    --bs-gutter-x: 42px;
    --bs-gutter-y: 20px;
}

.home-showcase__item {
    position: relative;
    display: block;
    margin-bottom: 7px;
}

.home-showcase__image {
    position: relative;
    overflow: hidden;
    background-color: rgb(0, 0, 0, 0.10);
    padding: 1px;
    border-radius: var(--tanspot-bdr-radius);
}

.home-showcase__image>img {
    width: 100%;
    transition: filter 500ms ease;
    filter: blur(0px);
}

.home-showcase__image:hover>img {
    filter: blur(2px);
}

.home-showcase__buttons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: scale(1, 0);
    transition: transform 800ms ease, opacity 600ms linear;
    transform-origin: bottom center;
    opacity: 0.70;
    z-index: 1;
}

.home-showcase__image:hover .home-showcase__buttons {
    transform: scale(1, 1);
    opacity: 1.0;
    transform-origin: top center;
}

.home-showcase__buttons::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: -ms-linear-gradient(left, #222222 0%, #222222 100%);
    background-image: -moz-linear-gradient(left, #222222 0%, #222222 100%);
    background-image: -o-linear-gradient(left, #222222 0%, #222222 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #222222), color-stop(100, #222222));
    background-image: -webkit-linear-gradient(left, #222222 0%, #222222 100%);
    background-image: linear-gradient(to right, #222222 0%, #222222 100%);
    opacity: 1;
    transform: perspective(500px) rotatex(-20deg);
    transform-origin: 50% 0%;
    -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
    -khtml-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
    -moz-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
    -ms-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
    -o-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    z-index: -1;
}

.home-showcase__image:hover .home-showcase__buttons::before {
    opacity: 0.90;
    visibility: visible;
    transform: perspective(500px) rotatex(0);
}

.home-showcase__buttons__item {
    padding: 5px 20px 5px;
    padding-right: 8px;
    width: 175px;
    justify-content: center;
    text-align: center;
    color: var(--tanspot-white);
}

.home-showcase__buttons__item::before,
.home-showcase__buttons__item::after {
    background-color: var(--tanspot-white);
}

.home-showcase__buttons__item:hover {
    color: var(--tanspot-black);
}

.home-showcase__buttons__item:hover>span {
    background-color: var(--tanspot-base);
    color: var(--tanspot-white);
}

.home-showcase__buttons__item+.home-showcase__buttons__item {
    margin-top: 10px;
}

.home-showcase__title {
    margin: 0;
    text-align: center;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    color: var(--tanspot-black);
    margin-top: 18px;
    text-transform: capitalize;
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase__inner {
    padding: 15px 0px;
    background-color: rgba(0, 0, 0, 0);
}

.mobile-nav__wrapper .home-showcase__title {
    color: var(--tanspot-white, #ffffff);
}

.mobile-nav__content .home-showcase {
    margin-top: 0;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/

.main-header-two {
    position: relative;
    display: block;
    width: 100%;
    background: transparent;
    transition: all 500ms ease;
    z-index: 999;
}

.main-menu-two__top {
    position: relative;
    display: block;
    z-index: 1;
}

.main-menu-two__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 5px 55px 5px;
    background-color: var(--tanspot-black);
    z-index: 1;
}

.main-menu-two__top-inner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 50%;
    bottom: 0;
    background-color: var(--tanspot-base);
    clip-path: polygon(100% 0, 97% 50%, 100% 100%, 0 100%, 0 0);
    z-index: -1;
}

.main-menu-two__contact-list {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-two__contact-list li {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-two__contact-list li+li {
    margin-left: 46px;
}

.main-menu-two__contact-list li:before {
    content: "";
    position: absolute;
    top: -3px;
    bottom: 2px;
    left: -23px;
    width: 1px;
    background-color: rgba(var(--tanspot-white-rgb), .30);
}

.main-menu-two__contact-list li:first-child:before {
    display: none;
}

.main-menu-two__contact-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-two__contact-list li .icon i {
    font-size: 18px;
    color: var(--tanspot-white);
    position: relative;
    display: inline-block;
}

.main-menu-two__contact-list li .text {
    margin-left: 10px;
}

.main-menu-two__contact-list li .text p {
    font-size: 16px;
    font-weight: 400;
    color: var(--tanspot-white);
    line-height: 16px;
}

.main-menu-two__contact-list li .text p a {
    color: var(--tanspot-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-two__contact-list li .text p a:hover {
    color: var(--tanspot-base);
}

.main-menu-two__top-right {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.main-menu-two__top-time {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.main-menu-two__top-time-icon {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.main-menu-two__top-time-icon span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--tanspot-white);
}

.main-menu-two__top-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--tanspot-white);
    line-height: 16px;
    margin-left: 10px;
}

.main-menu-two__social {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.main-menu-two__social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border: 1px solid rgba(var(--tanspot-white-rgb), .40);
    border-radius: 5px;
    font-size: 15px;
    color: var(--tanspot-white);
    background-color: transparent;
    overflow: hidden;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    z-index: 1;
}

.main-menu-two__social a:hover {
    color: var(--tanspot-base);
    border: 1px solid var(--tanspot-white);
}

.main-menu-two__social a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--tanspot-white);
    transform: scale(0.5);
    border-radius: 5px;
    opacity: 0;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    z-index: -1;
}

.main-menu-two__social a:hover::before {
    transform: scale(1.0);
    opacity: 1;
}

.main-menu-two__social a+a {
    margin-left: 5px;
}

.main-menu-two__wrapper {
    position: relative;
    display: block;
}

.main-menu-two__wrapper-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 55px;
}

.main-menu-two__left {
    display: block;
}

.main-menu-two__logo {
    display: block;
    padding: 25px 0;
    z-index: 1;
}

.main-menu-two__main-menu-box {
    display: block;
}

.main-menu-two__right {
    position: relative;
    display: block;
    z-index: 1;
}

.main-menu-two__right:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    right: -10000000px;
    background-color: var(--tanspot-base);
    z-index: -1;
}

.main-menu-two__right-content {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 18px 0 18px;
    padding-left: 60px;
    background-color: var(--tanspot-base);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 5% 50%);
}

.main-menu-two__call {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-two__call-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: var(--tanspot-black);
    border-radius: 50%;
    color: var(--tanspot-white);
    font-size: 18px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-two__call-icon:hover {
    background-color: var(--tanspot-white);
    color: var(--tanspot-base);
}

.main-menu-two__call-content {
    position: relative;
    display: block;
    margin-left: 10px;
}

.main-menu-two__call-sub-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--tanspot-white);
    line-height: 16px;
    font-family: var(--tanspot-font-two);
    text-transform: capitalize;
}

.main-menu-two__call-number {
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
    margin-top: 6px;
}

.main-menu-two__call-number a {
    color: var(--tanspot-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-two__call-number a:hover {
    color: var(--tanspot-black);
}

.main-menu-two__search-cart-box {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-two__search-box {
    position: relative;
    display: block;
}

.main-menu-two__search {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: var(--tanspot-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-two__search:hover {
    color: var(--tanspot-black);
}

.main-menu-two__cart-box {
    position: relative;
    display: block;
    margin-left: 20px;
}

.main-menu-two__cart {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: var(--tanspot-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-two__cart-count {
    position: absolute;
    top: -15px;
    right: -15px;
    height: 20px;
    width: 20px;
    font-size: 10px;
    line-height: 10px;
    font-weight: 500;
    background-color: var(--tanspot-black);
    color: var(--tanspot-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-two__cart:hover {
    color: var(--tanspot-black);
}

.main-menu-two__nav-sidebar-icon {
    position: relative;
    display: block;
}

.main-menu-two__nav-sidebar-icon .navSidebar-button {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    padding-right: 11px;
    height: 45px;
    width: 45px;
    background-color: var(--tanspot-black);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-two__nav-sidebar-icon .icon-dots-menu-one {
    position: relative;
    display: block;
    width: 15px;
    height: 3px;
    background-color: var(--tanspot-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-two__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-one {
    width: 22px;
}

.main-menu-two__nav-sidebar-icon .icon-dots-menu-two {
    position: relative;
    display: block;
    width: 22px;
    height: 3px;
    background-color: var(--tanspot-white);
    margin-top: 5px;
    margin-bottom: 5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-two__nav-sidebar-icon .icon-dots-menu-three {
    position: relative;
    display: block;
    width: 18px;
    height: 3px;
    background-color: var(--tanspot-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-two__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-three {
    width: 22px;
}

.main-menu-two__btn-box {
    position: relative;
    display: block;
}

.main-menu-two__btn-box .thm-btn {
    background-color: var(--tanspot-black);
}

.main-menu-two__btn-box .thm-btn>span {
    background-color: var(--tanspot-base);
}

.main-menu-two__btn-box .thm-btn::before,
.main-menu-two__btn-box .thm-btn::after {
    background-color: var(--tanspot-white);
}

.main-menu-two__btn-box .thm-btn:hover {
    color: var(--tanspot-base);
}

.main-menu-two__btn-box .thm-btn:hover>span {
    background-color: var(--tanspot-black);
    color: var(--tanspot-white);
}

.stricky-header.main-menu-two {
    background-color: var(--tanspot-white);
}

/*--------------------------------------------------------------
# Navigations three
--------------------------------------------------------------*/

.main-header-three {
    position: relative;
    display: block;
    width: 100%;
    background: transparent;
    transition: all 500ms ease;
    z-index: 999;
}

.main-menu-three__top {
    position: relative;
    display: block;
    background-color: #03222b;
    z-index: 5;
}

.main-menu-three__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 7.5px 0px 7.5px;
    z-index: 1;
}

.main-menu-three__top-inner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    right: 0;
    bottom: 0;
    background-color: var(--tanspot-black);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 5% 100%);
    z-index: -1;
}

.main-menu-three__top-inner:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 99%;
    right: -10000000px;
    background-color: var(--tanspot-black);
    z-index: -1;
}

.main-menu-three__contact-list {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-three__contact-list li {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-three__top-menu li:before {
    content: "";
    position: absolute;
    top: 6px;
    left: -10px;
    bottom: 6px;
    width: 1px;
    background-color: var(--tanspot-white);
    transform: rotate(15deg);
}

.main-menu-three__top-menu li:first-child:before {
    display: none;
}

.main-menu-three__contact-list li+li {
    margin-left: 46px;
}

.main-menu-three__contact-list li:before {
    content: "";
    position: absolute;
    top: 7px;
    bottom: 7px;
    left: -23px;
    width: 1px;
    background-color: rgba(var(--tanspot-white-rgb), .40);
}

.main-menu-three__contact-list li:first-child:before {
    display: none;
}

.main-menu-three__contact-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-three__contact-list li .icon i {
    font-size: 16px;
    color: var(--tanspot-white);
}

.main-menu-three__contact-list li .text {
    margin-left: 10px;
}

.main-menu-three__contact-list li .text p {
    font-size: 16px;
    color: var(--tanspot-white);
}

.main-menu-three__contact-list li .text p a {
    color: var(--tanspot-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-three__contact-list li .text p a:hover {
    color: var(--tanspot-base);
}

.main-menu-three__top-text {
    color: var(--tanspot-white);
}

.main-menu-three__top-right {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.main-menu-three__language-switcher {
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 19px;
    margin-right: 12px;
}

.main-menu-three__language-switcher::before {
    position: absolute;
    top: 7px;
    right: 0;
    bottom: 8px;
    width: 1px;
    background: var(--tanspot-white);
    content: "";
    opacity: .30;
}

.main-menu-three__language-switcher .icon {
    position: relative;
    display: block;
    margin-right: 12px;
}

.main-menu-three__language-switcher .icon span {
    position: relative;
    display: inline-block;
    color: var(--tanspot-white);
    font-size: 18px;
    line-height: 18px;
}

.main-menu-three__language-switcher .language-switcher {
    position: relative;
    display: block;
}

.main-menu-three__language-switcher .language-switcher form {
    position: relative;
    display: block;
    width: 48px;
}

.main-menu-three__language-switcher .language-switcher form .select-box {
    position: relative;
    display: block;
}

.main-menu-three__language-switcher .nice-select {
    background-color: var(--tanspot-black);
    border-radius: 0px;
    color: var(--tanspot-white);
    font-size: 16px;
    font-weight: 600;
    height: 30px;
    line-height: 30px;
    outline: none;
    padding-left: 0px;
    padding-right: 0px;
    width: 100%;
    font-family: var(--tanspot-font);
}

.main-menu-three__language-switcher .nice-select:after {
    right: 0px;
    margin-top: -6px;
    border-bottom: 1px solid var(--tanspot-white);
    border-right: 1px solid var(--tanspot-white);
}

.main-menu-three__language-switcher .nice-select .list {
    width: 65px;
    background-color: var(--tanspot-base);
}

.main-menu-three__social {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.main-menu-three__social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    border: 1px solid rgba(var(--tanspot-white-rgb), .20);
    border-radius: 5px;
    font-size: 14px;
    color: var(--tanspot-white);
    background-color: transparent;
    overflow: hidden;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    z-index: 1;
}

.main-menu-three__social a:hover {
    color: var(--tanspot-base);
    border: 1px solid var(--tanspot-white);
}

.main-menu-three__social a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--tanspot-white);
    transform: scale(0.5);
    border-radius: 5px;
    opacity: 0;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    z-index: -1;
}

.main-menu-three__social a:hover::before {
    transform: scale(1.0);
    opacity: 1;
}

.main-menu-three__social a+a {
    margin-left: 10px;
}

.main-menu-three__wrapper {
    position: relative;
    display: block;
}

.main-menu-three__wrapper-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main-menu-three__left {
    position: relative;
    display: block;
    z-index: 1;
}

.main-menu-three__left:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -10000000px;
    right: 99%;
    background-color: var(--tanspot-base);
    z-index: -1;
}

.main-menu-three__logo {
    display: block;
    padding: 25px 0;
    padding-right: 40px;
    background-color: var(--tanspot-base);
    clip-path: polygon(100% 0, 90% 50%, 100% 100%, 0 100%, 0 0);
}

.main-menu-three__main-menu-box {
    display: block;
}

.main-menu-three__right {
    position: relative;
    display: block;
    z-index: 1;
}

.main-menu-three__right:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 99%;
    right: -10000000px;
    background-color: var(--tanspot-base);
    z-index: -1;
}

.main-menu-three__right-content {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 18px 0 18px;
    padding-left: 40px;
    background-color: var(--tanspot-base);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 7% 50%);
}

.main-menu-three__search-cart-box {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-three__search-box {
    position: relative;
    display: block;
}

.main-menu-three__search {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: var(--tanspot-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-three__search:hover {
    color: var(--tanspot-black);
}

.main-menu-three__cart-box {
    position: relative;
    display: block;
    margin-left: 20px;
}

.main-menu-three__cart {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: var(--tanspot-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-three__cart-count {
    position: absolute;
    top: -15px;
    right: -15px;
    height: 20px;
    width: 20px;
    font-size: 10px;
    line-height: 10px;
    font-weight: 500;
    background-color: var(--tanspot-black);
    color: var(--tanspot-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-three__cart:hover {
    color: var(--tanspot-black);
}

.main-menu-three__btn-box {
    position: relative;
    display: block;
}

.main-menu-three__btn-box .thm-btn {
    background-color: var(--tanspot-black);
}

.main-menu-three__btn-box .thm-btn>span {
    background-color: var(--tanspot-base);
}

.main-menu-three__btn-box .thm-btn::before,
.main-menu-three__btn-box .thm-btn::after {
    background-color: var(--tanspot-white);
}

.main-menu-three__btn-box .thm-btn:hover {
    color: var(--tanspot-base);
}

.main-menu-three__btn-box .thm-btn:hover>span {
    background-color: var(--tanspot-black);
    color: var(--tanspot-white);
}

.stricky-header.main-menu-three {
    background-color: var(--tanspot-white);
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/* Premium Banner Wrapper & Reset */

.premium-banner-wrapper {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    box-sizing: border-box;
    background-color: #112E51;
    /* Deep Navy Blue */
    display: flex;
    justify-content: center;
}

/* Base Main Slider Container */

.banner-slider-container {
    max-width: 100%px;
    width: 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 5;
    box-shadow: 0 20px 40px rgba(17, 46, 81, 0.15);
}

/* Infinite Track Layout */

.banner-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Individual Slide Settings */

.banner-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Unified Floating Controls Overlay (Modern Glassmorphism Concept) */

.slider-controls-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(17, 46, 81, 0.65);
    /* Navy with Alpha Blur */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid rgba(197, 155, 83, 0.3);
    /* Gold Tint Border */
    z-index: 10;
}

/* Minimalist Navigation Buttons */

.slider-arrow1 {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-arrow1 svg {
    width: 24px;
    height: 24px;
    fill: #C59B53;
    /* Luxury Gold */
    transition: fill 0.3s ease;
}

.slider-arrow1:hover {
    background: rgba(197, 155, 83, 0.2);
}

.slider-arrow1:hover svg {
    fill: #ffffff;
}

/* Modern Line-style Indicators */

.slider-indicators1 {
    display: flex;
    gap: 10px;
    align-items: center;
}

.indicator-dot {
    width: 20px;
    height: 3px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.indicator-dot.active {
    width: 40px;
    background: #C59B53;
    /* Highlight Gold */
}

/* Responsive Fallbacks for Legacy Browsers without aspect-ratio support */

@media (max-width: 768px) {
    .slider-controls-overlay {
        bottom: 15px;
        padding: 8px 18px;
        gap: 14px;
    }

    .indicator-dot {
        width: 14px;
    }

    .indicator-dot.active {
        width: 28px;
    }
}

/* Mobile View Optimization (Devices up to 768px) */

@media (max-width: 768px) {
    .banner-slider-container {
        /* Fixed the malformed max-width value from max-width: 100%px */
        max-width: 100%;
        /* Change aspect ratio to a taller format so images don't look squished on mobile */
        aspect-ratio: 4 / 3;
        /* Soften the drop shadow slightly for smaller screens to keep it clean */
        box-shadow: 0 10px 25px rgba(17, 46, 81, 0.12);
    }

    /* Ensures the slider image fills the new taller aspect ratio beautifully without stretching */
    .banner-slide img {
        object-fit: cover;
        object-position: center;
    }

    /* Compact the floating controls overlay to fit touch targets nicely */
    .slider-controls-overlay {
        bottom: 16px;
        padding: 8px 16px;
        gap: 12px;
    }

    /* Make indicators slightly shorter to maximize space */
    .indicator-dot {
        width: 12px;
        height: 3px;
    }

    .indicator-dot.active {
        width: 24px;
    }

    /* Adjust arrow buttons slightly for mobile finger tapping */
    .slider-arrow {
        width: 32px;
        height: 32px;
    }
}

.rera-about {
    background: var(--tanspot-primary);
    padding: 30px 0;
    /* Replace 'Poppins' below with your project font-family */
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
}

.rera-about * {
    box-sizing: border-box;
}

/* ---------------------------------------------------------------
     IMAGE BLOCK (left column - 2 images + stat card, separated)
  --------------------------------------------------------------- */

.about-gallery {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: auto 1fr;
    gap: 22px;
    height: 540px;
    position: relative;
}

.gallery-main {
    grid-row: 1 / 3;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 50px -20px rgba(11, 26, 43, 0.35);
}

.gallery-main img,
.gallery-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-main:hover img,
.gallery-accent:hover img {
    transform: scale(1.05);
}

/* gold corner bracket accent - ties back to the brand mark */

.gallery-main::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    width: 38px;
    height: 38px;
    border-top: 3px solid var(--tanspot-base);
    border-left: 3px solid var(--tanspot-base);
    z-index: 2;
    opacity: 0.9;
}

.gallery-badge {
    grid-row: 1;
    background: #0B1A2B;
    border-radius: 18px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 20px 40px -18px rgba(11, 26, 43, 0.45);
}

.gallery-badge .badge-num {
    font-size: 44px;
    font-weight: 700;
    color: var(--tanspot-base);
    line-height: 1;
}

.gallery-badge .badge-text {
    font-size: 14.5px;
    color: #F4F1EA;
    line-height: 1.4;
    font-weight: 500;
}

.gallery-accent {
    grid-row: 2;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px -18px rgba(11, 26, 43, 0.35);
}

/* ---------------------------------------------------------------
     CONTENT BLOCK (right column)
  --------------------------------------------------------------- */

.about-content {
    max-width: 560px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--tanspot-base);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-tag::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--tanspot-base);
    display: inline-block;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    color: #0B1A2B;
    margin: 0 0 22px;
    letter-spacing: -0.5px;
}

.section-title .accent {
    color: var(--tanspot-base);
}

.section-desc {
    font-size: 16px;
    line-height: 1.85;
    color: #5B6472;
    margin: 0 0 36px;
    text-align: justify;
    text-justify: inter-word;
}

.section-desc .highlight {
    color: #0B1A2B;
    font-weight: 600;
    background: linear-gradient(transparent 65%, rgba(197, 155, 83, 0.28) 65%);
    padding: 0 1px;
}

/* ---------------------------------------------------------------
     FEATURES GRID
  --------------------------------------------------------------- */

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-right: 4px;
}

.feature-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--tanspot-primary);
    border: 1px solid rgba(197, 155, 83, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--tanspot-base);
    transform: translateY(-3px);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-icon svg path,
.feature-icon svg circle,
.feature-icon svg rect {
    stroke: var(--tanspot-base);
    transition: stroke 0.3s ease;
}

.feature-item:hover .feature-icon svg path,
.feature-item:hover .feature-icon svg circle,
.feature-item:hover .feature-icon svg rect {
    stroke: #0B1A2B;
}

.feature-text h3 {
    font-size: 15px;
    font-weight: 700;
    color: #0B1A2B;
    margin: 4px 0 6px;
    line-height: 1.35;
}

.feature-text p {
    font-size: 15px;
    line-height: 1.6;
    text-align: justify;
    margin: 0;
}

/* ---------------------------------------------------------------
     SCROLL-IN ANIMATION
  --------------------------------------------------------------- */

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------------------------------------------------------
     RESPONSIVE
  --------------------------------------------------------------- */

@media (max-width: 991px) {
    .about-gallery {
        height: auto;
    }

    .gallery-main {
        min-height: 360px;
    }

    .gallery-badge {
        min-height: 140px;
    }

    .gallery-accent {
        min-height: 200px;
    }

    .about-content {
        max-width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .rera-about {
        padding: 60px 0;
    }

    .about-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .gallery-main {
        grid-row: 1;
        grid-column: 1 / 3;
        min-height: 280px;
    }

    .gallery-badge {
        grid-row: 2;
        grid-column: 1;
        min-height: 160px;
        padding: 20px;
    }

    .gallery-accent {
        grid-row: 2;
        grid-column: 2;
        min-height: 160px;
    }

    .gallery-badge .badge-num {
        font-size: 32px;
    }

    .gallery-badge .badge-text {
        font-size: 12.5px;
    }

    .section-title {
        font-size: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-desc {
        text-align: left;
    }
}

.rera-projects {
    background: #ffffff;
    padding: 30px 0;
    /* Replace 'Poppins' with your project font-family */
    /* font-family: 'Poppins', 'Segoe UI', Arial, sans-serif; */
}

/* ---------------------------------------------------------------
     HEADER (row col-lg-12, centered)
  --------------------------------------------------------------- */

.projects-header {
    /* max-width: 680px; */
    margin: 0 auto 56px;
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--tanspot-base);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--tanspot-base);
    display: inline-block;
}

.projects-header .section-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    color: #0B1A2B;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.projects-header .section-title .accent {
    color: var(--tanspot-base);
}

.projects-header .section-desc {
    font-size: 17px;
    line-height: 1.85;
    color: #5B6472;
    text-align: center;
}

/* ---------------------------------------------------------------
     SLIDER SHELL
  --------------------------------------------------------------- */

.projects-slider {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
}

.projects-viewport {
    overflow: hidden;
}

.projects-track {
    display: flex;
}

.project-slide {
    flex: 0 0 33.3333%;
    padding: 0 14px;
}

@media (max-width: 991px) {
    .project-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 575px) {
    .project-slide {
        flex: 0 0 100%;
    }
}

/* ---------------------------------------------------------------
     PROJECT CARD
  --------------------------------------------------------------- */

.project-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px -16px rgba(11, 26, 43, 0.18);
    border: 1px solid rgba(11, 26, 43, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 46px -20px rgba(11, 26, 43, 0.28);
}

.project-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.07);
}

.project-badge {
    position: absolute;
    top: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 7px 14px;
    border-radius: 30px;
    white-space: nowrap;
}

.badge-gold {
    left: 16px;
    background: var(--tanspot-base);
    color: #0B1A2B;
}

.badge-dark {
    right: 16px;
    background: #0B1A2B;
    color: #F4F1EA;
}

.project-body {
    padding: 24px 22px 26px;
}

.project-title {
    font-size: 19px;
    font-weight: 700;
    color: #0B1A2B;
    margin: 0 0 8px;
    line-height: 1.35;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    color: #8A93A3;
    margin: 0 0 20px;
    font-weight: 500;
}

.project-location svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    stroke: var(--tanspot-base);
}

.project-stats {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(11, 26, 43, 0.08);
    padding-top: 18px;
}

.stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat:last-child {
    align-items: flex-end;
    text-align: right;
}

.stat-label {
    font-size: 14px;
    color: #8A93A3;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.stat-value {
    font-size: 16px;
    color: #0B1A2B;
    font-weight: 700;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(11, 26, 43, 0.08);
    margin: 0 16px;
}

/* ---------------------------------------------------------------
     ARROWS
  --------------------------------------------------------------- */

.slider-arrow {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(197, 155, 83, 0.4);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 10px 24px -12px rgba(11, 26, 43, 0.25);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.slider-arrow:hover {
    background: var(--tanspot-base);
    border-color: var(--tanspot-base);
}

.slider-arrow svg {
    width: 18px;
    height: 18px;
}

.slider-arrow svg path {
    stroke: #0B1A2B;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s ease;
}

.slider-arrow:hover svg path {
    stroke: #ffffff;
}

.slider-arrow.prev {
    left: -22px;
}

.slider-arrow.next {
    right: -22px;
}

@media (max-width: 1200px) {
    .slider-arrow.prev {
        left: 6px;
    }

    .slider-arrow.next {
        right: 6px;
    }
}

@media (max-width: 575px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        top: 32%;
    }
}

/* ---------------------------------------------------------------
     INDICATORS
  --------------------------------------------------------------- */

.slider-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(11, 26, 43, 0.15);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}

.slider-dot.is-active {
    width: 30px;
    border-radius: 6px;
    background: var(--tanspot-base);
}

/* ---------------------------------------------------------------
     SCROLL-IN
  --------------------------------------------------------------- */

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 575px) {
    .projects-header .section-title {
        font-size: 28px;
    }

    .rera-projects {
        padding: 60px 0;
    }

    .projects-header {
        margin-bottom: 36px;
    }
}

.project-cta {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(11, 26, 43, 0.08);
    text-align: center;
}

.btn-view-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 30px;
    border: 1.5px solid var(--tanspot-base);
    border-radius: 30px;
    background: transparent;
    color: #0B1A2B;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: color 0.35s ease;
}

.btn-view-more::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--tanspot-base);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: -1;
}

.btn-view-more:hover {
    color: #ffffff;
}

.btn-view-more:hover::before {
    transform: scaleX(1);
}

.btn-view-more svg {
    width: 15px;
    height: 15px;
    stroke: #0B1A2B;
    transition: transform 0.35s ease, stroke 0.35s ease;
}

.btn-view-more:hover svg {
    transform: translateX(4px);
    stroke: #ffffff;
}

.rera-cta {
    position: relative;
    /* Replace 'Poppins' with your project font-family */
    /* font-family: 'Poppins', 'Segoe UI', Arial, sans-serif; */
    padding: 30px 0;
    background-image: url(../images/reva/cta.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 26, 43, 0.92) 0%, rgba(11, 26, 43, 0.78) 50%, rgba(11, 26, 43, 0.90) 100%);
    z-index: 1;
}

/* gold corner brackets - brand signature */

.cta-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--tanspot-base);
    opacity: 0.5;
    z-index: 2;
    pointer-events: none;
}

.cta-corner.tl {
    top: 32px;
    left: 32px;
    border-right: none;
    border-bottom: none;
}

.cta-corner.br {
    bottom: 32px;
    right: 32px;
    border-left: none;
    border-top: none;
}

@media (max-width: 575px) {
    .cta-corner {
        width: 36px;
        height: 36px;
    }

    .cta-corner.tl {
        top: 18px;
        left: 18px;
    }

    .cta-corner.br {
        bottom: 18px;
        right: 18px;
    }
}

/* ---------------------------------------------------------------
     CONTENT (row col-lg-12, centered)
  --------------------------------------------------------------- */

.rera-cta .container {
    position: relative;
    z-index: 3;
}

.cta-content {
    /* max-width: 720px; */
    margin: 0 auto;
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--tanspot-base);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--tanspot-base);
    display: inline-block;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
}

.cta-title .accent {
    color: var(--tanspot-base);
}

.cta-desc {
    font-size: 17px;
    line-height: 1.85;
    color: rgba(244, 241, 234, 0.82);
    /* max-width: 600px; */
    margin: 0 auto 40px;
}

/* ---------------------------------------------------------------
     ACTIONS : Call Us + Contact Us
  --------------------------------------------------------------- */

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* --- Call Us pill --- */

.cta-call {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 26px 10px 10px;
    border: 1.5px solid rgba(244, 241, 234, 0.25);
    border-radius: 50px;
    background: rgba(244, 241, 234, 0.06);
    backdrop-filter: blur(6px);
    text-decoration: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.cta-call:hover {
    border-color: var(--tanspot-base);
    background: rgba(244, 241, 234, 0.1);
}

.call-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--tanspot-base);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.call-icon svg {
    width: 20px;
    height: 20px;
    stroke: #0B1A2B;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.call-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.3;
}

.call-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--tanspot-base);
}

.call-number {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

/* --- Contact Us button --- */

.cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 38px;
    border: 1.5px solid var(--tanspot-base);
    border-radius: 50px;
    background: var(--tanspot-base);
    color: #0B1A2B;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: color 0.35s ease, background 0.35s ease;
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease;
    z-index: -1;
}

.cta-btn:hover {
    color: #0B1A2B;
}

.cta-btn:hover::before {
    transform: scaleX(1);
}

.cta-btn svg {
    width: 16px;
    height: 16px;
    stroke: #0B1A2B;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.35s ease;
}

.cta-btn:hover svg {
    transform: translateX(4px);
}

/* ---------------------------------------------------------------
     SCROLL-IN
  --------------------------------------------------------------- */

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------------------------------------------------------
     RESPONSIVE
  --------------------------------------------------------------- */

@media (max-width: 767px) {
    .rera-cta {
        padding: 80px 0;
        background-attachment: scroll;
    }

    .cta-title {
        font-size: 30px;
    }

    .cta-desc {
        font-size: 14.5px;
        margin-bottom: 32px;
    }

    .cta-actions {
        flex-direction: column;
        gap: 18px;
    }

    .cta-call {
        width: 100%;
        max-width: 320px;
        justify-content: flex-start;
    }

    .cta-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

.rera-why {
    background: var(--tanspot-primary);
    padding: 40px 0;
    /* Replace 'Poppins' with your project font-family */
    /* font-family: 'Poppins', 'Segoe UI', Arial, sans-serif; */
}

/* ---------------------------------------------------------------
     HEADER (row col-lg-12, centered)
  --------------------------------------------------------------- */

.why-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--tanspot-base);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--tanspot-base);
    display: inline-block;
}

.why-header .section-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    color: #0B1A2B;
    margin: 0;
    letter-spacing: -0.5px;
}

.why-header .section-title .accent {
    color: var(--tanspot-base);
}

/* ---------------------------------------------------------------
     IMAGE (col-lg-6)
  --------------------------------------------------------------- */

.why-image {
    position: relative;
    padding-bottom: 40px;
    padding-right: 36px;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3.6;
    box-shadow: 0 25px 55px -22px rgba(11, 26, 43, 0.3);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.why-image:hover .image-frame img {
    transform: scale(1.05);
}

/* gold corner bracket - brand signature */

.image-frame::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    width: 40px;
    height: 40px;
    border-top: 3px solid var(--tanspot-base);
    border-left: 3px solid var(--tanspot-base);
    z-index: 2;
    opacity: 0.9;
}

/* floating badge card */

.why-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #0B1A2B;
    border-radius: 16px;
    padding: 22px 26px;
    max-width: 280px;
    box-shadow: 0 20px 40px -18px rgba(11, 26, 43, 0.45);
    z-index: 3;
}

.why-badge .badge-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--tanspot-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-badge .badge-icon svg {
    width: 22px;
    height: 22px;
    stroke: #0B1A2B;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-badge .badge-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #F4F1EA;
}

/* ---------------------------------------------------------------
     CONTENT (col-lg-6)
  --------------------------------------------------------------- */

.why-content {
    max-width: 560px;
}

.why-desc {
    font-size: 16px;
    line-height: 1.85;
    color: #5B6472;
    margin: 0 0 36px;
    text-align: justify;
    text-justify: inter-word;
}

.why-desc .highlight {
    color: #0B1A2B;
    font-weight: 600;
}

.why-list {
    display: flex;
    flex-direction: column;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(11, 26, 43, 0.08);
}

.why-item:first-child {
    padding-top: 0;
}

.why-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.why-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(197, 155, 83, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.why-item:hover .why-icon {
    background: var(--tanspot-base);
    transform: translateY(-3px);
}

.why-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--tanspot-base);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s ease;
}

.why-item:hover .why-icon svg {
    stroke: #0B1A2B;
}

.why-text h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0B1A2B;
    margin: 4px 0 6px;
    line-height: 1.4;
}

.why-text p {
    font-size: 14px;
    line-height: 1.7;
    color: #8A93A3;
    margin: 0;
}

/* ---------------------------------------------------------------
     SCROLL-IN
  --------------------------------------------------------------- */

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------------------------------------------------------
     RESPONSIVE
  --------------------------------------------------------------- */

@media (max-width: 991px) {
    .why-image {
        padding-right: 0;
        padding-bottom: 70px;
        max-width: 460px;
        margin: 0 auto;
    }

    .image-frame {
        aspect-ratio: 4 / 3.6;
    }

    .why-content {
        max-width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 575px) {
    .rera-why {
        padding: 60px 0;
    }

    .why-header {
        margin-bottom: 44px;
    }

    .why-header .section-title {
        font-size: 28px;
    }

    .why-badge {
        max-width: 220px;
        padding: 16px 18px;
        gap: 12px;
    }

    .why-badge .badge-icon {
        width: 40px;
        height: 40px;
    }

    .why-badge .badge-text {
        font-size: 12.5px;
    }

    .why-desc {
        text-align: left;
    }

    .why-item {
        gap: 14px;
        padding: 18px 0;
    }

    .why-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }

    .why-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* ==========================================
   FADE-UP CSS ANIMATION ENGINE
   ========================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up-animation {
    opacity: 0;
    /* Prevents flash of unstyled content before animation starts */
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
}

/* Section Wrapper */

.testimonial-section {
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 4rem 1.5rem;
    box-sizing: border-box;
}

/* Modern Circle Card Design */

.testimonial-circle-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    padding: 3.5rem 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-circle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
}

/* Centered Avatar Structure */

.avatar-wrapper {
    margin-bottom: 1.25rem;
}

.avatar-image {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f1f5f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Strict 3-Line Justified Description */

.testimonial-desc {
    overflow: hidden;
    text-align: center;
    font-size: 17px;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 1.25rem 0;
    max-width: 100%;
}

/* 5 Star Rating */

.star-rating {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

/* Identity Typography */

.client-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.client-role {
    font-size: 0.75rem;
    color: var(--tanspot-base);
    font-weight: 600;
    margin: 0.25rem 0 0 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Customized Slider Indicators (Dots) */

.swiper-pagination-bullet {
    background: #cbd5e1 !important;
    opacity: 1 !important;
    width: 10px !important;
    height: 10px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--tanspot-base) !important;
    width: 28px !important;
    /* Pill shape slider effect */
    border-radius: 5px !important;
}

/* Header Elements */

.rv-testi-header {
    text-align: center;
    margin-bottom: 50px;
}

.rv-testi-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #C59B53;
    /* Luxury Gold */
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.rv-testi-tag::before,
.rv-testi-tag::after {
    content: '';
    width: 28px;
    height: 2px;
    background: #C59B53;
    display: inline-block;
}

.rv-testi-header .rv-testi-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    color: #112E51;
    /* Dark Navy Blue */
    margin: 0;
    letter-spacing: -0.5px;
}

.rv-testi-header .rv-testi-accent {
    color: #C59B53;
}

/* Modern Widget Title Base Styles */

.footer-widget__title {
    font-size: 23px;
    font-weight: 700;
    color: #ffffff;
    /* Bright white for dark footer backgrounds */
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

/* Base Constant Track Line (Before) */

.footer-widget__title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    /* Fixed elegant starter width */
    height: 3px;
    background-color: #112E51;
    /* Dark Navy Blue Base */
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Animated Golden Highlight Overlay Line (After) */

.footer-widget__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 15px;
    /* Short prominent gold anchor point */
    height: 3px;
    background-color: #C59B53;
    /* Luxury Gold Accent */
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover Animation Trigger */
/* Triggers when someone hovers directly over the title or the entire widget box */

.footer-widget:hover .footer-widget__title::before,
.footer-widget__title:hover::before {
    width: 70px;
    /* Expands smoothly to create a wider anchor profile */
}

.footer-widget:hover .footer-widget__title::after,
.footer-widget__title:hover::after {
    width: 45px;
    /* Gold line catches up smoothly with a classy offset gap */
}

/* Footer List Reset & Alignment */

.footer-widget__link {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-widget__link li {
    margin-bottom: 12px;
    display: block;
}

/* Base Link Styling */

.footer-widget__link li a {
    font-size: 17px;
    color: white;
    /* Light clean state text */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* Space between icon and text */
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Home Icon Base Styles */

.footer-widget__link li a i {
    font-size: 13px;
    color: #C59B53;
    /* Luxury Gold Brand Accent */
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Interactive Hover Animation Effects */

.footer-widget__link li a:hover {
    color: #ffffff;
    /* Brighten text up on hover */
    padding-left: 6px;
    /* Smooth elegant shift to the right */
}

.footer-widget__link li a:hover i {
    transform: scale(1.15);
    /* Subtle pop effect on the icon */
    color: #ffffff;
    /* Turns white dynamically to pop cleanly */
    text-shadow: 0 0 8px rgba(197, 155, 83, 0.6);
    /* Premium subtle glow */
}

/* Footer Map Wrapper Custom Styling */

.footer-widget__map-wrapper {
    width: 100%;
    margin-top: 10px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.footer-widget__map-wrapper iframe {
    display: block;
    filter: grayscale(10%) contrast(105%);
    /* Blends nicely with premium dark footers */
}

/* Subtle Hover Shift */

.footer-widget__location-map:hover .footer-widget__map-wrapper {
    transform: translateY(-2px);
}

/* ==========================================================================
   Premium Contact Section Stylesheet (RERA Ventures Palettes)
   ========================================================================== */

.rv-contact-section {
    padding: 30px 0;
    background-color: #ffffff;
    width: 100%;
}

/* Typography Headings Layout */

.rv-contact-sub {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--tanspot-base);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.rv-contact-sub::before,
.rv-contact-sub::after {
    content: '';
    width: 28px;
    height: 2px;
    background: #C59B53;
    display: inline-block;
}

.rv-contact-title {
    font-size: 36px;
    font-weight: 700;
    color: #112E51;
    /* Dark Navy Blue */
    line-height: 1.3;
    margin-bottom: 20px;
}

.rv-contact-desc {
    font-size: 17px;
    color: #4A607A;
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Flex Direction Column-Wise Contact Items Stack */

.rv-info-stack {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 40px;
}

.rv-info-row {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Luxury Circular Icon Containers */

.rv-circle-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(17, 46, 81, 0.04);
    border: 1px solid rgba(197, 155, 83, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.rv-circle-icon i {
    font-size: 18px;
    color: #C59B53;
}

.rv-info-row:hover .rv-circle-icon {
    background: #112E51;
    border-color: #112E51;
}

.rv-info-row:hover .rv-circle-icon i {
    color: #ffffff;
}

.rv-info-text {
    display: flex;
    flex-direction: column;
}

.rv-info-text label {
    font-size: 12px;
    text-transform: uppercase;
    color: #C59B53;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.rv-info-text a,
.rv-info-text span {
    font-size: 17px;
    font-weight: 600;
    color: #112E51;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.rv-info-text a:hover {
    color: #C59B53;
}

/* Social Media Row Grid */

.rv-social-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rv-social-lbl {
    font-size: 15px;
    font-weight: 700;
    color: #112E51;
}

.rv-social-links {
    display: flex;
    gap: 10px;
}

.rv-social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(17, 46, 81, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #112E51;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.rv-social-links a:hover {
    background: #C59B53;
    border-color: #C59B53;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Modern Form Group Structures */

.rv-premium-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
}

.rv-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rv-form-label {
    font-size: 14px;
    font-weight: 600;
    color: #112E51;
}

/* Input Fields Container Layout with Built-In Inner Box Icons */

.rv-field-container {
    display: flex;
    align-items: center;
    background: #F8FAFC;
    border: 1px solid rgba(17, 46, 81, 0.08);
    border-radius: 6px;
    width: 100%;
    transition: all 0.3s ease;
}

.rv-field-container.align-start {
    align-items: flex-start;
}

.rv-field-icon {
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(17, 46, 81, 0.4);
    font-size: 15px;
    flex-shrink: 0;
}

.rv-field-icon.mt-2 {
    margin-top: 12px;
}

.rv-field-container input,
.rv-field-container textarea {
    width: 100%;
    border: none;
    background: transparent;
    padding: 12px 14px 12px 0;
    font-size: 15px;
    color: #112E51;
    outline: none;
}

.rv-field-container textarea {
    resize: none;
}

/* Interactive Input Focus Highlight States */

.rv-field-container:focus-within {
    background: #ffffff;
    border-color: #C59B53;
    box-shadow: 0 4px 12px rgba(197, 155, 83, 0.08);
}

.rv-field-container:focus-within .rv-field-icon {
    color: #C59B53;
}

/* Centered Form Submit Layout Button */

.rv-form-submit-center {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}

.rv-submit-btn {
    background-color: #112E51;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 45px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(17, 46, 81, 0.15);
    transition: all 0.3s ease;
}

.rv-submit-btn:hover {
    background-color: #C59B53;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 155, 83, 0.25);
}

/* Map Display Container */

.rv-map-master-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(17, 46, 81, 0.06);
    border: 1px solid rgba(17, 46, 81, 0.05);
}

.rv-map-master-container iframe {
    display: block;
}

/* Responsive Structural Breakdowns */

@media (max-width: 991px) {
    .rv-contact-section {
        padding: 60px 0;
    }

    .rv-contact-title {
        font-size: 30px;
    }
}

/* ==========================================================================
   Premium Gallery Grid Stylesheet
   ========================================================================== */

.rv-gallery-section {
    padding: 90px 0;
    background-color: #ffffff;
    width: 100%;
}

.rv-gallery-sub {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--tanspot-base);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.rv-gallery-sub::before,
.rv-gallery-sub::after {
    content: '';
    width: 28px;
    height: 2px;
    background: #C59B53;
    display: inline-block;
}

.rv-gallery-title {
    font-size: 36px;
    font-weight: 700;
    color: #112E51;
    /* Dark Navy Blue */
    line-height: 1.3;
    margin-bottom: 0;
}

/* Card-less Clean Grid Item */

.rv-gallery-item {
    cursor: pointer;
    width: 100%;
    position: relative;
}

.rv-gallery-img-box {
    position: relative;
    width: 100%;
    height: 280px;
    /* Structured fixed uniform height grid */
    border-radius: 8px;
    overflow: hidden;
    background: #112E51;
}

.rv-gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Minimalist Clean Overlay Hover View */

.rv-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 46, 81, 0.85);
    /* Dark Navy Translucent overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.rv-gallery-overlay i {
    color: #C59B53;
    /* Gold pop button icon */
    font-size: 24px;
    transform: scale(0.6);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover Action Animating Transitions */

.rv-gallery-item:hover .rv-gallery-img-box img {
    transform: scale(1.08);
}

.rv-gallery-item:hover .rv-gallery-overlay {
    opacity: 1;
}

.rv-gallery-item:hover .rv-gallery-overlay i {
    transform: scale(1);
}

/* ==========================================================================
   Full Width Lightbox Modal Stylesheet
   ========================================================================== */

.rv-lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 26, 43, 0.98);
    /* Deep brand navy background fill */
    align-items: center;
    justify-content: center;
    user-select: none;
}

/* Stage Box Framework holding Expanded Images */

.rv-lightbox-content {
    max-width: 90%;
    max-height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rv-lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: zoomEffect 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes zoomEffect {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Top Right Outer Corner Close Toggle Style */

.rv-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 45px;
    font-weight: 300;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
    z-index: 100001;
}

.rv-lightbox-close:hover {
    color: #C59B53;
    transform: scale(1.1);
}

/* Side Next / Prev Navigations arrows layout */

.rv-lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 18px 22px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 100000;
}

.rv-lightbox-btn:hover {
    background: #C59B53;
    border-color: #C59B53;
    color: #ffffff;
}

.rv-lightbox-btn.prev {
    left: 40px;
}

.rv-lightbox-btn.next {
    right: 40px;
}

/* Responsive Adjustments */

@media (max-width: 768px) {
    .rv-gallery-section {
        padding: 60px 0;
    }

    .rv-gallery-title {
        font-size: 28px;
    }

    .rv-gallery-img-box {
        height: 240px;
    }

    /* Compact layout rules for smaller phone models */
    .rv-lightbox-btn {
        padding: 12px 16px;
        font-size: 18px;
    }

    .rv-lightbox-btn.prev {
        left: 15px;
    }

    .rv-lightbox-btn.next {
        right: 15px;
    }

    .rv-lightbox-close {
        top: 20px;
        right: 25px;
        font-size: 38px;
    }
}

.rera-about-page {
    background: #ffffff;
    padding: 30px 0;
    /* Replace 'Poppins' with your project font-family */
    /* font-family: 'Poppins', 'Segoe UI', Arial, sans-serif; */
}

/* ---------------------------------------------------------------
     HEADER (row col-lg-12, centered)
  --------------------------------------------------------------- */

.about-header {
    /* max-width: 640px; */
    margin: 0 auto 60px;
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--tanspot-base);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--tanspot-base);
    display: inline-block;
}

.about-header .section-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    color: #0B1A2B;
    margin: 0;
    letter-spacing: -0.5px;
}

.about-header .section-title .accent {
    color: var(--tanspot-base);
}

/* ---------------------------------------------------------------
     GALLERY (col-lg-6 - 2 images + decorative gold block)
  --------------------------------------------------------------- */

.about-body {
    margin-bottom: 90px;
}

.about-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 22px;
    height: 540px;
}

.gallery-img {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 45px -20px rgba(11, 26, 43, 0.28);
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-img:hover img {
    transform: scale(1.06);
}

.gallery-img--1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

.gallery-img--1::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    width: 38px;
    height: 38px;
    border-top: 3px solid var(--tanspot-base);
    border-left: 3px solid var(--tanspot-base);
    z-index: 2;
    opacity: 0.9;
}

.gallery-img--2 {
    grid-column: 2;
    grid-row: 2;
}

.gallery-decor {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    border-radius: 18px;
    background: var(--tanspot-base);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.gallery-decor::before {
    content: '\201C';
    position: absolute;
    top: -28px;
    left: 14px;
    font-size: 130px;
    font-weight: 800;
    font-family: Georgia, 'Times New Roman', serif;
    color: #0B1A2B;
    opacity: 0.12;
    line-height: 1;
}

.decor-text {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
    color: #0B1A2B;
}

/* ---------------------------------------------------------------
     CONTENT (col-lg-6 - two paragraphs, justified)
  --------------------------------------------------------------- */

.about-text {
    max-width: 560px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.85;
    color: #5B6472;
    margin: 0 0 24px;
    text-align: justify;
    text-justify: inter-word;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text .highlight {
    color: #0B1A2B;
    font-weight: 600;
}

/* ---------------------------------------------------------------
     MISSION / VISION / CORE VALUES (row col-lg-4 each)
  --------------------------------------------------------------- */

.mvv-card {
    position: relative;
    height: 100%;
    border-radius: 20px;
    padding: 44px 34px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.mvv-card:hover {
    transform: translateY(-8px);
}

.mvv-number {
    position: absolute;
    top: 18px;
    right: 26px;
    font-size: 68px;
    font-weight: 800;
    line-height: 1;
    opacity: 0.08;
}

.mvv-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.mvv-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mvv-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 14px;
    position: relative;
    z-index: 1;
}

.mvv-card p {
    font-size: 16px;
    line-height: 1.85;
    margin: 0;
    text-align: justify;
    text-justify: inter-word;
    position: relative;
    z-index: 1;
}

/* --- light card (Mission) --- */

.mvv-light {
    background: #ffffff;
    border: 1px solid rgba(11, 26, 43, 0.07);
    box-shadow: 0 16px 40px -22px rgba(11, 26, 43, 0.18);
}

.mvv-light .mvv-number {
    color: #0B1A2B;
}

.mvv-light .mvv-icon {
    background: var(--tanspot-primary);
    border: 1px solid rgba(197, 155, 83, 0.35);
}

.mvv-light .mvv-icon svg {
    stroke: var(--tanspot-base);
}

.mvv-light h3 {
    color: #0B1A2B;
}

.mvv-light p {
    color: #5B6472;
}

/* --- dark card (Vision) --- */

.mvv-dark {
    background: #0B1A2B;
    box-shadow: 0 20px 45px -20px rgba(11, 26, 43, 0.55);
}

.mvv-dark .mvv-number {
    color: #ffffff;
}

.mvv-dark .mvv-icon {
    background: rgba(244, 241, 234, 0.08);
}

.mvv-dark .mvv-icon svg {
    stroke: var(--tanspot-base);
}

.mvv-dark h3 {
    color: #ffffff;
}

.mvv-dark p {
    color: rgba(244, 241, 234, 0.75);
}

/* --- gold card (Core Values) --- */

.mvv-gold {
    background: var(--tanspot-base);
    box-shadow: 0 20px 45px -20px rgba(197, 155, 83, 0.55);
}

.mvv-gold .mvv-number {
    color: #0B1A2B;
}

.mvv-gold .mvv-icon {
    background: #0B1A2B;
}

.mvv-gold .mvv-icon svg {
    stroke: var(--tanspot-base);
}

.mvv-gold h3 {
    color: #0B1A2B;
}

.mvv-gold p {
    color: rgba(11, 26, 43, 0.75);
}

/* ---------------------------------------------------------------
     SCROLL-IN
  --------------------------------------------------------------- */

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------------------------------------------------------
     RESPONSIVE
  --------------------------------------------------------------- */

@media (max-width: 991px) {
    .about-gallery {
        height: 460px;
    }

    .about-text {
        max-width: 100%;
        margin-top: 10px;
    }

    .about-body {
        margin-bottom: 70px;
    }
}

@media (max-width: 575px) {
    .rera-about-page {
        padding: 60px 0;
    }

    .about-header {
        margin-bottom: 40px;
    }

    .about-header .section-title {
        font-size: 28px;
    }

    .about-gallery {
        height: 380px;
        gap: 14px;
    }

    .gallery-decor::before {
        font-size: 90px;
        top: -16px;
    }

    .decor-text {
        font-size: 14px;
    }

    .about-text p {
        text-align: left;
    }

    .about-body {
        margin-bottom: 50px;
    }

    .mvv-card {
        padding: 34px 26px;
    }

    .mvv-card p {
        text-align: left;
    }
}

.rera-projects-page {
    background: #ffffff;
    padding: 30px 0;
    /* Replace 'Poppins' with your project font-family */
    /* font-family: 'Poppins', 'Segoe UI', Arial, sans-serif; */
}

/* ---------------------------------------------------------------
     HEADER (row col-lg-12, centered)
  --------------------------------------------------------------- */

.page-header1 {
    /* max-width: 680px; */
    margin: 0 auto 70px;
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--tanspot-base);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--tanspot-base);
    display: inline-block;
}

.page-header1 .section-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    color: #112E51;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.page-header1 .section-title .accent {
    color: var(--tanspot-base);
}

.page-header1 .section-desc {
    font-size: 17px;
    line-height: 1.85;
    color: black;
    text-align: center !important;
    margin: 0;
}

/* ---------------------------------------------------------------
     PROJECT ROW
  --------------------------------------------------------------- */

.project-row {
    /* padding: 64px 0; */
    border-bottom: 1px solid rgba(11, 26, 43, 0.07);
}

.project-row:first-of-type {
    padding-top: 0;
}

.project-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

/* ---------------------------------------------------------------
     IMAGE SIDE (col-lg-6)
  --------------------------------------------------------------- */

.project-image-wrap {
    position: relative;
    max-width: 540px;
    margin: 0 auto;
}

.project-image-frame {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 4 / 3.3;
    box-shadow: 0 25px 55px -22px rgba(11, 26, 43, 0.3);
}

.project-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.project-image-wrap:hover .project-image-frame img {
    transform: scale(1.06);
}

.project-image-frame::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    width: 40px;
    height: 40px;
    border-top: 3px solid var(--tanspot-base);
    border-left: 3px solid var(--tanspot-base);
    z-index: 2;
    opacity: 0.9;
}

.project-number {
    position: absolute;
    bottom: -26px;
    left: 28px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #0B1A2B;
    border: 4px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--tanspot-base);
    letter-spacing: 1px;
    box-shadow: 0 14px 30px -14px rgba(11, 26, 43, 0.45);
    z-index: 3;
}

/* ---------------------------------------------------------------
     DETAILS SIDE (col-lg-6)
  --------------------------------------------------------------- */

.project-details {
    max-width: 560px;
    padding-top: 24px;
}

.project-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.project-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--tanspot-base);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.project-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--tanspot-base);
    display: inline-block;
}

.offer-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 155, 83, 0.12);
    border: 1px solid rgba(197, 155, 83, 0.4);
    color: #0B1A2B;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
}

.project-title {
    font-size: 26px;
    font-weight: 700;
    color: #0B1A2B;
    margin: 0 0 10px;
    line-height: 1.3;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 16px;
    color: #8A93A3;
    font-weight: 500;
    margin: 0 0 26px;
}

.project-location svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: var(--tanspot-base);
}

/* --- stats --- */

.project-stats1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    margin-bottom: 28px;
}

.stat-box {
    border-left: 3px solid var(--tanspot-base);
    padding-left: 14px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #8A93A3;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 4px;
}

.stat-value {
    display: block;
    font-size: 16px;
    color: #0B1A2B;
    font-weight: 700;
}

/* --- features --- */

.project-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    padding: 24px 0;
    border-top: 1px solid rgba(11, 26, 43, 0.08);
    border-bottom: 1px solid rgba(11, 26, 43, 0.08);
    margin-bottom: 28px;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-row .tick {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--tanspot-primary);
    border: 1px solid rgba(197, 155, 83, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.feature-row .tick svg {
    width: 11px;
    height: 11px;
    stroke: var(--tanspot-base);
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-row span {
    font-size: 16px;
    line-height: 1.6;
    color: #5B6472;
    font-weight: 500;
}

/* --- actions --- */

.project-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-enquire {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border: 1.5px solid var(--tanspot-base);
    border-radius: 50px;
    background: var(--tanspot-base);
    color: #0B1A2B;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: color 0.35s ease;
}

.btn-enquire::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #0B1A2B;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease;
    z-index: -1;
}

.btn-enquire:hover {
    color: #ffffff;
}

.btn-enquire:hover::before {
    transform: scaleX(1);
}

.btn-enquire svg {
    width: 15px;
    height: 15px;
    stroke: #0B1A2B;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.35s ease, transform 0.35s ease;
}

.btn-enquire:hover svg {
    stroke: #ffffff;
    transform: translateX(4px);
}

.btn-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border: 1.5px solid rgba(11, 26, 43, 0.15);
    border-radius: 50px;
    background: transparent;
    color: #0B1A2B;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.btn-location:hover {
    border-color: var(--tanspot-base);
    color: var(--tanspot-base);
}

.btn-location svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ---------------------------------------------------------------
     SCROLL-IN
  --------------------------------------------------------------- */

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------------------------------------------------------
     RESPONSIVE
  --------------------------------------------------------------- */

@media (max-width: 991px) {
    .project-details {
        max-width: 100%;
        padding-top: 48px;
    }

    .project-image-wrap {
        max-width: 480px;
    }
}

@media (max-width: 575px) {
    .rera-projects-page {
        padding: 60px 0;
    }

    .page-header {
        margin-bottom: 44px;
    }

    .page-header .section-title {
        font-size: 28px;
    }

    .project-row {
        padding: 44px 0;
    }

    .project-title {
        font-size: 23px;
    }

    .project-stats {
        gap: 14px 16px;
    }

    .project-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .project-number {
        width: 52px;
        height: 52px;
        font-size: 16px;
        left: 18px;
        bottom: -20px;
    }

    .project-details {
        padding-top: 40px;
    }

    .project-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-enquire,
    .btn-location {
        justify-content: center;
    }
}

/* ==========================================================================
   Static Testimonials Page Section (Row-by-Row Clean Layout)
   ========================================================================== */

.rv-page-testimonial-section {
    padding: 90px 0;
    background-color: #ffffff;
    width: 100%;
}

.rv-pg-testi-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #C59B53;
    /* Luxury Gold */
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.rv-pg-testi-tag::before,
.rv-pg-testi-tag::after {
    content: '';
    width: 28px;
    height: 2px;
    background: #C59B53;
    display: inline-block;
}

.rv-pg-testi-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    color: #112E51;
    /* Dark Navy Blue */
    margin: 0;
    letter-spacing: -0.5px;
}

/* Vertical Stack Container */

.rv-pg-testi-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    /* Perfect uniform row-by-row spacing */
    margin-top: 20px;
}

/* Card-less Clean Individual Row Item */

.rv-pg-testi-row-item {
    display: flex;
    align-items: flex-start;
    background: transparent;
    padding: 30px 0;
    border-bottom: 1px solid rgba(17, 46, 81, 0.08);
    /* Clean modern divider line */
    transition: transform 0.3s ease;
}

/* Keep the row item neat; subtle pop on hover */

.rv-pg-testi-row-item:hover {
    transform: translateX(5px);
}

/* Last element handles termination smoothly without a trailing border */

.rv-pg-testi-row-item:last-child {
    border-bottom: none;
}

/* Left Metadata Frame (Fixed alignment architecture) */

.rv-pg-testi-meta {
    width: 220px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

/* Minimalist Circular Avatar Box */

.rv-pg-testi-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 2px solid rgba(197, 155, 83, 0.2);
}

.rv-pg-testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rv-pg-testi-name {
    font-size: 17px;
    font-weight: 700;
    color: #112E51;
    margin: 0 0 4px 0;
}

.rv-pg-testi-role {
    font-size: 12px;
    font-weight: 600;
    color: #C59B53;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Right Content Body Frame */

.rv-pg-testi-body {
    flex-grow: 1;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rv-pg-testi-stars {
    color: #C59B53;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.rv-pg-testi-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #4A607A;
    margin: 0;
    font-style: normal;
}

/* ==========================================================================
   Mobile & Tablet Responsive Fluid Breakpoints
   ========================================================================== */

@media (max-width: 768px) {
    .rv-page-testimonial-section {
        padding: 60px 0;
    }

    .rv-pg-testi-title {
        font-size: 30px;
    }

    /* Transform row block to simple column stream for small mobile devices */
    .rv-pg-testi-row-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 0;
    }

    .rv-pg-testi-meta {
        width: 100%;
        margin-bottom: 15px;
    }

    .rv-pg-testi-avatar {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .rv-pg-testi-body {
        padding-left: 0;
    }
}

/* ==========================================================================
   Ultra-Premium Unique Box Features Layout
   ========================================================================== */

.rv-premium-features {
    padding: 30px 0;
    background-color: #F8FAFC;
    /* Light clean canvas backdrop */
    width: 100%;
}

.rv-pfx-sub {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #C59B53;
    /* Luxury Gold */
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.rv-pfx-sub::before,
.rv-pfx-sub::after {
    content: '';
    width: 28px;
    height: 2px;
    background: #C59B53;
    display: inline-block;
}

.rv-pfx-title {
    font-size: 38px;
    font-weight: 700;
    color: #112E51;
    /* Dark Navy Blue */
    line-height: 1.3;
}

/* Unique Luxury Box Container Layout */

.rv-pfx-box {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 12px;
    border: 1px solid rgba(17, 46, 81, 0.05);
    box-shadow: 0 10px 30px rgba(17, 46, 81, 0.02);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

/* Subtle Hidden Background Accent Track for Unique Trend Look */

.rv-pfx-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    /* Asymmetric top indicator line */
    background: #C59B53;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Box Header Flex Arrangement */

.rv-pfx-icon-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
}

/* Premium Icon State */

.rv-pfx-icon {
    width: 55px;
    height: 55px;
    background: rgba(197, 155, 83, 0.08);
    /* Transparent gold background base */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.rv-pfx-icon i {
    font-size: 20px;
    color: #C59B53;
    transition: all 0.4s ease;
}

/* Luxury Watermark Serialization Numbering */

.rv-pfx-number {
    font-size: 24px;
    font-weight: 800;
    color: rgba(17, 46, 81, 0.08);
    /* Clean minimalist ghost watermark */
    font-family: sans-serif;
    transition: color 0.4s ease;
}

/* Typography Headings and Body Copies */

.rv-pfx-heading {
    font-size: 22px;
    font-weight: 700;
    color: #112E51;
    margin-bottom: 14px;
    line-height: 1.4;
    transition: color 0.4s ease;
}

.rv-pfx-text {
    font-size: 17px;
    text-align: justify;
    color: #4A607A;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Hover Animation Interactivity
   ========================================================================== */

.rv-pfx-box:hover {
    transform: translateY(-8px);
    /* Smooth floating lift */
    box-shadow: 0 20px 40px rgba(17, 46, 81, 0.08);
    border-color: rgba(197, 155, 83, 0.2);
}

.rv-pfx-box:hover::before {
    transform: scaleX(1);
    /* Smoothly slides across the top edge */
}

.rv-pfx-box:hover .rv-pfx-icon {
    background: #112E51;
    /* Inverts color to contrast bold navy */
}

.rv-pfx-box:hover .rv-pfx-icon i {
    color: #ffffff;
    transform: scale(1.1);
}

.rv-pfx-box:hover .rv-pfx-number {
    color: #C59B53;
    /* Number blooms elegantly into gold code styling */
    opacity: 0.4;
}

/* ==========================================================================
   Responsive Control Rules
   ========================================================================== */

@media (max-width: 991px) {
    .rv-premium-features {
        padding: 70px 0;
    }

    .rv-pfx-title {
        font-size: 30px;
    }

    .rv-pfx-box {
        padding: 35px 25px;
        /* Optimizes padding footprint across tablet viewports */
    }
}

.ph {
    width: 50px;
    height: auto;
    display: table;
    float: right;
    position: fixed;
    z-index: 2147483647;
    top: 70%;
    left: 10px;
}

.whatsapp {
    width: 50px;
    height: auto;
    display: table;
    float: right;
    position: fixed;
    z-index: 2147483647;
    top: 80%;
    left: 10px;
}

/* Modal Overlay Background */
/* Modal Overlay Background */
.rv-modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    align-items: center;
    justify-content: center;
    /* Added padding to prevent the content box from touching screen edges on small devices */
    padding: 15px;
    box-sizing: border-box;
}

/* Modal Content Box */
.rv-modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    /* Changed from 90% to 100% since overlay padding handles layout */
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-in-out;
    box-sizing: border-box;

    /* Responsive additions to handle small/short screens gracefully */
    max-height: calc(100vh - 40px);
    /* Ensures it never overflows the viewport height */
    overflow-y: auto;
    /* Adds a clean scrollbar inside the modal if content is too tall */
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling for iOS devices */
}

/* Close Button */
.rv-modal-close {
    color: #aaa;
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 32px;
    /* Slightly increased for a better mobile tap-target */
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
    line-height: 1;
    /* Keeps cross aligned perfectly */
    z-index: 10;
    /* Keeps close button above internal elements */
}

.rv-modal-close:hover,
.rv-modal-close:focus {
    color: #333;
    text-decoration: none;
}

/* Responsive Media Query for Mobile Devices */
@media screen and (max-width: 480px) {
    .rv-modal-content {
        padding: 20px 15px;
        /* Reduces internal padding so form fields have maximum width */
        border-radius: 6px;
        /* Slightly sharper corners looks cleaner on small viewports */
    }

    .rv-modal-close {
        top: 8px;
        right: 15px;
        /* Repositions close button nicely with smaller padding */
    }
}

/* Simple fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}