/*==================================================
GOOGLE FONTS
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/*==================================================
RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html,
body{
overflow-x:hidden;
width:100%;
}
html{
    scroll-behavior:smooth;
}

body{
    font-family:'Manrope',sans-serif;
    background:#050505;
    color:#fff;
    overflow-x:hidden;
}

::selection{
    background:#d9ad2b;
    color:#000;
}

img{
    width:100%;
    display:block;
}

video{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:min(1320px,92%);
    margin:auto;
}

section{
    padding:120px 0;
}

h1,h2,h3{
    font-family:'Cormorant Garamond',serif;
    font-weight:500;
}

p{
    color:#b7b7b7;
    line-height:1.9;
    font-size:15px;
}

:root{

--bg:#050505;
--card:#0d0d0d;
--gold:#d9ad2b;
--border:#242424;
--white:#ffffff;
--text:#bdbdbd;
--transition:.45s;

}

/*==================================================
PRELOADER
==================================================*/

/* .preloader{

position:fixed;
inset:0;
background:#000;
display:flex;
justify-content:center;
align-items:center;
z-index:99999;
transition:.6s;

}

.preloader.hide{

opacity:0;
visibility:hidden;

}

.preloader span{

width:65px;
height:65px;
border:4px solid rgba(255,255,255,.15);
border-top-color:var(--gold);
border-radius:50%;
animation:spin 1s linear infinite;

}

@keyframes spin{

100%{
transform:rotate(360deg);
}

} */
#preloader{
    position:fixed;
    inset:0;
    background:#050505;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:999999;
}

.logo-box{
    position:relative;
    animation:float 2s ease-in-out infinite;
}

.loader-logo{
    width:180px;
    max-width:45vw;
    filter:
    drop-shadow(0 0 15px rgba(255,193,7,.9))
    drop-shadow(0 0 40px rgba(255,193,7,.5));
}

.loader-line{
    width:220px;
    height:5px;
    background:#222;
    border-radius:30px;
    overflow:hidden;
    margin-top:40px;
}

.loader-line span{
    display:block;
    width:45%;
    height:100%;
    background:linear-gradient(90deg,#FFD54F,#FFC107,#FFB300);
    border-radius:30px;
    animation:loading 1.2s linear infinite;
}

#preloader p{
    margin-top:18px;
    color:#fff;
    font-family:Manrope,sans-serif;
    letter-spacing:4px;
    font-size:14px;
}

@keyframes float{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-12px);
}

}
@keyframes loading{

0%{
transform:translateX(-120%);
}

100%{
transform:translateX(340%);
}

}

@media(max-width:768px){

.loader-logo{
width:130px;
}

.loader-line{
width:170px;
}

}

@media(max-width:480px){

.loader-logo{
width:100px;
}

.loader-line{
width:140px;
}

}
/*==================================================
HEADER
==================================================*/

header{

position:fixed;
left:0;
top:0;
width:100%;
z-index:1000;
padding:9px 0;
background:linear-gradient(to bottom,#000 10%,transparent);
backdrop-filter:blur(12px);

}

header .container{

display:flex;
justify-content:space-between;
align-items:center;

}

.logo span{

color:var(--gold);

}

nav ul{

display:flex;
gap:45px;

}

nav a{

font-size:13px;
letter-spacing:1.3px;
text-transform:uppercase;
position:relative;
transition:.4s;

}

nav a::after{

content:"";
position:absolute;
left:0;
bottom:-10px;
width:0;
height:2px;
background:var(--gold);
transition:.4s;

}

nav a:hover,
nav a.active{

color:var(--gold);

}

nav a:hover::after,
nav a.active::after{

width:100%;

}

.header-btn a{

padding:16px 34px;
background:var(--gold);
color:#000;
font-size:13px;
font-weight:700;
transition:.4s;
display:inline-flex;
align-items:center;
justify-content:center;

}

.header-btn a:hover{

transform:translateY(-5px);

}

.menu{

display:none;
font-size:26px;
cursor:pointer;

}
/*==============================
PREMIUM LOGO
==============================*/

.premium-brand-logo{
    flex-shrink:0;
}

.premium-brand-logo-link{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}

.premium-brand-logo img{
    width:62px;
    height:62px;
    object-fit:contain;
    display:block;
}

.premium-brand-logo h2{
    margin:0;
    color:#fff;
    font-size:30px;
    font-weight:800;
    line-height:1;
    letter-spacing:.5px;
}

.premium-brand-logo h2 span{
    color:#D4AF37;
}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:992px){

    .premium-brand-logo img{
        width:54px;
        height:54px;
    }

    .premium-brand-logo h2{
        font-size:25px;
    }

}

@media(max-width:768px){

    .premium-brand-logo img{
        width:48px;
        height:48px;
    }

    .premium-brand-logo h2{
        font-size:22px;
    }

}

@media(max-width:480px){

    .premium-brand-logo-link{
        gap:10px;
    }

    .premium-brand-logo img{
        width:42px;
        height:42px;
    }

    .premium-brand-logo h2{
        font-size:18px;
    }

}

@media(max-width:320px){

    .premium-brand-logo img{
        width:36px;
        height:36px;
    }

    .premium-brand-logo h2{
        font-size:16px;
    }

}
/*======================================
WHATSAPP FLOAT BUTTON
======================================*/

.whatsapp-float{
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37,211,102,.45);
    z-index: 9999;
    transition: .35s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    transform: translateY(-6px) scale(1.08);
    color: #fff;
    box-shadow: 0 15px 40px rgba(37,211,102,.6);
}

@keyframes whatsappPulse{
    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,.55);
    }
    70%{
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

@media (max-width:768px){

    .whatsapp-float{
        width:58px;
        height:58px;
        right:18px;
        bottom:18px;
        font-size:1.8rem;
    }

}
/*==================================================
MOBILE MENU
==================================================*/

.mobile-nav{

position:fixed;
top:0;
right:-100%;

width:320px;
height:100vh;

background:#0b0b0b;

padding:45px;

transition:.45s;

z-index:99999;

display:flex;
flex-direction:column;

overflow-y:auto;

}

.mobile-nav.show{

right:0;

}

.close{

margin-left:auto;
font-size:30px;
cursor:pointer;
margin-bottom:40px;

}

.mobile-nav ul{

display:flex;
flex-direction:column;
gap:25px;

position:relative;
z-index:100000;

}

.mobile-nav a{

position:relative;
z-index:100001;
display:block;
color:white;

}
.close{

position:relative;
z-index:100002;
cursor:pointer;

}
.mobile-btn{

margin-top:40px;
padding:16px;
background:var(--gold);
color:#000;
font-weight:700;
text-align:center;
}
@media(max-width: 400px){
    .header-btn a{

padding:10px 12px;
background:var(--gold);
color:#000;
font-size:8px;
}
}

/*==================================================
HERO
==================================================*/

.hero{

    position:relative;

    height:80vh;

    min-height:680px;

    overflow:hidden;

    display:flex;

    align-items:flex-end;

    background:#000;

}
.hero{

    position:relative;

    z-index:1;

    height:88vh;

    min-height:720px;

}

/*==============================
VIDEO
==============================*/

.hero-video{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center center;

    z-index:-3;

}

@keyframes heroZoom{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.08);

    }

}

/*==============================
OVERLAY
==============================*/

.video-overlay{

    position:absolute;

    inset:0;

    z-index:2;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.92) 0%,
        rgba(0,0,0,.82) 20%,
        rgba(0,0,0,.68) 40%,
        rgba(0,0,0,.48) 65%,
        rgba(0,0,0,.25) 85%,
        rgba(0,0,0,.10) 100%
    );

}

/*==============================
GLOW
==============================*/

.hero-shape{

    position:absolute;

    right:-160px;

    top:-180px;

    width:650px;

    height:650px;

    border-radius:50%;

    background:

    radial-gradient(circle,

    rgba(216,177,60,.16),

    transparent 72%);

    animation:rotateGlow 20s linear infinite;

    z-index:-1;

}

@keyframes rotateGlow{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

/*==============================
CONTAINER
==============================*/

.hero .container{

    width:100%;

    max-width:1320px;

    margin:auto;

    padding:0 40px;

    position:relative;

    z-index:5;

}

/*==============================
CONTENT
==============================*/

.hero-content{

    width:100%;

    padding-bottom:70px;

    animation:fadeHero .9s ease;

}

@keyframes fadeHero{

    from{

        opacity:0;

        transform:translateY(45px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==============================
TOP TEXT
==============================*/

.hero-top{

    display:inline-block;

    margin-bottom:26px;

    color:var(--gold);

    font-size:12px;

    letter-spacing:5px;

    text-transform:uppercase;

    font-weight:600;

}

/*==============================
HEADING
==============================*/

.hero h1{

    font-size:clamp(72px,8vw,118px);

    line-height:.88;

    letter-spacing:-2px;

    max-width:720px;

    margin-bottom:55px;

    color:#fff;

}
/*==================================================
HERO BOTTOM
==================================================*/

.hero-bottom{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    gap:70px;

}

.hero-bottom p{

    flex:0 0 520px;

    max-width:520px;

    margin:0;

    color:#d2d2d2;

    font-size:18px;

    line-height:1.9;

    font-weight:400;

}

/*==================================================
BUTTONS
==================================================*/

.hero-buttons{

    margin-left:auto;

    display:flex;

    align-items:center;

    justify-content:flex-end;

    gap:18px;

    flex-shrink:0;

}

.hero-buttons a{

    position:relative;

    overflow:hidden;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    width:225px;

    height:64px;

    border-radius:0;

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    transition:.45s ease;

    white-space:nowrap;

    cursor:pointer;

}

.hero-buttons i{

    font-size:15px;

    transition:.4s;

}

/*=========================
EXPLORE BUTTON
=========================*/

.btn-yellow{

    background:var(--gold);

    color:#111;

    border:1px solid var(--gold);

    box-shadow:0 12px 30px rgba(216,177,60,.18);

}

.btn-yellow:hover{

    transform:translateY(-7px);

    box-shadow:0 20px 45px rgba(216,177,60,.35);

}

.btn-yellow:hover i{

    transform:translateX(5px);

}

/*=========================
QUOTE BUTTON
=========================*/

.btn-outline{

    color:#fff;

    border:1px solid rgba(255,255,255,.25);

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(12px);

}

.btn-outline:hover{

    background:var(--gold);

    border-color:var(--gold);

    color:#111;

    transform:translateY(-7px);

}

.btn-outline:hover i{

    transform:translateX(5px);

}

/*=========================
SHINE
=========================*/

.hero-buttons a::before{

    content:"";

    position:absolute;

    top:0;

    left:-130%;

    width:45%;

    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.65),
        transparent
    );

    transform:skewX(-20deg);

    animation:btnShine 4s linear infinite;

}

@keyframes btnShine{

    100%{

        left:180%;

    }

}

/*=========================
GOLD PULSE
=========================*/

.btn-yellow{

    animation:goldPulse 3s ease-in-out infinite;

}

@keyframes goldPulse{

    0%{

        box-shadow:0 0 0 rgba(216,177,60,.18);

    }

    50%{

        box-shadow:0 0 35px rgba(216,177,60,.42);

    }

    100%{

        box-shadow:0 0 0 rgba(216,177,60,.18);

    }

}
/*==================================================
RESPONSIVE
==================================================*/

/*====================================
1400px
====================================*/

@media(max-width:1400px){

.hero .container{

max-width:1200px;

padding:0 35px;

}

.hero h1{

font-size:105px;

max-width:650px;

}

.hero-bottom{

gap:50px;

}

.hero-bottom p{

max-width:480px;

font-size:17px;

}

.hero-buttons a{

width:210px;

height:62px;

}

}

/*====================================
1200px
====================================*/

@media(max-width:1200px){

.hero{

min-height:720px;

}

.hero .container{

padding:0 30px;

}

.hero h1{

font-size:88px;

max-width:620px;

margin-bottom:45px;

}

.hero-bottom{

gap:35px;

}

.hero-bottom p{

max-width:440px;

font-size:16px;

}

.hero-buttons{

gap:15px;

}

.hero-buttons a{

width:190px;

height:58px;

font-size:14px;

}

}

/*====================================
992px
====================================*/

@media(max-width:992px){

.hero{

height:auto;

min-height:680px;

padding:130px 0 60px;

align-items:flex-end;

}

.hero .container{

padding:0 28px;

}

.hero h1{

font-size:72px;

margin-bottom:35px;

}

.hero-bottom{

flex-direction:column;

align-items:flex-start;

gap:28px;

}

.hero-bottom p{

max-width:100%;

flex:none;

}

.hero-buttons{

margin-left:0;

justify-content:flex-start;

width:100%;

flex-wrap:wrap;

}

.hero-buttons a{

flex:1 1 220px;

max-width:230px;

}

}

/*====================================
768px
====================================*/

@media(max-width:768px){

.hero{

padding:110px 0 55px;

min-height:620px;

}

.hero .container{

padding:0 22px;

}

.hero-top{

font-size:10px;

letter-spacing:3px;

margin-bottom:18px;

}

.hero h1{

font-size:52px;

line-height:.9;

margin-bottom:28px;

}

.hero-bottom{

gap:22px;

}

.hero-bottom p{

font-size:15px;

line-height:1.8;

}

.hero-buttons{

display:flex;

flex-direction:column;

gap:14px;

width:100%;

}

.hero-buttons a{

width:100%;

max-width:100%;

height:56px;

}

}

/*====================================
480px
====================================*/

@media(max-width:480px){

.hero{

padding:95px 0 45px;

min-height:560px;

}

.hero .container{

padding:0 18px;

}

.hero-top{

font-size:9px;

letter-spacing:2px;

}

.hero h1{

font-size:42px;

}

.hero-bottom p{

font-size:14px;

line-height:1.7;

}

.hero-buttons a{

height:54px;

font-size:14px;

}

.hero-buttons i{

font-size:14px;

}

}

/*====================================
360px
====================================*/

@media(max-width:360px){

.hero h1{

font-size:36px;

}

.hero-bottom p{

font-size:13px;

}

.hero-buttons a{

height:52px;

font-size:13px;

padding:0 16px;

}

}
/*==========================================
VIDEO
==========================================*/

.hero-video{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center center;

    z-index:-3;

    transform:scale(1.05);

    animation:heroZoom 18s ease-in-out infinite alternate;

}

@keyframes heroZoom{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.08);

    }

}

/*==========================================
BLACK OVERLAY
==========================================*/

.video-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.88) 0%,
            rgba(0,0,0,.72) 35%,
            rgba(0,0,0,.52) 65%,
            rgba(0,0,0,.40) 100%
        );

    z-index:-2;

}

/*==========================================
PREMIUM GOLD GLOW
==========================================*/

.hero-shape{
    position:absolute;
    right:-120px;
    top:-180px;
    width:780px;
    height:780px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(216,177,60,.18),transparent 70%);
    z-index:3;
}

@keyframes rotateGlow{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}
.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    z-index:1;
}

.video-overlay{

    position:absolute;

    inset:0;

    z-index:2;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.92) 0%,
        rgba(0,0,0,.82) 20%,
        rgba(0,0,0,.68) 40%,
        rgba(0,0,0,.48) 65%,
        rgba(0,0,0,.25) 85%,
        rgba(0,0,0,.10) 100%
    );

}

.hero{
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
    isolation:isolate;
}
.scroll-indicator{

    position:absolute;

    left:50%;

    bottom:30px;

    transform:translateX(-50%);

    width:32px;

    height:56px;

    border:2px solid rgba(255,255,255,.45);

    border-radius:30px;

    display:flex;

    justify-content:center;

    align-items:flex-start;

    z-index:20;

    backdrop-filter:blur(8px);

}

.scroll-indicator span{

    width:6px;

    height:12px;

    background:var(--gold);

    border-radius:20px;

    margin-top:8px;

    animation:scrollDown 2s ease-in-out infinite;

}

@keyframes scrollDown{

    0%{

        opacity:0;

        transform:translateY(0);

    }

    30%{

        opacity:1;

    }

    100%{

        opacity:0;

        transform:translateY(24px);

    }

}

/*==================================================
SECTION HEADINGS
==================================================*/

.section-tag{
    display:inline-block;
    color:var(--gold);
    letter-spacing:4px;
    font-size:11px;
    margin-bottom:22px;
    text-transform:uppercase;
}

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:end;
    margin-bottom:70px;
    gap:40px;
}

.section-head.center{
    justify-content:center;
    text-align:center;
}

.section-head h2{
    font-size:70px;
    line-height:.95;
}

.section-head a{
    color:#fff;
    transition:.4s;
}

.section-head a:hover{
    color:var(--gold);
}

/*==================================================
/*========================================
INTRO
========================================*/


.intro{

padding:80px 0;

}
.intro{

    position:relative;

    z-index:5;

    background:#0b0b0b;

    margin-top:-90px;

    border-radius:40px 40px 0 0;

    padding:110px 0 80px;

    box-shadow:
    0 -30px 80px rgba(0,0,0,.45);

}
.intro::before{

    content:"";

    position:absolute;

    top:-50px;

    left:0;

    width:100%;

    height:80px;

    background:linear-gradient(
        to bottom,
        transparent,
        #0b0b0b
    );

}

.intro-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;

}

.intro-left{

position:sticky;
top:120px;

}

.intro h2{

font-size:74px;
line-height:.92;

}
.intro-heading{

    font-size:74px;

    line-height:.92;

    letter-spacing:-2px;

    font-weight:700;

}

.intro-heading span{

    display:inline-block;

    background:#d8b13c;

    color:#111;

    padding:6px 18px;

    margin-top:10px;

    overflow:hidden;

}
.intro-right{

position:relative;
height:360px;
overflow:hidden;

}

.scroll-wrapper{

height:100%;
overflow:hidden;

}

.scroll-track{

display:flex;
flex-direction:column;
gap:24px;

animation:verticalScroll 18s linear infinite;

}

.intro-card{

background:#0d0d0d;

border:1px solid rgba(255, 255, 255, 0.346);

padding:34px;

border-radius:18px;

transition:.4s;

backdrop-filter:blur(10px);

}

.intro-card:hover{

transform:translateX(8px);

border-color:#D8B13C;

box-shadow:0 15px 40px rgba(216,177,60,.15);

}
.scroll-track{
    gap:16px;
}
.intro-card{
    padding:22px 24px;
    border-radius:14px;
}

.intro-card p{

color:#bdbdbd;

line-height:1.7;

font-size:15px;

margin:0;

}

.fade-top{

position:absolute;
top:0;
left:0;
width:100%;
height:90px;

background:linear-gradient(to bottom,#050505,transparent);

z-index:5;

pointer-events:none;

}

.fade-bottom{

position:absolute;
bottom:0;
left:0;
width:100%;
height: 55px;

background:linear-gradient(to top,#050505,transparent);

z-index:5;

pointer-events:none;

}

@keyframes verticalScroll{

0%{

transform:translateY(0);

}

100%{

transform:translateY(-50%);

}

}
/*==================================================
FEATURED CARDS
==================================================*/
/*=====================================================
        PREMIUM FOOD CART GALLERY
======================================================*/

.pfc-gallery-section{
    position:relative;
    padding:120px 0;
    background:#080808;
    overflow:hidden;
}

.pfc-gallery-section::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    background:rgba(212,175,55,.08);
    border-radius:50%;
    top:-220px;
    right:-180px;
    filter:blur(140px);
}

.pfc-gallery-section::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(255,255,255,.03);
    left:-170px;
    bottom:-180px;
    border-radius:50%;
    filter:blur(130px);
}

.pfc-gallery-section .container{
    position:relative;
    z-index:2;
}

/*==========================
Heading
==========================*/

.pfc-gallery-heading{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.pfc-subtitle{
    display:inline-block;
    color:#d4af37;
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

.pfc-gallery-heading h2{
    color:#fff;
    font-size:52px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:18px;
}

.pfc-gallery-heading p{
    color:#b9b9b9;
    font-size:17px;
    line-height:30px;
}

/*==========================
Desktop Layout
==========================*/

.pfc-gallery-wrapper{

display:grid;

grid-template-columns:1.25fr .95fr;

gap:28px;

margin-bottom:28px;

}

.pfc-gallery-right{

display:flex;

flex-direction:column;

gap:28px;

}

.pfc-middle-grid,
.pfc-bottom-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:28px;

}

.pfc-gallery-row-two{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:28px;

margin-top:28px;

}

/*==========================
Cards
==========================*/

.pfc-gallery-card{

position:relative;

overflow:hidden;

border-radius:34px;

background:#111;

cursor:pointer;

border:1px solid rgba(255,255,255,.05);

transition:.45s ease;

isolation:isolate;

}

.pfc-gallery-card:hover{

transform:translateY(-10px);

border-color:rgba(212,175,55,.35);

box-shadow:

0 18px 55px rgba(0,0,0,.45),

0 0 0 1px rgba(212,175,55,.12);

}

/*==========================
Card Heights
==========================*/

.pfc-feature-card{

height:760px;

}

.pfc-wide-card{

height:250px;

}

.pfc-middle-grid .pfc-gallery-card{

height:230px;

}

.pfc-bottom-grid .pfc-gallery-card{

height:280px;

}

.pfc-horizontal-card{

height:360px;

}

/*==========================
Images
==========================*/

.pfc-gallery-card img{

width:100%;

height:100%;

display:block;

object-fit:cover;

transition:transform .9s ease;

}

.pfc-gallery-card:hover img{

transform:scale(1.08);

}

/*==========================
Gradient Overlay
==========================*/



/*==========================
Gold Border
==========================*/


/*==========================
Overlay
==========================*/

.pfc-overlay{

position:absolute;

left:30px;

right:30px;

bottom:28px;

z-index:3;

}

.pfc-overlay h3{
    display: inline-block;
    font-size: 12px;
    color: #fff;
    background: #d9ad2bb3;
    border: 1px solid #d9ad2b ;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    padding: 8px 14px;
    border-radius: 4px; /* optional */
}

.pfc-overlay a{

display:inline-flex;

align-items:center;

gap:10px;

text-decoration:none;

color:#fff;

font-weight:600;

font-size:15px;

transition:.35s;

}

.pfc-overlay a::after{

content:"→";

transition:.35s;

}

.pfc-overlay a:hover{

color:#d4af37;

}

.pfc-overlay a:hover::after{

transform:translateX(6px);

}

/*==========================
Button
==========================*/

.pfc-gallery-btn{

margin-top:65px;

text-align:center;

}

.pfc-gallery-btn a{

display:inline-flex;

align-items:center;

justify-content:center;

padding:18px 42px;

border-radius:60px;

background:#d4af37;

color:#111;

font-weight:700;

text-decoration:none;

transition:.35s;

}

.pfc-gallery-btn a:hover{

background:#fff;

transform:translateY(-3px);

box-shadow:0 15px 35px rgba(212,175,55,.25);

}

/*==========================
Micro Animation
==========================*/

.pfc-gallery-card,
.pfc-gallery-card img,
.pfc-gallery-btn a{

will-change:transform;

}
/*==================================================
        RESPONSIVE GALLERY
==================================================*/

/**************** 1400px ****************/

@media (max-width:1400px){

.pfc-gallery-heading h2{
    font-size:46px;
}

.pfc-gallery-wrapper{
    gap:24px;
}

.pfc-middle-grid,
.pfc-bottom-grid,
.pfc-gallery-row-two{
    gap:24px;
}

.pfc-feature-card{
    height:680px;
}

.pfc-wide-card{
    height:230px;
}

.pfc-middle-grid .pfc-gallery-card{
    height:210px;
}

.pfc-bottom-grid .pfc-gallery-card{
    height:250px;
}

.pfc-horizontal-card{
    height:320px;
}

}


/**************** 1200px ****************/

@media (max-width:1200px){

.pfc-gallery-section{
    padding:100px 0;
}

.pfc-gallery-heading{
    margin-bottom:60px;
}

.pfc-gallery-heading h2{
    font-size:42px;
}

.pfc-gallery-wrapper{
    grid-template-columns:1fr;
}

.pfc-feature-card{
    height:620px;
}

.pfc-wide-card{
    height:260px;
}

.pfc-middle-grid .pfc-gallery-card{
    height:240px;
}

.pfc-bottom-grid .pfc-gallery-card{
    height:260px;
}

.pfc-horizontal-card{
    height:300px;
}

}


/**************** 992px ****************/

@media (max-width:992px){

.pfc-gallery-section{
    padding:90px 0;
}

.pfc-gallery-heading h2{
    font-size:36px;
}

.pfc-gallery-heading p{
    font-size:16px;
}

.pfc-gallery-wrapper,
.pfc-gallery-row-two{
    gap:20px;
}

.pfc-middle-grid,
.pfc-bottom-grid{
    gap:20px;
}

.pfc-feature-card{
    height:560px;
}

.pfc-wide-card{
    height:230px;
}

.pfc-middle-grid .pfc-gallery-card{
    height:210px;
}

.pfc-bottom-grid .pfc-gallery-card{
    height:230px;
}

.pfc-horizontal-card{
    height:260px;
}

.pfc-overlay{
    left:22px;
    right:22px;
    bottom:22px;
}

.pfc-overlay h3{
    font-size:28px;
}

}


/**************** Tablet ****************/

@media (max-width:768px){

.pfc-gallery-section{
    padding:80px 0;
}

.pfc-gallery-heading{
    margin-bottom:45px;
}

.pfc-gallery-heading h2{
    font-size:32px;
}

.pfc-gallery-heading p{
    font-size:15px;
    line-height:28px;
}

.pfc-gallery-wrapper,
.pfc-gallery-row-two,
.pfc-middle-grid,
.pfc-bottom-grid{

display:grid;

grid-template-columns:1fr;

gap:18px;

}

.pfc-feature-card,
.pfc-wide-card,
.pfc-middle-grid .pfc-gallery-card,
.pfc-bottom-grid .pfc-gallery-card,
.pfc-horizontal-card{

height:340px;

}

.pfc-overlay h3{

font-size:24px;

}

}


/**************** Mobile ****************/

@media (max-width:576px){

.pfc-gallery-section{
    padding:70px 0;
}

.pfc-gallery-heading h2{
    font-size:28px;
}

.pfc-gallery-heading p{
    font-size:14px;
}

.pfc-gallery-card{
    border-radius:24px;
}

.pfc-gallery-card::after{
    border-radius:24px;
}

.pfc-feature-card,
.pfc-wide-card,
.pfc-middle-grid .pfc-gallery-card,
.pfc-bottom-grid .pfc-gallery-card,
.pfc-horizontal-card{

height:290px;

}

.pfc-overlay{

left:18px;
right:18px;
bottom:18px;

}

.pfc-overlay span{

padding:7px 15px;

font-size:11px;

}

.pfc-overlay h3{

font-size:21px;

}

.pfc-gallery-btn{

margin-top:45px;

}

.pfc-gallery-btn a{

width:100%;

}

}


/**************** 480 ****************/

@media (max-width:480px){

.pfc-gallery-heading h2{

font-size:25px;

}

.pfc-gallery-heading p{

font-size:13px;

line-height:24px;

}

.pfc-feature-card,
.pfc-wide-card,
.pfc-middle-grid .pfc-gallery-card,
.pfc-bottom-grid .pfc-gallery-card,
.pfc-horizontal-card{

height:250px;

}

.pfc-overlay h3{

font-size:20px;

}

}


/**************** 390 ****************/

@media (max-width:390px){

.pfc-gallery-section{

padding:60px 0;

}

.pfc-gallery-heading{

margin-bottom:35px;

}

.pfc-gallery-heading h2{

font-size:22px;

}

.pfc-gallery-card{

border-radius:20px;

}

.pfc-gallery-card::after{

border-radius:20px;

}

.pfc-feature-card,
.pfc-wide-card,
.pfc-middle-grid .pfc-gallery-card,
.pfc-bottom-grid .pfc-gallery-card,
.pfc-horizontal-card{

height:220px;

}

.pfc-overlay{

left:15px;
right:15px;
bottom:15px;

}

.pfc-overlay h3{

font-size:18px;

}

.pfc-overlay a{

font-size:13px;

}

}


/**************** 320 ****************/

@media (max-width:320px){

.pfc-gallery-heading h2{

font-size:20px;

}

.pfc-gallery-heading p{

font-size:12px;

}

.pfc-feature-card,
.pfc-wide-card,
.pfc-middle-grid .pfc-gallery-card,
.pfc-bottom-grid .pfc-gallery-card,
.pfc-horizontal-card{

height:200px;

}

.pfc-overlay span{

font-size:10px;

padding:6px 12px;

}

.pfc-overlay h3{

font-size:16px;

}

}


/**************** 290 ****************/

@media (max-width:290px){

.pfc-gallery-section{

padding:50px 0;

}

.pfc-gallery-heading h2{

font-size:18px;

}

.pfc-gallery-heading p{

font-size:11px;

line-height:21px;

}

.pfc-feature-card,
.pfc-wide-card,
.pfc-middle-grid .pfc-gallery-card,
.pfc-bottom-grid .pfc-gallery-card,
.pfc-horizontal-card{

height:180px;

}

.pfc-overlay{

left:12px;
right:12px;
bottom:12px;

}

.pfc-overlay span{

font-size:9px;

letter-spacing:1px;

}

.pfc-overlay h3{

font-size:15px;

margin-bottom:8px;

}

.pfc-overlay a{

font-size:12px;

}

.pfc-gallery-btn a{

padding:15px 25px;

font-size:13px;

}

}

/*==================================================
MARQUEE
==================================================*/

.marquee{
    padding:0;
    background:var(--gold);
    overflow:hidden;
    white-space:nowrap;
}

.track{
    display:flex;
    gap:80px;
    width:max-content;
    padding:26px 0;
    animation:marquee 24s linear infinite;
}

.track span{
    color:#111;
    font-size:44px;
    font-family:'Cormorant Garamond',serif;
    font-weight:500;
}

@keyframes marquee{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(80px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/*==================================================
WHY CHOOSE US
/*==================================================
WHY SECTION
==================================================*/

.why{
    padding:110px 0;
    background:#050505;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:24px;
    margin-top:60px;
}

.why-box{
    position:relative;
    display:flex;
    flex-direction:column;
    overflow:hidden;
    height:100%;
    min-height:350px;
    background:linear-gradient(180deg,#131313 0%,#0b0b0b 100%);
    border:none;
    border-radius:20px;
    transition:.35s ease;
    box-shadow:0 12px 30px rgba(0,0,0,.25);
}

.why-box:hover{
    transform:translateY(-8px);
    border-color:rgba(255,193,7,.35);
    box-shadow:
    0 18px 45px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,193,7,.12);
}

/*================ IMAGE ================*/

.why-img,
.why-image{
    position:relative;
    height:165px;
    overflow:hidden;
}

.why-img img,
.why-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s ease;
}

.why-box:hover img{
    transform:scale(1.06);
}

.why-img::after,
.why-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,#0b0b0b 8%,transparent 70%);
}


/*================ CONTENT ================*/

.why-content{
    display:flex;
    flex-direction:column;
    flex:1;
    padding:22px;
}

.icon-box,
.why-icon{
    width:26px;
    height:26px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
    background:rgba(255,193,7,.08);
    border:1px solid rgba(255,193,7,.18);
}

.icon-box i,
.why-icon i{
    font-size:16px;
    color:var(--gold);
}

.why-content h3{
    color:#fff;
    font-size:22px;
    font-weight:700;
    line-height:1.35;
    margin-bottom:12px;
}

.why-content p{
    color:#b9b9b9;
    font-size:15px;
    line-height:1.7;
    margin:0;
    flex:1;
}

.why-content a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:18px;
    font-size:14px;
    font-weight:600;
    color:var(--gold);
    text-decoration:none;
}

.why-content a i{
    transition:.3s;
}

.why-content a:hover i{
    transform:translateX(5px);
}

/*================ RESPONSIVE ================*/
/*================ TABLET =================*/

@media (max-width:1200px){

    .why-grid{
        grid-template-columns:repeat(4,1fr);
        gap:12px;
    }

    .why-box{
        min-height:250px;
    }

    .why-img,
    .why-image{
        height:100px;
    }

    .why-content{
        padding:12px;
    }

    .why-icon{
        width:40px;
        height:40px;
        margin-bottom:10px;
    }

    .why-icon i{
        font-size:16px;
    }

    .why-content h3{
        font-size:14px;
        margin-bottom:6px;
    }

    .why-content p{
        font-size:11px;
        line-height:1.5;
    }

}


/*================ MOBILE =================*/

@media (max-width:768px){

    .why{
        padding:70px 0;
    }

    .why-grid{
        grid-template-columns:repeat(3,1fr);
        gap:10px;
    }

    .why-box{
        min-height:220px;
    }

    .why-img,
    .why-image{
        height:85px;
    }

    .why-content{
        padding:10px;
    }

    .why-icon{
        width:34px;
        height:34px;
        margin-bottom:8px;
    }

    .why-icon i{
        font-size:14px;
    }

    .why-content h3{
        font-size:12px;
        margin-bottom:5px;
        line-height:1.3;
    }

    .why-content p{
        font-size:10px;
        line-height:1.4;
    }

}


/*================ EXTRA SMALL =================*/

@media (max-width:480px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }

    .why-box{
        min-height:200px;
    }

    .why-img,
    .why-image{
        height:80px;
    }

    .why-content{
        padding:10px;
    }

    .why-content h3{
        font-size:12px;
    }

    .why-content p{
        font-size:10px;
    }

}


/*==================================================
SERVICES
==================================================*/

.services{
    background:#050505;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#0d0d0d;
    border:1px solid var(--border);
    padding:45px;
    transition:.45s;
    position:relative;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:var(--gold);
}

.service-card span{
    display:inline-flex;
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(217,173,43,.12);
    color:var(--gold);
    align-items:center;
    justify-content:center;
    font-weight:800;
    margin-bottom:30px;
}

.service-card h3{
    font-size:38px;
    margin-bottom:20px;
}

/*==================================================
CTA
==================================================*/

.cta{
    position:relative;
    overflow:hidden;
    min-height:600px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:80px 20px;

    background:url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1800")
    center/cover no-repeat;
}

.cta .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.78);
}

.cta .container{
    width:100%;
    display:flex;
    justify-content:center;
}

.cta-content{
    position:relative;
    z-index:2;
    max-width:760px;
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    margin:auto;
}

.cta h2{
    font-size:86px;
    line-height:.9;
    margin:0 auto 25px;
}

.cta p{
    max-width:560px;
    margin:0 auto 35px;
}


/* Tablet */
@media(max-width:992px){

    .cta{
        min-height:500px;
    }

    .cta h2{
        font-size:60px;
    }

}


/* Mobile */
@media(max-width:576px){

    .cta{
        min-height:450px;
        padding:60px 16px;
    }

    .cta h2{
        font-size:38px;
        line-height:1.1;
    }

    .cta p{
        font-size:15px;
        line-height:1.6;
    }

}

/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-thumb{
    background:var(--gold);
}

::-webkit-scrollbar-track{
    background:#0a0a0a;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

.hero h1{
    font-size:90px;
}

.section-head h2,
.intro h2,
.cta h2{
    font-size:62px;
}

.cards{
    gap:25px;
}

.card img{
    height:430px;
}

}

@media(max-width:991px){

nav,
.header-btn{
    display:none;
}

.menu{
    display:block;
}

.hero{
    min-height:850px;
}

.hero h1{
    font-size:70px;
}

.stats-grid,
.intro-grid,
.cards,
.service-grid,
.footer-grid{
    grid-template-columns:1fr;
}

.section-head{
    flex-direction:column;
    align-items:flex-start;
}

.section-head h2,
.intro h2,
.cta h2{
    font-size:54px;
}

.card img{
    height:500px;
}

.stat{
    border-right:none;
    border-bottom:1px solid var(--border);
}

.stat:last-child{
    border-bottom:none;
}

}

@media(max-width:768px){

section{
    padding:90px 0;
}

.hero{
    min-height:760px;
}

.hero h1{
    font-size:56px;
}

.hero p{
    font-size:16px;
}

.hero-buttons{
    flex-direction:column;
}

.hero-buttons a{
    width:100%;
    justify-content:center;
}

.section-head h2,
.intro h2,
.cta h2{
    font-size:44px;
}

.card img{
    height:380px;
}

.card-overlay h3{
    font-size:36px;
}

.track span{
    font-size:28px;
}

}

@media(max-width:576px){

.container{
    width:92%;
}

header{
    padding:18px 0;
}

.logo h2{
    font-size:20px;
}

.hero h1{
    font-size:46px;
}

.hero-top{
    font-size:10px;
    letter-spacing:3px;
}

.section-head h2,
.intro h2,
.cta h2{
    font-size:36px;
}

.stat h2{
    font-size:46px;
}

.card img{
    height:300px;

}

.card-overlay{
    left:20px;
    right:20px;
    bottom:20px;
}

.card-overlay h3{
    font-size:30px;
}

.service-card,
.why-box{
    padding:0px 2px;
}

.mobile-nav{
    width:100%;
}

.footer-grid{
    padding:70px 0;
}

}

@media(max-width:380px){

.hero h1{
    font-size:38px;
}

.section-head h2,
.intro h2,
.cta h2{
    font-size:30px;
}

.hero-buttons a{
    padding:16px;
}

.card img{
    height:250px;
}

.track span{
    font-size:22px;
}

}
/* out approach */
/*==================================================
OUR APPROACH
==================================================*/

.approach{
    padding:140px 0;
    background:#050505;
}

.approach-title{
    font-size:88px;
    line-height:.95;
    max-width:980px;
    margin:30px 0 90px;
}

.approach-list{
    border-top:1px solid #242424;
}

.approach-item{

    display:grid;
    grid-template-columns:180px 1.2fr 1fr;
    gap:70px;

    align-items:center;

    padding:65px 0;

    border-bottom:1px solid #242424;

    transition:.45s;

}

.approach-item:hover{

    padding-left:20px;

}

.number{

    position:relative;

    font-size:120px;

    color:rgba(255,255,255,.05);

    font-family:'Cormorant Garamond',serif;

    font-weight:600;

}

.number::before{

    content:attr(data-no);

}

.number span{

    position:absolute;

    left:0;

    top:18px;

    color:var(--gold);

    font-size:16px;

    font-family:Manrope;

    font-weight:700;

    letter-spacing:2px;

}

.heading{

    font-size:58px;

    font-family:'Cormorant Garamond',serif;

    color:#fff;

    line-height:1;

}

.content{

    color:#bcbcbc;

    font-size:18px;

    line-height:1.9;

}

/* background number */

.approach-item:nth-child(1) .number::after{

content:"01";

}

.approach-item:nth-child(2) .number::after{

content:"02";

}

.approach-item:nth-child(3) .number::after{

content:"03";

}

.number::after{

position:absolute;

left:0;

top:-40px;

font-size:120px;

color:rgba(255,255,255,.06);

font-family:'Cormorant Garamond',serif;

font-weight:700;

}

/* Hover */

.approach-item:hover .heading{

color:var(--gold);

transition:.4s;

}

.approach-item:hover .content{

color:#fff;

transition:.4s;

}

/*=========================
Responsive
=========================*/

@media(max-width:1200px){

.approach-title{

font-size:70px;

}

.heading{

font-size:46px;

}

}

@media(max-width:991px){

.approach-title{

font-size:58px;

margin-bottom:70px;

}

.approach-item{

grid-template-columns:100px 1fr;

gap:35px;

}

.content{

grid-column:2;

}

.heading{

font-size:38px;

}

.number{

font-size:80px;

}

.number::after{

font-size:80px;

}

}

@media(max-width:768px){

.approach{

padding:90px 0;

}

.approach-title{

font-size:44px;

}
.approach-item{

    grid-template-columns:80px 1fr;
    gap:20px;
    padding:40px 0;

}

.content{
    grid-column:2;
}

.number{
    font-size:65px;
}

.heading{
    font-size:34px;
}
}

@media(max-width:480px){

.approach-title{

font-size:34px;

}
.approach-item{
    grid-template-columns:70px 1fr;
    gap:15px;
}

.content{
    grid-column:2;
}

.number{
    font-size:50px;
}

.number::after{
    font-size:50px;
}

}
/*==================================================
 about HERO
==================================================*/

.about-hero{

padding-top:190px;
padding-bottom:120px;

border-bottom:1px solid var(--border);

}

.about-hero span{

display:inline-block;
font-size:11px;
letter-spacing:4px;
color:var(--gold);
margin-bottom:25px;

}

.about-hero h1{

font-size:110px;
line-height:.9;
margin-bottom:30px;

}

.about-hero p{

max-width:560px;
color:var(--text);
line-height:1.9;
font-size:17px;

}

.premium-card-blur{
    font-size: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(96, 96, 96, 0.106);
}

/* ==========================
   TESTIMONIAL SECTION
========================== */
/*==================================================
 TESTIMONIAL SECTION
==================================================*/

.testimonial-section{
    position:relative;
    width:100%;
    overflow:hidden;
    padding:120px 0;
    background:#050505;
    isolation:isolate;
}

.testimonial-section::before{
    content:"";
    position:absolute;
    top:-180px;
    left:-150px;
    width:500px;
    height:500px;
    background:rgba(255,255,255,.05);
    filter:blur(180px);
    border-radius:50%;
    pointer-events:none;
}

.testimonial-section::after{
    content:"";
    position:absolute;
    right:-220px;
    bottom:-220px;
    width:600px;
    height:600px;
    background:rgba(255,255,255,.03);
    filter:blur(220px);
    border-radius:50%;
    pointer-events:none;
}

.container{
    width:min(92%,1500px);
    margin:auto;
    position:relative;
    z-index:2;
}

/*==================================================
 HEADER
==================================================*/

.testimonial-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:70px;
    margin-bottom:70px;
}

.left-content{
    flex:1;
    min-width:0;
}

.sub-heading{
    display:flex;
    align-items:center;
    gap:14px;
    color:#d4af37;
    letter-spacing:3px;
    font-size:13px;
    margin-bottom:18px;
    font-weight:600;
}

.line{
    width:45px;
    height:2px;
    background:#d4af37;
}

.left-content h2{
    font-size:clamp(34px,5vw,72px);
    line-height:1.08;
    color:#fff;
    font-weight:500;
}

.left-content h2 span{
    color:#d4af37;
    font-style:italic;
}

.right-content{
    width:430px;
    max-width:100%;
}

.right-content p{
    color:#9d9d9d;
    line-height:1.8;
    font-size:16px;
}

/*==================================================
 ROWS
==================================================*/

.testimonial-row{
    overflow:hidden;
    margin:24px 0;
    transform:rotate(-5deg);
    -webkit-mask-image:linear-gradient(to right,transparent,black 10%,black 90%,transparent);
    mask-image:linear-gradient(to right,transparent,black 10%,black 90%,transparent);
}

.testimonial-track{
    display:flex;
    gap:24px;
    width:max-content;
}

.left-scroll .testimonial-track{
    animation:leftMove 35s linear infinite;
}

.right-scroll .testimonial-track{
    animation:rightMove 35s linear infinite;
}

.testimonial-track:hover{
    animation-play-state:paused;
}

/*==================================================
 CARD
==================================================*/

.testimonial-card{
    width:340px;
    min-height:220px;
    flex-shrink:0;
    padding:28px;
    border-radius:24px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    box-shadow:0 20px 45px rgba(0,0,0,.45);
    transition:.35s ease;
}

.testimonial-card.large{
    width:430px;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.08);
    border-color:rgba(255,255,255,.15);
    box-shadow:0 25px 60px rgba(0,0,0,.55);
}

.quote{
    font-size:58px;
    color:#d4af37;
    line-height:1;
    margin-bottom:14px;
}

.testimonial-card p{
    color:#d8d8d8;
    line-height:1.75;
    font-size:15px;
    margin-bottom:28px;
}

.client{
    display:flex;
    align-items:center;
    gap:14px;
}

.client img{
    width:58px;
    height:58px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid rgba(255,255,255,.08);
}

.client h4{
    color:#fff;
    font-size:18px;
    margin:0 0 4px;
}

.client span{
    color:#999;
    font-size:14px;
}

/*==================================================
 ANIMATION
==================================================*/

@keyframes leftMove{
    from{transform:translateX(0);}
    to{transform:translateX(-50%);}
}

@keyframes rightMove{
    from{transform:translateX(-50%);}
    to{transform:translateX(0);}
}

/*==================================================
 LARGE TABLET
==================================================*/

@media (max-width:991px){

.testimonial-section{
    padding:90px 0;
}

.testimonial-header{
    flex-direction:column;
    gap:30px;
    margin-bottom:55px;
}

.right-content{
    width:100%;
}

.left-content h2{
    font-size:48px;
}

.testimonial-row{
    transform:rotate(-3deg);
}

.testimonial-card{
    width:300px;
    min-height:200px;
    padding:22px;
}

.testimonial-card.large{
    width:350px;
}

.quote{
    font-size:48px;
}

.testimonial-card p{
    font-size:14px;
    line-height:1.7;
}

.client img{
    width:50px;
    height:50px;
}

.client h4{
    font-size:16px;
}

.client span{
    font-size:13px;
}

}

/*==================================================
 MOBILE
==================================================*/

@media (max-width:767px){

.testimonial-section{
    padding:70px 0;
}

.testimonial-header{
    gap:24px;
    margin-bottom:40px;
}

.left-content h2{
    font-size:34px;
}

.sub-heading{
    font-size:12px;
    letter-spacing:2px;
}

.right-content p{
    font-size:14px;
    line-height:1.7;
}

.testimonial-row{
    transform:rotate(-2deg);
    margin:18px 0;
}

.testimonial-track{
    gap:16px;
}

.testimonial-card{
    width:240px;
    min-height:180px;
    padding:18px;
    border-radius:18px;
}

.testimonial-card.large{
    width:280px;
}

.quote{
    font-size:42px;
    margin-bottom:10px;
}

.testimonial-card p{
    font-size:13px;
    line-height:1.6;
    margin-bottom:18px;
}

.client{
    gap:10px;
}

.client img{
    width:42px;
    height:42px;
}

.client h4{
    font-size:14px;
}

.client span{
    font-size:12px;
}

}

/*==================================================
 SMALL MOBILE
==================================================*/

@media (max-width:480px){

.container{
    width:94%;
}

.left-content h2{
    font-size:30px;
}

.testimonial-card{
    width:220px;
    padding:16px;
}

.testimonial-card.large{
    width:250px;
}

.quote{
    font-size:36px;
}

.testimonial-card p{
    font-size:12.5px;
}

.client img{
    width:38px;
    height:38px;
}

}
/* services */
/* =====================================================
   CART CATEGORIES SECTION - PART 2A
===================================================== */

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 70px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.08);
    transition: .5s ease;
    box-shadow:
        0 10px 30px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.08);
}

.category-card:hover{
    transform: translateY(-12px);
    border-color:#FFD54F;
    box-shadow:
        0 30px 70px rgba(255,193,7,.15),
        0 15px 45px rgba(0,0,0,.45);
}

/* Animated Border */

.category-card::before{
    content:'';
    position:absolute;
    inset:-2px;
    border-radius:30px;
    padding:2px;
    background:linear-gradient(
        135deg,
        transparent,
        rgba(255,193,7,.8),
        transparent,
        rgba(255,255,255,.2),
        transparent
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    opacity:0;
    transition:.5s;
}

.category-card:hover::before{
    opacity:1;
}

/* ===============================
   IMAGE
================================ */

.category-image{
    position:relative;
    height:250px;
    overflow:hidden;
}

.category-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.category-card:hover img{
    transform:scale(1.12);
}

/* Gradient Overlay */

.category-image::after{
    content:'';
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.95),
            rgba(0,0,0,.35),
            transparent
        );
}

/* Floating Badge */

.category-badge{
    position:absolute;
    top:18px;
    left:18px;
    background:#FFD54F;
    color:#111;
    padding:10px 18px;
    border-radius:50px;
    font-size:.82rem;
    font-weight:700;
    z-index:5;
    letter-spacing:.4px;
    box-shadow:
        0 10px 25px rgba(255,193,7,.35);
}

/* Premium Rating */

.category-rating{
    position:absolute;
    right:18px;
    top:18px;
    z-index:5;

    display:flex;
    align-items:center;
    gap:6px;

    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);

    padding:8px 14px;
    border-radius:50px;
    color:#FFD54F;
    font-weight:700;
    border:1px solid rgba(255,255,255,.08);
}

/* =============================
CONTENT
============================= */

.category-content{
    padding:28px;
}

.category-title{
    color:#fff;
    font-size:1.6rem;
    font-weight:700;
    margin-bottom:15px;
}

.category-description{
    color:rgba(255,255,255,.72);
    line-height:1.8;
    margin-bottom:28px;
    font-size:.96rem;
}

/* Features */

.category-features{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:30px;
}

.category-features span{
    display:flex;
    align-items:center;
    gap:8px;

    background:rgba(255,255,255,.05);
    color:#fff;

    padding:10px 16px;

    border-radius:40px;

    font-size:.86rem;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;
}

.category-features span:hover{
    background:#FFD54F;
    color:#111;
    transform:translateY(-3px);
}

/* Bottom Area */

.category-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:10px;
}

.category-count{
    color:#FFD54F;
    font-size:1rem;
    font-weight:700;
}

.category-link{
    width:52px;
    height:52px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;

    background:#FFD54F;
    color:#111;

    font-size:20px;

    transition:.4s;
}

.category-link:hover{
    transform:rotate(-45deg) scale(1.08);
    box-shadow:0 15px 35px rgba(255,193,7,.4);
}

/* Floating Glow */

.category-card .glow{
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(255,193,7,.12);
    filter:blur(70px);
    top:-70px;
    right:-70px;
    opacity:0;
    transition:.6s;
}

.category-card:hover .glow{
    opacity:1;
}


/* we serve */
/*==================================================
 PREMIUM CART INDUSTRIES MASONRY SECTION
==================================================*/


.pc-industries-section{

padding:120px 0;
background:#050505;

}


.pc-industries-container{

width:min(1320px,92%);
margin:auto;

}



/*================ HEADING ================*/


.pc-industries-heading{

max-width:760px;
margin:0 auto 70px;
text-align:center;

}



.pc-industries-heading span{

display:inline-block;

color:#d8b13c;

font-size:12px;

letter-spacing:4px;

text-transform:uppercase;

margin-bottom:20px;

}



.pc-industries-heading h2{

font-family:'Cormorant Garamond',serif;

font-size:60px;

font-weight:500;

line-height:1;

color:#fff;

margin-bottom:20px;

}



.pc-industries-heading p{

max-width:620px;

margin:auto;

color:#aaa;

font-size:16px;

line-height:1.8;

}






/*================ MASONRY GRID ================*/


.pc-industries-grid{

columns:4;

column-gap:25px;

}




/*================ CARD ================*/


.pc-industry-card{

position:relative;

break-inside:avoid;

margin-bottom:25px;

overflow:hidden;

border-radius:22px;

border:1px solid rgba(255,255,255,.08);

background:#111;

}



.pc-industry-card img{

width:100%;

height:360px;

object-fit:cover;

display:block;

transition:.6s ease;

}



.pc-industry-card::after{

content:"";

position:absolute;

inset:0;

background:linear-gradient(
to top,
rgba(0,0,0,.85),
rgba(0,0,0,.05)
);

}




.pc-industry-card:hover img{

transform:scale(1.1);

}




/*================ CONTENT ================*/


.pc-industry-content{

position:absolute;

left:25px;

bottom:25px;

z-index:5;

}



.pc-industry-content h3{

font-family:'Cormorant Garamond',serif;

font-size:30px;

font-weight:600;

color:#fff;

margin:0;

line-height:1.2;

}





/*================ VARIATION HEIGHTS ================*/


.pc-industry-card:nth-child(2n) img{

height:300px;

}



.pc-industry-card:nth-child(3n) img{

height:420px;

}



.pc-industry-card:nth-child(5n) img{

height:340px;

}



.pc-industry-card:nth-child(7n) img{

height:390px;

}






/*==================================================
 LARGE LAPTOP
==================================================*/

@media(max-width:1200px){


.pc-industries-section{

padding:100px 0;

}


.pc-industries-grid{

columns:3;

}



.pc-industries-heading h2{

font-size:52px;

}


.pc-industry-content h3{

font-size:26px;

}



}

/*==================================================
TABLET
==================================================*/

@media(max-width:992px){

    .pc-industries-section{
        padding:90px 0;
    }

    .pc-industries-grid{
        columns:4;
        column-gap:15px;
    }

    .pc-industry-card{
        margin-bottom:15px;
    }

    .pc-industry-card img,
    .pc-industry-card:nth-child(n) img{
        height:180px;
    }

    .pc-industry-content{
        left:12px;
        bottom:12px;
    }

    .pc-industry-content h3{
        font-size:16px;
    }

}


/*==================================================
MOBILE
==================================================*/

@media(max-width:768px){

    .pc-industries-section{
        padding:75px 0;
    }

    .pc-industries-heading h2{
        font-size:36px;
    }

    .pc-industries-heading p{
        font-size:14px;
    }

    .pc-industries-grid{
        columns:3;
        column-gap:12px;
    }

    .pc-industry-card{
        margin-bottom:12px;
    }

    .pc-industry-card img,
    .pc-industry-card:nth-child(n) img{
        height:150px;
    }

    .pc-industry-content{
        left:10px;
        bottom:10px;
    }

    .pc-industry-content h3{
        font-size:14px;
    }

}


/*==================================================
SMALL MOBILE
==================================================*/

@media(max-width:480px){

    .pc-industries-grid{
        columns:2;
        column-gap:10px;
    }

    .pc-industry-card{
        margin-bottom:10px;
    }

    .pc-industry-card img,
    .pc-industry-card:nth-child(n) img{
        height:140px;
    }

    .pc-industries-heading h2{
        font-size:30px;
    }

    .pc-industries-heading p{
        font-size:13px;
    }

    .pc-industry-content{
        left:8px;
        bottom:8px;
    }

    .pc-industry-content h3{
        font-size:12px;
    }

}

/* cta btn */
/* CTA BUTTON CENTER FIX */

.cta .hero-buttons{
    margin-left:0;
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}
@media(max-width:576px){

    .cta .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .cta .hero-buttons a{
        width:100%;
        max-width:280px;
    }

}
/* photo grid */
.pho-grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  background-color: var(--black);
  padding: 6px;
}

.pho-grid-container > div {
  position: relative;
  overflow: hidden;
}

.pho-grid-container img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .35s ease, opacity .35s ease;
}

.pho-grid-container video {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.pho-grid-container > div:hover img { transform: scale(1.06); opacity: .75; }

.price {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.62);
  color: var(--white);
  font-size: 12px;
  padding: 7px 10px;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.pho-grid-container > div:hover .price { transform: translateY(0); }

.item8  { grid-column: span 2; grid-row: span 2; }
.item8 video { min-height: 446px; }
.item16 { grid-column: span 2; }
.item16 video { min-height: 220px; }

@media (max-width: 900px) {
  .pho-grid-container { grid-template-columns: repeat(3, 1fr); }
  .item8 { grid-column: span 2; grid-row: span 1; }
  .item8 video { min-height: 220px; }
}
@media (max-width: 560px) {
  .pho-grid-container { grid-template-columns: repeat(2, 1fr); }
  .pho-grid-container img { height: 160px; }
  .pho-grid-container video, .item8 video { min-height: 160px; }
  .item8 { grid-column: span 2; }
  .item16 { grid-column: span 2; }
}
/*==================================================
FOOTER
==================================================*/

footer{
    background:#090909;
    border-top:1px solid var(--border);
    overflow:hidden;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;
    padding:90px 0 70px;
    align-items:flex-start;
}

.footer-left{
    max-width:520px;
}

.footer-tag{
    display:inline-block;
    color:var(--gold);
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.footer-grid h2{
    font-size:42px;
    line-height:1.2;
    margin-bottom:30px;
}

.footer-grid h4{
    font-size:20px;
    margin-bottom:22px;
    color:#fff;
}

.footer-grid ul{
    margin:0;
    padding:0;
    list-style:none;
}

.footer-grid li{
    margin-bottom:14px;
}

.footer-grid li a{
    color:#bdbdbd;
    text-decoration:none;
    transition:.35s;
}

.footer-grid li a:hover{
    color:var(--gold);
}

.footer-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:14px 28px;
    border:1px solid var(--gold);
    color:var(--gold);
    text-decoration:none;
    transition:.35s;
}

.footer-btn:hover{
    background:var(--gold);
    color:#000;
}

.socials{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.socials a{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #333;
    color:#fff;
    text-decoration:none;
    transition:.35s;
}

.socials a:hover{
    background:var(--gold);
    color:#000;
    border-color:var(--gold);
}

.footer-bg{
    text-align:center;
    font-size:clamp(48px,9vw,120px);
    font-weight:700;
    color:rgba(255,255,255,.04);
    letter-spacing:3px;
    line-height:1;
    padding:20px 0 35px;
    user-select:none;
}

.copyright{
    border-top:1px solid var(--border);
    padding:22px 22px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    color:#888;
    font-size:14px;
}

/*==================================================
TABLET
==================================================*/

@media(max-width:991px){

.footer-grid{
    grid-template-columns:1fr 1fr;
    gap:40px;
    padding:70px 0 50px;
}

.footer-left{
    grid-column:1/-1;
    max-width:100%;
}

.footer-grid h2{
    font-size:34px;
}

.footer-bg{
    font-size:70px;
}

}

/*==================================================
MOBILE
==================================================*/

@media(max-width:768px){

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
    gap:40px;
}

.footer-left{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.footer-btn{
    justify-content:center;
}

.socials{
    justify-content:center;
}

.footer-bg{
    font-size:46px;
    padding:15px 0 25px;
}

.copyright{
    flex-direction:column;
    text-align:center;
    gap:8px;
}

}

/*==================================================
SMALL MOBILE
==================================================*/

@media(max-width:480px){

.footer-grid{
    padding:55px 0 35px;
}

.footer-grid h2{
    font-size:28px;
}

.footer-btn{
    width:100%;
    justify-content:center;
}

.socials a{
    width:42px;
    height:42px;
}

.footer-bg{
    font-size:32px;
}

.copyright{
    font-size:13px;
}

}
/*==================================================
HERO BUTTONS FINAL RESPONSIVE
==================================================*/

.hero-buttons{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:18px;
    flex-wrap:wrap;
}

/* Desktop */
.hero-buttons a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    width:auto;
    min-width:200px;
    max-width:230px;

    padding:16px 28px;
    height:58px;

    white-space:nowrap;
}

/* Tablet */
@media (max-width:991px){

.hero-buttons{
    justify-content:center;
    width:100%;
}

.hero-buttons a{
    min-width:180px;
    max-width:220px;
    width:auto;
    flex:none;
}

}

/* Mobile */
@media (max-width:768px){

.hero-buttons{
    flex-direction:column;
    align-items:center;
    gap:14px;
}

.hero-buttons a{
    width:100%;
    max-width:300px;
    min-width:unset;
    height:54px;
    padding:14px 20px;
}

}

/* Small Mobile */
@media (max-width:480px){

.hero-buttons{
    width:100%;
}

.hero-buttons a{
    width:100%;
    max-width:260px;
    height:52px;
    font-size:14px;
}

.hero-buttons i{
    font-size:14px;
}

}
/* faqs */
/*==========================
FAQ
==========================*/

.faq-section{
padding:120px 0;
background:#050505;
position:relative;
overflow:hidden;
}

.faq-header{
max-width:750px;
margin:0 auto 70px;
text-align:center;
}

.faq-subtitle{
display:inline-flex;
align-items:center;
gap:12px;
color:#d4af37;
font-size:13px;
letter-spacing:3px;
margin-bottom:18px;
}

.faq-subtitle .line{
width:45px;
height:2px;
background:#d4af37;
}

.faq-header h2{
font-size:clamp(34px,5vw,68px);
color:#fff;
margin-bottom:18px;
}

.faq-header span{
color:#d4af37;
}

.faq-header p{
color:#9d9d9d;
line-height:1.8;
max-width:650px;
margin:auto;
}

.faq-wrapper{
max-width:900px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;
}

.faq-item{
background:rgba(255,255,255,.05);
border:none;
border-radius:20px;
overflow:hidden;
transition:.35s;
backdrop-filter:blur(18px);
}

.faq-question{
width:100%;
background:none;
border:none;
padding:26px 28px;
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
color:#fff;
font-size:20px;
font-weight:500;
text-align:left;
}

.faq-question span{
padding-right:20px;
}

.icon{
font-size:22px;
color:#d4af37;
transition:.3s;
flex-shrink:0;
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height .45s ease;
}

.faq-answer p{
padding:0 28px 26px;
color:#bdbdbd;
line-height:1.8;
font-size:15px;
}

.faq-item.active{
    border: none;
box-shadow:0 15px 40px rgba(0,0,0,.35);
}

.faq-item.active .faq-answer{
max-height:250px;
}

@media(max-width:992px){

.faq-section{
padding:90px 0;
}

.faq-question{
font-size:18px;
padding:22px;
}

}

@media(max-width:768px){

.faq-section{
padding:70px 0;
}

.faq-header{
margin-bottom:45px;
}

.faq-question{
font-size:16px;
padding:18px;
}

.faq-answer p{
padding:0 18px 18px;
font-size:14px;
}

.icon{
font-size:18px;
}

}

@media(max-width:480px){

.faq-question{
font-size:15px;
line-height:1.5;
}

.faq-answer p{
font-size:13px;
}

}
.icon{
    transition:.35s;
}

.faq-item.active .icon{
    transform:rotate(180deg);
}
