@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

@font-face {
    font-family: 'helios_proregular';
    src: url('../fonts/helios_regular-webfont.eot');
    src: url('../fonts/helios_regular-webfont.eot?#iefix') format('embedded-opentype'),
        url('../fonts/helios_regular-webfont.woff2') format('woff2'),
        url('../fonts/helios_regular-webfont.woff') format('woff'),
        url('../fonts/helios_regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}

body,
html {
    overflow-x: hidden;
}

body,
html {
    width: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: var(--secondary-color);
}

.main-footer {
    margin-top: auto;
    border-top: 1px solid #f7f7f7;
}

:root {
    scroll-behavior: inherit;
    --body-color: #18191E;
    --black: #000;
    --theme-black: #030409;
    --white: #fff;
    --grey: #8A8A8A;
    --grey2: #FAF7F2;
    /* --primary-color: #E87E1E; */
    --primary-color: #EE0000;
    --secondary-color: #FFF;
    --primary-grey: #454444;
    --heading-font: "Bebas Neue", sans-serif;
    --body-font: "Lato", sans-serif;
}



body {
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    font-weight: 400;
    font-style: normal;
    color: var(--body-color);
    font-size: 16px;
    line-height: 1.6;
    counter-reset: count;
    top: 0 !important;
}



b,
strong {
    font-weight: 700;
}

p {
    margin: 0 0 16px 0;
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 18px 0;
    padding: 0;
    font-weight: 400;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
    letter-spacing: 0.8px;
}



h1,
.h1-title {
    line-height: 1.1;
    font-family: var(--heading-font);
    font-size: 60px;
    letter-spacing: 0.02em;
}

h2,
.h2-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    font-family: var(--heading-font);
}


h3,
.h3-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    font-family: var(--heading-font);
}

h4,
.h4-title {
    font-size: 18px;
    line-height: 1.2;
    font-family: var(--heading-font);

}

h5,
.h5-title {
    font-size: 16px;
    line-height: 1.2;
    text-transform: capitalize;
    font-family: var(--heading-font);
}

.sectop {
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 30px;
    margin-bottom: 25px;
    line-height: 1.4;
    background: linear-gradient(90deg, #0c2b45 0%, #1c89e8 50%, #0c2b45 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-family: var(--heading-font);

}


.glowing-border {
    animation: borderTurn 9.5s infinite linear;
    background-image: conic-gradient(from 0 at 50% 50%,
            color-mix(in srgb, currentColor 80%, transparent) 0deg, transparent 30deg, transparent 150deg,
            color-mix(in srgb, currentColor 80%, transparent) 180deg, transparent 210deg, transparent 330deg,
            color-mix(in srgb, currentColor 80%, transparent) 360deg);
    background-position: center center;
    background-repeat: repeat;
    background-size: cover;
}

@keyframes borderTurn {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/* animation */
[data-move],
[data-slide] {
    opacity: 0;
}


a {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    outline: none !important;
    color: var(--black);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
}


input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
input[type="date"],
input[type="time"],
input[type="number"],
select {
    background-color: var(--grey);
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 10px;
    color: #444 !important;
    border: none;
    height: 56px;
    padding: 0 16px;
    outline: none !important;
    font-family: var(--body-font);
}

input::placeholder,
textarea::placeholder {
    color: #f7f7ff;
    opacity: 1;
}

textarea {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 10px;
    border: none;
    padding: 12px 16px;
    width: 100%;
    height: 120px;
    outline: none !important;
    color: #fff !important;
    border: none;
    padding: 12px 16px;
    outline: none !important;
    background-color: var(--body-color);
    resize: none;

}

select {
    width: 100%;

    padding: 0 11px;
    background: url(../images/nav-down-arrow.svg) no-repeat calc(100% - 16px) center transparent;
    background-size: 18px;
    padding-right: 40px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    border-radius: 10px;
    color: #fff !important;
    border: none;
    height: 56px;
    padding: 0 16px;
    background-color: var(--body-color);

}

select::-ms-expand {
    display: none;
}

input[type="submit"] {
    background: var(--btn-color);
    color: var(--white);
    height: 58px;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    padding-left: 30px;
    padding-right: 30px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    outline: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
    border: 1px solid var(--btn-color);
    position: relative;
    z-index: 3;
}

input[type="submit"]:hover {
    background: transparent;
    color: var(--black);
}

::-webkit-input-placeholder {
    opacity: 0.7;
    color: var(--body-color);
}

:-ms-input-placeholder {
    opacity: 0.7;
    color: var(--body-color);
}

::-moz-placeholder {
    opacity: 0.7;
    color: var(--body-color);
}

:-moz-placeholder {
    opacity: 0.7;
    color: var(--body-color);
}


.blue-bg {
    background-color: var(--primary-color);
    color: var(--white);
}

.blue-bg h2 {
    color: var(--white);
}



.cmn-btn {
    display: inline-block;
    border-radius: 10px;
    padding: 14px 30px !important;
    min-width: 150px !important;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    font-weight: 600 !important;
    font-size: 16px;
    line-height: 1;
    text-transform: capitalize;
    background: var(--primary-color);
    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 18px rgba(255, 255, 255, 0.22);
    text-align: center;
    color: #fff !important;
    letter-spacing: -0.5px;

}


.cmn-btn:hover {
    background: #fff;
    color: var(--black) !important;
    transform: translateY(-2px);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.10),
        0 0 26px rgba(255, 255, 255, 0.28);
}

/* .cmn-btn span::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
    transition: all 0.5s;
    z-index: 2;
} 

.cmn-btn span:hover::before {
    left: 130%;
    transition: all 0.7s ease-in-out;
} */


.cmn-btn-white {
    background-color: #fff;
    color: #000 !important;
}

.cmn-btn-white:hover {
    background-color: #000;
    color: #fff;
}


.cmn-btn-2 span {
    background: linear-gradient(240deg, var(--black), #fff, var(--black));
    background: var(--black);
}

.cmn-btn-red {
    padding: 0;
}

.cmn-btn-red span {
    background: var(--white);
    color: var(--black);
    font-weight: 700;
    font-size: 18px;
}

.cmn-btn-red:hover span {
    background: var(--black);
    color: var(--white);

}

@keyframes slideLeft {
    49% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    51% {
        opacity: 1;
    }
}

.nav-btn {
    min-width: auto !important;
}


.image-anime {
    position: relative;
    overflow: hidden !important;
    border-radius: 10px !important;
}


.image-anime img {
    transition: all 0.3s ease-in-out;
}


/* golden glow overlay */
/* .image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: #ffffff4d;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1
}

.image-anime:hover:after {
    height: 250%;
    transition: all .6s linear;
    background-color: transparent
} */


.image-anime img:hover {
    transform: scale(1.05);
}


.cmn-head {
    margin-bottom: 35px;
}

.cmn-head h2 {
    color: var(--white);
    text-transform: capitalize;
    text-wrap: balance;
}


.cmn-head h2 {
    margin-bottom: 15px;
}

.cmn-gap {
    padding: 70px 0;
}

.subhead-tag {
    font-size: 12px;
    font-weight: 600;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    display: inline-block;
    text-align: center;
    border-radius: 30px;
    margin-bottom: 28px;
    text-transform: uppercase;
}





.sub-heading {
    text-transform: uppercase;
    display: inline-block;
    font-weight: 600;
    font-size: 20px;
    line-height: 45px;
    letter-spacing: 0.15em;
    /* background: linear-gradient(90deg, #0c2b45 0%, #1c89e8 50%, #0c2b45 100%); */
    background: linear-gradient(90deg, #fff 0%, #fff 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-family: var(--heading-font);
}





.text-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}





/* images alignment for wordpress content pages */
.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    float: none;
    clear: both;
}



/* custom checkbox */

.form_input_check label {
    position: relative;
    margin: 0;
    padding-left: 28px;
    display: inline-block;
}

.form_input_check label span {
    margin: 0;
    padding: 0;
}

.form_input_check label input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.form_input_check label input[type="checkbox"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    background: transparent;
}

.form_input_check label input[type="checkbox"]+span::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 6px;
    width: 10px;
    height: 10px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: url(images/tick.svg) no-repeat center center;
    background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}


/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */

.form_input_check label input[type="checkbox"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}



/* custom radio */

.form_input_radio label {
    position: relative;
    margin: 0;
    padding-left: 30px;
    display: inline-block;
}

.form_input_radio label span {
    margin: 0;
    padding: 0;
}

.form_input_radio label input[type="radio"] {
    visibility: hidden;
    display: none;
}

.form_input_radio label input[type="radio"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border: 2px solid #000000;
    border-radius: 100%;
    background: #fff;
}

.form_input_radio label input[type="radio"]+span::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #4b0049;
    position: absolute;
    top: 6px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}


/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type="radio"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* custom radio end */

/* back to top */

#scroll {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    color: #fff;
    display: none;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    line-height: 68px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    z-index: 9;
}

/* #scroll:hover {
    background: linear-gradient(-240deg,
            #0c2b45 0%,
            #0f5fa4 15%,
            #1c89e8 38%,
            #69b5ff 50%,
            #1c89e8 62%,
            #156fcd 85%,
            #0e58a0 100%);
} */

#scroll i {
    color: #fff;
    font-size: 34px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

#scroll:hover i {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
}

.section-title {
    text-wrap: balance;
}


/* navbar*/
.main-head {
    padding: 10px 0;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}

.main-head.fixed {
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(40px);
    padding: 10px 0;
    box-shadow: 0 4px 12px 1px rgba(0, 0, 0, 0.2);
    position: fixed;
}

.main-head.fixed::before {
    content: '';
    top: 0;
    left: 0;
}


.main-head.fixed .navbar-nav>li>a:hover {
    color: var(--primary-color);
}

.main-head.fixed .navbar-brand {
    width: 180px;
}

.menu-right {
    margin-left: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    width: 200px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.navbar-brand img {
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.navbar {
    background: none;
    margin: 0;
    padding: 0;
    min-height: inherit;
    height: inherit;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.navbar-nav li {
    position: relative;
    list-style: none;
}

.navbar-nav>li {
    margin: 0 17px;
    padding: 20px 0;
    position: relative;
}

.navbar-nav>li:last-child {
    margin-right: 0;
}

.navbar-nav>li:first-child {
    margin-left: 0;
}

.navbar-nav>li>a {
    color: var(--black);
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    text-transform: capitalize;
    position: relative;
    font-family: var(--body-font);
}

.navbar-nav>li>a:after {
    content: '';
    display: none;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fff 0%, #fff 50%, #fff 100%);
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover,
.navbar-nav>li.menu-item-has-children:hover>a {

    color: var(--primary-color);
}

.navbar-nav>li.current-menu-item>a {
    font-weight: 800;
}

.navbar-nav>li.current-menu-item>a:after,
.navbar-nav>li>a:hover:after,
.navbar-nav>li.menu-item-has-children:hover>a:after {
    width: 100%;
}

li.menu-item-has-children a {
    padding-right: 20px;
}

/* navbar submenu*/

.sub-menu {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    min-width: 200px;
    padding: 0;
}

.sub-menu>li>a {
    color: #000;
    display: block;
    width: 100%;
    padding: 10px 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.sub-menu>li {
    width: 100%;
    display: block;
}

.sub-menu>li>a:hover,
.sub-menu>li.menu-item-has-children:hover>a,
.sub-menu>li.current-menu-item>a {
    background: var(--primary-color);
    color: var(--white);
}



.navbar-nav>li:last-child>.sub-menu {
    right: 0;
    left: inherit;
    padding: 0;
}

/* 2nd level submenu */
.navbar-nav>li>.sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
}


/* for push-menu */
.navbar-collapse .navbar-toggler {
    display: none;
}

#navoverlay {
    display: block;
    pointer-events: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    margin: 0;
    padding: 0;
    z-index: 99;
    -webkit-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
}

/* for push-menu end*/

/* Navbar search starts */

.header-search {
    height: 42px;
    width: 42px;
    line-height: 54px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease 0s;
    box-shadow: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
    background-color: transparent;
    border: 1px solid var(--grey2);
    cursor: pointer;
    border-radius: 6px;
}

.header-search a {
    color: var(--white) !important;

}

.header-search:hover {
    background-color: var(--theme-black);
}

.header-search:hover a {
    color: var(--white);
}

.search-popup-wrap {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    height: 100%;
    width: 100%;
    z-index: 9999;
    padding: 100px 0;
    display: none;
}

.search-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.search-wrap .title {
    font-size: 47px;
    margin: 0 0 70px 0;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--tg-blue);
}

.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--primary-color);
    padding: 10px 50px 20px;
    text-align: center;
    font-weight: 500;
    font-size: 30px;
    background: transparent;
    color: var(--black);
}

.search-form input::placeholder {
    font-size: 30px;
    color: var(--black);
    opacity: .5;
}

.search-btn {
    position: absolute;
    right: 20px;
    background: transparent;
    border: 0;
    font-size: 25px;
    color: var(--primary-color);
    top: 50%;
    transform: translateY(-50%);
}

.search-close {
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 30px;
    color: var(--primary-color);
    cursor: pointer;
}

/* Navbar search ends */

/* Banner section starts */

/* =========================================================
   BANNER / HERO (Swiper)
   ========================================================= */

/* Swiper wrapper */
.banner-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Slide base */
.banner-swiper .swiper-slide {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 640px;
    padding: 40px 0;
    /* desktop height */
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Dark overlay + vignette like your sample */
.banner-swiper .swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background:
        radial-gradient(1000px 600px at 20% 40%, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.85) 65%, rgba(0, 0, 0, 0.95) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.70) 55%, rgba(0, 0, 0, 0.55) 100%); */
    z-index: 0;
}

/* Content always above overlay */
.banner-swiper .container,
.banner-swiper .row,
.banner-swiper .hero-style1,
.banner-swiper .banner-img {
    position: relative;
    z-index: 1;
}

/* Space/padding */
.banner-swiper .container {
    padding-top: 70px;
}

/* Left Content Block */


.hero-style1 .sub-title {
    display: inline-block;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 15px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.hero-style1 .hero-title {
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 14px;
}

.hero-style1 p {
    margin: 0 0 16px;
    font-size: 20px;
    line-height: 1.6;
    max-width: 520px;
}

/* Buttons */
.btn-group {
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.th-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
    user-select: none;
}

.star-btn {
    background: var(--primary-color);
    /* primary orange */
    color: #0b0b0b;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.star-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
}

.th-btn.bg-theme2 {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: none;
}

.th-btn.bg-theme2:hover {
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-2px);
}

/* Right Image Column */
.banner-img {
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}

/* Burger image */
.banner-img img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 500px;
    transform: translateY(10px);
    aspect-ratio: 1/1;
    object-fit: contain;
}

/* Glow circle behind burger (your effect but improved) */
/* .banner-img::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-35%, -50%);
    width: clamp(320px, 45vw, 600px);
    height: clamp(320px, 45vw, 600px);
    border-radius: 50%;
    z-index: 1;

    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.65) 0%,
            rgba(161, 161, 161, 0.25) 38%,
            rgba(213, 213, 65, 0.00) 72%);

    filter: blur(60px);
} */

/* Swiper Pagination */
.banner-swiper .swiper-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    z-index: 2;
}

.banner-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    background: var(--black);
    margin: 0 6px !important;
    border-radius: 50%;
    transition: transform .2s ease, background-color .2s ease;
}

.banner-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 991.98px) {
    .banner-swiper .swiper-slide {
        min-height: 720px;
    }

    .banner-swiper .container {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .banner-img {
        margin-top: 26px;
        min-height: 360px;
    }

    .banner-img img {
        width: min(460px, 100%);
    }

    .banner-img::before {
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 575.98px) {
    .banner-swiper .swiper-slide {
        border-radius: 14px;
        min-height: 680px;
    }

    .hero-style1 .sub-title {
        font-size: 11px;
    }

    .hero-style1 p {
        font-size: 15px;
    }

    .th-btn {
        height: 46px;
        padding: 0 16px;
        border-radius: 12px;
    }

    .banner-swiper .swiper-pagination {
        bottom: 16px;
    }
}

/* Banner section ends */



/* ==========================
   Shop / Menu Preview Section
   ========================== */

.shop-sec {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    isolation: isolate;
}

/* .shop-sec::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.15);

    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: -1;
} */



@media (max-width: 991.98px) {
    .shop-bg {
        background-attachment: scroll;
    }
}

/* content above bg */
.shop-sec .container {
    position: relative;
    z-index: 2;
}

.shop-head {
    margin-bottom: 26px;
}

.shop-tag {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--white);
    background: transparent;
    border: 2px solid var(--white);
    margin-bottom: 12px;
}

.shop-title {
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 10px;
    font-size: clamp(30px, 2.6vw, 44px);
}

.shop-sub {
    margin: 0 auto;
    max-width: 620px;
    color: #fff;
    line-height: 1.7;
}

/* Glass card wrapper */
/* .shop-glass {
    position: relative;
    padding: 26px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
} */

/* subtle glow */
/* .shop-glass::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    left: -180px;
    top: -180px;
    background: radial-gradient(circle,
            rgba(213, 213, 65, 0.30) 0%,
            rgba(213, 213, 65, 0.10) 40%,
            rgba(213, 213, 65, 0.00) 70%);
    filter: blur(70px);
    pointer-events: none;
    opacity: .95;
} */

/* Menu cards */
.menu-card {
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    /* background: rgba(10, 12, 16, 0.55); */
    background: linear-gradient(90deg, #EE0000 0%, #FFC000 70%, #FFC000 100%);
    background: var(--primary-color);
    
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
    position: relative;
}

.menu-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.14);
    /* box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55); */
}

.menu-img {
    position: relative;
    height: 240px;
    overflow: hidden;
    background-color: #fff;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


.menu-info {
    padding: 16px 16px 18px;
}

.menu-info h5 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 24px;
}

.menu-info p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 1);
    line-height: 1.5;
    font-size: 16px;
}

/* price + mini button */
.menu-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.price {
    font-weight: 900;
    color: #fff;
    font-size: 16px;
    letter-spacing: -0.3px;
}

.mini-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.mini-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.32);
    background: var(--primary-color);
    color: #fff;
}

/* footer buttons */
.shop-footer {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}


/* Image zoom effect */

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .45s ease;
}

.menu-card:hover .menu-img img {
    transform: scale(1.12);
}


/* Badges */

.menu-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .04em;
    z-index: 2;
}

/* Badge styles */

.menu-badge.popular {
    background: #ff3b30;
    color: #fff;
}

.menu-badge.favorite {
    background: #ff9500;
    color: #fff;
}

.menu-badge.new {
    background: #00c853;
    color: #fff;
}

.menu-badge.beast {
    background: #000;
    color: #fff;
    border: 1px solid #fff;
}

/* Responsive */
@media (max-width: 991.98px) {
    .shop-sec {
        padding: 70px 0;
    }

    .shop-glass {
        padding: 20px;
    }

    .menu-img {
        height: 170px;
    }
}

@media (max-width: 575.98px) {
    .shop-sec {
        padding: 60px 0;
    }

    .shop-glass {
        padding: 16px;
    }

    .menu-img {
        height: 160px;
    }
}

/* How it works starts */

.how-it-works-row {
    margin-top: 40px;
}

.how-it-work-card {
    background: #1C1F21;
    border-radius: 15px;
    padding: 30px 25px;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.how-it-work-card:hover {
    transform: translateY(-6px);
    background: #22262c;
}

/* Step Number */
.how-it-work-card .step-number {
    position: absolute;
    top: -16px;
    right: 0px;
    background: #ffffff;
    color: #000;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon Container */
.how-it-work-card .icon {
    margin-bottom: 12px;
}

/* SVG Image */
.how-it-work-card .icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Text */
.how-it-work-card h5 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/* How it works ends */


/* Categories start */
.categories-sec {
    /* background: #000; */
    color: #fff;
}

.categories-sec .cmn-head h2 {
    margin-bottom: 40px;
}

.categories-swiper {
    padding-bottom: 50px;
}



/* Card */
.category-card {
    text-align: center;
}

.category-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: #e5e5e5;
    max-width: 220px;
    margin: 0 auto;
    text-transform: capitalize;
}

/* Pagination */
.categories-swiper .swiper-pagination,
.experts-sec .swiper-pagination {
    bottom: 0;
}

.categories-swiper .swiper-pagination-bullet,
.experts-sec .swiper-pagination-bullet {
    background: #666;
    opacity: 1;
}

.categories-swiper .swiper-pagination-bullet-active,
.experts-sec .swiper-pagination-bullet-active {
    background: #fff;
    width: 50px;
    border-radius: 10px;
}




/* Categories end */

.experts-sec {
    background: #000;
    color: #fff;
}

.experts-sec .cmn-head h2 {
    margin-bottom: 40px;
}

.experts-swiper {
    padding-bottom: 50px;
}

/* Card */
.expert-card {
    background: #1c1f24;
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.expert-card:hover {
    transform: translateY(-6px);
}

/* Image */
.expert-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
    overflow: hidden;
}

/* Content */
.expert-content {
    padding: 14px 14px 18px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 0 0 18px 18px;

}

.rating {
    color: #ffb400;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.expert-content h5 {
    font-size: 16px;
    margin-bottom: 2px;
    font-weight: 500;
}

.expert-content p {
    font-size: 14px;
    color: #bdbdbd;
    margin-bottom: 10px;
}

/* Footer */
.expert-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.expert-footer span {
    font-size: 13px;
    color: #cfcfcf;
}

.expert-footer strong {
    font-size: 14px;
    font-weight: 600;
}

.rating {
    color: #ffb400;
    font-size: 14px;
    display: flex;
    gap: 3px;
    margin-bottom: 6px;
}

.rating i {
    line-height: 1;
}


/* why choose sec start */
.why-choose-sec {

    color: #fff;
}

.why-img img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

/* Content */
.why-content h2 {
    margin-bottom: 30px;
    color: var(--secondary-color);
}

/* Items */
.why-item {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}

.why-item .icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.why-item .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-item .icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.why-item .icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.why-item h5 {
    font-size: 20px;
    margin-bottom: 4px;
}

.why-item p {
    font-size: 16px;
    color: #cfcfcf;
    line-height: 1.6;
}

/* why choose sec end */

/* testimonial start */
.testimonials-sec {
    background: #000;
    color: #fff;
}

/* Header */
.testimonials-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.testimonials-head h2 {
    margin: 0;
    color: var(--secondary-color);
}

/* Nav buttons */
.testimonial-nav {
    display: flex;
    gap: 10px;
}

.testimonial-nav div {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e5e5e5;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Card */
.testimonial-card {
    background: #1c1f24;
    border-radius: 14px;
    padding: 22px 20px 40px;
    position: relative;
    height: 100%;
    flex-direction: column;
}

.testimonial-card h5 {
    font-size: 20px;
    margin-bottom: 6px;
    color: #FFE5B4;
}

.rating {
    color: #FFFDD0;
    font-size: 13px;
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 14px;
    color: #FFFDD0;
    margin: 0;
}

/* Quote */
.testimonial-card .quote {
    position: absolute;
    right: 18px;
    bottom: 0px;
    font-size: 140px;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    transform: rotate(-180deg);
}

/* testimonial end */






/* About section start */
.about-sec {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: center right 30%/cover no-repeat;
}

/* subtle background glow */
/* .about-sec::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    left: -160px;
    top: 20%;
    background: radial-gradient(circle,
            rgba(213, 213, 65, 0.35) 0%,
            rgba(213, 213, 65, 0.12) 40%,
            rgba(213, 213, 65, 0.00) 70%);
    filter: blur(70px);
    pointer-events: none;
    opacity: .9;
} */

.about-content {
    position: relative;
    z-index: 1;
}

.about-tag {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.78);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    margin-bottom: 14px;
}

.about-title {
    line-height: 1.1;
    margin: 0 0 14px;
}

.about-text {
    font-size: 16px;
    line-height: 1.7;
}

.about-points {
    display: grid;
    gap: 12px;
    margin-bottom: 26px;
}

.point {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.point .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 7px;
    background: var(--primary-color);
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.18);
    flex: 0 0 10px;
}

.point p {
    margin: 0;
    line-height: 1.6;
}

.about-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
}

/* Media */
.about-media {
    position: relative;
    z-index: 1;
    border-radius: 18px;
    overflow: hidden;
}

/* glow behind image */

.about-img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease-in-out;
}


/* small overlay card */
.about-card {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.about-card h6 {
    margin: 0 0 6px;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
}

.about-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .about-sec {
        padding: 70px 0;
    }

    .about-img {
        height: 420px;
    }
}

@media (max-width: 575.98px) {
    .about-sec {
        padding: 60px 0;
    }

    .about-img {
        height: 360px;
    }
}

/* About section ends */


/* animation */
.reveal>*:not(.splitting, .image-anim) {
    opacity: 0;
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    transform: translateY(80px);
    -webkit-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

.reveal>*.play-reveal:not(.splitting, .image-anim) {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

.reveal .splitting {
    opacity: 0;
    -webkit-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

.reveal .play-reveal.splitting {
    opacity: 1;
    -webkit-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

.reveal .play-reveal.splitting .char {
    -webkit-animation: slide-in .5s cubic-bezier(.3, 0, .7, 1) both;
    animation: slide-in .5s cubic-bezier(.3, 0, .7, 1) both;
    -webkit-animation-delay: calc(50ms * var(--char-index));
    animation-delay: calc(50ms * var(--char-index));
}

@-webkit-keyframes slide-in {
    from {
        -webkit-transform: scale(0.4) translateY(80%);
        transform: scale(0.4) translateY(80%);
        opacity: 0;
    }
}

@keyframes slide-in {
    from {
        -webkit-transform: scale(0.4) translateY(80%);
        transform: scale(0.4) translateY(80%);
        opacity: 0;
    }
}

.banner-cont.reveal>p.play-reveal {
    transition-delay: 1s;
}

.banner-cont.reveal>.banner-btn-full.play-reveal {
    transition-delay: 1.3s;
}


.image-anim {
    opacity: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.image-anim.play-reveal {
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    animation: text-clip4 1s 0s cubic-bezier(0.5, 0, 0.1, 1) both;
    -webkit-animation: text-clip4 1s 0s cubic-bezier(0.5, 0, 0.1, 1) both;
}

@-webkit-keyframes text-clip4 {
    from {
        -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    }

    to {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@keyframes text-clip4 {
    from {
        -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    }

    to {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* animation end */


/* Footer area start */
/* ===============================
   Footer Base
================================ */
.main-footer {
    background: #000;
    color: #fff;
    padding: 50px 0 30px;
}

/* ===============================
   Brand Area
================================ */
.footer-brand {
    margin-bottom: 18px;
}

.footer-tagline {
    font-size: 17px;
    color: #cfcfcf;
    line-height: 1.6;
    margin-bottom: 22px;
}

/* ===============================
   Social Icons
================================ */
.footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 12px;
}

.footer-social li a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-social li a:hover {
    background: #fff;
    color: #000;
}

/* ===============================
   Footer Titles & Links
================================ */
.footer-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    font-size: 14px;
    color: #cfcfcf;
    text-decoration: none;
    transition: color 0.3s ease;
}


/* ===============================
   Newsletter Form
================================ */
.newsletter-form {
    position: relative;
}

.newsletter-form input {
    width: 100%;
    height: 46px;
    background: #6a6a6a;
    border-radius: 10px;
    border: none;
    padding: 0 54px 0 16px;
    font-size: 16px;
    color: #fff !important;
}

.newsletter-form input::placeholder {
    color: #e5e5e5;
}

/* =========================
   Join the List (New Design)
   ========================= */
.newsletter-glass {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    padding: 26px;
    background: rgba(12, 14, 18, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

/* premium gradient border */
.newsletter-glass::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 18px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.18),
            rgba(255, 255, 255, 0.04),
            rgba(213, 213, 65, 0.14));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.newsletter-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.newsletter-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.newsletter-form-title {
    margin: 0;
    color: #fff;
    font-weight: 900;
    font-size: 20px;
}

.newsletter-form-sub {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

/* Row: input + button */
.newsletter-form-row {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

/* input field */
.newsletter-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 14px;
    padding: 14px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.newsletter-field i {
    color: rgba(255, 255, 255, 0.65);
    font-size: 18px;
}

.newsletter-field input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font-size: 15px;
}

.newsletter-field input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.newsletter-field:focus-within {
    border-color: rgba(255, 255, 255, 0.20);
    box-shadow: 0 0 0 4px rgba(213, 213, 65, 0.10);
}

/* Submit button (new) */
.newsletter-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 18px;
    min-width: 160px;
    border: 0;
    border-radius: 14px;
    font-weight: 900;
    font-size: 15px;
    color: #0b0b0b;
    background: var(--primary-color);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 14px rgba(255, 255, 255, 0.14);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55), 0 0 18px rgba(255, 255, 255, 0.18);
    filter: brightness(1.02);
}

.newsletter-submit i {
    font-size: 14px;
}

/* note */
.newsletter-note {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    font-size: 12.5px;
}

/* Mobile: stack button under input */
@media (max-width: 575.98px) {
    .newsletter-form-row {
        flex-direction: column;
    }

    .newsletter-submit {
        width: 100%;
        height: 48px;
    }
}

/* ===============================
   App Store Buttons (KEPT)
================================ */
.app-icon-area img {
    height: 42px;
    width: auto;
}

/* ===============================
   Divider
================================ */
.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    margin: 40px 0 20px;
}

/* ===============================
   Footer Bottom (GOIGI KEPT)
================================ */
.footer-bottom p {
    color: #bdbdbd;
    margin: 0;
}

.footer-bottom p strong {
    color: #fff;
}

.footer-bottom p span {
    margin-top: 4px;
    display: block;
    font-size: 12px;
}

.footer-bottom p a {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom p a:hover {
    opacity: 0.8;
}

/* ===============================
   Responsive Tweaks
================================ */
@media (max-width: 991px) {
    .footer-social {
        margin-bottom: 20px;
    }

    .newsletter-form {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .footer-brand {
        font-size: 20px;
    }



    .footer-bottom {
        text-align: center;
    }
}



/* about page css */

/* about-section-start */

.about-text-area {
    padding-bottom: 50px;
}

.about-img-area {
    margin-bottom: 50px;
    overflow: hidden;

    border-radius: 20px;
}

.about-sec .about-text-area h2 {
    color: var(--black);
}

.about-sec .about-img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: .3s ease-in-out;
}

.about-sec .about-img-area img:hover {
    transform: scale(1.3);
}

.about-team-sec {
    padding-bottom: 100px;
}

.about-team-top-content {
    padding-bottom: 50px;
}

.about-team-top-content h2 {
    color: var(--black);
}

.about-left img {
    aspect-ratio: 1/1;
    object-fit: cover;
}



.slick-dots {
    display: flex !important;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
    list-style: none;
    padding: 0;
}

/* Dot buttons */
.custom-dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Active dot */
.slick-dots li.slick-active .custom-dot {
    background-color: #333;
}

/* blog section start */
.blog-sec {
    isolation: isolate;
    position: relative;
}

.blog-sec .membership-card-inner {
    padding: 20px;
}

.blog-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    padding: 20px;
    background-color: var(--primary-color);
    border: 1px solid var(--secondary-color);
}

.blog-card:hover .blog-image img {
    transform: scale(1.2);
}

.blog-image {
    overflow: hidden;
    border-radius: 10px;

}

.blog-image img {
    width: 100%;
    display: block;
    transition: all 0.3s ease-in-out;
    aspect-ratio: 5/3;
    object-fit: cover;
    object-position: center 10%;
}

.blog-content {
    padding: 10px 0 20px;
}

.blog-title a {
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.2;
    padding-right: 16px;
    font-size: 20px;
    margin-top: 10px;
    color: var(--white);
    line-clamp: 1;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.blog-content p {
    padding-right: 15px;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.read-more {
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
    font-weight: 600;
    font-size: 20px;
    line-height: 23px;
    text-transform: uppercase;
    color: #D5D5D5;
}

.read-more:hover {
    color: var(--secondary-color);
    letter-spacing: 0.6px;
}

.date {
    color: #d3d3d3;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Testimonial section start */

.testimonial-card {
    display: flex;
    background-color: var(--primary-color);
    border-radius: 15px;
    overflow: hidden;
    gap: 10px;
    border: 1px solid #FFFDD0;
}

.testi-left {
    width: 100%;
    padding: 16px 0 16px 16px;
    align-self: center;
}

.testi-right {
    width: 44%;
    display: none;
}

.testi-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 35% 100%);
}

.testi-stars {
    display: flex;
    gap: 4px;
    font-size: 14px;
    color: #FFD900;
    margin-bottom: 16px;
}

.testi-name {
    position: relative;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.testi-name::before {
    content: '';
    width: 30px;
    height: 2px;
    border-radius: 8px;
    background-color: #fff;
    display: inline-block;
}


.fleet-slider .slick-list,
.testimonial-slider .slick-list {
    margin: -12px;
}

.fleet-slider .slick-slide,
.testimonial-slider .slick-slide {
    padding: 12px;
}

.fleet-slider .slick-dots li button,
.testimonial-slider .slick-dots li button {
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 0;
    background: transparent;
    border: 2px solid #fff;
}

.fleet-slider .slick-dots li.slick-active button,
.testimonial-slider .slick-dots li.slick-active button {
    background: #fff;
}


/* Footer area start */
/* Footer Base */
.main-footer {
    color: #fff;
    padding: 60px 0 0 0;
}

.main-footer .footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    font-family: var(--heading-font);
}

/* Logo Section */
.footer-logo img {
    max-width: 160px;
}

/* Contact Info */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.footer-contact li {
    margin-bottom: 10px;
    font-size: 18px;
    font-family: var(--heading-font);
    font-weight: 400;
}

.footer-contact i {
    margin-right: 8px;
    color: var(--primary-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    transition: all 0.3s ease-in-out;
}

.footer-contact li:hover i {
    background-color: #707070;
}

/* Social Icons */
.footer-social-icons {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social-icons li a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-social-icons li a:hover {
    background: #707070;
    color: #111;
}

/* Quick Links */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list li a {
    font-size: 15px;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-list li a:hover {
    color: #707070;
    padding-left: 5px;
}

/* Subscribe Form */
.footer-subscribe {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #000;
    padding: 20px;
    border-radius: 15px;
}

.footer-subscribe input {
    padding: 12px 15px;
    border: none;
    border-radius: 6px;
    background: #2a2a2e;
    color: #fff;
    font-size: 14px;
}

.footer-subscribe input::placeholder {
    color: #999;
}

.footer-subscribe input:focus {
    outline: none;
    border: 1px solid #1c89e8;
}

/* Reuse your common button */
.footer-subscribe button.cmn-btn {
    width: 100%;
    text-align: center;
}

/* Responsive */
@media (max-width: 767px) {

    .footer-social-icons {
        justify-content: center;
    }

    .banner-sec-wrap h1 {
        font-size: 26px;
    }

    .banner-sec-wrap {
        min-height: 500px;
    }

    .banner-text-inner-wrap {
        padding-top: 80px;
    }

    .banner-social-links {
        top: 34%;
    }
}


.footer-copy {
    background-color: var(--black);
}

/* Footer area end */



.inner-banner {
    min-height: 400px;
    display: flex;
    align-items: center;
    isolation: isolate;
    position: relative;
    background: center/cover no-repeat;
}

.inner-banner .banner-sec {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


.inner-banner .banner-sec .swiper-slide-inner {
    min-height: 100%;
}





.inner-ban-content {
    color: #fff;
    padding: 190px 0 60px;
}

.inner-ban-content h1 {
    color: #fff;
}

@media(min-width:1280px) {
    .inner-ban-content h1 {
        font-size: 40px;
    }
}

/* Breadcrumb Base */
.breadcrumb {
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin: 20px 0;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li+li::before {
    content: "›";
    /* You can change to "/" or "»" */
    margin: 0 8px;
    color: #999;
    font-weight: bold;
}

/* Links */
.breadcrumb a {
    text-decoration: none;
    color: var(--white);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Current Page */
.breadcrumb [aria-current="page"] {
    color: var(--secondary-color);
    font-weight: bold;
}


.service-details {
    padding: 60px 20px;
    background: #111;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.container {
    max-width: 1320px;
    margin: auto;
}

.intro-text h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: #1c89e8;
}

.intro-text p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #ddd;
    text-align: center;
}

.highlight-box {
    background: #1a1a1a;
    border-left: 5px solid #1c89e8;
    padding: 20px;
    margin: 40px 0;
    font-size: 18px;
    font-style: italic;
    text-align: center;
}

.content-block {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
}

.content-block.reverse {
    flex-direction: row-reverse;
}

.content-block .text {
    flex: 1;
}

.content-block .text p {
    margin-bottom: 15px;
    color: #ddd;
}

.content-block .image {
    flex: 1;
}

.content-block .image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.experience {
    text-align: center;
    margin: 60px 0 40px;
}

.experience h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1c89e8;
}

.experience p {
    max-width: 800px;
    margin: 0 auto 20px;
    color: #ccc;
}

.buttons {
    margin-top: 20px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    margin: 5px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary {
    background: #1c89e8;
    color: #000;
}

.btn-primary:hover {
    background: #e6c200;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #1c89e8;
    color: #1c89e8;
}

.btn-secondary:hover {
    background: #1c89e8;
    color: #000;
}

/* Features */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
    margin-top: 40px;
}

.feature {
    flex: 1 1 18%;
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    margin: 10px;
    color: #1c89e8;
    font-weight: bold;
    transition: 0.3s;
}

.feature i {
    font-size: 26px;
    margin-bottom: 12px;
}


.feature h4 {
    color: var(--white);
}

.feature:hover {
    background: #222;
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 900px) {
    .content-block {
        flex-direction: column;
    }

    .content-block.reverse {
        flex-direction: column;
    }

    .features {
        flex-direction: column;
    }

    .feature {
        flex: 1 1 100%;
    }
}

.service-slider-wrap {
    border-radius: 15px;
    overflow: hidden;
}




/* Modal pop up */
.booking-modal .modal-content {
    background-color: #2c2c2c;
    color: #fff;
    border-radius: 10px;
    padding: 20px;
}

.car-card-wrap {
    height: 100%;
    border-radius: 10px 0 0 10px;
    position: relative;
    isolation: isolate;
    justify-content: center;
    display: flex;
    flex-direction: column;
    overflow: hidden;

}

.car-card-wrap::before {
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    z-index: 1;
    position: absolute;
}

.car-card {
    background-color: #3a3a3a;
    border-radius: 10px;
    overflow: hidden;
    color: #fff;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    isolation: isolate;
    z-index: 9;
}

.car-card img {
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
    object-fit: cover;
}

.car-card .price {
    font-size: 1.2rem;
    font-weight: bold;
}

.car-radio-area {
    position: relative;
    z-index: 3;
}

.car-radio-area input {
    width: 20px;
    height: 20px;
}


.form-control,
.form-select {
    background-color: var(--grey);
    color: #444;
    border: none;
    margin-bottom: 10px;
}

.form-control:focus,
.form-select:focus {
    background-color: var(--grey);
    color: #000;
    border: none;
    margin-bottom: 10px;
}

.form-control option,
.form-select option {
    background-color: var(--grey);
}

.btn-gold {
    background: linear-gradient(to right, #d4af37, #b8860b);
    color: #000;
    font-weight: bold;
    width: 100%;
}

.extra-options {
    font-size: 0.9rem;
    margin-top: 10px;
}




.extra-options .input-group {
    width: 120px;
    /* control overall width */
}

.extra-options .form-control {
    background-color: #222;
    /* dark background */
    color: #fff;
    border: none;
    text-align: center;
    font-weight: bold;
    box-shadow: none;
    margin-bottom: 0;
    width: 60px;
    height: 36px !important;
}

.extra-options input[type=number]::-webkit-inner-spin-button,
.extra-options input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    min-height: auto;

}



/* For WebKit browsers (Chrome, Safari, Edge) */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    /* flips dark icon to white */
    opacity: 1;
}


.extra-options .form-control:focus {
    background-color: #222;
    color: #fff;
    box-shadow: none;
}

.extra-options .btn {
    background-color: #333;
    color: #fff;
    border: 1px solid #555;
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.extra-options .btn:hover {
    background-color: #444;
    color: #fff;
}

.modal-btn-close {
    color: #fff;
    background-color: transparent;
    font-size: 26px;
    border: none !important;
    outline: none !important;
    transition: all 0.3s ease-in-out;
}

.modal-btn-close:hover {
    color: var(--secondary-color);
}

.custom-tabs {
    gap: 12px;
    justify-content: center;
    margin: 30px 0 !important;
}

.custom-tabs li {
    width: calc(50% - 12px);
}

.custom-tabs .tab-btn {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    /* min-width: 200px; */
    width: 100%;
}

.custom-tabs .tab-btn.active {
    background-color: #fff;
    color: #000;
}

.custom-tabs .tab-btn:not(:last-child) {
    margin-right: 8px;
}


.fleet-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    padding: 20px;
    background-color: var(--primary-color);
    border: 1px solid var(--secondary-color);
}

.fleet-image {
    overflow: hidden;
    aspect-ratio: 5/3;
}

.fleet-image img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;

}

.fleet-card:hover .fleet-image img {
    transform: scale(1.1);
}

.fleet-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    margin: 15px 0;
    padding: 0;
}

.fleet-info li {
    font-size: 14px;
    color: #d4af37;
}

.fleet-title {
    color: #f1c40f;
    font-size: 20px;
    margin-top: 10px;
}

.fleet-text {
    font-size: 14px;
    color: #ccc;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.fleets-details {
    background: var(--body-color);
    color: var(--white);
}

.fleet-info ul li {
    padding: 5px 0;
    border-bottom: 1px solid var(--primary-grey);
}

.btn-gold {
    background: var(--secondary-color);
    color: var(--black);
    border: none;
    transition: all 0.3s;
}

.btn-gold:hover {
    background: #d4b94d;
    color: var(--black);
}


/* Slick Slider Thumbnails */
.thumb-slider img {
    cursor: pointer;
    border: 2px solid transparent;
}

.thumb-slider .slick-current img {
    border-color: var(--secondary-color);
}



.fleet-info-area {
    background: var(--primary-color);
    border: 1px solid var(--primary-grey);
    color: var(--white);
}

.fleet-info h4 {
    border-bottom: 1px solid var(--primary-grey);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.info-table .info-row {
    display: flex;
    justify-content: space-between;
    padding: 13px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-table .info-row:last-child {
    border-bottom: none;
}

.info-table .info-row span {
    color: var(--white);
}

.info-table .info-row .value {
    color: var(--secondary-color);
    font-weight: 500;
}

.price-section {
    font-size: 16px;
}

.price-section .value {
    color: var(--secondary-color);
    font-weight: 600;
}

.btn-gold {
    background: var(--secondary-color);
    color: var(--black);
    border: none;
    transition: all 0.3s;
}

.btn-gold:hover {
    background: #d4b94d;
    color: var(--black);
}

.vehicle-overview {
    background: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-grey);
}

.vehicle-overview h2 {
    color: var(--secondary-color);
    border-bottom: 1px solid var(--primary-grey);
    padding-bottom: 10px;
}

.vehicle-overview p {
    line-height: 1.7;
    color: var(--grey2);
}

.vehicle-overview ul {
    list-style: none;
    padding-left: 0;
}

.vehicle-overview ul li {
    padding: 6px 0;
    position: relative;
    color: var(--grey2);
}

.vehicle-overview ul li::before {
    content: '•';
    color: var(--secondary-color);
    margin-right: 8px;
    font-weight: bold;
}


.main-slider img {
    aspect-ratio: 5/3;
    object-fit: cover;
}



/* ===== LOGIN SECTION ===== */
.login-section {
    background: center/cover no-repeat;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-left: 15px;
    padding-right: 15px;
}

.login-box {
    background: #1b1b1b;
    border-radius: 12px;
    max-width: 680px;
    width: 100%;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    border: 2px solid var(--secondary-color);
}

.brand-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.brand-title span {
    background: linear-gradient(90deg, #b68d40, #e0b64d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-subtext {
    font-size: 16px;
    margin-bottom: 5px;
}

.login-desc {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 25px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 15px;
}

.login-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #444;
    border-radius: 6px;
    background: #111;
    color: #fff;
    font-size: 14px;
}

.login-form input::placeholder {
    color: #888;
}

.forgot-pass {
    display: block;
    text-align: right;
    font-size: 13px;
    color: #b68d40;
    margin-bottom: 20px;
}

.btn-login {
    width: 100%;
    background: linear-gradient(90deg, #b68d40, #e0b64d);
    border: none;
    color: #000;
    padding: 12px 0;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: linear-gradient(90deg, #e0b64d, #b68d40);
}

.signup-text {
    margin-top: 20px;
    font-size: 14px;
    color: #aaa;
}

.signup-text a {
    color: #b68d40;
}

.divider {
    position: relative;
    margin: 20px 0;
    font-size: 14px;
    color: #777;
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #333;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.btn-social {
    width: 100%;
    border: 1px solid #444;
    background: transparent;
    color: #fff;
    padding: 10px 0;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-social i {
    margin-right: 8px;
}

.btn-social.google:hover {
    background: #db4437;
}

.btn-social.facebook:hover {
    background: #1877f2;
}


/* ===== REGISTER PAGE STYLES ===== */
.login-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #444;
    border-radius: 6px;
    background: #111;
    color: #fff;
    font-size: 14px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23aaa' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.phone-group {
    display: flex;
    gap: 10px;
}

.country-code select {
    width: 90px;
    padding: 12px;
    background: #111;
    color: #fff;
    border: 1px solid #444;
    border-radius: 6px;
}

.phone-group input {
    flex: 1;
}

.privacy-note {
    font-size: 13px;
    color: #aaa;
    margin: 8px 0 15px;
    text-align: left;
}

.privacy-text {
    font-size: 13px;
    color: #999;
    line-height: 1.5;
    margin-bottom: 25px;
    text-align: left;
}

.privacy-text a {
    color: #b68d40;
    text-decoration: underline;
}


.login-banner {
    min-height: 300px;
}

.login-banner .inner-ban-content {
    padding: 190px 0 10px;
}



/* Blog page start */
/* Sidebar Container */
.blog-categories {
    background: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    color: var(--white);
    font-family: var(--body-font);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Section Titles (Categories / Recent Posts) */
.blog-categories h5,
.blog-categories .card-header h5 {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

/* Category List */
.blog-categories .list-group-item {
    background: transparent;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.blog-categories .list-group-item a {
    color: var(--grey);
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 15px;
    transition: all 0.3s ease;
}

.blog-categories .list-group-item i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 14px;
}

.blog-categories .list-group-item:hover a {
    color: var(--secondary-color);
    transform: translateX(4px);
}

/* Divider between list sections */
.blog-categories .list-group-item+.list-group-item {
    border-top: 1px solid var(--grey);
}

/* Recent Posts Card */
.blog-categories .recent-posts {
    margin-top: 30px;
    background: var(--primary-color);
    border: 1px solid var(--grey);
    border-radius: 8px;
    padding: 20px;
}

.blog-categories .recent-posts h5 {
    font-family: var(--heading-font);
    font-size: 18px;
    text-transform: uppercase;
    color: var(--secondary-color);
    border-bottom: 1px solid var(--grey);
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.blog-categories .recent-posts ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-categories .recent-posts li:not(:last-child) {
    margin-bottom: 12px;
    border-bottom: 1px solid var(--grey);
    padding-bottom: 10px;
}

.blog-categories .recent-posts a {
    color: var(--grey);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-categories .recent-posts a:hover {
    color: var(--secondary-color);
}

.blog-categories .recent-posts small {
    color: var(--grey);
    font-size: 12px;
}

.blog-categories .recent-posts i {
    color: var(--secondary-color);
    margin-right: 6px;
}

.blog-cate-area {
    border: 1px solid var(--grey);
    padding: 10px;
}


/* ---------- Sticky Sidebar ---------- */
/* .sticky-sidebar {
    position: sticky;
    top: 100px;
    z-index: 10;
}

@media (max-width: 991px) {
    .sticky-sidebar {
        position: static;
        margin-top: 40px;
    }
} */

.blog-categories .search-input {
    background: var(--body-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--body-font);
    font-size: 14px;
    border-radius: 6px;
    padding: 8px 12px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    padding-right: 54px;
    border: 1px solid var(--secondary-color);
}

.blog-categories .search-input::placeholder {
    opacity: 1;
    color: #fff;
}

.blog-categories .search-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 5px var(--secondary-color);
}


.search-box form {
    position: relative;
    margin-bottom: 0;
}

.search-box .search-btn {
    background: var(--secondary-color);
    border: none;
    color: var(--white);
    font-size: 16px;
    padding: 8px 14px;
    border-radius: 0 6px 6px 0;
    transition: all 0.3s ease;
    position: absolute;
    top: 28px;
    height: 54px;
    right: 0;
}

.search-box .search-btn:hover {
    background: #e0bd52;
    color: var(--black);
}

/* Adjust spacing consistency */
.blog-categories h5 {
    margin-top: 0;
    margin-bottom: 15px;
}

.blog-details-section {
    background-color: var(--body-color);
    color: var(--white);
}

.blog-details-title {
    font-family: var(--heading-font);
    color: var(--secondary-color);
    font-size: 32px;
    font-weight: 600;
}

.blog-featured-img img {
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.blog-meta span {
    color: var(--grey);
    font-size: 14px;
    margin-right: 20px;
}

.blog-meta i {
    color: var(--secondary-color);
    margin-right: 6px;
}

.blog-details-content p {
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.blog-details-content h3 {
    font-family: var(--heading-font);
    color: var(--secondary-color);
    margin-top: 30px;
    font-size: 20px;
}

/* Quote Block */
.blog-quote {
    background-color: var(--primary-color);
    border-left: 4px solid var(--secondary-color);
    padding: 20px;
    font-style: italic;
    color: var(--grey);
    margin: 30px 0;
    border-radius: 6px;
    position: relative;
}

.blog-quote i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Footer details */
.blog-footer-details .tags a {
    background: var(--primary-color);
    color: var(--grey);
    font-size: 13px;
    text-decoration: none;
    margin-left: 6px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: 0.3s;
}

.blog-footer-details .tags a:hover {
    color: var(--black);
    background: var(--secondary-color);
}

.blog-footer-details .social-share a {
    color: var(--grey);
    font-size: 14px;
    margin-left: 10px;
    transition: color 0.3s;
}

.blog-footer-details .social-share a:hover {
    color: var(--secondary-color);
}

/* Related Posts */
.related-title {
    font-family: var(--heading-font);
    color: var(--secondary-color);
    text-transform: uppercase;
}

.related-posts .blog-card {
    background: var(--primary-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-posts .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.related-posts .blog-card .blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-posts .blog-content {
    padding: 15px;
}

.related-posts .blog-content h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.related-posts .read-more {
    font-size: 13px;
    color: var(--secondary-color);
    text-decoration: none;
}



/* Blog page end */


/* ---------- Success Modal ---------- */
.success-modal {
    background: var(--body-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.success-modal h5 {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 18px;
}

.success-modal p {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 20px;
}


.concierge-grid {
    position: relative;
    background: #0f0f0f;
    color: #fff;
    overflow: hidden;
}

.concierge-grid .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.concierge-grid .container {
    position: relative;
    z-index: 2;
}

.text-gold {
    color: var(--secondary-color);
}

.concierge-grid h2 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.concierge-grid p.lead {
    max-width: 500px;
    margin-left: 0;
    font-size: 18px;
    color: #ccc;
}

.concierge-card {
    /* background: linear-gradient(275deg, #01369c, #011b50); */
    height: 100%;
}

.concierge-card i {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 15px;
    transition: 0.3s;

}

.concierge-card p {
    font-weight: 600;
    font-size: 16px;
    color: #f1f1f1;
    margin: 0;
}



.concierge-card:hover i {
    transform: scale(1.15);
    color: #707070 !important;
}

.glowing-card {
    position: relative;
    background: #000;
    padding: 1px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(40px);
    overflow: hidden;

    height: 100%;
}

.glowing-card-inner {
    width: 100%;
    padding: 20px 15px;
    position: relative;
    z-index: 2;
    height: 100%;
}


/* --- Mask the center so only border glows --- */
.glowing-card::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: #000;
    z-index: 1;
}

/* --- Smooth continuous rotation --- */
@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}



.concierge-card i,
.concierge-card p {
    position: relative;
    z-index: 2;
}


.concierge-card:hover i {
    transform: scale(1.15);
    color: #1c89e8;
}


/* why choose */

.why-join-split {
    /* background: linear-gradient(-120deg, #000, #2d2d2d); */
    background: var(--black);
    color: #fff;
    overflow: hidden;
}

.text-gold {
    color: #1c89e8;
}

.why-join-split h2 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.why-join-split p.lead {
    color: #ccc;
    max-width: 600px;
    font-size: 16px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #eee;
    transition: 0.3s;
}

.why-list li i {
    color: #707070;
    font-size: 18px;
    width: 25px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    top: 6px;
}

.why-list li:hover {
    transform: translateX(5px);
    /* color: red; */
}

.why-list li:hover i {
    color: var(--white);
}

.why-img img {
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s ease;
    aspect-ratio: 1/1;
}

.why-img img:hover {
    transform: scale(1.03);
}


.membership-section {
    padding: 80px 5%;
    /* text-align: center; */
    position: relative;
    isolation: isolate;
}

.membership-section .container-fluid {
    padding: 0;
}

.membership-section .section-title {
    letter-spacing: 2px;
    /* color: #1c89e8; */
    margin-bottom: 60px;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    place-items: start;
}

.membership-card {
    position: relative;
    padding: 2px;
    overflow: hidden;
    border-radius: 20px;
    background: #0d0d0d;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 255, 200, 0.05);
    border: 2px solid #232323;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: -60%;
    left: 50%;
    width: 150%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 70%);
    filter: blur(50px);
    z-index: 1;
    transform: translateX(-50%);
    isolation: isolate;
    transition: all 0.4s ease-in-out;
}

.membership-card:hover::before {
    height: 200%;
    width: 250%;
}



.membership-card-inner {
    position: relative;
    z-index: 2;
    padding: 40px 25px;
    overflow: hidden;
    text-align: left;
    border-radius: 20px;
    background: transparent;
}

.membership-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 20px;
}

.membership-card .tagline {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.membership-card h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 10px;
}

.membership-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.membership-card ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px;
    color: #eee;
    font-size: 0.9rem;
    line-height: 1.5;
}

.membership-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    font-weight: bold;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.membership-card:hover::before {
    opacity: 1;
    filter: blur(14px) brightness(1.3);
}




.link-card {
    position: relative;

    transition-duration: 300ms;
    transition-property: transform, box-shadow;
    transition-timing-function: ease-out;
    transform: rotate3d(0);
}

.link-card:hover {
    transition-duration: 150ms;
}

.link-card .glow {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;

    background-image: radial-gradient(circle at 50% -20%, #ffffff22, #0000000f);
}



/* Transparent grid with grey lines */
.grid-border {
    --cell: 40px;
    --line-w: 1px;
    /* line thickness (overridden below on retina) */
    --line-grey: rgba(255, 255, 255, .02);
    --line-blue: rgba(41, 168, 255, 0.5);
    --cluster: 3;
    position: relative;
    background: transparent;
    overflow: hidden;
    isolation: isolate;
}

/* base grid (grey) — line first, then transparent */
.grid-border::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        repeating-linear-gradient(to right,
            var(--line-grey) 0 var(--line-w),
            /* put a line at 0 */
            transparent var(--line-w) var(--cell)),
        repeating-linear-gradient(to bottom,
            var(--line-grey) 0 var(--line-w),
            transparent var(--line-w) var(--cell));
}

/* BLUE CLUSTER “PING” (fixed edges) */
.grid-border .ping {
    position: absolute;
    z-index: 1;
    pointer-events: none;

    /* add line width so the far-right/bottom lines don’t get clipped */
    --w: calc(var(--cell) * var(--cluster) + var(--line-w));
    width: var(--w);
    height: var(--w);

    /* place top-left, then nudge back by half the line thickness
     so lines are centered and all four edges show */
    left: calc(var(--x) - (var(--line-w) / 2));
    top: calc(var(--y) - (var(--line-w) / 2));

    /* same repeating-line backgrounds, aligned to parent grid */
    background:
        repeating-linear-gradient(to right,
            var(--line-blue) 0 var(--line-w),
            transparent var(--line-w) var(--cell)),
        repeating-linear-gradient(to bottom,
            var(--line-blue) 0 var(--line-w),
            transparent var(--line-w) var(--cell));
    background-size: var(--cell) var(--cell), var(--cell) var(--cell);
    background-position:
        calc(var(--x) * -1) calc(var(--y) * -1),
        calc(var(--x) * -1) calc(var(--y) * -1);

    transform-origin: center;
    /* tiny translateZ helps subpixel rendering on some GPUs */
    transform: translateZ(0);
    filter: drop-shadow(0 0 10px color-mix(in oklab, var(--line-blue) 45%, transparent));
    animation: pingScale 2s ease-out forwards, pingFade 2s ease-out forwards;
}

/* crisper hairlines on Hi-DPI */
@media (min-resolution: 2dppx) {
    .grid-border {
        --line-w: .5px;
    }
}

/* crisper hairlines on Hi-DPI */
@media (min-resolution: 2dppx) {
    .grid-border {
        --line-w: .5px;
    }
}

@keyframes pingFade {
    0% {
        opacity: .95
    }

    70% {
        opacity: .35
    }

    100% {
        opacity: 0
    }
}

@keyframes pingScale {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.08)
    }
}


.grid-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}



.ax-preloader {
    --ax-blue: #1c89e8;
    --ax-bg-1: #070a10;
    --ax-bg-2: #0d1320;
    --ax-size: 300px;
    /* logo box size */
    --ax-ring-w: 8px;
    /* ring thickness */
    --ax-fade-ms: 600ms;

    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background:
        radial-gradient(1200px 600px at 25% 20%, #0a1220 0%, transparent 60%),
        radial-gradient(900px 500px at 75% 80%, #0b1830 0%, transparent 60%),
        linear-gradient(180deg, var(--ax-bg-1), var(--ax-bg-2));
    transition: opacity var(--ax-fade-ms) ease, visibility var(--ax-fade-ms) ease;
}

.ax-preloader.ax--hidden {
    opacity: 0;
    visibility: hidden;
}

.ax-preloader__inner {
    display: grid;
    justify-items: center;
    gap: 16px;
}

.ax-preloader__logo-wrap {
    position: relative;
    width: var(--ax-size);
    height: var(--ax-size);
    filter: drop-shadow(0 0 18px rgba(28, 137, 232, .25));
}

.ax-preloader__logo-img {
    position: absolute;
    inset: calc(var(--ax-ring-w) + 6px);
    width: calc(100% - (var(--ax-ring-w) + 6px) * 2);
    height: calc(100% - (var(--ax-ring-w) + 6px) * 2);
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    animation: axLogoPulse 2.4s ease-in-out infinite;
}


.ax-preloader__text {
    font: 500 18px/1.1 system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #a9b4c8;
    opacity: .85;
}

/* Keyframes (namespaced) */
@keyframes axRingSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes axRingGlow {

    0%,
    100% {
        filter: blur(0.6px) drop-shadow(0 0 12px rgba(28, 137, 232, .35));
    }

    50% {
        filter: blur(0.6px) drop-shadow(0 0 22px rgba(28, 137, 232, .65));
    }
}

@keyframes axLogoPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 6px rgba(28, 137, 232, .25));
    }

    50% {
        transform: scale(1.02);
        filter: drop-shadow(0 0 12px rgba(28, 137, 232, .45));
    }
}

@keyframes axShineSweep {
    0% {
        transform: translateX(-140%) skewX(-20deg);
        opacity: 0;
    }

    20% {
        opacity: .75;
    }

    60% {
        opacity: .35;
    }

    100% {
        transform: translateX(140%) skewX(-20deg);
        opacity: 0;
    }
}

/* Reduced motion: calmer */
@media (prefers-reduced-motion: reduce) {
    .ax-preloader__ring {
        animation: axRingSpin 6s linear infinite;
    }

    .ax-preloader__logo-img,
    .ax-preloader__shine {
        animation: none;
    }
}

.footer-sub form {
    position: relative;
}

.footer-sub input {
    background-color: transparent;
    border: 2px solid var(--white);
    height: 60px;
    min-height: auto;
    color: #fff;
    padding-right: 70px;
}

.footer-sub input::placeholder {
    color: #ccc;
}

.footer-sub button {
    border: none;
    background: var(--white);
    height: 60px;
    width: 60px;
    font-size: 25px;
    border-radius: 0 6px 6px 0;
    position: absolute;
    top: 0;
    right: 0;
    transition: all 0.3s ease-in-out;
}

.footer-sub button:hover {
    color: #707070;
}


.benifits-area {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.benifits-area h4 {
    padding-top: 16px;
}

/* When opened */
.benifits-area.open {
    opacity: 1;
    max-height: 500px;
}

.benifit-read-more {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    padding: 8px 16px;
    background: #707070;
    border-radius: 30px;
    width: max-content;
}

.app-icon-area img {
    max-width: 180px;
}


.inner-banner {
    padding-top: 150px;
    position: relative;
    isolation: isolate;
}

.inner-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.inner-banner-content {
    position: relative;
    z-index: 9;
}

@media(min-width:1280px) {
    .inner-banner-content {
        max-width: 700px;
    }
}

#our-story .about-left img {
    aspect-ratio: 5/3;
}


.value-card {
    text-align: left;
    height: 100%;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid #FAF7F2;
}

.value-card::before {
    content: '';
    position: absolute;
    bottom: -60%;
    left: 0;
    width: 150%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 70%);
    filter: blur(50px);
    z-index: 1;
    isolation: isolate;
    transition: all 0.4s ease-in-out;
}

.founders-sec {
    background: linear-gradient(180deg, #000, #2d2d2d);
}

.founder-card {
    height: 100%;
}

.founder-card .membership-card-inner {
    padding: 20px;
}

.founder-img {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    aspect-ratio: 1/1;
}


.vetting-sec {
    background: linear-gradient(180deg, #000, #2d2d2d);
}


.new-bullets {
    font-size: 50px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    position: relative;
    display: block;
    margin-bottom: 20px;
    isolation: isolate;
}

.new-bullets::before {
    content: attr(data-shadow);
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    -webkit-text-stroke: 5px rgba(255, 255, 255, 0.3);
    z-index: -1;
}

.perk-img-area {
    height: 100px;
    margin-left: auto;
    margin-right: auto;
}

.perk-img-area img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.perk-logo {
    text-align: center;
}


.partner-area {
    background: linear-gradient(180deg, #000, #2d2d2d);
}

/* Partner Form Container */
.partner-form.value-card::before {
    display: none;
}

.partner-form {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    background: #000;
    /* black */
    border-radius: 18px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.6);
    color: #f7f7f7;
}



/* Labels */
.partner-form .form-label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #b3b3b3;
    margin-bottom: 0.35rem;
}

/* Inputs, selects, textareas */
.partner-form .form-control {
    background: #1c1c1c;
    border: 1px solid #3a3a3a;
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
    font-size: 0.95rem;
    color: #f7f7f7 !important;
    box-shadow: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease,
        transform 0.1s ease;
}

.partner-form textarea.form-control {
    border-radius: 10px;
    min-height: 120px;
    resize: none;
}

/* Placeholder */
.partner-form .form-control::placeholder {
    color: #8d8d8d;
}

/* Focus state */
.partner-form .form-control:focus {
    background: #222;
    border-color: #f7f7f7;
    box-shadow: 0 0 0 1px #f7f7f733;
    outline: none;
    transform: translateY(-1px);
}

/* Select dropdown (basic reset within allowed colors) */
.partner-form select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #f7f7f7 50%),
        linear-gradient(135deg, #f7f7f7 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 3px),
        calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

/* Row spacing overrides (on top of .g-4) */
.partner-form .row>[class*="col-"] {
    margin-bottom: 0.35rem;
}



.partner-form .text-center {
    margin-top: 1.5rem;
}

.partner-form .cmn-btn.cmn-btn-red:hover {
    background: #000;
    color: #f7f7f7;
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.8);
    border: 2px solid #fff;
}

.partner-form .cmn-btn.cmn-btn-red:active {
    transform: translateY(0);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.7);
}


.member-login {
    min-height: 100vh;
    background: #000;
    color: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Center wrapper */
.member-login .login-wrapper {
    width: 100%;
    max-width: 700px;
}

/* Card */
.member-login .login-card {
    background: #111;
    border-radius: 20px;
    border: 1px solid #333;
    padding: 2.5rem 2.3rem 2.8rem;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.8);
}

/* Title + subtitle */
.member-login .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    color: #b3b3b3;
    margin-bottom: 0.4rem;
}

.member-login h1 {
    margin: 0 0 0.6rem;
    font-size: 1.7rem;
}

.member-login .subtitle {
    margin: 0 0 1.8rem;
    font-size: 0.95rem;
    color: #c0c0c0;
}

/* Form fields */
.member-login .form-group {
    margin-bottom: 1rem;
}

.member-login label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #b3b3b3;
}

.member-login input[type="email"],
.member-login input[type="password"] {
    width: 100%;
    border-radius: 999px;
    border: 1px solid #444;
    background: #1b1b1b;
    padding: 0.85rem 1rem;
    color: #f7f7f7;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease,
        box-shadow 0.2s ease, transform 0.1s ease;
}

.member-login input::placeholder {
    color: #8a8a8a;
}

.member-login input[type="email"]:focus,
.member-login input[type="password"]:focus {
    background: #222;
    border-color: #f7f7f7;
    box-shadow: 0 0 0 1px rgba(247, 247, 247, 0.25);
    transform: translateY(-1px);
}

/* Remember + forgot */
.member-login .form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0.5rem 0 1.5rem;
    gap: 1rem;
}

.member-login .remember-me {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.85rem;
    color: #d0d0d0;
    position: relative;
}

/* Hide default checkbox */
.member-login .remember-me input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Custom checkbox */
.member-login .checkmark {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #555;
    background: #111;
    margin-right: 0.45rem;
    box-sizing: border-box;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}

.member-login .remember-me input:checked+.checkmark {
    background: #f7f7f7;
    border-color: #f7f7f7;
}

.member-login .remember-me input:checked+.checkmark::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: 2px solid #000;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.member-login .remember-text {
    font-size: 0.82rem;
}

/* Links */
.member-login .forgot-link,
.member-login .apply-text a {
    font-size: 0.85rem;
    color: #f7f7f7;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.member-login .forgot-link:hover,
.member-login .apply-text a:hover {
    border-color: #f7f7f7;
    opacity: 0.9;
}

/* Button */
.member-login .btn-login {
    width: 100%;
    border-radius: 999px;
    border: 1px solid #f7f7f7;
    background: #f7f7f7;
    color: #000;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease,
        transform 0.1s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.member-login .btn-login span {
    display: inline-block;
}

.member-login .btn-login:hover {
    background: #000;
    color: #f7f7f7;
    border-color: #f7f7f7;
    transform: translateY(-2px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.9);
}

.member-login .btn-login:active {
    transform: translateY(0);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.85);
}

/* Apply text */
.member-login .apply-text {
    margin-top: 1.4rem;
    text-align: center;
    font-size: 0.85rem;
    color: #b8b8b8;
}


/* ========== responsive css =========== */


@media(min-width:1200px) {
    .container {
        max-width: 1164px;
    }

    .container-fluid {
        padding: 0 40px;
    }
}

@media(min-width:1440px) {
    .container {
        max-width: 1320px;
    }

    .container-fluid {
        padding: 0 80px;
    }
}

@media(min-width:1600px) {
    /* .container {
        max-width: 1580px;
    } */

    .container-fluid {
        padding: 0 80px;
    }
}

@media(min-width:1025px) {

    /* navbar*/
    .navbar-nav .clickD {
        display: block;
    }

    .navbar-nav .clickD {
        position: absolute;
        right: 0;
        top: 22px;
        width: 20px;
        height: 20px;
        background: url(../images/nav-down-arrow.svg) center center no-repeat;
        display: block;
        background-size: 10px;
        cursor: pointer;
    }

    .sub-menu>li.menu-item-has-children .clickD {
        top: 4px;
        right: 5px;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    .sub-menu>li.menu-item-has-children .clickD.toggled {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .navbar-nav li.menu-item-has-children:hover>.sub-menu {
        display: block;
    }
}

@media(max-width:1439px) {

    h1,
    .h1-title {
        font-size: 55px;
    }
}

@media(max-width:1199px) {

    h1,
    .h1-title {
        font-size: 42px;
    }

    h2,
    .h2-title {
        font-size: 32px;
    }


    .navbar-nav>li {
        margin: 0 8px;
    }

    /* 
    .banner-sec {
        margin-top: 80px;
        min-height: calc(100vh - 80px);
    } */

    .banner-cont h1 {
        max-width: 520px;
    }


    .reedem-wrap-col-1,
    .reedem-wrap-col-2 {
        width: 50%;
    }

    .about-area {
        margin-left: 0;
        padding: 32px 22px 32px 38px;
    }

    .reedem-top-img {
        max-width: 220px;
    }

    .missing-right-icon {
        margin-right: 25px;
        width: 50px;
        height: 50px;
        margin-left: 25px;
    }

    .service-left-box {
        margin: 0;
        padding: 32px 22px 32px 38px;
    }

    .service-left-box h2 {
        padding-right: 70px;
    }


}

@media(max-width:1024px) {

    /* navbar*/
    .navbar-nav .clickD {
        position: absolute;
        right: 0;
        top: 17px;
        width: 20px;
        height: 20px;
        background: url(images/nav-down-arrow.svg) center center no-repeat;
        display: block;
        background-size: 10px;
        cursor: pointer;
    }

    .navbar-nav .clickD.toggled {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .sub-menu>li.menu-item-has-children .clickD {
        top: 8px;
        right: 5px;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    .sub-menu>li.menu-item-has-children .clickD.toggled {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .navbar-nav>li.menu-item-has-children {
        padding-right: 20px;
    }

    .sub-menu>li.menu-item-has-children>a {
        padding-right: 20px;
    }

    .sub-menu.show {
        display: block;
    }

    .navbar-nav>li {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .navbar-nav>li.current-menu-item>a:after,
    .navbar-nav>li>a:after,
    .navbar-nav>li.menu-item-has-children>a:after {
        display: none;
    }

    .navbar-nav>li.current-menu-item>a:after,
    .navbar-nav>li>a:hover:after,
    .navbar-nav>li.menu-item-has-children:hover>a:after {
        width: 100%;
        opacity: 1;
    }

    /* navbar end*/


}


@media (max-width: 991px) {
    .cmn-gap {
        padding: 60px 0;
    }

    .cmn-btn {
        padding: 12px 10px !important;
    }

    .navbar-nav>li>a {
        position: relative;
    }

    .navbar-brand {
        order: 1;
        width: 130px;
    }

    .menu-right {
        order: 2;
        margin-left: auto;
    }

    /* .navbar-nav>li.current-menu-item>a, */
    .navbar-nav>li a:hover {
        padding-left: 50px;
    }

    .navbar-nav>li.current-menu-item>a::before,
    .navbar-nav>li>a:hover::before,
    .navbar-nav>li.menu-item-has-children:hover>a::before {
        opacity: 1;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }


    /* navbar*/
    .navbar-toggler {
        position: relative;
        width: 33px;
        margin-left: 20px;
        height: 28px;
        padding: 0;
        outline: none !important;
        border: none !important;
        box-shadow: none !important;
        order: 3;
    }

    .stick,
    .stick:after,
    .stick:before {
        width: 30px;
        height: 2px;
        background: #fff;
        position: absolute;
        left: 0;
        top: auto;
        transition: all 0.6s;
        border-radius: 5px;
    }

    .stick:before {
        content: '';
        top: -10px;
        left: 0;
    }

    .stick:after {
        content: '';
        top: 10px;
        left: 0;
    }

    .stick.open {
        transform: translateX(-50px);
        background: transparent;
    }

    .stick.open:before {
        transform: rotate(45deg) translate(42px, -28px);
        left: 2px;
    }

    .stick.open:after {
        transform: rotate(-45deg) translate(42px, 28px);
        left: 2px;
    }

    .navbar-nav .clickD {
        top: 5px;
        right: 10px;
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    .navbar-nav .clickD.toggled {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .sub-menu>li.menu-item-has-children .clickD {
        top: 8px;
        right: 10px;
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }


    .sub-menu,
    .navbar-nav>li>.sub-menu .sub-menu {
        position: relative;
        width: 100%;
        left: inherit;
        top: inherit;
        border: none;
        right: inherit;
    }

    .navbar-nav>li.menu-item-has-children {
        padding-right: 0;
    }

    .navbar-nav>li {
        margin: 0;
        padding: 0;
    }

    .navbar-nav>li>a {
        padding: 8px 20px;
        display: inline-block;
        width: 100%;
    }

    .navbar-nav li.menu-item-has-children>a {
        padding-right: 30px;
    }

    .sub-menu>li>a {
        padding-left: 40px;
    }

    .sub-menu .sub-menu>li>a {
        padding-left: 60px;
    }

    .sub-menu .sub-menu .sub-menu>li>a {
        padding-left: 80px;
    }

    .navbar-nav>li>a:after {
        bottom: 0;
    }

    /* navbar end*/

    /* push nav */

    .navbar-collapse {
        background: #000;
        position: fixed;
        top: -10px;
        height: 100vh !important;
        width: 290px;
        overflow-y: auto;
        transition: inherit !important;
        right: -10px;
        margin: 0;
        display: block !important;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out !important;
        z-index: 100;
        padding-top: 60px;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        display: block !important;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out !important;
    }

    .navbar-collapse .navbar-nav {
        margin: 80px 0 0;
        padding: 0 0 40px 0;
    }

    .navbar-collapse .navbar-toggler {
        display: block;
        right: 20px;
        top: 20px;
        position: absolute;
    }

    #navoverlay.open {

        background-color: rgba(0, 0, 0, 0.4);
        pointer-events: all;
        -webkit-transition: background-color 0.5s linear;
        transition: background-color 0.5s linear;
    }

    body.open-nav,
    html.open-nav {
        overflow: hidden;
    }

    .about-wrap-row {
        flex-direction: column-reverse;
    }

    .about-area {
        padding: 32px 25px 32px 25px;
    }

    /* push nav end */

    .reedem-wrap-col-1,
    .reedem-wrap-col-2 {
        width: 100%;
    }

    .about-sec,
    .missing-sec {
        padding-bottom: 60px;
    }

    .missing-sec {
        padding-top: 60px;
    }

    .about-sec::before {
        display: none;
    }

    .about-area {
        margin-bottom: 0;
    }

    .form-area-submit {
        margin-bottom: 0;
    }

    .reedem-img-wrap {
        background-color: transparent;
        padding-bottom: 0;
    }

    .reedem-top-img {
        max-width: 180px;
        margin: auto 0 20px auto;
    }

    .missing-big-img {
        margin-left: 0;
    }

    .missing-right {
        padding-left: 0;
        margin-top: 40px;
    }

    .banner-sec {
        /* margin-top: 63px; */
        min-height: calc(100vh - 63px);
    }

    .mcintosh-wrapper {
        flex-direction: column-reverse;
    }

    .mcintosh-left-column,
    .mcintosh-right-column {
        width: 100%;
    }

    .mcintosh-right-column {
        padding: 50px 0 0;
        transform: inherit !important;
        margin-bottom: 0;
    }


    .partnership-info {
        max-width: unset;
        padding: 0 0 30px;
    }

    .partnership-info h2 {
        width: 100%;
        max-width: 420px;
    }

    .partnership-logo {
        padding: 6px 0 0;
        width: 100%;
        max-width: 350px;
    }







    .footer-logo {
        width: 220px;
    }



    .page-footer-control::after {
        width: 320px;
    }

    .page-footer-control {
        padding: 28px 0 16px;
        margin: 0 0 12px;
    }






    .reedem-bottom-img {
        height: auto;
    }

    .reedem-top-img {
        display: none;
    }

    .about-wrap-row {
        flex-direction: row-reverse;
    }

    .about-area {
        padding: 0;
    }

    .import-data-img img {
        max-width: 80px;
    }



}

@media (max-width: 767px) {

    .cmn-gap {
        padding: 50px 0;
    }

    /* images alignment for wordpress content pages */
    .alignright,
    .alignleft,
    .aligncenter {
        float: none;
        clear: both;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        clear: both;
        margin-bottom: 24px;
    }

    h1,
    .h1-title {
        font-size: 34px;
    }

    h2,
    .h2-title {
        font-size: 24px;
    }


    .banner-cont h1 {
        max-width: 440px;
    }

    .about-sec {
        padding: 50px 0 10px 0;
    }





    .faq-area .accordion .accordion-button::after {
        width: 14px;
        height: 14px;
    }


}

@media (max-width: 575px) {



    .reedem-top-img {
        max-width: 140px;
    }

    .service-left-box {
        padding: 32px 24px;
    }




    .service-card-slider .slick-arrow {
        bottom: 18px;
        width: 35px;
        height: 35px;
        background-size: 8px;
    }

    .service-card-slider .slick-next {
        right: 18px;
    }

    .service-card-slider .slick-prev {
        right: 64px;
    }






    .secondary-nav li {
        padding: 6px 8px;
    }


    .footer-logo {
        width: 180px;
    }

}

@media (max-width: 479px) {
    body {
        line-height: 1.5;
    }

    .navbar-toggler {
        margin-left: 10px;
    }

    h1,
    .h1-title {
        font-size: 24px;
    }




    input[type="submit"] {
        padding: 14px 22px;
        font-size: 13px;
        height: auto;
    }




    .banner-sec {
        /* margin-top: 58px; */
        min-height: calc(100vh - 58px);
    }

    .about-area {
        padding: 20px;
    }

    .service-left-box h2 {
        padding-right: 0;
    }




    .footer-logo {
        width: 150px;
    }

    .page-footer-control {
        padding: 20px 0 14px;
        margin: 0 0 5px;
    }

    .page-footer-control::after {
        width: 272px;
    }

    .secondary-nav li {
        padding: 2px 8px;
    }

    .secondary-nav-block p {
        font-size: 13px;
        padding: 5px 0;
    }




    .secondary-nav {
        flex-direction: column;
    }

    .partnership-logo {
        max-width: 210px;
        padding: 0;
    }


}

@media (max-width: 359px) {
    .missing-right-content {
        flex-direction: column;
    }

    .missing-right-icon {
        margin-left: 12px;
        margin-bottom: 14px;
    }

    .missing-right-text {
        margin-left: 12px;
    }

    #google_translate_element {
        max-width: 100px;
    }


    .navbar-brand {
        max-width: 70px;
    }
}




.search-area {
    width: 320px;
    height: 50px;
    border-radius: 50px;
    color: #000;
    padding: 10px 20px;
    background: url(../images/search-icon.png) no-repeat center left 10px/contain white;
    background-size: 20px;
    padding-left: 40px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: none;
}

.search-area::placeholder {
    color: #999;
}


.video-area video {
    border-radius: 8px;
    aspect-ratio: 5/3;
    object-fit: cover;
    box-shadow: 0 0 4px 1px rgba(255, 255, 255, 0.3);
}

.app-icon a img {
    max-height: 60px;
}

.app-down-content {
    text-wrap: balance;
}

.app-down-content h2 {
    color: #b5b5b5;
}

.app-down-content h3 {
    text-wrap: balance;
}

@media(min-width:1280px) {
    .app-down-content h2 {
        font-size: 70px;
    }
}

.app-down-content h2 span {
    color: #fff;
}



/* =========================
   Footer (Polished)
   ========================= */
.main-footer {
    position: relative;
    padding: 80px 0 0;
    background: #050607;
    overflow: hidden;
}

.main-footer .footer-info a {
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.main-footer a:hover {
    color: var(--primary-color);
}

/* subtle glow */
.main-footer::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    left: -180px;
    bottom: -220px;
    background: radial-gradient(circle,
            rgba(213, 213, 65, 0.18) 0%,
            rgba(213, 213, 65, 0.08) 40%,
            rgba(213, 213, 65, 0.00) 70%);
    filter: blur(70px);
    pointer-events: none;
    opacity: .9;
}

.main-footer .container {
    position: relative;
    z-index: 1;
}

/* Brand/logo */
.footer-brand {
    max-width: 260px;
    height: auto;
    display: block;
    margin-bottom: 16px;
}

/* tagline text */
.footer-tagline {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.7;
    max-width: 380px;
}

/* Social icons */
.footer-social {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social li a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.footer-social li a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.18);
}

/* Titles */
.footer-title {
    margin: 8px 0 18px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .10em;
    font-size: 14px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 15px;
    transition: color .2s ease, transform .2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links li a:hover {
    color: var(--primary-color);
    transform: translateX(2px);
}

/* Visit us content */
.footer-info p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    font-size: 15px;
}

.footer-info strong {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 900;
}

/* CTA buttons inside footer */
.footer-cta {
    margin-top: 18px;
}

.footer-cta .cmn-btn {
    min-width: 180px !important;
    padding: 14px 22px !important;
    border-radius: 12px;
    font-size: 16px;
}

/* Divider */
.footer-divider {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}


/* Responsive polish */
@media (max-width: 991.98px) {
    .main-footer {
        padding: 65px 0 0;
    }

    .footer-brand {
        max-width: 170px;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .footer-cta {
        justify-content: flex-start !important;
    }
}

@media (max-width: 575.98px) {
    .footer-social li a {
        width: 44px;
        height: 44px;
    }

    .footer-cta .cmn-btn {
        width: 100%;
    }
}


.faq-sec {
    padding: 90px 0;
    background: #07090c;
    position: relative;
    overflow: hidden;
    background: center right 30%/cover no-repeat fixed;
}

.faq-sec::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    right: -180px;
    top: 10%;
    background: radial-gradient(circle,
            rgba(213, 213, 65, 0.22) 0%,
            rgba(213, 213, 65, 0.10) 40%,
            rgba(213, 213, 65, 0.00) 70%);
    filter: blur(70px);
    pointer-events: none;
    opacity: .95;
}

.faq-sec .container {
    position: relative;
    z-index: 1;
}

.faq-head {
    margin-bottom: 26px;
}

.faq-tag {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    margin-bottom: 12px;
}

.faq-title {
    color: var(--secondary-color);
    margin: 0 0 10px;
    line-height: 1.1;
}

.faq-sub {
    margin: 0 auto;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

/* wrapper */
.faq-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

/* item */
.faq-item {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.40);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform .2s ease, border-color .2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.14);
}

/* question */
.faq-q {
    width: 100%;
    padding: 18px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: transparent;
    border: 0;
    color: #fff;
    text-align: left;
    cursor: pointer;
    font-weight: 900;
    font-size: 16px;
}

.faq-ico {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: var(--primary-color);
    transition: transform .25s ease;
}

/* answer panel */
.faq-a {
    height: 0;
    overflow: hidden;
    transition: height .25s ease;
}

.faq-inner {
    padding: 14px 18px 18px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 15px;
    border-top: 1px solid var(--primary-color);
}

/* open state */
.faq-item.is-open .faq-ico {
    transform: rotate(45deg);
}

/* responsive */
@media (max-width: 991.98px) {
    .faq-sec {
        padding: 70px 0;
    }
}

@media (max-width: 575.98px) {
    .faq-sec {
        padding: 60px 0;
    }

    .faq-q {
        padding: 16px;
        font-size: 15px;
    }

    .faq-inner {
        padding: 12px 16px 16px;
    }
}


/* =========================
   Newsletter (Premium)
   ========================= */
.newsletter-sec {
    position: relative;
    padding: 90px 0;
    background: #050607;
    overflow: hidden;
}

/* background glow */
.newsletter-sec::before {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    left: -220px;
    top: 10%;
    background: radial-gradient(circle,
            rgba(213, 213, 65, 0.22) 0%,
            rgba(213, 213, 65, 0.10) 40%,
            rgba(213, 213, 65, 0.00) 70%);
    filter: blur(70px);
    pointer-events: none;
    opacity: .95;
}

.newsletter-sec::after {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    right: -240px;
    bottom: -260px;
    background: radial-gradient(circle,
            rgba(255, 138, 0, 0.18) 0%,
            rgba(255, 138, 0, 0.08) 40%,
            rgba(255, 138, 0, 0.00) 70%);
    filter: blur(80px);
    pointer-events: none;
    opacity: .9;
}

.newsletter-sec .container {
    position: relative;
    z-index: 1;
}

.newsletter-wrap {
    border-radius: 18px;
    padding: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
    overflow: hidden;
}

/* subtle texture */
.newsletter-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(900px 450px at 15% 30%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.00) 55%),
        radial-gradient(700px 420px at 80% 70%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.00) 55%);
    pointer-events: none;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    padding-right: 10px;
}

.newsletter-tag {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    margin-bottom: 12px;
}

.newsletter-title {
    color: #fff;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 12px;
    font-size: clamp(30px, 2.6vw, 44px);
}

.newsletter-sub {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    font-size: 16px;
    max-width: 520px;
}

.newsletter-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.newsletter-points li {
    color: rgba(255, 255, 255, 0.80);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.newsletter-points i {
    color: var(--primary-color);
    font-size: 18px;
}

/* right glass card */
.newsletter-glass {
    position: relative;
    z-index: 1;
    border-radius: 18px;
    padding: 26px;
    background: rgba(10, 12, 16, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

/* glow inside the form card */
.newsletter-glass::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    left: 70%;
    top: 30%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle,
            rgba(213, 213, 65, 0.25) 0%,
            rgba(213, 213, 65, 0.10) 40%,
            rgba(213, 213, 65, 0.00) 70%);
    filter: blur(60px);
    opacity: .9;
    pointer-events: none;
}

.newsletter-form-title {
    margin: 0 0 6px;
    color: #fff;
    font-weight: 900;
    font-size: 20px;
    position: relative;
}

.newsletter-form-sub {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    position: relative;
}

.newsletter-form {
    position: relative;
}

.newsletter-field {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 14px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.newsletter-field i {
    color: rgba(255, 255, 255, 0.65);
    font-size: 18px;
}

.newsletter-field input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font-size: 15px;
}

.newsletter-field input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

/* button styling (uses your cmn-btn) */
.newsletter-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
}

.newsletter-note {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    font-size: 12.5px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .newsletter-sec {
        padding: 70px 0;
    }

    .newsletter-wrap {
        padding: 24px;
    }
}

@media (max-width: 575.98px) {
    .newsletter-sec {
        padding: 60px 0;
    }

    .newsletter-wrap {
        padding: 18px;
    }

    .newsletter-glass {
        padding: 18px;
    }
}

/* 
.location-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.location-card h3 {
    margin-bottom: 15px;
}

.location-card .address {
    margin-bottom: 10px;
}

.coming-soon {
    color: #f39c12;
} */


/* section title — crisp & modern */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0b2b40;
    position: relative;
    margin-bottom: 3rem;
}

.section-title.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title:after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #1e7e83, #58b9c4);
    border-radius: 8px;
    margin: 8px 0 0 !important;
    box-shadow: 0 4px 8px rgba(0, 110, 120, 0.2);
}

/* location cards — elevated, glassy, with depth */
.location-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2.5rem 2.5rem 2rem 2rem;
    padding: 2rem 1.8rem 1.8rem 1.8rem;
    box-shadow: 0 30px 45px -20px rgba(0, 60, 70, 0.3),
        0 10px 20px -5px rgba(0, 40, 50, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.6);
    transition: transform 0.25s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}



/* card heading with location name */
.location-card h3 {
    font-weight: 700;
    font-size: 1.9rem;
    color: #103a44;
    margin-bottom: 0.4rem;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.3rem 0.8rem;
}

.coming-soon {
    background: linear-gradient(145deg, #FFC000, #EE0000);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: white;
    padding: 0.45rem 1.2rem;
    border-radius: 60px;
    box-shadow: 0 8px 14px -6px #d43f5e;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    margin-left: 0.25rem;
    white-space: nowrap;
}

.address {
    font-size: 1.15rem;
    font-weight: 500;
    color: #1d5260;
    margin: 1rem 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-left: 4px solid #5fb3c1;
    padding-left: 1.2rem;
    background: rgba(230, 247, 250, 0.5);
    border-radius: 0 40px 40px 0;
    line-height: 1.5;
}

.address i {
    font-size: 1.7rem;
    color: #147a8f;
    width: 2rem;
    text-align: center;
}

/* iframe wrapper — creates subtle pop & smooth corners */
.map-wrapper {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 30px -8px rgba(24, 70, 80, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.8) inset;
    transition: all 0.25s ease;
    margin-top: 0.75rem;
    border: 1px solid rgba(200, 230, 240, 0.7);
    background: #c1dce4;
    /* while loading */
}

.map-wrapper iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block;
    transition: filter 0.2s;
    filter: saturate(1.05) contrast(1.02);
}

.location-card:hover .map-wrapper {
    box-shadow: 0 28px 38px -12px #0c4b58, 0 0 0 3px rgba(255, 245, 210, 0.7) inset;
}

/* tiny icon set for extra pop (optional detail) */
.location-footer {
    display: flex;
    justify-content: flex-start;
    gap: 1.2rem;
    margin-top: 1.5rem;
    color: #1c7b8c;
    font-size: 1rem;
    font-weight: 500;
    border-top: 2px dashed #b7dfe8;
    padding-top: 1.3rem;
}

.location-footer i {
    background: #e1f2f5;
    padding: 0.5rem;
    border-radius: 50%;
    color: #0d5e6e;
    width: 2.2rem;
    text-align: center;
    font-size: 1.2rem;
}

.footer-note {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* responsive fine-tune */
@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }

    .location-card h3 {
        font-size: 1.7rem;
    }

    .coming-soon {
        font-size: 0.85rem;
    }

    .map-wrapper iframe {
        height: 240px;
    }
}

/* additional pop: floating background decoration */
.our-loaction {
    position: relative;
}



/* section title with bold accent */
.section-title {
    font-size: 2.8rem;
    letter-spacing: -0.02em;
    color: #1a1e24;
    /* near-black for contrast */
    margin-bottom: 3rem;
    position: relative;
}

.section-title span,
.hero-title span {
    background: linear-gradient(145deg, #EE0000, #FFC000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 0 0.2rem;
}

.section-title:after {
    content: '';
    display: block;
    width: 140px;
    height: 6px;
    background: linear-gradient(90deg, #EE0000 0%, #FFC000 70%, #FFC000 100%);
    border-radius: 40px;
    margin: 1rem auto 0;
    box-shadow: 0 4px 12px rgba(238, 0, 0, 0.3);
}

/* main row — two elegant cards */
.contact-card {
    background: white;
    /* pure white base */
    border-radius: 2.2rem;
    padding: 2.2rem 2rem;
    border: 1px solid rgba(255, 192, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: #FFC000;
}

/* left side — info card */
.info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-header .icon-badge {
    background: #FFC000;
    width: 60px;
    height: 60px;
    border-radius: 30% 70% 70% 30% / 30% 55% 45% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 15px 20px -10px #EE0000;
}

.info-header h3 {
    font-size: 2.2rem;
    color: #1a1e24;
    margin: 0;
    line-height: 1.2;
}

.info-header h3 small {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #EE0000;
    letter-spacing: 0.3px;
    margin-top: 0.3rem;
}

/* contact details list */
.contact-details {
    list-style: none;
    padding: 0;
    flex: 1;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 0;
    border-bottom: 2px dashed rgba(255, 192, 0, 0.3);
}

.contact-details li:last-child {
    border-bottom: none;
}

.contact-icon {
    background: #FFC000;
    width: 48px;
    height: 48px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 8px 0 #EE0000;
    transition: 0.2s;
    flex-shrink: 0;
}

.contact-details li:hover .contact-icon {
    background: #EE0000;
    box-shadow: 0 8px 0 #FFC000;
}

.detail-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1f2a30;
}

.detail-text .label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #EE0000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    line-height: 1.4;
}

/* social row */
.social-row {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

.social-link {
    background: white;
    border: 2px solid #FFC000;
    color: #EE0000;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    transition: all 0.2s;
    text-decoration: none;
}

.social-link:hover {
    background: #EE0000;
    border-color: #EE0000;
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 15px #FFC000;
}

/* ----- right side: form card ----- */
.form-card {
    background: white;
    border-radius: 2.2rem;
    padding: 2.2rem 2rem;
    border: 1px solid rgba(238, 0, 0, 0.2);
    height: 100%;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1e24;
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.form-title i {
    background: #EE0000;
    color: white;
    padding: 0.6rem;
    border-radius: 18px;
    font-size: 1.4rem;
    width: 60px;
    height: 60px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

/* modern input style */
.cont-form-card .form-control {
    border: 2px solid #eaeef2;
    border-radius: 10px;
    padding: 0.9rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    background: white;
    transition: all 0.2s;
    background: transparent;
}

.cont-form-card .form-control:focus {
    border-color: #FFC000;
    box-shadow: 0 0 0 5px rgba(255, 192, 0, 0.25);
    outline: none;
}

.cont-form-card textarea.form-control {
    border-radius: 10px;
    resize: none;
}

.btn-submit {
    background: linear-gradient(145deg, #EE0000, #FF4040);
    border: none;
    border-radius: 60px;
    padding: 1rem 2.2rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    width: 100%;
    box-shadow: 0 15px 20px -8px #EE0000;
    transition: all 0.2s;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
}

.btn-submit:hover {
    background: linear-gradient(145deg, #FFC000, #EE0000);
    box-shadow: 0 20px 30px -8px #FFC000;
    transform: scale(1.02);
    border: 2px solid white;
}

.btn-submit i {
    font-size: 1.4rem;
}

/* check container */
.form-check {
    padding-left: 2rem;
    margin-top: 0.5rem;
}

.form-check-input {
    width: 1.3rem;
    height: 1.3rem;
    margin-left: -2rem;
    border: 2px solid #FFC000;
}

.form-check-input:checked {
    background-color: #EE0000;
    border-color: #EE0000;
}

.form-check-label {
    font-size: 1rem;
    font-weight: 500;
    color: #37444d;
}

.form-check-label a {
    color: #EE0000;
    font-weight: 700;
    text-decoration: underline wavy #FFC000 2px;
}

.form-check-label a:hover {
    color: #FFC000;
}



/* responsive */
@media (max-width: 767px) {
    .section-title {
        font-size: 2.2rem;
    }

    .info-header h3 {
        font-size: 1.9rem;
    }

    .contact-card,
    .form-card {
        padding: 1.8rem 1.2rem;
    }
}


.map-area iframe {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.menu-name-wrap h2 {
    font-size: 30px;
}