@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..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;
}


:root {
    scroll-behavior: inherit;
    --body-color: #485555;
    --black: #000;
    --theme-black: #232323;
    --white: #fff;
    --grey: #8A8A8A;
    --grey2: #FAF7F2;
    --primary-color: #064070;
    --secondary-color: #C38940;
    --primary-grey: #454444;
    --heading-font: "Playfair Display", serif;
    --body-font: "Source Sans 3", 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: 17px;
    line-height: 1.6;
    counter-reset: count;
    top: 0 !important;
    background: #fff;
}



b,
strong {
    font-weight: 700;
}

p {
    margin: 0 0 22px 0;
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 18px 0;
    padding: 0;
    color: var(--black);
    font-weight: 700 !important;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}



h1,
.h1-title {
    line-height: 1.1;
    font-weight: 700;
    font-family: var(--heading-font);
    font-size: 64px;
    letter-spacing: 0.02em;
}

h2,
.h2-title {
    font-weight: 700;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    font-family: var(--heading-font);
}


h3,
.h3-title {
    font-weight: 600;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    font-family: var(--heading-font);
}

h4,
.h4-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    font-family: var(--heading-font);

}

h5,
.h5-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    text-transform: capitalize;
    font-family: var(--heading-font);
}

.sectop {
    font-family: var(--heading-font);
    font-weight: 600;
    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;
    padding: 16px 40px !important;
    min-width: 200px !important;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    text-transform: capitalize;
    text-align: center;
    color: #fff;
    background: var(--secondary-color);
    border-radius: 100px 180px 0px 100px;

}


.cmn-btn:hover {
    background: var(--black);
    color: var(--white);
}

.cmn-btn-black {
    background: var(--black);
}

.cmn-btn-black:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* .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;
}

.cmn-btn-white:hover {
    background-color: #000;
    color: #fff;
}

.cmn-btn-bdr {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}


.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;
    }
}


.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: 80px 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;
}

.fade-gradient::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 130px;
    pointer-events: none;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.8) 60%,
            rgba(0, 0, 0, 1) 100%);
    z-index: 1;
}



.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);
}


.banner-btn {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}


.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: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: #fff;
    display: none;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    line-height: 58px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    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: 25px;
    -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: transparent;
    position: fixed;
    top: 10px;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}

.main-head.fixed {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 12px 1px rgba(0, 0, 0, 0.2);
}

.main-head.fixed::before {
    content: '';
    top: 0;
    left: 0;
}

.main-head.fixed .navbar-brand {
    width: 150px;
}

.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(--white);
    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(--secondary-color);
}

.navbar-nav>li.current-menu-item>a {
    font-weight: 700;
}

.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-logo img {
    width: 100%;
}

.banner-sec-wrap {
    position: relative;
    isolation: isolate;
    min-height: 730px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0 40px;
}

.banner-sec-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: -1;
}

@media(max-width:767px) {
    .banner-sec-wrap::after {
        background: linear-gradient(-0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.85) 100%);
    }
}

.banner-text-inner-wrap {
    /* text-wrap: balance; */
    font-size: 18px;
    padding-top: 140px;
}

.banner-text-inner-wrap p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.banner-logo {
    max-width: 300px;
    margin-left: auto;
    margin: 0 auto 30px;
}


.banner-content-wrap {
    position: relative;
    z-index: 99;
}

.banner-sec {
    display: flex;
    align-items: center;
    background: #D9D9D1;
    position: relative;
    isolation: isolate;
    /* background: center/cover no-repeat fixed; */
}


.banner-sec {
    width: 100%;
    height: 100vh;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
}

.banner-sec .swiper-slide-inner {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    min-height: 100vh;

}

/* .banner-text [data-swiper-parallax] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.swiper-slide-active .banner-text [data-swiper-parallax] {
  opacity: 1;
  transform: translateY(0);
}

.swiper-slide-active .sectop {
  transition-delay: 0.2s;
}
.swiper-slide-active h1 {
  transition-delay: 0.4s;
}
.swiper-slide-active p {
  transition-delay: 0.6s;
}
.swiper-slide-active .banner-search-area {
  transition-delay: 0.8s;
} */




.banner-video,
.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.banner-social-links {
    position: fixed;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    list-style: none;
    z-index: 99;
    padding-inline-start: 0;
}

.banner-social-links li {
    font-size: 26px;
    color: #fff;

    transition: all 0.3s ease-in-out;
}

.banner-social-links li a {
    color: #fff;

}

.banner-social-links li:hover {
    transform: scale(1.2);
}


.banner-img img {
    width: 1180px;
    max-width: inherit;
}



@media(max-width:1919px) {
    .banner-img img {
        width: 1050px;
    }
}

@media(max-width:1599px) {
    .banner-img img {
        width: 1000px;
    }
}

@media(max-width:1439px) {
    .banner-img img {
        width: 850px;
    }
}

a .border-btn-area {
    display: flex;
    gap: 60px;
    margin-top: 30px;
    align-items: center;
}

.banner-text {
    color: #fff;
}

.banner-text h1 {
    color: var(--white);
    text-transform: capitalize;
}

.banner-text h1 em {
    text-transform: lowercase;
    font-family: var(--heading-font);
}

.banner-text h1 {
    font-weight: 500;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.banner-text h1 span {
    color: var(--secondary-color);
    font-weight: 900;
}

.banner-text h1 span strong {
    font-weight: 500;
    position: relative;
}

.banner-text h1 span strong::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 9px;
    border-radius: 30px;
    background-color: var(--primary-color);
    opacity: 0.7;
}


.icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper img {
    width: 40px;
    height: 40px;
}


/* .search-area {
    position: absolute;
    bottom: -3%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 3;
    padding: 28px 10px 28px 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    background: #FCFCFC;
    box-shadow: 0px 5px 40px rgba(125, 140, 158, 0.25);
    border-radius: 20px;
} */

.banner-search-area {
    padding-top: 25px;
}

.banner-search-area input {
    width: 100%;
    background-color: rgba(217, 217, 217, 0.5);
    max-width: 606px;
    margin-left: auto;
    margin-right: auto;
    height: 54px;
    background-image: url(../images/orange-search.png);
    background-position: 15px center;
    background-repeat: no-repeat;
    padding-left: 50px;
    border-radius: 15px;
    color: white;
    border: none;
    backdrop-filter: blur(4px);
    outline: none !important;
}

.banner-search-area input::placeholder {
    color: white;
}


/* Banner section ends */

.cta-form-sec {
    position: relative;
    isolation: isolate;
    margin: 80px 0;
}

.cta-form-sec::before {
    content: "";
    left: 0;
    bottom: 0;
    background: var(--black);
    position: absolute;
    width: 100%;
    height: 80%;
}

.cta-form-wrap {
    position: relative;
    border-radius: 10px;
    overflow: visible;
}

/* Left image area */
.cta-form-img-col {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: transparent;
}

.cta-form-img {
    width: 100%;
    height: 100%;
    text-align: end;
    display: flex;
    justify-content: flex-end;
}

.cta-form-img img {
    max-width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Center black panel */
.cta-form-mid-col {
    display: flex;
}

.cta-form-mid {
    width: 100%;
    color: #fff;
    padding: 44px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.cta-form-title {
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.25;
    color: #fff;
}

.cta-form-desc {
    line-height: 1.7;
    color: rgba(255, 255, 255, .72);
    margin: 0 0 22px;
}

.cta-form-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-form-actions .cmn-btn {
    margin-bottom: 50px;
    padding: 13px 35px !important;
    min-width: auto !important;
}


.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-left: 14px;
    margin-top: 50px;
    position: relative;
}

.cta-phone::before {
    content: "";
    width: 1px;
    height: 80px;
    position: absolute;
    left: -2px;
    top: -30px;
    background-color: var(--secondary-color);
    transform: rotate(25deg);
}

.cta-phone__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: inline-grid;
    place-items: center;
    color: #fff;
    font-size: 23px;
}

.cta-phone__link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .2px;
}

.cta-phone__link:hover {
    text-decoration: underline;
}

/* Right form */
.cta-form-form-col {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.cta-form-box {
    width: 100%;
    max-width: 460px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .16);
    padding: 20px;
    margin-bottom: -30px;


}

.cta-form-box__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 12px;
}

/* Inputs */
.cta-form-box .cta-input,
.cta-form-box .select {
    border-radius: 6px;
    border: 1px solid #E4E4E4 !important;
    padding: 10px 12px;
    background-color: transparent !important;
    box-shadow: none !important;
    color: #000 !important;
    height: 55px;
}

.cta-input:focus {
    border-color: var(--secondary-color) !important;
}

/* Date/Time icon overlay */
.cta-date-wrap {
    position: relative;
}

.cta-date-ic {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa6b2;
    pointer-events: none;
    font-size: 14px;
}

/* Hide native calendar icon space alignment differences */
.cta-date-wrap input[type="date"],
.cta-date-wrap input[type="time"] {
    padding-right: 34px;
}

/* Submit button */
.cta-submit-btn {
    background: var(--secondary-color);
    border: 0;
    color: #fff;
    font-weight: 900;
    letter-spacing: .6px;
    font-size: 16px;
    padding: 12px 14px;
    border-radius: 6px;
    text-transform: uppercase;
}

.cta-submit-btn:hover {
    filter: brightness(.95);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .cta-form-mid {
        padding: 34px 22px;
        text-align: left;
    }

    .cta-form-form-col {
        padding: 0 12px 20px;
    }

    .cta-form-box {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .cta-form-actions {
        gap: 12px;
    }

    .cta-phone {
        border-left: 0;
        padding-left: 0;
    }

    .cta-form-mid {
        padding: 28px 18px;
    }
}


@media(min-width:1200px) {

    .cta-form-img-col,
    .cta-form-form-col {
        width: 30%;
    }

    .cta-form-mid-col {
        width: 40%;
    }
}





.testi-sec {
    position: relative;
    background: #fff;
}

.testi-sec__sub {
    max-width: 520px;
    line-height: 1.7;
}

.testi-sec__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: .4px;
    text-transform: uppercase;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .12);
}

.testi-sec__btn:hover {
    filter: brightness(.95);
    color: #fff;
}

/* Swiper spacing */
.testi-sec .swiper {
    padding: 10px 0 36px;
}

.testi-sec .swiper-slide {
    padding: 0 10px;
}

/* Card */
.testi-card {
    position: relative;
    min-height: 250px;
    overflow: visible;
}

.testi-card__quote {
    position: absolute;
    top: -20px;
    left: 80px;
    font-size: 120px;
    line-height: 1;
    font-weight: 900;
    color: var(--secondary-color);
    /* opacity: .75; */
    pointer-events: none;
    font-family: var(--body-font);
}

.testi-card__body {
    position: relative;
    padding: 30px;
    /* max-width: 500px; */
    background: #FFFFFF;
    box-shadow: -5px 3px 24px rgba(241, 194, 208, 0.2);
    border-radius: 20px 50px 50px 20px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.testi-card__text {
    line-height: 1.75;
    margin: 28px 0 18px;
    /* max-width: 340px; */
}

.testi-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 290px;
}

.testi-card__name {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: #2a3a49;
}

.testi-card__line {
    width: 34px;
    height: 2px;
    background: #2a3a49;
    display: inline-block;
    border-radius: 2px;
}

.testi-card__stars {
    color: #f2b233;
    font-size: 12px;
    letter-spacing: 1px;
}

/* Avatar on right, overlapping */
.testi-card__avatar {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #fff;
    width: 225px;
    height: 225px;
    box-shadow: -10px 0px 20px rgba(195, 137, 64, 0.3);
    z-index: 3;
    display: none;

}

.testi-card__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Dots */
.testi-sec .testi-sec__pagination {
    bottom: 0 !important;
}

.testi-sec .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: #d9dde3;
    opacity: 1;
    margin: 0 6px !important;
}

.testi-sec .swiper-pagination-bullet-active {
    background: #2b3b4a;
}

.main-footer {
    font-family: inherit;
}

/* Left panel */
.main-footer .footer-left {
    background: #0b0f14;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.main-footer .footer-brand {
    max-width: 220px;
    height: auto;
}

/* Titles */
.main-footer .footer-title {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 14px;
}

/* Links */
.main-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-footer .footer-links li {
    margin-bottom: 8px;
}

.main-footer .footer-links a {
    color: rgba(255, 255, 255, .70);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.6;
}

.main-footer .footer-links a:hover {
    color: var(--secondary-color);
}

/* Contact */
.main-footer .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-footer .footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .75);
    font-size: 15px;
    line-height: 1.5;
}

.main-footer .footer-contact i {
    color: var(--secondary-color);
    margin-top: 2px;
    min-width: 16px;
}

.main-footer .footer-contact a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
}

.main-footer .footer-contact a:hover {
    color: #fff;
}

/* Office hours */
.main-footer .footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-footer .footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    border-bottom: 1px dashed rgba(255, 255, 255, .08);
}

.main-footer .footer-hours li span {
    color: rgba(255, 255, 255, .60);
}

.main-footer .footer-hours li strong {
    color: rgba(255, 255, 255, .92);
    font-weight: 800;
}

/* Social icons */
.main-footer .footer-social {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: flex;
    gap: 10px;
}

.main-footer .footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .25);
}


.main-footer .footer-social a:hover {
    filter: brightness(.95);
    transform: translateY(-8px);
}

/* Divider + bottom */
.main-footer .footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, .10);
    margin: 22px 0 14px;
}

.main-footer .footer-bottom {
    color: rgba(255, 255, 255, .65);
    font-size: 15px;
}

.main-footer .footer-bottom a {
    color: #fff;
}

.main-footer .footer-bottom a:hover {
    color: var(--secondary-color);
}

.main-footer .footer-bottom-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 800;
}

.main-footer .footer-bottom-link:hover {
    text-decoration: underline;
}

/* Right map panel */
.main-footer .footer-map {
    position: relative;
    min-height: 340px;
    background: #e9eef5;
}

.main-footer .footer-map iframe {
    width: 100%;
    height: 100%;
    min-height: 340px;
    border: 0;
    display: block;
}

/* Pin + ripple on border (like screenshot) */
/* Make sure map container doesn't clip the pin */
.main-footer .footer-map {
    position: relative;
    overflow: visible;
    /* important */
}

/* Keep iframe behind the pin */
.main-footer .footer-map iframe {
    position: relative;
    z-index: 1;
}

/* Pin always on top + visible */
.main-footer .footer-pin {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: grid;
    place-items: center;
    color: #fff;
    z-index: 999;
    /* higher so it never hides */
    pointer-events: auto;
    /* clickable if needed */
    box-shadow: 0 14px 35px rgba(0, 0, 0, .30);
}

/* Stronger pulse using secondary color */
.main-footer .footer-pin::before,
.main-footer .footer-pin::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: var(--secondary-color);
    opacity: .28;
    /* visible ripple */
    z-index: -1;
    animation: footerPulse 1.8s infinite;
}

.main-footer .footer-pin::before {
    inset: -10px;
}

.main-footer .footer-pin::after {
    inset: -22px;
    opacity: .18;
    animation-delay: .45s;
}

/* If you want a ring-style pulse (even clearer), add border too */
.main-footer .footer-pin::before {
    border: 2px solid var(--secondary-color);
    background: transparent;
    opacity: .45;
}

.main-footer .footer-pin::after {
    border: 2px solid var(--secondary-color);
    background: transparent;
    opacity: .30;
}

@keyframes footerPulse {
    0% {
        transform: scale(.75);
        opacity: .55;
    }

    70% {
        transform: scale(1.25);
        opacity: 0;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .main-footer .footer-pin {
        left: 50%;
        top: 0;
        transform: translate(-50%, -50%);
    }

    .main-footer .footer-map iframe {
        min-height: 300px;
    }
}


















/* 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 */



.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;
}




/* =========================================
   INNER HERO
========================================= */
.inner-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    min-height: 320px;
    isolation: isolate;
}

.inner-hero .cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 14, 27, 0.82) 0%,
            rgba(0, 14, 27, 0.72) 55%,
            rgba(0, 14, 27, 0.95) 100%);
    pointer-events: none;
    z-index: -1;
}

.inner-hero__content {
    position: relative;
    z-index: 1;
    max-width: 920px;
    padding: 50px 0;
}

.inner-hero__content h1 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.12;
    font-size: clamp(34px, 4.4vw, 58px);
}

.inner-hero__content p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    font-size: 16px;
}

/* =========================================
   CONTACT PAGE SECTIONS
========================================= */

/* --- top info cards --- */
.contact-info .info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 26px 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
    height: 100%;
}

.contact-info .info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 140, 32, 0.35);
    background: rgba(255, 255, 255, 0.04);
}

.contact-info .info-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;

    background: rgba(6, 64, 112, 0.22);
    border: 1px solid rgba(6, 64, 112, 0.35);
    color: var(--white);
    font-size: 18px;
}

.contact-info .info-card__title {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 8px;
    color: var(--white);
}

.contact-info .info-card__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.contact-info .info-card__link {
    display: inline-block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-weight: 600;
}

.contact-info .info-card__link:hover {
    color: var(--secondary-color);
}

/* --- main form/map boxes --- */
.contact-main .contact-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: clamp(18px, 2.2vw, 28px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    height: 100%;
}

/* tighten headings on contact boxes */
.contact-main .contact-box h2 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
}

/* --- form controls (scoped to the form inside contact section) --- */
.contact-main .contact-form .form-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82) !important;
    margin-bottom: 8px;
}

.contact-main .contact-form .form-control,
.contact-main .contact-form .form-select {
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--white);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    box-shadow: none;
    color: #fff !important;
}

.contact-main .contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-main .contact-form .form-control::placeholder,
.contact-main .contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-main .contact-form .form-control:focus,
.contact-main .contact-form .form-select:focus,
.contact-main .contact-form textarea:focus {
    border-color: rgba(251, 140, 32, 0.65);
    outline: 0;
    box-shadow: 0 0 0 4px rgba(251, 140, 32, 0.16);
}

/* Style dropdown arrow slightly for dark background */
.contact-main .contact-form .form-select {
    background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.65) 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.65) 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(1em + 10px), calc(100% - 13px) calc(1em + 10px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 40px;
}

.contact-main .contact-form .form-select option {
    color: var(--black);
}

.contact-main .contact-form textarea {
    min-height: 120px;
    resize: none !important;
}

/* --- map wrap --- */
.contact-main .map-wrap {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.15);
}

.contact-main .map-wrap iframe,
.contact-main .map-wrap img {
    width: 100%;
    display: block;
    border: 0;
}

.contact-main .map-wrap iframe {
    height: 360px;
    filter: saturate(0.85) contrast(1.05) brightness(0.92);
}

/* --- office mini cards --- */
.contact-main .office-mini {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 16px 16px;
    height: 100%;
}

.contact-main .office-mini__title {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 14px;
    margin: 0 0 6px;
    color: var(--white);
}

.contact-main .office-mini__text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.65;
}

/* =========================================
   Responsive tweaks
========================================= */
@media (max-width: 991.98px) {
    .inner-hero {
        padding: 90px 0 40px;
    }

    .contact-main .map-wrap iframe {
        height: 320px;
    }
}

@media (max-width: 575.98px) {
    .contact-info .info-card {
        padding: 22px 18px;
    }

    .contact-main .contact-box {
        padding: 18px 16px;
    }
}


/* =========================================
   ABOUT PAGE 
========================================= */

/* ---------- ABOUT INTRO ---------- */
.about-intro__media img,
.about-approach__media img {
    width: 100%;
    height: auto;
    display: block;
}

.about-highlights {
    display: grid;
    gap: 12px;
}

.about-highlight {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-highlight__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    background: rgba(6, 64, 112, 0.22);
    border: 1px solid rgba(6, 64, 112, 0.35);
    color: var(--white);
    font-size: 16px;
}

.about-highlight__text h4 {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 14px;
    margin: 0;
    color: var(--white);
}

.about-highlight__text p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

/* ---------- VALUES ---------- */
.about-values .value-card {
    height: 100%;
    padding: 24px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.about-values .value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 140, 32, 0.35);
    background: rgba(255, 255, 255, 0.04);
}

.about-values .value-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;

    background: rgba(6, 64, 112, 0.22);
    border: 1px solid rgba(6, 64, 112, 0.35);
    color: var(--white);
}

.about-values .value-card__icon img {
    max-width: 28px;
    height: auto;
    display: block;
}

.about-values .value-card__title {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 8px;
    color: var(--white);
}

.about-values .value-card__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.75;
}

/* ---------- APPROACH LIST ---------- */


/* ========== 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;
    }

    .navbar-nav>li>a {
        position: relative;
    }

    .navbar-brand {
        order: 1;
    }

    .menu-right {
        order: 2;
        margin-left: auto;
        display: none;
    }

    /* .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:not(:last-child) {
        margin-bottom: 12px;
    }

    .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: 50px 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: 32px;
        line-height: 1.3;
    }




    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;
}


.cmm-h2 {
    font-weight: 700;
    color: #1d2733;
    line-height: 1.2;
    margin: 0;
}

.about-split {
    padding: 180px 0;
}

.about-desc {
    color: #6c7a89;
    max-width: 680px;
}

/* Diamond image */
.diamond-wrap {
    position: relative;
    width: min(380px, 100%);
    aspect-ratio: 1 / 1;
}


.diamond-frame {
    position: relative;
    isolation: isolate;
    border-radius: 26px;
    aspect-ratio: 1/1;
    overflow: hidden;
    transform: rotate(45deg);
    background: #fff;
    border-radius: 20px;
}

.diamond-wrap::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100%;
    border: 10px solid var(--secondary-color);
    z-index: -1;
    transform: rotate(45deg);
    border-radius: 20px;
    pointer-events: none;
}

.diamond-wrap::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--black);
    z-index: -1;
    transform: rotate(45deg);
    border-radius: 20px;
    pointer-events: none;
}

.diamond-img {
    position: absolute;
    top: -100px;
    left: -80px;
    width: 150%;
    height: 150%;
    overflow: hidden;
    transform: rotate(-45deg);
    border-radius: 8px;
}

.diamond-img img {
    width: 100%;
}

/* Experience badge */
.exp-badge {
    position: absolute;
    left: 50%;
    bottom: -105px;
    transform: translateX(-50%) rotate(45deg);
    width: 120px;
    height: 120px;
    background: var(--secondary-color);
    border-radius: 16px;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .12);
    font-family: var(--heading-font);
    font-weight: 900;
}

.exp-badge__inner {
    transform: rotate(-45deg);
    text-align: center;
    color: #fff;
    line-height: 1.1;
}

.exp-badge__num {
    font-size: 50px;
    font-weight: 800;
}

.exp-badge__text {
    font-size: 18px;
}

/* List with Font Awesome check */
.about-list__item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #364554;
    font-weight: 600;
}

.check-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: rgba(0, 0, 0, .04);
    color: var(--secondary-color);
    flex: 0 0 30px;
    font-size: 16px;
}


/* Button */
.about-btn {
    background: #0b0f14;
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: .5px;
    font-size: 12px;
    text-transform: uppercase;
    border: 0;
}

.about-btn:hover {
    background: var(--secondary-color);
    color: #fff;
}

/* Dotted decor top-right */
.dots-decor {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 120px;
    height: 94px;
    background-image: radial-gradient(var(--secondary-color) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: .65;
}

/* Optional watermark bottom-right */
.watermark {
    position: absolute;
    right: 0px;
    bottom: -40px;
    max-width: 300px;
    width: 20%;
}

.watermark img {
    width: 100%;
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .diamond-wrap {
        margin: 0 auto 25px;
    }
}



.featured-services {
    position: relative;
    background: url(../images/service-bg.png) center/cover no-repeat;
    background-color: #fff;
}

.featured-services__title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #1d2733;
    margin-bottom: 28px;
}

.featured-services__wrap {
    padding-bottom: 40px;
    /* room for pagination */
}

/* Card layout */
.service-card {
    position: relative;
    margin: 40px 0;
}

.service-card__img {
    height: 250px;
    overflow: hidden;
    border-radius: 2px;
}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card__body {
    width: calc(100% - 46px);
    margin: -40px auto 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease-in-out;

}

.service-card:hover .service-card__body {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 59px -20px, rgba(0, 0, 0, 0.3) 0px 30px 6px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.service-card__title {
    font-weight: 800;
    color: #203040;
    margin: 0 0 8px;
}

.service-card__text {
    line-height: 1.6;
    color: #6c7a89;
    margin: 0 0 10px;
}

.service-card__link {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .4px;
    color: var(--secondary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: all 0.3s ease-in-out;

}

.service-card__link::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    border-radius: 30px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
}

.service-card__link:hover {
    letter-spacing: 1px;
}

.service-card__link:hover::before {
    width: 100%;
}

/* Swiper spacing */
.featured-services .swiper {
    padding: 10px 0 0;
}

.featured-services .swiper-slide {
    padding: 0 6px;
}

/* Pagination dots (same centered 3 dots style) */
.featured-services .featured-services__pagination {
    bottom: 0 !important;
}

.featured-services .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border: 2px solid var(--secondary-color);
    background: transparent;
    opacity: 1;
    margin: 0 6px !important;
}

.featured-services .swiper-pagination-bullet-active {
    background: var(--secondary-color);
}

/* Nav buttons styled via parent class */
.featured-services .swiper-button-next,
.featured-services .swiper-button-prev {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--secondary-color);
    top: 45%;
    transform: translateY(-50%);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
}

.featured-services .swiper-button-next::after,
.featured-services .swiper-button-prev::after {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}

.featured-services .swiper-button-prev {
    left: -18px;
}

.featured-services .swiper-button-next {
    right: -18px;
}

.featured-services .swiper-button-next:hover,
.featured-services .swiper-button-prev:hover {
    filter: brightness(.95);
}

/* Responsive nav positioning */
@media (max-width: 992px) {
    .featured-services .swiper-button-prev {
        left: 0;
    }

    .featured-services .swiper-button-next {
        right: 0;
    }
}


/* Section */
.team-sec {
    position: relative;
    background: #fff;
}

.team-sec__sub {
    max-width: 540px;
}


/* Card */
.team-card {
    position: relative;
    isolation: isolate;
}

.team-card__inner {
    position: relative;
    background: #fff;
    border-radius: 8px;
    padding: 0 35px 35px;
    text-align: center;
    min-height: 260px;
    box-shadow: 0px 10px 36px rgba(0, 0, 0, 0.16), 0px 0px 0px 1px rgba(0, 0, 0, 0.06);
    isolation: isolate;
}

.team-card__inner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 20px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    border-radius: 0 0 8px 8px;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.team-card:hover .team-card__inner::after {
    height: 100%;
    border-radius: 8px;
}

.team-card:hover .team-card__inner * {
    color: #fff;
}

.team-card__avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
    margin: auto;
    position: relative;
    top: -50px;
    margin-bottom: -40px;
}

.team-card__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.team-card__name {
    font-size: 24px;
    font-weight: 800;
    color: #1d2733;
    margin: 8px 0 10px;
}

.team-card__text {
    line-height: 1.7;
    margin: 0;
    font-size: 18px;
    text-align: center;
}

.team-card::after {
    content: '';
    position: absolute;
    inset: 30px 35px -10px 35px;
    background: var(--secondary-color);
    border-radius: 18px;
    transform: rotate(25deg);
    opacity: 0.5;
    z-index: -1;
    transition: all 0.6s ease-in-out;
    pointer-events: none;
}

.team-card:hover::after {
    transform: rotate(-25deg);
    opacity: 0.2;

}

.team-card__bar {
    height: 10px;
    width: 68%;
    margin: -8px auto 0;
    background: var(--secondary-color);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, .10);
}


@media(max-width:479px) {
    .diamond-wrap {
        width: min(250px, 100%);
    }

    .exp-badge {
        bottom: -83px;
        width: 90px;
        height: 90px;
    }

    .diamond-wrap {
        margin-bottom: 60px;
    }

    .about-split {
        padding-bottom: 20px;
    }

    .testi-card__avatar {
        width: 100px;
        height: 100px;
        position: relative;
        top: 0;
        transform: inherit;
        margin-bottom: -50px;
        z-index: 3;
        margin-left: 30px;
    }

    .testi-card__quote {
        left: auto;
        right: 20px;
    }

    .footer-map {
        display: none;
    }
}


/* Inner pages */
/* ===========================
   ABOUT PAGE (Inner)
=========================== */

.inner-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 140px 0 40px;
    overflow: hidden;
}

.inner-hero__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.inner-hero__title {
    color: #fff;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.1;
    margin-bottom: 12px;
}

.inner-hero__title span {
    color: #c58a3a;
}

.inner-hero__sub {
    color: rgba(255, 255, 255, .85);
    max-width: 760px;
    margin: 0 auto 22px;
}

.inner-hero__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.inner-breadcrumb ol {
    list-style: none;
    display: inline-flex;
    gap: 10px;
    padding: 0;
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
}

.inner-breadcrumb a {
    color: var(--secondary-color)
}

.inner-breadcrumb li+li::before {
    content: "/";
    opacity: .6;
    margin-right: 10px;
}

/* Stats */
.about-stats {
    padding-top: 40px;
}

.stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 26px 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    height: 100%;
    text-align: center;
}

.stat-card__ic {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #c58a3a;
    color: #fff;
    margin-bottom: 12px;
}

.stat-card__ttl {
    margin-bottom: 6px;
}

.stat-card__txt {
    margin: 0;
    opacity: .8;
}

/* Values + Tech cards */
.value-card,
.tech-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}

.value-card {
    padding: 26px 22px;
}

.value-card__ic {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 138, 58, .14);
    color: #c58a3a;
    margin-bottom: 12px;
    font-size: 18px;
}

.value-card__ttl {
    margin-bottom: 6px;
}

.value-card__txt {
    margin: 0;
    opacity: .8;
}

.tech-card__img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.tech-card__body {
    padding: 18px 18px 20px;
}

.tech-card__txt {
    margin: 0;
    opacity: .8;
}

/* Office gallery */
.office-shot {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.office-shot img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* FAQ */
.faq-acc .accordion-item {
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    margin-bottom: 14px;
}

.faq-acc .accordion-button {
    font-weight: 600;
    padding: 18px 18px;
}

.faq-acc .accordion-button:not(.collapsed) {
    background: rgba(197, 138, 58, .12);
    color: #111;
}

/* CTA strip */
.cta-strip {
    background: var(--secondary-color);
    padding: 46px 0;
    color: #fff;
}

.cta-strip__ttl {
    margin: 0;
}

.cta-strip__txt {
    opacity: .85;
}

.featuredServicesWrap .service-card {
    margin: 0;
    height: 100%;
}

.team-bio-btn {
    padding: 10px 35px !important;
    margin-top: 30px;
    min-width: auto !important;
}


.team-page-sec .team-card {
    margin: 40px 0;
}


/* ===========================
   TEAM FILTERS
=========================== */

.team-filters {
    margin-top: 18px;
}

.team-filters .nav {
    gap: 12px !important;
}

.team-filters .nav-pills .nav-link {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    color: #0b0b0b;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    transition: all 0.25s ease;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
}

.team-filters .nav-pills .nav-link:hover {
    transform: translateY(-2px);
    border-color: rgba(197, 138, 58, 0.55);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.team-filters .nav-pills .nav-link.active,
.team-filters .nav-pills .show>.nav-link {
    background: #c58a3a;
    color: #fff;
    border-color: #c58a3a;
    box-shadow: 0 16px 34px rgba(197, 138, 58, 0.28);
}

.team-filters .nav-pills .nav-link:focus-visible {
    outline: 3px solid rgba(197, 138, 58, 0.35);
    outline-offset: 3px;
}

@media (max-width: 576px) {
    .team-filters .nav-pills .nav-link {
        padding: 11px 16px;
        font-size: 15px;
    }
}


/* ===========================
   BEFORE / AFTER GALLERY
=========================== */

.ba-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .08);
    height: 100%;
}

.ba-compare {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #0b0b0b;
    user-select: none;
    touch-action: none;
}

.ba-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-after {
    position: absolute;
    inset: 0;
    width: 55%;
    overflow: hidden;
    will-change: width;
}

.ba-label {
    position: absolute;
    top: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .2px;
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .15);
    z-index: 4;
    pointer-events: none;
}

.ba-label--before {
       left: 14px;
    color: #fff;
    background: rgba(0, 0, 0, .55);
    border: 1px solid rgba(255, 255, 255, .14);
}

.ba-label--after {
     right: 14px;
    color: #fff;
    background: rgba(197, 138, 58, .92);
    border: 1px solid rgba(255, 255, 255, .22);
}

/* Handle */
.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 55%;
    width: 0;
    z-index: 5;
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-1px);
}

.ba-handle::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .2);
    border-radius: 10px;
}

.ba-handle__dot {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #c58a3a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 35px rgba(197, 138, 58, .35);
    border: 3px solid rgba(255, 255, 255, .9);
    flex-shrink: 0;
}

.ba-handle__dot i {
    font-size: 16px;
}

.ba-range {
    position: absolute;
    inset: auto 12px 12px 12px;
    width: calc(100% - 24px);
    z-index: 6;
    accent-color: #c58a3a;
    opacity: 0;
    /* visually hidden but still accessible */
    height: 36px;
    cursor: ew-resize;
}

.ba-card__body {
    padding: 16px 16px 18px;
}

.ba-card__title {
    margin: 0 0 6px;
    font-size: 18px;
}

.ba-card__text {
    margin: 0;
    opacity: .8;
}

/* Hover polish */
.ba-card:hover .ba-handle__dot {
    transform: scale(1.03);
    transition: transform .2s ease;
}

.sevice-details-btn .cmn-btn {
    min-width: auto !important;
    padding: 10px 25px 10px 16px !important;
    font-size: 16px;
}


.text-theme-primary {
    color: var(--secondary-color);
}

.text-theme-bg-primary {
    background-color: var(--secondary-color);
}


.all-service-list i {
    color: var(--secondary-color);
}



/* =========================================
   Cosmetic Showcase
========================================= */

#cosmetic-showcase {
    position: relative;
}

#cosmetic-showcase .nav-pills .nav-link {
    border: 1px solid rgba(195, 137, 64, 0.35);
    color: #1b1b1b;
    background: transparent;
    padding: 10px 16px;
    border-radius: 999px;
    transition: all 0.25s ease;
    font-weight: 600;
}

#cosmetic-showcase .nav-pills .nav-link:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 24px rgba(195, 137, 64, 0.18);
    transform: translateY(-1px);
}

#cosmetic-showcase .nav-pills .nav-link.active,
#cosmetic-showcase .nav-pills .show>.nav-link {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
    box-shadow: 0 14px 28px rgba(195, 137, 64, 0.28);
}

#cosmetic-showcase .card {
    border-radius: 14px;
}

#cosmetic-showcase .card.shadow-sm {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

#cosmetic-showcase .card:hover {
    box-shadow: 0 16px 38px rgba(195, 137, 64, 0.18) !important;
}

#cosmetic-showcase .ratio {
    border-radius: 12px;
}

#cosmetic-showcase .ratio img {
    transition: transform 0.35s ease, filter 0.35s ease;
}

#cosmetic-showcase button:hover .ratio img {
    transform: scale(1.04);
    filter: contrast(1.02) saturate(1.05);
}

#cosmetic-showcase .btn.btn-dark {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: #fff !important;
    box-shadow: 0 14px 30px rgba(195, 137, 64, 0.30);
}

#cosmetic-showcase .btn.btn-dark:hover,
#cosmetic-showcase .btn.btn-dark:focus {
    background: var(--black) !important;
    box-shadow: 0 18px 40px rgba(195, 137, 64, 0.38);
}

#cosmetic-showcase .ratio .bg-dark {
    background: var(--secondary-color) !important;
    box-shadow: 0 12px 30px rgba(195, 137, 64, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

#cosmetic-showcase button:hover .ratio .bg-dark {
    box-shadow: 0 18px 44px rgba(195, 137, 64, 0.45);
    background: var(--black) !important;
}

.modal .btn.btn-outline-dark {
    border-color: rgba(195, 137, 64, 0.55);
    color: #1b1b1b;
}

.modal .btn.btn-outline-dark:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    box-shadow: 0 12px 28px rgba(195, 137, 64, 0.25);
}

/* Links (optional) */
#cosmetic-showcase a.text-decoration-none:hover {
    color: var(--secondary-color) !important;
}

.square-img {
    aspect-ratio: 5/3;
    object-fit: cover;
}

.cta-form-book .cta-form-box {
    max-width: 100%;
    padding: 40px;
}


.cta-date-wrap{
    position: relative;
}

.cta-date-placeholder{
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}


















