@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&display=swap');
/* =========================
   GLOBAL RESET & BASE
   background: #c5a47ed6;
   CTA Color: #ad8a5f
   Text Color: #c5a47e
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}
/* =========================
   FONTS
========================= */
body {
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #111;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Oswald", sans-serif;
}

/* =========================
   COLOR SYSTEM
========================= */
:root {
    --re-white: #ffffff;
    --re-gold: #ad8a5f;
    --re-gold-light: #e4c281;
    --re-gold-gradient: #ad8a5f;
    --re-text-light: rgba(255,255,255,0.8);
    --re-border: rgba(202,165,106,0.25);
    --re-radius: 20px;
    --re-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* =========================
   COMMON ELEMENTS
========================= */
.re-btn,
.re-header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--re-gold-gradient);
    color: #111 !important;
    transition: all 0.3s ease;
}

.re-btn:hover,
.re-header-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(202,165,106,0.3);
}

/* Section spacing */
.section-space {
    padding: 70px 0 60px;
}

/* Container */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Headings */
.re-section-head {
    text-align: center;
    margin-bottom: 50px;
}

.re-section-head h2 {
    font-size: 48px;
    color: #fff;
}

.re-section-head p {
    color: var(--re-text-light);
    font-size: 16px;
    margin-top: 10px;
}
/* =========================
   Custom Banner CSS
========================= */
.custom-inner-banner {
    position: relative;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.custom-inner-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: 1;
}

.custom-inner-banner .banner-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.custom-inner-banner .container {
    width: 100%;
    height: 100%;
}

.custom-inner-banner .banner-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 70px;
    text-align: center;
}

.custom-inner-banner h1 {
    margin: 0;
    color: #fff;
    font-size: 58px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
}

.custom-inner-banner .banner-line {
    width: 250px;
    height: 2px;
    background: #ad8a5f;
    display: block;
    margin: 26px auto 0;
}

@media (max-width: 1399px) {
    .custom-inner-banner {
        height: 560px;
    }

    .custom-inner-banner h1 {
        font-size: 62px;
        letter-spacing: 8px;
    }
}

@media (max-width: 991px) {
    .custom-inner-banner {
        height: 440px;
    }

    .custom-inner-banner .banner-content {
        padding-top: 50px;
    }

    .custom-inner-banner h1 {
        font-size: 48px;
        letter-spacing: 6px;
    }

    .custom-inner-banner .banner-line {
        width: 100px;
        margin-top: 22px;
    }
}

@media (max-width: 767px) {
    .custom-inner-banner .banner-content {
        padding-top: 35px;
    }

    .custom-inner-banner h1 {
        font-size: 34px;
        letter-spacing: 4px;
    }

    .custom-inner-banner .banner-line {
        width: 75px;
        margin-top: 18px;
    }
}
/* =========================
   Desktop Header
========================= */
.re-site-header{
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.re-header-wrap{
    width: 100%;
}

.re-header-container{
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 26px;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    position: relative;
    background: linear-gradient(90deg, var(--re-header-bg) 0%, #ffffff 45%, var(--re-header-bg-2) 100%);
    border: 1px solid var(--re-line);
    border-radius: 60px;
    box-shadow: var(--re-shadow);
    background-color: #fff;
}

.re-header-container::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(202,165,106,0.06) 0%, transparent 25%, transparent 75%, rgba(202,165,106,0.06) 100%);
}

.re-site-header .brand-panel,
.re-site-header .header-phone,
.re-site-header .vertical-panel,
.re-site-header .vertical-panel-content,
.re-site-header .social-list,
.re-site-header .slide-number,
.re-site-header .brand-name{
    display: none !important;
}
.re-header-brand{
    position: relative;
    z-index: 2;
    flex: 0 0 180px;
    max-width: 180px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    opacity: 1 !important;
    visibility: visible !important;
}

.re-header-logo{
    width: auto;
    max-height: 95px;
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    padding-left: 15%;
}

.re-brand-text{
    color: #000;;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
}

.re-brand-text .text-primary{
    color: #ad8a5f;
}
.re-navbar-desktop{
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
}

.re-navbar-menu,
.re-navbar-menu ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.re-navbar-menu{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.re-navbar-menu > li{
    position: relative;
    margin: 0;
    padding: 0;
}

.re-navbar-menu > li > a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 16px;
    color: #111111 !important;
    opacity: 1 !important;
    font-size: 14px;
    font-weight: 500 !important;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    transition: all 0.35s ease;
}

.re-navbar-menu > li > a:hover{
    color: #ffffff !important;
    background: #ad8a5f;
    font-weight: 700 !important;
}

.re-navbar-menu > li.current-menu-item > a,
.re-navbar-menu > li.current_page_item > a,
.re-navbar-menu > li.current-menu-ancestor > a,
.re-navbar-menu > li.current_page_ancestor > a{
    background: #ad8a5f;
    color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(202,165,106,0.20);
}

.re-navbar-menu > li.menu-item-has-children > a::after{
    content: "\f107";
    font-family: FontAwesome;
    font-size: 12px;
    margin-left: 8px;
    letter-spacing: 0;
}

/* hide duplicate CTA if menu contains last button item */
.re-navbar-menu > li:last-child{
    display: none !important;
}
.re-navbar-menu > li > ul.sub-menu{
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 280px;
    background: #ffffff;
    border: 1px solid rgba(202,165,106,0.20);
    border-radius: 24px;
    padding: 14px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.28s ease;
    z-index: 99;
}

.re-navbar-menu > li:hover > ul.sub-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.re-navbar-menu > li > ul.sub-menu > li{
    position: relative;
    margin-bottom: 10px;
}

.re-navbar-menu > li > ul.sub-menu > li:last-child{
    margin-bottom: 0;
}

.re-navbar-menu > li > ul.sub-menu > li > a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-radius: 18px;
    color: #111111 !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500 !important;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: #fff;
    transition: all 0.28s ease;
}

.re-navbar-menu > li > ul.sub-menu > li:hover > a,
.re-navbar-menu > li > ul.sub-menu > li.current-menu-item > a,
.re-navbar-menu > li > ul.sub-menu > li.current-menu-ancestor > a{
    background: #ad8a5f;
    color: #ffffff !important;
}

.re-navbar-menu ul.sub-menu > li.menu-item-has-children > a::after{
    content: "\f105";
    font-family: FontAwesome;
    font-size: 14px;
    margin-left: 14px;
    line-height: 1;
}

/* second level opens to right */
.re-navbar-menu ul.sub-menu > li > ul.sub-menu{
    position: absolute;
    top: 0;
    left: calc(100% + 12px);
    min-width: 260px;
    background: #ffffff;
    border: 1px solid rgba(202,165,106,0.20);
    border-radius: 22px;
    padding: 14px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.10);
    opacity: 0;
    visibility: hidden;
    transform: translateX(12px);
    transition: all 0.28s ease;
    z-index: 120;
}

.re-navbar-menu ul.sub-menu > li:hover > ul.sub-menu{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.re-navbar-menu ul.sub-menu > li > ul.sub-menu > li{
    margin-bottom: 10px;
}

.re-navbar-menu ul.sub-menu > li > ul.sub-menu > li:last-child{
    margin-bottom: 0;
}

.re-navbar-menu ul.sub-menu > li > ul.sub-menu > li > a{
    display: block;
    padding: 15px 16px;
    border-radius: 16px;
    background: #fff;
    color: #111 !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500 !important;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.re-navbar-menu ul.sub-menu > li > ul.sub-menu > li > a:hover,
.re-navbar-menu ul.sub-menu > li > ul.sub-menu > li.current-menu-item > a{
    background: #ad8a5f;
    color: #ffffff !important;
}

/* =========================
   CTA
========================= */
.re-header-cta{
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    margin-left: 10px;
}

.re-header-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 178px;
    min-height: 58px;
    padding: 14px 28px;
    border-radius: 999px;
    background: #000;
    color: #ffffff !important;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.16em;
    font-family: "Oswald", sans-serif;
    box-shadow: 0 14px 28px rgba(17,17,17,0.16);
    transition: all 0.30s ease;
}

.re-header-button:hover{
    background: #ad8a5f;
    color: #000 !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(202,165,106,0.28);
}

/* =========================
   MOBILE HEADER
========================= */
.re-navbar-mobile{
    display: none;
}

.re-mobile-brand{
    display: flex;
    align-items: center;
    text-decoration: none;
    max-width: calc(100% - 60px);
}

.re-mobile-logo{
    max-height: 52px;
    width: auto;
    display: block;
}

.re-mobile-toggle{
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.re-mobile-toggle span{
    display: block;
    width: 22px;
    height: 2px;
    margin-left: auto;
    background: #111;
    border-radius: 20px;
}

/* important for bootstrap collapse */
.re-mobile-collapse{
    display: none;
    margin-top: 10px;
}

.re-mobile-collapse.in{
    display: block;
}

.re-mobile-collapse .container{
    background: #ffffff;
    border: 1px solid rgba(202,165,106,0.16);
    border-radius: 20px;
    padding: 10px 16px 16px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}

.re-mobile-menu,
.re-mobile-menu ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.re-mobile-menu > li{
    border-bottom: 1px solid rgba(17,17,17,0.08);
}

.re-mobile-menu > li:last-child{
    border-bottom: 0;
    display: none;
}

.re-mobile-menu > li > a{
    display: block;
    position: relative;
    padding: 14px 28px 14px 0;
    color: #111 !important;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.re-mobile-menu li.menu-item-has-children > a::after{
    content: "\f107";
    font-family: FontAwesome;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #111;
}

.re-mobile-menu li > ul.sub-menu{
    display: none;
    padding: 0 0 8px 14px;
}

.re-mobile-menu li.submenu-open > ul.sub-menu{
    display: block;
}

.re-mobile-menu li > ul.sub-menu > li > a{
    display: block;
    padding: 10px 22px 10px 0;
    position: relative;
    color: #222 !important;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    border-top: 1px solid rgba(17,17,17,0.05);
}

.re-mobile-menu li > ul.sub-menu > li.menu-item-has-children > a::after{
    content: "\f107";
    font-family: FontAwesome;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: #111;
}

.re-mobile-menu li > ul.sub-menu > li > ul.sub-menu{
    display: none;
    padding: 0 0 8px 14px;
}

.re-mobile-menu li > ul.sub-menu > li.submenu-open > ul.sub-menu{
    display: block;
}

.re-mobile-menu li > ul.sub-menu > li > ul.sub-menu > li > a{
    display: block;
    padding: 9px 0;
    color: #555 !important;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    border-top: 1px solid rgba(17,17,17,0.04);
}

.re-mobile-menu li.current-menu-item > a,
.re-mobile-menu li.current-menu-ancestor > a{
    color: #ad8a5f !important;
}

.re-mobile-cta-wrap{
    padding-top: 14px;
}

.re-header-button-mobile{
    width: 100%;
    justify-content: center;
}
@media (max-width: 1399px){
    .re-header-brand{
        flex: 0 0 170px;
        max-width: 170px;
    }

    .re-header-logo{
        max-height: 88px;
    }

    .re-navbar-menu > li > a{
        padding: 14px 15px;
        font-size: 12px;
        letter-spacing: 0.18em;
    }

    .re-header-button{
        min-width: 160px;
        padding: 14px 22px;
    }
}

@media (max-width: 1199px){
    .re-site-header{
        top: 14px;
    }

    .re-header-container{
        min-height: 74px;
        padding: 0 14px;
        border-radius: 40px;
    }

    .re-navbar-desktop,
    .re-header-cta,
    .re-header-brand{
        display: none !important;
    }

    .re-navbar-mobile{
        display: flex !important;
        align-items: center;
        width: 100%;
    }
}

@media (max-width: 767px){
    .re-header-container{
        min-height: 76px;
        border-radius: 40px;
        gap: 14px;
    }

    .re-navbar-mobile{
        width: 100%;
    }

    .re-mobile-logo{
        max-height: 48px;
    }

    .re-mobile-collapse .container{
        border-radius: 18px;
        padding: 8px 14px 14px;
    }
}
/* =========================
    FOOTER CSS
========================= */
.re-premium-footer {
    background: #ffffff;
    color: #000;
    padding: 80px 0 0px;
    border-top: 1px solid #ad8a5f;
}

.re-footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 60px;
}

.re-footer-logo img {
    max-width: 160px;
    margin-bottom: 20px;
}

.re-footer-desc {
    color: #333333;
    font-size: 16px;
    line-height: 1.95;
    margin-bottom: 30px;
}

.re-footer-social a {
    margin-right: 12px;
    font-size: 28px;
    color: #caa56a;
    transition: 0.3s;
}

.re-footer-social a:hover {
    color: #caa56a;
}

.re-footer-links h4, .re-footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.re-footer-links ul {
    list-style: none;
    padding: 0;
}

.re-footer-links li {
    margin-bottom: 10px;
}

.re-footer-links a {
    color: #444;
    text-decoration: none;
    transition: 0.3s;
}

.re-footer-links a:hover {
    color: #caa56a;
    padding-left: 5px;
}

.re-footer-contact p {
    font-size: 14px;
    margin-bottom: 12px;
    color: #444;
}

.re-footer-contact i {
    margin-right: 8px;
    color: #caa56a;
}

.re-footer-contact a {
    color: #000;
    text-decoration: none;
}
.re-footer-map iframe {
    width: 100%;
    height: 180px;
    border: 0;
    border-radius: 10px;
    margin-top: 15px;
}

.re-footer-bottom {
    text-align: center;
    margin-top: 50px;
    font-size: 14px;
    color: #333333;
    border-top: 1px solid #ad8a5f;
    padding-top: 20px;
}

/* Scroll To Top */
.re-scroll-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 60px;
    height: 60px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    background: #ad8a5f;
    color: #111;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(0,0,0,0.28);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.re-scroll-top:hover {
    transform: translateY(-6px) scale(1.05) !important;
}

.re-scroll-top span {
    display: inline-block;
    transform: translateY(-1px);
}
@media (max-width: 1024px) {

    .re-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .re-footer-brand {
        grid-column: span 2;
        text-align: center;
    }

    .re-footer-logo img {
        margin: 0 auto 15px;
    }

    .re-footer-desc {
        max-width: 500px;
        margin: 0 auto 20px;
    }

    .re-footer-social {
        justify-content: center;
        display: flex;
    }
    .re-footer-links-wrap {
        display: flex;
        justify-content: space-between;
        gap: 30px;
    }
    .re-footer-contact {
        grid-column: span 2;
        text-align: center;
    }

    .re-footer-map iframe {
        height: 220px;
    }
}

@media (max-width: 767px) {

    .re-premium-footer {
        padding: 60px 0 20px;
    }

    .re-footer-main {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    /* BRAND */
    .re-footer-brand {
        text-align: center;
    }

    .re-footer-logo img {
        margin: 0 auto 10px;
        max-width: 140px;
    }

    .re-footer-social {
        display: flex;
        justify-content: center;
        gap: 12px;
    }
    
    .re-footer-contact {
        text-align: center;
        padding: 20px;
        border: 1px solid #ad8a5f;
        border-radius: 12px;
    }

    .re-footer-contact p {
        font-size: 13px;
    }

    .re-footer-map iframe {
        height: 200px;
        margin-top: 15px;
    }
    
    .re-footer-links-wrap {
        display: flex;
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .re-footer-links h4 {
        margin-bottom: 10px;
    }

    .re-footer-links ul {
        padding: 0;
    }

    .re-footer-links li {
        margin-bottom: 8px;
    }

    .re-footer-bottom {
        font-size: 12px;
        margin-top: 30px;
    }

    .re-scroll-top {
        width: 52px;
        height: 52px;
        right: 18px;
        bottom: 18px;
        font-size: 21px;
    }
}
.re-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.68);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.35s ease;
    z-index: 99999;
    overflow-y: auto;
}

.re-popup-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.re-popup-box {
    position: relative;
    width: 100%;
    max-width: 760px;
    background: #f7f5f1;
    border-radius: 22px;
    padding: 34px 34px 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    transform: translateY(20px);
    transition: transform 0.35s ease;
}

.re-popup-overlay.active .re-popup-box {
    transform: translateY(0);
}

.re-popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.08);
    color: #111;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.re-popup-content h5 {
    margin: 0 0 22px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.06em;
    font-family: "Oswald", sans-serif;
}

.re-popup-form p {
    margin: 0 0 18px;
}

.re-popup-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.re-popup-form input[type="text"],
.re-popup-form input[type="email"],
.re-popup-form input[type="tel"],
.re-popup-form input[type="number"],
.re-popup-form input[type="file"],
.re-popup-form select,
.re-popup-form textarea {
    width: 100%;
    background: #2b2b2b !important;
    color: #fff !important;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px !important;
    padding: 16px 18px;
    font-size: 16px;
    box-shadow: none;
    outline: none;
}

.re-popup-form input::placeholder,
.re-popup-form textarea::placeholder {
    color: #fff !important;
}

.re-popup-form textarea {
    min-height: 140px;
    resize: vertical;
}

.re-popup-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.re-popup-form input[type="file"] {
    background: #fff;
    color: #111;
    padding: 14px 16px;
    border: 1px solid #d7d1c7;
}

.re-popup-form input:focus,
.re-popup-form select:focus,
.re-popup-form textarea:focus {
    border-color: #b08a52;
}

.re-popup-form .wpcf7-submit {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    display: inline-block;
}

.re-popup-form .wpcf7-submit:hover {
    background: #b08a52;
    color: #fff;
}

.re-popup-form .wpcf7-spinner {
    display: block;
    margin-top: 10px;
}

body.re-popup-open {
    overflow: hidden;
}

@media (max-width: 767px) {
    .re-popup-box {
        max-width: 100%;
        padding: 24px 18px 20px;
        border-radius: 18px;
    }

    .re-popup-content h5 {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .re-popup-form input[type="text"],
    .re-popup-form input[type="email"],
    .re-popup-form input[type="tel"],
    .re-popup-form input[type="number"],
    .re-popup-form input[type="file"],
    .re-popup-form select,
    .re-popup-form textarea {
        font-size: 15px;
        padding: 14px 14px;
    }
}
/* ==========================
   HOME PAGE CSS
========================== */
.re-home-page {
    background:
        radial-gradient(circle at top left, rgba(201,165,92,0.06), transparent 32%),
        radial-gradient(circle at bottom right, rgba(201,165,92,0.04), transparent 28%),
        linear-gradient(180deg, #1b1b1b 0%, #202020 100%);
    color: #333333;
    overflow: hidden;
}

.re-lux-hero,
.re-lux-showcase,
.re-lux-values,
.re-lux-cta {
    position: relative;
}

.re-animate-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: transform, opacity;
}

.re-animate-up.re-animated {
    opacity: 1;
    transform: translateY(0);
}

.section-space-sm {
    padding: 0 0 110px;
}

.re-home-page .container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.re-section-head {
    margin-bottom: 40px;
}

.re-section-head-center {
    text-align: center;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.re-section-head h3 {
    margin: 0;
    margin-bottom: 18px;
    font-size: 42px;
    line-height: 1.95;
    font-weight: 500;
    letter-spacing: 0.16em;
    color: #ad8a5f;
    font-family: "Oswald", sans-serif;
}

.re-section-head p {
    color: #333333;
    font-size: 16px;
    line-height: 1.95;
    margin-bottom: 10px;
}

.re-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 172px;
    padding: 15px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    transition: all 0.35s ease;
}

.re-btn-primary,
.re-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e4c281 0%, #ad8a5f 100%);
    color: #111 !important;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none !important;
    border: none;
    transition: all 0.35s ease;
}

.re-btn-primary:hover,
.re-hero-btn:hover {
    transform: translateY(-3px);
    color: #111 !important;
}

.re-btn-secondary {
    border: 1px solid rgba(255,255,255,0.18);
    color: #333333;
    background: rgba(255,255,255,0.02);
}

.re-btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    color: #333333;
    transform: translateY(-3px);
}

.re-home-hero-slider {
    position: relative;
    background: #181818;
    padding: 0;
    overflow: hidden;
}

.re-hero-slider-wrap {
    position: relative;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
}

.re-hero-slider-track {
    position: relative;
    display: flex;
    gap: 20px;
    transition: transform 0.7s ease;
}

.re-hero-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 92vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.re-hero-slide-image,
.re-hero-slide-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.re-hero-slide-image img {
    transform: scale(1.03);
    transition: transform 7s ease;
}

.re-hero-slide.active .re-hero-slide-image img {
    transform: scale(1.09);
}

.re-hero-slide-content {
    position: absolute;
    left: 50px;
    right: 50px;
    bottom: 130px;
    text-align: center;
    width: 100%;
    z-index: 5;
}
.re-hero-title {
    font-size: 44px;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: #f5f1ea;
    line-height: 0.95;
    font-family: "Oswald", sans-serif;
}
.re-hero-title-line {
    display: inline-block;
}

.re-hero-title-line span {
    opacity: 0;
    display: inline-block;
    transform: translateY(30px);
}

.re-hero-title-line.animate-text span {
    animation: reLetterFadeUp 0.6s ease forwards;
}

@keyframes reLetterFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.re-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 15px 30px;
    border-radius: 999px;
    background: #ad8a5f;
    color: #111;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    transition: all 0.35s ease;
    box-shadow: 0 12px 28px rgba(201,165,92,0.24);
}

.re-hero-btn:hover {
    transform: translateY(-3px);
    color: #111;
    box-shadow: 0 18px 34px rgba(201,165,92,0.30);
}

/* Navigation arrows */
.re-hero-nav {
    position: absolute;
    right: 42px;
    bottom: 46px;
    z-index: 10;
    display: flex;
    gap: 12px;
}

.re-hero-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid #ad8a5f;
    background: rgba(20,20,20,0.42);
    color: #f5f1ea;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.re-hero-arrow:hover {
    background: #ad8a5f;
    border-color: #ffffff;
}

/* Dots */
.re-hero-dots {
    position: absolute;
    left: 7%;
    bottom: 56px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
}

.re-hero-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.re-hero-dots button.active {
    width: 34px;
    border-radius: 20px;
    background: #ad8a5f;
}

/* Responsive */
@media (max-width: 1399px) {
    .re-hero-slide-content h1 {
        font-size: 66px;
    }
}

@media (max-width: 1199px) {
    .re-hero-slide {
        flex: 0 0 100%;
        min-height: 620px;
    }

    .re-hero-title {
        font-size: 38px;
    }
}

@media (max-width: 991px) {
    .re-hero-slider-track {
        gap: 18px;
    }

    .re-hero-slide {
        flex: 0 0 100%;
        height: 78vh;
        min-height: 560px;
    }

    .re-hero-slide-content {
        left: 24px;
        right: 24px;
        bottom: 110px;
        padding: 0;
    }

    .re-hero-title {
        font-size: 42px;
        line-height: 1.02;
    }

    .re-hero-dots {
        left: 24px;
        bottom: 32px;
    }

    .re-hero-nav {
        right: 24px;
        bottom: 24px;
    }
}

@media (max-width: 767px) {
    .re-hero-slide {
        height: 68vh !important;
        min-height: 480px !important;
        max-height: 620px;
    }

    .re-hero-slide-image img {
        object-fit: cover;
        object-position: center center;
        transform: scale(1) !important;
    }

    .re-hero-overlay,
    .re-hero-overlay-pattern {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .re-hero-overlay {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.62) 0%,
            rgba(0, 0, 0, 0.28) 45%,
            rgba(0, 0, 0, 0.06) 100%
        );
    }

    .re-hero-slide-content {
        left: 20px !important;
        right: 20px !important;
        bottom: 95px !important;
        padding: 0 !important;
    }

    .re-hero-content-inner {
        width: 100%;
        max-width: 100%;
        transform: none !important;
    }

    .re-animate-up {
        transform: none !important;
        opacity: 1 !important;
    }

    .re-hero-title {
        font-size: 30px !important;
        line-height: 1.08 !important;
        letter-spacing: 2px !important;
        margin: 0 0 8px !important;
    }

    .re-hero-title-line {
        display: block;
        white-space: normal;
        overflow: visible;
        word-break: break-word;
    }

    .re-hero-subtitle,
    .re-hero-slide-content p {
        font-size: 13px !important;
        line-height: 1.6 !important;
        margin-bottom: 14px !important;
        max-width: 92%;
    }

    .re-hero-btn {
        min-width: auto !important;
        padding: 12px 18px !important;
        font-size: 11px !important;
        letter-spacing: 1px !important;
    }

    .re-hero-nav {
        right: 16px !important;
        bottom: 22px !important;
        gap: 10px !important;
    }

    .re-hero-arrow {
        width: 38px !important;
        height: 38px !important;
        font-size: 14px !important;
    }

    .re-hero-dots {
        position: absolute !important;
        left: 20px !important;
        bottom: 34px !important;
        z-index: 6 !important;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .re-hero-dots button {
        width: 8px;
        height: 8px;
    }

    .re-hero-dots button.active {
        width: 26px;
    }
}
.re-home-about-main {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(0,0,0,0.12);
}

.re-home-about-main img {
    width: 100%;
    display: block;
    transition: transform 0.8s ease;
}

.re-home-about-main:hover img {
    transform: scale(1.05);
}

@media (max-width: 1199px) {
    .re-home-values-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .re-project-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .re-home-about-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .re-hero-eyebrow {
        font-size: 10px;
        letter-spacing: 3px;
        padding: 8px 14px;
    }

    .re-hero-subtitle {
        font-size: 12px;
        line-height: 1.8;
    }

    .re-home-about-stats,
    .re-home-values-grid {
        grid-template-columns: 1fr;
    }

    .re-stat-card-inner,
    .re-value-card-inner,
    .re-testimonial-card-inner {
        padding: 22px 18px;
    }

    .re-project-slide {
        min-height: 320px;
    }

    .re-project-content h3 {
        font-size: 26px;
    }

    .re-project-nav {
        display: none;
    }

    .re-home-cta-title {
        letter-spacing: 2px;
    }
}
.re-home-about, .re-home-values, .re-home-cta{
    background: #ffffff;
}
.re-home-about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 30px;
    align-items: center;
}

.re-home-about-lead {
    font-size: 24px;
    line-height: 1.7;
    color: #333333;
    margin: 0 0 22px;
    font-family: "Oswald", sans-serif;
}

.re-home-about-content p {
    color: #333333;
    font-size: 16px;
    line-height: 1.95;
}

.re-home-about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.re-stat-card {
    position: relative;
}

.re-stat-card-inner {
    height: 100%;
    background: #ffffff;
    border-radius: 18px;
    padding: 24px 18px 22px;
    box-shadow: 0 14px 32px rgba(0,0,0,0.08);
    border: 1px solid #ad8a5f;
    transition: all 0.35s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.re-stat-card h3 {
    margin: 0 0 8px;
    font-family: "Oswald", sans-serif;
    font-size: 34px;
    line-height: 1;
    color: #ad8a5f;
    font-weight: 700;
}

.re-stat-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.re-stat-card:hover .re-stat-card-inner {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(0,0,0,0.12);
}

.re-stat-card:hover .re-stat-line {
    width: 64px;
}

.re-home-about-visual {
    position: relative;
    min-height: 650px;
}

.re-home-about-main,
.re-home-about-small {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--re-shadow);
}

.re-home-about-main {
    margin-left: auto;
}

.re-home-about-small {
    position: absolute;
    width: 240px;
    height: 250px;
}

.re-home-about-small-1 {
    left: 0;
    top: 40px;
}

.re-home-about-small-2 {
    left: 60px;
    bottom: 0;
}

.re-home-about-main img,
.re-home-about-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.re-home-about-main:hover img,
.re-home-about-small:hover img {
    transform: scale(1.06);
}
.re-project-showcase {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.re-project-showcase-wrap {
    width: 100%;
}

.re-project-showcase-top {
    text-align: center;
    padding: 0 20px 60px;
    position: relative;
    z-index: 3;
}

.re-project-head p {
    max-width: 780px;
    margin-bottom: 10px;
    margin: 14px auto 0;
    color: #333333;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    line-height: 1.95;
}

.re-project-slider {
    position: relative;
    height: 78vh;
    min-height: 620px;
    max-height: 860px;
    padding: 0 0;
}

.re-project-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    overflow: hidden;
}

.re-project-slide {
    position: relative;
    display: block;
    height: 100%;
    min-width: 0;
    flex: 0 0 20%;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    transition: all 0.65s ease;
    filter: brightness(0.52);
    transform: scale(0.98);
    opacity: 0;
    pointer-events: none;
}

.re-project-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.10) 28%, rgba(0,0,0,0.50) 100%);
    z-index: 1;
}

.re-project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.12) 52%, rgba(0,0,0,0.35) 100%);
    z-index: 1;
}

.re-project-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.re-project-content {
    position: absolute;
    left: 48px;
    bottom: 48px;
    right: 40px;
}

.re-project-content h3 {
    margin: 0;
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    font-family: "Oswald", Sans-Serif;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
}

.re-project-cat {
    position: absolute;
    top: 48px;
    left: 48px;
    color: #ffffff;
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
}

.re-project-zoom {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 138px;
    height: 138px;
    margin-left: -69px;
    margin-top: -69px;
    border-radius: 50%;
    background: #ad8a5f;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.45s ease;
    border: 1px solid rgba(255,255,255,0.18);
}

.re-project-slide.is-active .re-project-zoom,
.re-project-slide:hover .re-project-zoom {
    opacity: 1;
    transform: scale(1);
}

/* visible states */
.re-project-slide.is-prev,
.re-project-slide.is-active,
.re-project-slide.is-next {
    opacity: 1;
    pointer-events: auto;
}

.re-project-slide.is-prev,
.re-project-slide.is-next {
    flex-basis: 33.33%;
    filter: brightness(0.42);
    transform: scale(1);
}

.re-project-slide.is-active {
    flex-basis: 34%;
    filter: brightness(1);
    transform: scale(1);
    z-index: 3;
    box-shadow: 0 10px 40px rgba(0,0,0,0.28);
}

.re-project-slide.is-hidden {
    flex-basis: 0%;
    width: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

/* text differences */
.re-project-slide.is-prev .re-project-content h3,
.re-project-slide.is-next .re-project-content h3 {
    font-size: 32px;
    opacity: 0.92;
}

.re-project-slide.is-prev .re-project-zoom,
.re-project-slide.is-next .re-project-zoom {
    display: none;
}

/* nav */
.re-project-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,0.92);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 12px;
}

.re-project-nav:hover {
    color: #ad8a5f;
}

.re-project-prev {
    left: 36px;
}

.re-project-next {
    right: 36px;
}

.re-project-nav-arrow {
    font-size: 30px;
    line-height: 1;
    font-weight: 300;
}

.re-project-showcase-bottom {
    text-align: center;
    margin-top: 28px;
}

.re-project-showcase-bottom .re-btn-primary {
    min-width: 240px;
}
@media (max-width: 991px) {
    .re-project-showcase {
        padding: 28px 0 34px;
    }

    .re-project-showcase-top {
        padding: 0 16px 18px;
    }

    .re-project-slider {
        height: 74vh;
        min-height: 520px;
        max-height: 760px;
    }

    .re-project-track {
        display: block;
        position: relative;
        height: 100%;
    }

    .re-project-slide {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        flex: none !important;
        opacity: 0;
        pointer-events: none;
        transform: scale(1);
        filter: brightness(0.58);
    }

    .re-project-slide.is-active {
        opacity: 1;
        pointer-events: auto;
        z-index: 3;
        filter: brightness(0.85);
    }

    .re-project-slide.is-prev,
    .re-project-slide.is-next,
    .re-project-slide.is-hidden {
        opacity: 0;
        pointer-events: none;
    }

    .re-project-content {
        left: 22px;
        right: 22px;
        bottom: 34px;
    }

    .re-project-content h3 {
        font-size: 32px;
    }
    
    .re-home-about-content p{
        text-align: center;
    }

    .re-project-cat {
        top: 22px;
        left: 22px;
        font-size: 13px;
        letter-spacing: 2px;
    }

    .re-project-cat-vertical {
        left: 12px;
        bottom: 96px;
        font-size: 12px;
        letter-spacing: 5px;
    }

    .re-project-zoom {
        display: none;
    }

    .re-project-nav {
        top: 44%;
        padding: 8px;
        font-size: 12px;
        letter-spacing: 3px;
    }

    .re-project-prev {
        left: 14px;
    }

    .re-project-next {
        right: 14px;
    }

    .re-project-nav-arrow {
        font-size: 24px;
    }

    .re-project-showcase-bottom {
        margin-top: 22px;
        padding: 0 16px;
    }
}

@media (max-width: 575px) {
    .re-project-slider {
        min-height: 480px;
        height: 72vh;
    }

    .re-project-content h3 {
        font-size: 28px;
    }

    .re-project-prev {
        left: 8px;
    }

    .re-project-next {
        right: 8px;
    }
}

.re-experience-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.re-experience-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 40px;
    position: relative;
}

.re-experience-number {
    position: relative;
    font-size: 420px;
    line-height: 0.85;
    font-weight: 800;
    letter-spacing: 10px;
    font-family: "Inter";
    color: transparent;
    -webkit-text-stroke: 0px transparent;
    background: url('https://re.girgitsoftware.com/wp-content/uploads/2025/05/text-bg.webp') center center / cover no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    display: inline-block;
    z-index: 2;
}

.re-experience-number::before {
    content: "+";
    position: absolute;
    right: -60px;
    top: 40px;
    font-size: 120px;
    font-weight: 700;
    color: #ad8a5f;
}

@media (max-width: 991px) {
    .re-experience-number::before {
        right: -25px;
        top: 25px;
        font-size: 80px;
    }
}
@media (max-width: 575px) {
    .re-experience-number::before {
        right: -25px;
        top: 15px;
        font-size: 50px;
    }
}

.re-experience-number::after {
    content: attr(data-bg);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    color: rgba(0, 0, 0, 0.04);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.re-experience-content {
    padding-bottom: 35px;
    z-index: 2;
}

.re-experience-content h3 {
    margin: 0;
    margin-bottom: 18px;
    font-size: 38px;
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: 0.16em;
    color: #333333;
    font-family: "Oswald", sans-serif;
}

.re-experience-content h3 span {
    color: #ad8a5f;
    padding-bottom: 10px;
}
@media (max-width: 1199px) {
    .re-experience-number {
        font-size: 300px;
    }

    .re-experience-content h2 {
        font-size: 44px;
    }
}
@media (max-width: 767px) {
    .re-experience-section {
        padding: 80px 15px;
    }

    .re-experience-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .re-experience-number {
        font-size: 180px;
        letter-spacing: -6px;
    }

    .re-experience-content {
        padding-bottom: 0;
    }

    .re-experience-content h2 {
        font-size: 30px;
        line-height: 1.15;
    }

    .re-experience-section::before {
        left: 10%;
    }

    .re-experience-section::after {
        right: 10%;
    }
}

.re-home-values-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    margin-top: 34px;
}

.re-value-card {
    position: relative;
}

.re-value-card-inner {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 28px 20px 24px;
    text-align: center;
    min-height: 190px;
    border: 1px solid #ad8a5f;
    box-shadow: 0 14px 34px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    overflow: hidden;
}

.re-value-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.re-value-icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid #ad8a5f;
    background: radial-gradient(circle at center, rgba(228,194,129,0.10), rgba(255,255,255,0));
    transition: all 0.35s ease;
}
.re-value-icon img {
    position: relative;
    z-index: 1;
    max-width: 65px;
    max-height: 65px;
    object-fit: contain;
    transition: transform 0.35s ease;
    filter: brightness(0) saturate(100%) invert(75%) sepia(18%) saturate(770%) hue-rotate(356deg) brightness(86%) contrast(85%);
}

.re-value-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #333333;
    font-weight: 600;
    font-family: "Oswald", sans-serif;
}

.re-value-card:hover .re-value-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 22px 42px rgba(0,0,0,0.12);
}

.re-value-card:hover .re-value-icon-ring {
    transform: scale(1.08);
    border-color: rgba(198,163,118,0.55);
}

.re-value-card:hover .re-value-icon img {
    transform: scale(1.08);
}

.re-home-testimonials {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.re-testimonial-carousel-wrap {
    position: relative;
}

.re-testimonial-carousel {
    display: flex;
    gap: 24px;
    transition: transform 0.6s ease;
    will-change: transform;
}

.re-testimonial-slide {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
    padding: 10px;
}

.re-testimonial-card {
    height: 100%;
}

.re-testimonial-card-inner {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px 26px;
    box-shadow: 0 16px 34px rgba(0,0,0,0.08);
    border: 1px solid #ad8a5f;
    min-height: 100%;
    transition: all 0.35s ease;
    overflow: hidden;
}

.re-testimonial-top-line {
    display: block;
    width: 42px;
    height: 2px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #e4c281 0%, #ad8a5f 100%);
    transition: width 0.35s ease;
}

.re-quote-mark {
    font-size: 56px;
    line-height: 1;
    color: #ad8a5f;
    margin-bottom: 10px;
    font-family: "Oswald", sans-serif;
    opacity: 0.7;
}
.re-testimonial-card p {
    margin-bottom: 16px;
    color: #333333;
    font-size: 13px;
    line-height: 1.95;
}

.re-testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}

.re-testimonial-stars span {
    font-size: 14px;
    color: #ad8a5f;
}

.re-testimonial-stars span.active {
    color: #ad8a5f;
}

.re-testimonial-footer h4 {
    margin: 0 0 4px;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.65;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #111;
}

.re-testimonial-footer span {
    color: #ad8a5f;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.re-testimonial-card:hover .re-testimonial-card-inner {
    transform: translateY(-6px);
    box-shadow: 0 22px 42px rgba(0,0,0,0.12);
}

.re-testimonial-card:hover .re-testimonial-top-line {
    width: 72px;
}

/* arrows */
.re-testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
}

.re-testimonial-arrow, .re-partners-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ad8a5f;
    background: #ffffff;
    color: #ad8a5f;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.re-testimonial-arrow:hover, .re-partners-arrow:hover {
    background: #ad8a5f;
    border-color: transparent;
    transform: translateY(-2px);
    color: #ffffff;
}

/* dots */
.re-testimonial-dots, .re-partners-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.re-testimonial-dots button, .re-partners-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #ad8a5f;
    cursor: pointer;
    transition: all 0.3s ease;
}

.re-testimonial-dots button.active, .re-partners-dots button.active {
    width: 34px;
    border-radius: 20px;
    background: #ad8a5f;
}

/* responsive */
@media (max-width: 1199px) {
    .re-testimonial-slide {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 767px) {
    .re-testimonial-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .re-testimonial-card p {
        min-height: auto;
    }
}
.re-home-cta {
    position: relative;
}

.re-home-cta-content .re-section-tag{
    color: #ffffff;
    font-family: "Oswald", sans-serif;
}

.re-home-cta-content .re-section-tag:before, .re-home-cta-content .re-section-tag:after {
    background: #ffffff;
}

.re-home-cta-box {
    position: relative;
    background: #ad8a5f;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 46px rgba(0,0,0,0.14);
}
.re-home-cta-shape {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.18), rgba(255,255,255,0));
    pointer-events: none;
}
.re-home-cta-content {
    position: relative;
    z-index: 1;
    padding: 54px 52px;
}

.re-home-cta-head {
    margin-bottom: 28px;
    text-align: center;
}

.re-home-cta-form-wrap {
    position: relative;
}

.re-home-cta-form-wrap .wpcf7 form {
    display: block;
}

.re-home-cta-form-wrap .wpcf7-form p {
    margin-bottom: 18px;
}

.re-home-cta-form-wrap input,
.re-home-cta-form-wrap select,
.re-home-cta-form-wrap textarea,
.re-home-cta-box input,
.re-home-cta-box select,
.re-home-cta-box textarea,
.siteForm input,
.siteForm select,
.siteForm textarea {
    width: 100%;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #ffffff !important;
    border-radius: 0 !important;
    padding: 14px 0 !important;
    color: #fff !important;
    font-size: 13px !important;
    line-height: 1.6;
    box-shadow: none !important;
    outline: none !important;
    transition: all 0.3s ease;
    font-family: "Inter", sans-serif !important;
}

.re-home-cta-form-wrap input::placeholder,
.re-home-cta-form-wrap textarea::placeholder,
.re-home-cta-box input::placeholder,
.re-home-cta-box textarea::placeholder,
.siteForm input::placeholder,
.siteForm textarea::placeholder {
    color: #ffffff !important;
}

.re-home-cta-form-wrap input:focus,
.re-home-cta-form-wrap select:focus,
.re-home-cta-form-wrap textarea:focus,
.re-home-cta-box input:focus,
.re-home-cta-box select:focus,
.re-home-cta-box textarea:focus,
.siteForm input:focus,
.siteForm select:focus,
.siteForm textarea:focus {
    border-bottom: 1px solid #ffffff !important;
}

.re-home-cta-form-wrap select,
.re-home-cta-box select,
.siteForm select {
    color: #ffffff !important;
}

.re-home-cta-form-wrap .wpcf7-form p{
    color: #ffffff !important;
}

.re-home-cta-form-wrap .wpcf7-submit,
.re-home-cta-box .wpcf7-submit,
.siteForm .wpcf7-submit,
.re-home-cta-form-wrap button[type="submit"],
.re-home-cta-box button[type="submit"],
.siteForm button[type="submit"] {
    min-width: 165px;
    min-height: 50px;
    margin-top: 12px;
    padding: 12px 26px !important;
    border-radius: 999px !important;
    border: 1px solid #ffffff !important;
    background: rgba(255,255,255,0.10) !important;
    color: #fff !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    box-shadow: none !important;
    transition: all 0.35s ease;
    cursor: pointer;
}

.re-home-cta-form-wrap .wpcf7-submit:hover,
.re-home-cta-box .wpcf7-submit:hover,
.siteForm .wpcf7-submit:hover,
.re-home-cta-form-wrap button[type="submit"]:hover,
.re-home-cta-box button[type="submit"]:hover,
.siteForm button[type="submit"]:hover {
    background: #fff !important;
    color: #111 !important;
    border-color: #fff !important;
    transform: translateY(-2px);
}

.re-home-cta-form-wrap .wpcf7-not-valid-tip,
.re-home-cta-box .wpcf7-not-valid-tip,
.siteForm .wpcf7-not-valid-tip {
    color: #ffffff !important;
    font-size: 11px;
    margin-top: 6px;
}

.re-home-cta-form-wrap .wpcf7-response-output,
.re-home-cta-box .wpcf7-response-output,
.siteForm .wpcf7-response-output {
    margin: 18px 0 0 !important;
    border-color: rgba(255,255,255,0.45) !important;
    color: #fff !important;
    font-size: 12px;
}

.re-home-cta-content h2 {
    margin: 0 0 14px;
    font-size: 54px;
    line-height: 1.05;
    color: #333333;
    font-weight: 500;
    font-family: "Oswald", sans-serif;
}

.re-home-cta-content p {
    margin: 0;
    max-width: 700px;
    color: #333333;
    font-size: 18px;
    line-height: 1.9;
}

.re-home-cta-action {
    flex-shrink: 0;
}



@media (max-width: 1399px) {
    .re-home-hero-content h1 {
        font-size: 78px;
    }

    .re-section-head h2,
    .re-home-cta-content h2 {
        font-size: 46px;
    }
    
    .re-home-cta-content{
        padding: 0px !important;
    }

    .re-home-values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1199px) {
    .re-home-about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .re-home-about-visual {
        min-height: 560px;
    }

    .re-home-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .re-home-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .re-home-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .re-gallery-card,
    .re-gallery-card-lg {
        grid-column: span 6;
    }
}

@media (max-width: 991px) {
    .section-space {
        padding: 85px 0;
    }

    .section-space-sm {
        padding: 0 0 85px;
    }

    .re-home-hero {
        min-height: 760px;
    }

    .re-home-hero-content h1 {
        font-size: 60px;
        line-height: 0.98;
    }

    .re-home-hero-content p {
        font-size: 18px;
    }

    .re-section-head h2,
    .re-home-cta-content h2 {
        font-size: 38px;
    }

    .re-home-about-stats {
        grid-template-columns: 1fr;
    }

    .re-home-about-main {
        width: 100%;
        height: 420px;
    }

    .re-home-about-small {
        display: none;
    }

    .re-home-about-visual {
        min-height: auto;
    }

    .re-gallery-card,
    .re-gallery-card-lg {
        grid-column: span 12;
        min-height: 400px;
    }
}

@media (max-width: 767px) {
    .re-home-page .container {
        padding: 0 16px;
    }
    
    form.wpcf7-form input[type="submit"] {
        max-width: 150px;
    }

    .re-home-hero {
        min-height: 680px;
        padding: 120px 0 70px;
    }

    .re-home-hero-content h1 {
        font-size: 42px;
    }

    .re-home-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .re-btn-primary,
    .re-btn-secondary {
        width: 100%;
    }

    .re-section-head {
        margin-bottom: 32px;
    }

    .re-section-head h2,
    .re-home-cta-content h2 {
        font-size: 31px;
    }

    .re-home-about-lead {
        font-size: 22px;
    }

    .re-home-values-grid {
        grid-template-columns: 1fr;
    }

    .re-gallery-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .re-gallery-content h3 {
        font-size: 30px;
        line-height: 1.1;
    }

    .re-home-cta-box {
        padding: 34px 24px;
        border-radius: 24px;
    }
}
.re-home-partners {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.re-partners-carousel-wrap {
    position: relative;
}

.re-partners-carousel {
    display: flex;
    gap: 22px;
    transition: transform 0.6s ease;
    will-change: transform;
}

.re-partner-slide {
    flex: 0 0 calc(20% - 18px);
    min-width: calc(20% - 18px);
}

.re-partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    opacity: 0.78;
    filter: grayscale(100%);
}

.re-partner-card:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-4px);
}


.re-partner-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    opacity: 0.85;
    transition: all 0.35s ease;
}

.re-partner-card:hover img {
    opacity: 1;
}

.re-partners-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.re-partners-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

@media (max-width: 1199px) {
    .re-partner-slide {
        flex: 0 0 calc(33.333% - 15px); /* 3 logos */
        min-width: calc(33.333% - 15px);
    }
}

@media (max-width: 767px) {
    .re-partner-slide {
        flex: 0 0 calc(50% - 10px); /* 2 logos */
        min-width: calc(50% - 10px);
    }

    .re-partners-arrow {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
/* =========================================================
   ABOUT Page CSS
========================================================= */
.re-philosophy-page {
    background: linear-gradient(180deg, #1f1f1f 0%, #252525 35%, #202020 100%);
    color: #f5efe6;
    position: relative;
    overflow: hidden;
}

.re-philosophy-page .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* General Spacing */
.re-studio-section,
.re-leadership-section,
.re-team-section {
    position: relative;
    padding: 110px 0;
}

/* Heading Style */
.re-section-heading {
    margin-bottom: 50px;
}

.re-section-heading.center {
    text-align: center;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.re-section-heading span,
.re-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-size: 38px;
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: 0.16em;
    color: #ad8a5f;
    font-family: "Oswald", sans-serif;
}

.re-section-heading span:before,
.re-section-tag:before {
    content: "";
    width: 42px;
    height: 1px;
    background: #ad8a5f;
    display: inline-block;
}
.re-section-heading span:after,
.re-section-tag:after {
    content: "";
    width: 42px;
    height: 1px;
    background: #ad8a5f;
    display: inline-block;
}

.re-section-heading h2 {
    font-size: 54px;
    line-height: 1.05;
    color: #f5efe6;
    margin: 0;
    font-weight: 500;
    letter-spacing: 1px;
}

.re-section-heading p {
    margin: 0 0 18px;
    color: #333333;
    font-size: 16px;
    line-height: 1.95;
    max-width: 800px;
}

.re-studio-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

.re-studio-content {
    position: relative;
    z-index: 2;
}

.re-studio-content h2 {
    font-size: 68px;
    line-height: 0.98;
    margin: 0 0 24px;
    color: #ad8a5f;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.re-studio-content h3 {
    font-size: 28px;
    line-height: 1.45;
    color: #ad8a5f;
    margin: 0 0 24px;
    font-weight: 400;
    max-width: 760px;
}

.re-studio-content p {
    margin: 0 0 18px;
    color: #333333;
    font-size: 16px;
    line-height: 1.95;
    max-width: 800px;
}

.re-studio-image-wrap {
    position: relative;
    z-index: 2;
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(202, 165, 106, 0.18);
}

.re-studio-image-wrap:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.28), rgba(0,0,0,0.05));
    z-index: 1;
}

.re-studio-image-wrap img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.re-watermark {
    position: absolute;
    left: -10px;
    bottom: -90px;
    font-size: 280px;
    font-weight: 600;
    line-height: 0.8;
    color: #ad8a5f80;
    letter-spacing: -8px;
    z-index: 0;
    pointer-events: none;
    text-transform: uppercase;
}
.re-leadership-section {
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
}

.re-leadership-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.re-leadership-image {
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(202, 165, 106, 0.14);
}

.re-leadership-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.re-leadership-head {
    margin-bottom: 28px;
}

.re-leadership-head h3 {
    font-size: 42px;
    line-height: 1.95;
    margin: 0 0 14px;
    color: #ad8a5f;
    font-weight: 500;
    letter-spacing: 0.16em;
    font-family: "Oswald", sans-serif;
}

.re-leadership-head h4 {
    font-size: 22px;
    margin: 0;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    font-family: "Oswald", sans-serif;
}

.re-leadership-text-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #ad8a5f;
    border-radius: 30px;
    padding: 45px 44px;
    backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.re-leadership-text-card p {
    margin: 0 0 18px;
    color: #333333;
    font-size: 16px;
    line-height: 1.95;
    max-width: 800px;
}

.re-leadership-text-card p:last-child {
    margin-bottom: 0;
}
html, body {
    overflow-x: hidden;
}
.re-team-section {
    position: relative;
    padding-bottom: 120px;
    overflow: hidden;
}

.re-team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

.re-team-card {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(202, 165, 106, 0.10);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,0.22);
    transition: all 0.35s ease;
    min-width: 0;
    align-items: stretch;
    width: 100%;
}
.re-team-card:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) 240px;
}

.re-team-card:nth-child(even) .re-team-image {
    order: 2;
}

.re-team-card:nth-child(even) .re-team-content {
    order: 1;
    padding: 28px 0 30px 28px;
}

.re-team-card:nth-child(odd) .re-team-content {
    padding: 28px 28px 30px 0;
}

.re-team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(202, 165, 106, 0.24);
    box-shadow: 0 16px 38px rgba(0,0,0,0.28);
}

.re-team-image {
    overflow: hidden;
    position: relative;
    height: 100%;
    min-width: 0;
}

.re-team-image:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.30), rgba(0,0,0,0.03));
}

.re-team-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: transform 0.6s ease;
}

.re-team-card:hover .re-team-image img {
    transform: scale(1.05);
}

.re-team-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.re-team-content h3 {
    margin: 0 0 8px;
    font-size: 42px;
    color: #ad8a5f;
    font-weight: 500;
    line-height: 1.95;
    letter-spacing: 0.16em;
    font-family: "Oswald", sans-serif;
    overflow-wrap: anywhere;
}

.re-team-content span {
    display: block;
    margin-bottom: 16px;
    color: #111111;
    font-size: 14px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    line-height: 1.5;
    overflow-wrap: anywhere;
    font-family: "Inter", sans-serif;
    font-weight: 600;
}

.re-team-content p {
    margin: 0 0 18px;
    color: #333333;
    font-size: 16px;
    line-height: 1.95;
    max-width: 800px;
    overflow-wrap: anywhere;
    font-family: "Inter", sans-serif;
}

/* Decorative subtle glow */
.re-studio-section:before,
.re-team-section:before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(202,165,106,0.08) 0%, rgba(202,165,106,0) 70%);
    top: 40px;
    right: 0;
    transform: translateX(35%);
    pointer-events: none;
}

.re-leadership-section:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(202,165,106,0.05) 0%, rgba(202,165,106,0) 70%);
    left: -120px;
    bottom: 10px;
    pointer-events: none;
}
@media (max-width: 1399px) {
    .re-studio-content h2 {
        font-size: 58px;
    }

    .re-leadership-head h3 {
        font-size: 48px;
    }

    .re-watermark {
        font-size: 220px;
    }
}

@media (max-width: 1199px) {
    .re-studio-grid,
    .re-leadership-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .re-team-grid {
        grid-template-columns: 1fr;
    }

    .re-watermark {
        display: none;
    }

    .re-studio-image-wrap img,
    .re-leadership-image img {
        height: 600px;
    }
}

@media (max-width: 991px) {
    .re-studio-section,
    .re-leadership-section,
    .re-team-section {
        padding: 85px 0;
    }

    .re-studio-content h2,
    .re-section-heading h2 {
        font-size: 44px;
    }

    .re-studio-content h3 {
        font-size: 24px;
    }

    .re-leadership-head h3 {
        font-size: 40px;
    }
    
    .re-team-content h3{
        font-size: 32px;
        text-align: center;
    }
    
    .re-team-content span{
        text-align: center;
    }

    .re-studio-content p,
    .re-leadership-text-card p,
    .re-section-heading p,
    .re-team-content p {
        font-size: 17px;
        line-height: 1.85;
        text-align: center;
    }
    
    .re-leadership-head h3 {
        text-align: center;
    }
    .re-leadership-head h4 {
        text-align: center;
    }
    .re-team-card,
    .re-team-card:nth-child(even) {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .re-team-card:nth-child(even) .re-team-image {
        order: 2;
    }

    .re-team-card:nth-child(even) .re-team-content {
        order: 1;
        padding: 24px 0 24px 24px;
    }

    .re-team-card:nth-child(odd) .re-team-content {
        padding: 24px 24px 24px 0;
    }
}

@media (max-width: 767px) {
    .re-philosophy-page .container {
        padding: 0 15px;
    }

    .re-studio-section,
    .re-leadership-section,
    .re-team-section {
        padding: 70px 0;
    }

    .re-studio-content h2,
    .re-section-heading h2,
    .re-leadership-head h3 {
        font-size: 34px;
    }

    .re-studio-content h3 {
        font-size: 21px;
    }

    .re-studio-image-wrap,
    .re-leadership-image,
    .re-leadership-text-card,
    .re-team-card {
        border-radius: 22px;
    }

    .re-studio-image-wrap img,
    .re-leadership-image img {
        height: 420px;
    }

    .re-team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .re-team-card,
    .re-team-card:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .re-team-card:nth-child(even) .re-team-image,
    .re-team-card:nth-child(even) .re-team-content {
        order: initial;
    }

    .re-team-image img {
        height: 320px;
        min-height: 320px;
    }

    .re-team-content,
    .re-team-card:nth-child(even) .re-team-content,
    .re-team-card:nth-child(odd) .re-team-content {
        padding: 22px;
    }

    .re-leadership-text-card {
        padding: 28px 22px;
    }

    .re-section-heading span, .re-section-head h3,
    .re-section-tag {
        letter-spacing: 2px;
        font-size: 30px;
        font-weight: 500;
        letter-spacing: 0.16em;
        color: #ad8a5f;
        font-family: "Oswald", sans-serif;
        text-align: center;
    }
}
/* =============================
   CONTACT PAGE CSS
================================ */
.contact-banner,
.contact-form-sec,
.map-sec {
    position: relative;
    width: 100%;
}
.contact-form-sec .container,
.map-sec .container,
.contact-banner .container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.contact-banner {
    height: 520px;
    overflow: hidden;
    background: #111;
}

.contact-banner picture,
.contact-banner img {
    display: block;
    width: 100%;
    height: 100%;
}

.contact-banner img {
    object-fit: cover;
    transform: scale(1.02);
}

.contact-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(10,10,10,0.72), rgba(10,10,10,0.32)),
        linear-gradient(to top, rgba(0,0,0,0.70), rgba(0,0,0,0.15));
    z-index: 1;
}

.contact-banner .banner-caption {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-banner .banner-caption h4 {
    margin: 0;
    color: #fff;
    font-size: 58px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
}

.contact-banner .banner-caption h4::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 250px;
    height: 2px;
    background: #ad8a5f;
    transform: translateX(-50%);
}
.contact-form-sec {
    padding: 90px 0 70px;
}

.contact-form-sec .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-left: -18px;
    margin-right: -18px;
}

.contact-form-sec [class*="col-"] {
    padding-left: 18px;
    padding-right: 18px;
}

.contact-form-sec .col-md-6 {
    width: 50%;
}
.contact-form-sec .block {
    background: rgba(255,255,255,0.03);
    border: 1px solid #ad8a5f;
    padding: 20px 45px;
    height: 100%;
    border-radius: 32px;
    backdrop-filter: blur(4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.contact-form-sec .block h4 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    text-align: center;
}

.contact-form-sec .block > p {
    margin: 0 0 28px;
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.9;
    font-weight: 300;
}

.contact-form-sec .block h5 {
    margin: 0 0 12px;
    color: #c7a46a;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-form-sec .block h5 + p {
    margin: 0;
    color: #333333;
    font-size: 16px;
    line-height: 1.95;
    margin-bottom: 10px;
}
.contact-links {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #333333;
    font-size: 16px;
    line-height: 1.95;
}

.contact-links > div {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid #ad8a5f;
    border-radius: 20px;
    color: #333333;
    font-size: 14px;
    line-height: 1.8;
    transition: all 0.3s ease;
}

.contact-links > div:hover {
    border-color: #ad8a5f;
    background: rgba(199,164,106,0.06);
    transform: translateY(-2px);
}

.contact-links img {
    margin-top: 4px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(18%) saturate(770%) hue-rotate(356deg) brightness(86%) contrast(85%);
}

.contact-links a {
    color: #f2f2f2;
    text-decoration: none;
}

.contact-links a:hover {
    color: #c7a46a;
}
.form-wrap {
    background: #101010;
    border: 1px solid rgba(199,164,106,0.18);
    padding: 50px 45px;
    height: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.28);
}

.form-wrap h4 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    text-align: center;
}

.form-wrap p {
    margin: 0 0 30px;
    color: rgba(255,255,255,0.70);
    font-size: 15px;
    line-height: 1.8;
}
.form-wrap .wpcf7 {
    width: 100%;
}

.form-wrap .wpcf7 form p {
    margin-bottom: 18px;
}

#wpcf7-f2316-o1 > form > div.container-popup input[type="text"], #wpcf7-f2316-o1 > form > div.container-popup input[type="password"], #wpcf7-f2316-o1 > form > div.container-popup input[type="search"], #wpcf7-f2316-o1 > form > div.container-popup input[type="email"], #wpcf7-f2316-o1 > form > div.container-popup input[type="phone"], input[type="tel"], #wpcf7-f2316-o1 > form > div.container-popup textarea, #wpcf7-f2316-o1 > form > div.container-popup select, #wpcf7-f2316-o1 > form > div.container-popup input[type="tel"] {
    background: transparent !important;
    border-bottom: 1px solid rgb(192 151 85);
    color: #fff !important;
}

.form-wrap .wpcf7 input[type="text"]::placeholder,
.form-wrap .wpcf7 input[type="email"]::placeholder,
.form-wrap .wpcf7 input[type="tel"]::placeholder,
.form-wrap .wpcf7 input[type="url"]::placeholder,
.form-wrap .wpcf7 textarea::placeholder,
.form-wrap .wpcf7 select::placeholder {
    color: #fff !important;
}

.form-wrap .wpcf7 input[type="text"],
.form-wrap .wpcf7 input[type="email"],
.form-wrap .wpcf7 input[type="tel"],
.form-wrap .wpcf7 input[type="url"],
.form-wrap .wpcf7 textarea,
.form-wrap .wpcf7 select {
    width: 100%;
    background: transparent !important;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    padding: 14px 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    outline: none;
    box-shadow: none;
    border-radius: 0;
}

.form-wrap .wpcf7 textarea {
    min-height: 120px;
    resize: none;
}

.form-wrap .wpcf7 input::placeholder,
.form-wrap .wpcf7 textarea::placeholder {
    color: rgba(255,255,255,0.45);
}

.form-wrap .wpcf7 input:focus,
.form-wrap .wpcf7 textarea:focus,
.form-wrap .wpcf7 select:focus {
    border-bottom-color: #c7a46a;
}

.form-wrap .wpcf7-submit {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 1px solid #c7a46a;
    padding: 14px 34px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-wrap .wpcf7-submit:hover {
    background: #c7a46a;
    color: #111;
}
.form-wrap .wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 6px;
}

.form-wrap .wpcf7-response-output {
    margin: 20px 0 0 !important;
    color: #fff;
    border-color: rgba(199,164,106,0.4) !important;
}
.map-sec {
    padding: 0 0 90px;
}

.map-wrap {
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,0.30);
}

.map-wrap iframe {
    display: block;
    width: 100%;
    height: 460px;
    border-radius: 20px;
}
@media (max-width: 1199px) {
    .contact-banner .banner-caption h4 {
        font-size: 46px;
        letter-spacing: 6px;
    }

    .form-wrap,
    .contact-form-sec .block {
        padding: 40px 32px;
    }
}

@media (max-width: 991px) {
    .contact-form-sec {
        padding: 70px 0 50px;
    }

    .contact-form-sec .col-md-6 {
        width: 100%;
        margin-bottom: 30px;
    }

    .contact-form-sec .col-md-6:last-child {
        margin-bottom: 0;
    }
    .contact-banner .banner-caption h4 {
        font-size: 38px;
        letter-spacing: 5px;
    }

    .map-sec {
        padding-bottom: 70px;
    }

    .map-wrap iframe {
        height: 380px;
    }
}

@media (max-width: 767px) {
    .contact-banner .banner-caption h4 {
        font-size: 28px;
        letter-spacing: 4px;
        padding-bottom: 14px;
    }

    .contact-form-sec {
        padding: 50px 0 40px;
    }

    .contact-form-sec .block,
    .form-wrap {
        padding: 30px 22px;
    }

    .contact-form-sec .block h4,
    .form-wrap h4 {
        letter-spacing: 3px;
    }

    .contact-links > div {
        padding: 6px;
        font-size: 12px;
    }

    .map-wrap iframe {
        height: 300px;
    }
}
/* =============================
   CAREERS PAGE CSS
================================ */
.career-sec {
    position: relative;
    overflow: hidden;
}

.career-sec img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.career-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.72), rgba(10, 10, 10, 0.32)), 
                linear-gradient(to top, rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.15));
    z-index: 1;
    pointer-events: none;
}

.career-sec .career-caption {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.career-sec .career-caption h3 {
    margin: 0;
    color: #fff;
    font-size: 58px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
}

.career-sec .career-caption h3::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 250px;
    height: 2px;
    background: #ad8a5f;
}
.sec-heading {
    text-align: center;
    margin-bottom: 24px;
}

.sec-heading h3 {
    margin: 0;
    color: #fff;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
}
.hiring-sec {
    /* background: #272727; */
    padding: 80px 0 25px;
}

.hiring-sec + .hiring-sec {
    padding-top: 25px;
    padding-bottom: 45px;
}

.hiring-sec p {
    color: #333333;
    font-size: 16px;
    line-height: 1.95;
    margin: 0 auto;
    text-align: center;
    max-width: 800px;
}

.hiring-sec:last-of-type .container {
    max-width: 900px;
}

.hiring-sec .email,
.hiring-sec .phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
    margin-top: 4px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(18%) saturate(770%) hue-rotate(356deg) brightness(86%) contrast(85%);
}

.hiring-sec .phone {
    margin-bottom: 0;
}

.hiring-sec .email img,
.hiring-sec .phone img {
    object-fit: contain;
}

.hiring-sec .email a,
.hiring-sec .phone a {
    color: #ad8a5f;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.hiring-sec .email a:hover,
.hiring-sec .phone a:hover {
    color: #fff;
}

.form-sec {
    /* background: #272727; */
    padding: 35px 0 90px;
}
.form-wrap .re-section-tag {
    color: #ffffff;
    font-family: "Oswald", sans-serif;
}
.form-wrap .re-section-tag:before, .form-wrap .re-section-tag:after {
    background: #ffffff;
}

.form-wrap {
    background: #ad8a5f;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.14);
    padding: 40px 36px;
}

.form-wrap .row {
    align-items: stretch;
}

.form-wrap .col-md-6:first-child {
    padding-right: 22px;
}

.form-wrap .col-md-6:last-child {
    padding-left: 22px;
}

.form-wrap h4 {
    margin: 0 0 26px;
    color: #fff;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    text-align: center;
    /* max-width: 360px; */
}
.form-wrap .col-md-6:last-child img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
    background: #111;
}

.form-wrap .wpcf7 form p {
    margin-bottom: 16px;
}

.form-wrap .wpcf7 input[type="text"],
.form-wrap .wpcf7 input[type="email"],
.form-wrap .wpcf7 input[type="tel"],
.form-wrap .wpcf7 input[type="number"],
.form-wrap .wpcf7 select,
.form-wrap .wpcf7 textarea {
    width: 100%;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #ffffff !important;
    border-radius: 8px !important;
    padding: 14px 0 !important;
    color: #fff !important;
    font-size: 13px !important;
    line-height: 1.6;
    box-shadow: none !important;
    outline: none !important;
    transition: all 0.3s ease;
    font-family: "Inter", sans-serif !important;
}

.form-wrap .wpcf7 textarea {
    min-height: 120px;
    background: rgba(255,255,255,0.18);
    border: none;
    padding: 14px;
    margin-top: 8px;
    resize: vertical;
}

.form-wrap .wpcf7 input[type="file"] {
    color: #d9d9d9;
    font-size: 14px;
    margin-top: 10px;
}

.form-wrap .wpcf7 input::placeholder,
.form-wrap .wpcf7 textarea::placeholder {
    color: #d0d0d0;
    opacity: 1;
}

.form-wrap .wpcf7 input:focus,
.form-wrap .wpcf7 select:focus,
.form-wrap .wpcf7 textarea:focus {
    border-color: #ad8a5f;
}

.form-wrap .wpcf7 textarea:focus {
    box-shadow: inset 0 0 0 1px #ad8a5f;
}

.form-wrap .wpcf7 input[type="submit"] {
    background: #fff !important;
    color: #111 !important;
    border-color: #fff !important;
    transform: translateY(-2px);
    border-radius: 20px !important;
}

.form-wrap .wpcf7 input[type="submit"]:hover {
    background: #b98a3e;
    color: #fff;
}

.gallery-sec {
    /* background: #272727; */
    padding: 20px 0 100px;
    overflow: hidden;
}

.gallery-sec .sec-heading {
    margin-bottom: 34px;
}

.gallery-carousel-wrpr {
    position: relative;
}

#gallery-carousel .owl-stage-outer {
    overflow: visible;
}

#gallery-carousel .owl-item {
    opacity: 0.45;
    transition: all 0.4s ease;
}

#gallery-carousel .owl-item.active.center {
    opacity: 1;
}

.gallery-img {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
    transform: scale(0.92);
    transition: all 0.4s ease;
}

#gallery-carousel .owl-item.active.center .gallery-img {
    transform: scale(1);
}

.gallery-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}
#gallery-carousel .owl-nav {
    margin-top: 0;
}

#gallery-carousel .owl-nav button.owl-prev,
#gallery-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 62px;
    height: 62px;
    border-radius: 18px;
    border: 1px solid #ad8a5f !important;
    background: #ad8a5f !important;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
}

#gallery-carousel .owl-nav button.owl-prev {
    left: 18%;
}

#gallery-carousel .owl-nav button.owl-next {
    right: 18%;
}

#gallery-carousel .owl-nav button.owl-prev:hover,
#gallery-carousel .owl-nav button.owl-next:hover {
    background: #ad8a5f !important;
}

/* show arrow text properly */
#gallery-carousel .owl-nav button.owl-prev span,
#gallery-carousel .owl-nav button.owl-next span {
    display: block;
    font-size: 42px;
    line-height: 1;
    color: #fff;
    margin-top: -4px;
}

/* remove old pseudo arrows */
#gallery-carousel .owl-nav button.owl-prev::before,
#gallery-carousel .owl-nav button.owl-next::before {
    display: none;
}

/* dots optional */
#gallery-carousel .owl-dots {
    margin-top: 28px;
    text-align: center;
}

#gallery-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.28);
    display: block;
}

#gallery-carousel .owl-dots .owl-dot.active span {
    background: #b98a3e;
}
@media (max-width: 1199px) {
    .career-caption h3 {
        font-size: 50px;
    }

    .sec-heading h3 {
        font-size: 38px;
    }

    .form-wrap h4 {
        font-size: 26px;
    }

    .gallery-img img {
        height: 450px;
    }
}

@media (max-width: 991px) {
    .career-caption h3 {
        font-size: 40px;
        letter-spacing: 4px;
    }

    .form-wrap .col-md-6:first-child,
    .form-wrap .col-md-6:last-child {
        padding-left: 15px;
        padding-right: 15px;
    }

    .form-wrap .col-md-6:last-child {
        margin-top: 30px;
    }

    .form-wrap .col-md-6:last-child img {
        min-height: 320px;
    }

    .gallery-img img {
        height: 340px;
    }
}

@media (max-width: 767px) {
    .career-caption h3 {
        font-size: 28px;
        letter-spacing: 2px;
        padding-bottom: 10px;
    }

    .career-caption h3::after {
        width: 70px;
    }

    .sec-heading h3 {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .hiring-sec {
        padding: 55px 0 15px;
    }

    .hiring-sec p {
        font-size: 15px;
        line-height: 1.8;
    }

    .hiring-sec .email,
    .hiring-sec .phone {
        flex-wrap: wrap;
        text-align: center;
    }

    .form-sec {
        padding: 25px 0 65px;
    }

    .form-wrap {
        padding: 24px 18px;
    }

    .form-wrap h4 {
        font-size: 22px;
        max-width: 100%;
    }

    .form-wrap .col-md-6:last-child img {
        min-height: 250px;
    }

    .gallery-img {
        border-radius: 18px;
    }

    .gallery-img img {
        height: 240px;
    }
}
/* =============================
   SERVICES Page CSS
================================ */
.re-sec-head {
    max-width: 860px;
    margin: 0 auto 70px;
}

.re-sec-head h2 {
    font-size: 54px;
    line-height: 1.12;
    font-weight: 400;
    color: #f4ad8a5f8;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Oswald", sans-serif;
}

.re-sec-head p {
    margin: 0 0 18px;
    color: #333333;
    font-size: 16px;
    line-height: 1.95;
    max-width: 800px;
}
.re-expertise-section {
    position: relative;
    padding: 110px 0 60px;
    /* background:
        radial-gradient(circle at top left, rgba(202,165,106,0.08), transparent 28%),
        linear-gradient(135deg, #1b1b1d 0%, #222224 45%, #1a1a1b 100%); */
    overflow: hidden;
}

.re-expertise-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
    pointer-events: none;
}

.re-expertise-wrap {
    position: relative;
    z-index: 2;
}

.re-expertise-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 55px;
    padding: 26px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid #ad8a5f;
    box-shadow: 0 18px 45px rgba(0,0,0,0.28);
    backdrop-filter: blur(4px);
}

.re-expertise-row.re-reverse {
    flex-direction: row-reverse;
}

.re-expertise-image {
    width: 34%;
    flex: 0 0 34%;
    position: relative;
}

.re-expertise-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
    box-shadow: 0 18px 32px rgba(0,0,0,0.32);
}

.re-expertise-image::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: -16px;
    height: 60px;
    background: radial-gradient(circle, rgba(202,165,106,0.18), transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

.re-expertise-content {
    width: 60%;
    flex: 0 0 60%;
    padding: 10px 18px;
}

.re-expertise-tag {
    color: #111111;
    font-size: 14px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    line-height: 1.5;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    display: inline-block;
}

.re-expertise-content h3 {
    font-size: 42px;
    line-height: 1.1;
    margin: 0 0 18px;
    color: #ad8a5f;
    font-weight: 500;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.re-expertise-content p {
    margin: 10px;
    color: #333333;
    font-size: 16px;
    line-height: 1.95;
}

.re-expertise-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.re-expertise-content ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 13px;
    font-size: 15px;
    line-height: 1.8;
    color: #e8ddd0;
    font-family: "Jost", sans-serif;
}

.re-expertise-content ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ad8a5f;
    position: absolute;
    left: 0;
    top: 10px;
    box-shadow: 0 0 12px rgba(202,165,106,0.45);
}

.re-approach-section {
    padding: 40px 0 120px;
    /* background:
        linear-gradient(180deg, #1a1a1b 0%, #202022 100%); */
    position: relative;
    overflow: hidden;
}

.re-approach-section::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    top: -140px;
    right: -120px;
    background: radial-gradient(circle, rgba(202,165,106,0.10), transparent 70%);
    filter: blur(10px);
    pointer-events: none;
}

.re-approach-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.re-approach-card {
    padding: 34px 24px 30px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
    border: 1px solid #ad8a5f;
    box-shadow: 0 15px 36px rgba(0,0,0,0.22);
    transition: all 0.35s ease;
    text-align: center;
    min-height: 320px;
}

.re-approach-card:hover {
    transform: translateY(-8px);
    border-color: rgba(202,165,106,0.28);
    box-shadow: 0 20px 44px rgba(0,0,0,0.30);
}

.re-approach-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, rgba(202,165,106,0.30), rgba(202,165,106,0.08));
    border: 1px solid rgba(202,165,106,0.22);
    box-shadow: inset 0 1px 8px rgba(255,255,255,0.08), 0 8px 24px rgba(0,0,0,0.20);
}

.re-approach-icon i {
    font-size: 30px;
    color: #d2af73;
}

.re-step-no {
    margin-bottom: 16px;
    color: #111111;
    font-size: 14px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    line-height: 1.5;
    font-family: "Inter", sans-serif;
    font-weight: 600;
}

.re-approach-card h3 {
    font-size: 28px;
    line-height: 1.2;
    color: #ad8a5f;
    margin-bottom: 18px;
    letter-spacing: 2px;
    font-weight: 500;
    font-family: "Oswald", sans-serif;
}

.re-approach-card p {
    margin: 0;
    color: #333333;
    font-size: 16px;
    line-height: 1.95;
    font-family: "Inter", sans-serif;
}

@media (max-width: 1199px) {
    .re-sec-head h2 {
        font-size: 46px;
    }

    .re-expertise-content h3 {
        font-size: 42px;
    }

    .re-approach-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .re-expertise-row,
    .re-expertise-row.re-reverse {
        flex-direction: column;
    }

    .re-expertise-image,
    .re-expertise-content {
        width: 100%;
        flex: 0 0 100%;
    }

    .re-expertise-image img {
        height: 420px;
    }

    .re-sec-head h2 {
        font-size: 40px;
    }

    .re-expertise-content h3 {
        font-size: 38px;
    }

    .re-approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .re-expertise-section {
        padding: 80px 0 40px;
    }

    .re-approach-section {
        padding: 20px 0 80px;
    }

    .re-sec-head {
        margin-bottom: 45px;
    }

    .re-sec-head h2 {
        font-size: 34px;
    }

    .re-sec-head p {
        font-size: 17px;
        line-height: 1.8;
    }
    
    .re-expertise-tag{
        text-align: center;
    }

    .re-expertise-row {
        gap: 24px;
        margin-bottom: 30px;
        padding: 18px;
        border-radius: 20px;
    }

    .re-expertise-image img {
        height: 280px;
        border-radius: 18px;
    }

    .re-expertise-content {
        padding: 0;
        text-align: center;
    }

    .re-expertise-content h3 {
        font-size: 30px;
        text-align: center;
    }

    .re-expertise-content p,
    .re-expertise-content ul li {
        font-size: 17px;
        text-align: center;
    }

    .re-approach-grid {
        grid-template-columns: 1fr;
    }

    .re-approach-card {
        min-height: auto;
        padding: 28px 20px;
    }
}
/* =========================================================
   Project Page CSS
========================================================= */
.re-projects-section {
    width: 100%;
    padding: 80px 0;
    clear: both;
    position: relative;
    overflow: hidden;
}

.re-projects-section * {
    box-sizing: border-box;
}

.re-projects-dark {
    background: linear-gradient(180deg, #111111 0%, #0b0b0c 100%);
}

.re-projects-light {
    background: none;
}

.re-projects-container {
    margin: 0 auto;
}

.re-projects-title {
    text-align: center;
    margin: 0 0 22px;
    font-size: 72px;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: #f5f3ef;
	font-family: "Oswald", sans-serif;
}

.re-projects-light .re-projects-title {
    color: #fff;
}

.re-projects-title span {
    color: #ad8a5f;
}

.re-project-filters {
    list-style: none;
    margin: 0 0 70px;
    padding: 0;
    text-align: center;
}

.re-project-filters li {
    display: inline-block;
    margin: 0 20px 12px;
    padding: 0 0 10px;
    cursor: pointer;
    color: #111111;
    font-size: 19px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.35s ease;
    border-bottom: 1px solid transparent;
}

.re-projects-light .re-project-filters li {
    color: #111111;
}

.re-project-filters li.active,
.re-project-filters li:hover {
    color: #ad8a5f;
    border-bottom: 1px solid #ad8a5f;
}

.re-projects-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.re-project-item {
    width: 25%;
    padding: 0 2px 2px;
}

.re-project-link {
    display: block;
    text-decoration: none;
}

.re-project-thumb {
    position: relative;
    overflow: hidden;
    height: 600px;
    background: #111;
}

.re-project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.8s ease, filter 0.4s ease;
}

.re-project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.78) 0%,
        rgba(0,0,0,0.35) 30%,
        rgba(0,0,0,0.45) 100%
    );
    z-index: 1;
    transition: background 0.35s ease;
}

.re-project-category-vertical {
    position: absolute;
    top: 42px;
    left: 26px;
    z-index: 3;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    line-height: 1.95;
}

.re-project-overlay-inner {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 34px;
    z-index: 3;
}

.re-project-name {
    margin: 0;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Oswald", sans-serif;
    text-align: center;
}

.re-project-name::before {
    content: "";
    display: block;
    width: 100%;
    max-width: 260px;
    height: 1px;
    background: #ffffff;
    margin: 0 auto 18px;
}

.re-project-hover-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 138px;
    height: 138px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: #c6a376;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.28);
}

.re-project-hover-icon svg {
    color: #fff;
    font-size: 54px;
    line-height: 1;
    font-weight: 300;
}

.re-project-link:hover .re-project-thumb img {
    transform: scale(1.06);
    filter: brightness(0.92);
}

.re-project-link:hover .re-project-overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.82) 0%,
        rgba(0,0,0,0.24) 38%,
        rgba(0,0,0,0.32) 100%
    );
}

.re-project-link:hover .re-project-hover-icon {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.re-project-link:hover .re-project-name {
    color: #ffffff;
}

.re-no-projects {
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: #fff;
}

/* 3 columns on laptop */
@media (max-width: 1399px) {
    .re-project-item {
        width: 33.3333%;
    }

    .re-project-thumb {
        height: 600px;
    }

    .re-project-name {
        font-size: 28px;
    }
}

/* 2 columns on tablet */
@media (max-width: 991px) {
    .re-project-item {
        width: 50%;
    }

    .re-project-thumb {
        height: 500px;
    }

    .re-project-name {
        font-size: 26px;
        letter-spacing: 3px;
    }

    .re-project-hover-icon {
        width: 110px;
        height: 110px;
    }

    .re-project-hover-icon span {
        font-size: 44px;
    }
}

/* 1 column on mobile */
@media (max-width: 767px) {
    .re-projects-grid {
        margin-left: -8px;
        margin-right: -8px;
    }

    .re-project-item {
        width: 100%;
        padding: 0 8px 18px;
    }

    .re-project-thumb {
        height: 400px;
    }

    .re-project-category-vertical {
        top: 20px;
        left: 16px;
        font-size: 11px;
        letter-spacing: 3px;
    }

    .re-project-overlay-inner {
        left: 18px;
        right: 18px;
        bottom: 20px;
    }

    .re-project-name {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .re-project-name::before {
        max-width: 140px;
        margin-bottom: 12px;
    }

    .re-project-hover-icon {
        width: 84px;
        height: 84px;
    }

    .re-project-hover-icon span {
        font-size: 34px;
    }
}
/* =========================================================
  Blog Page CSS
========================================================= */
.blog-tags a {
   background: #ad8a5f !important;
   color: #fff !important;
   padding: 1.1em 2.2em 1.05em;
    font-size: 0.875em;
    letter-spacing: 0.15em;
}
.main-blog .main-header h1{
    text-align: center !important;
    margin: 0;
    color: #fff;
    font-size: 58px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    padding-bottom: 20px;
}
.main-blog .main-header h1::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 2px;
    bottom: 0;
    background: #ad8a5f;
}
.premium-blog-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch !important;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 80px !important;
}

.premium-blog-grid > .post.premium-blog-card {
    width: 50% !important;
    float: none !important;
    clear: none !important;
    padding: 0 15px !important;
    margin-bottom: 36px !important;
    display: block !important;
    position: relative !important;
}

.premium-blog-grid > .post.premium-blog-card:nth-child(odd),
.premium-blog-grid > .post.premium-blog-card:nth-child(even) {
    clear: none !important;
}

.premium-blog-card .premium-blog-inner {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 14px 40px rgba(0,0,0,0.16);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.premium-blog-card:hover .premium-blog-inner {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.24);
}

/* Thumbnail */
.premium-blog-thumb-wrap {
    position: relative;
    overflow: hidden;
    background: #111;
}

.premium-blog-thumb-link {
    display: block;
    position: relative;
}

.premium-blog-thumb-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.15), rgba(0,0,0,0.02));
    pointer-events: none;
}

.premium-blog-thumb-img {
    width: 100%;
    height: 320px;
    display: block;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.premium-blog-card:hover .premium-blog-thumb-img {
    transform: scale(1.04);
}
.premium-blog-category {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 5;
}

.premium-blog-category a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none !important;
    color: #fff !important;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    background: #ad8a5f;
    box-shadow: 0 10px 24px rgba(214,138,16,0.30);
}

.premium-blog-category a:hover {
    color: #fff !important;
    opacity: 0.96;
}

.premium-blog-category-icon {
    width: 12px;
    height: 12px;
    display: inline-block;
    position: relative;
    flex: 0 0 12px;
}

.premium-blog-category-icon::before,
.premium-blog-category-icon::after {
    content: "";
    position: absolute;
    background: #fff;
}

.premium-blog-category-icon::before {
    width: 12px;
    height: 12px;
    left: 0;
    top: 0;
}

.premium-blog-category-icon::after {
    width: 8px;
    height: 8px;
    right: -5px;
    top: -5px;
}
.premium-blog-content {
    background: #ffffff !important;
    padding: 28px 26px 22px !important;
    min-height: 230px;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
}
.premium-blog-content,
.premium-blog-content * {
    opacity: 1 !important;
    visibility: visible !important;
}

.premium-blog-title {
    margin: 0 0 14px !important;
    font-size: 24px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    letter-spacing: -0.2px;
    display: block !important;
}

.premium-blog-title a {
    color: #111111 !important;
    text-decoration: none !important;
    display: inline !important;
}

.premium-blog-title a:hover {
    color: #d68a10 !important;
}

.premium-blog-excerpt {
    color: #6b6b6b !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
    margin-bottom: 22px !important;
    display: block !important;
}

.premium-blog-meta {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 16px;
    margin-top: auto !important;
}

.premium-blog-date {
    color: #1c1c1c !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
}

.premium-blog-readmore a {
    color: #111111 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.premium-blog-readmore a:hover {
    color: #ad8a5f !important;
}
.b-grid-sizer {
    display: none !important;
}
.premium-pagination,
.navigation.pagination,
nav.navigation.pagination {
    width: 100%;
    clear: both;
    text-align: center;
    margin: 10px 0 50px;
}

.premium-pagination .nav-links,
.navigation.pagination .nav-links,
nav.navigation.pagination .nav-links {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.premium-pagination a,
.premium-pagination span,
.navigation.pagination a,
.navigation.pagination span,
nav.navigation.pagination a,
nav.navigation.pagination span {
    min-width: 46px;
    height: 46px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: #ad8a5f !important;
    border: 1px solid #ad8a5f;
    background: #ffffff;
    transition: all 0.3s ease;
}

.premium-pagination a:hover,
.navigation.pagination a:hover,
nav.navigation.pagination a:hover {
    background: #ad8a5f;
    border-color: transparent;
    color: #fff !important;
}

.premium-pagination .current,
.navigation.pagination .current,
nav.navigation.pagination .current {
    background: #ad8a5f;
    color: #fff !important;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(214,138,16,0.25);
}
@media (max-width: 991px) {
    .premium-blog-grid > .post.premium-blog-card {
        width: 100% !important;
    }

    .premium-blog-thumb-img {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .premium-blog-thumb-img {
        height: 230px;
    }

    .premium-blog-content {
        min-height: auto;
        padding: 22px 18px 18px !important;
    }

    .premium-blog-title {
        font-size: 20px !important;
    }

    .premium-blog-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}