/*=========================================================
    EXODUS PREMIUM WEBSITE
    STYLE.CSS
    PART 1
==========================================================*/


/*=========================================================
ROOT VARIABLES
==========================================================*/

:root{

    /* Primary */

    --primary:#D9A441;
    --primary-light:#F6D78A;
    --primary-dark:#9C6A14;

    /* Background */

    --bg:#050505;
    --bg-light:#0A0A0A;
    --bg-card:#111111;
    --bg-soft:#181818;

    /* Text */

    --white:#ffffff;
    --text:#d8d8d8;
    --muted:#9d9d9d;

    /* Borders */

    --border:rgba(255,255,255,.08);

    /* Glass */

    --glass:rgba(255,255,255,.04);

    /* Radius */

    --radius-sm:15px;
    --radius:25px;
    --radius-lg:35px;
    --radius-xl:50px;

    /* Shadow */

    --shadow-dark:
    0 30px 80px rgba(0,0,0,.45);

    --shadow-gold:
    0 25px 70px rgba(217,164,65,.15);

    /* Gradient */

    --gold-gradient:
    linear-gradient(
        135deg,
        #FFE6A8,
        #D9A441,
        #8B5E12);

    /* Transition */

    --transition:.45s cubic-bezier(.22,.61,.36,1);

}


/*=========================================================
RESET
==========================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--bg);

    color:var(--white);

    font-family:'Outfit',sans-serif;

    overflow-x:hidden;

    line-height:1.7;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

}

button{

    border:none;

    outline:none;

}


/*=========================================================
SCROLLBAR
==========================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#040404;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(
        var(--primary),
        var(--primary-dark));

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-light);

}


/*=========================================================
SELECTION
==========================================================*/

::selection{

    background:var(--primary);

    color:#111;

}


/*=========================================================
GLOBAL BACKGROUND
==========================================================*/

body::before{

    content:"";

    position:fixed;

    left:-250px;

    top:-250px;

    width:700px;

    height:700px;

    background:

    radial-gradient(circle,

    rgba(217,164,65,.08),

    transparent 70%);

    filter:blur(80px);

    pointer-events:none;

    z-index:-2;

}

body::after{

    content:"";

    position:fixed;

    right:-300px;

    bottom:-300px;

    width:700px;

    height:700px;

    background:

    radial-gradient(circle,

    rgba(255,255,255,.03),

    transparent 70%);

    filter:blur(100px);

    pointer-events:none;

    z-index:-2;

}


/*=========================================================
CONTAINER
==========================================================*/

.container{

    position:relative;

    z-index:2;

}


/*=========================================================
SECTION
==========================================================*/

section{

    position:relative;

    padding:120px 0;

}


/*=========================================================
HEADINGS
==========================================================*/

h1{

    font-size:78px;

    font-weight:900;

    line-height:1.05;

}

h2{

    font-size:58px;

    font-weight:800;

    line-height:1.15;

}

h3{

    font-size:38px;

    font-weight:700;

}

h4{

    font-size:28px;

}

h5{

    font-size:22px;

}

p{

    color:var(--text);

    font-size:17px;

    line-height:2;

}


/*=========================================================
GRADIENT TEXT
==========================================================*/

.gradient-text{

    background:var(--gold-gradient);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}


/*=========================================================
MINI LABEL
==========================================================*/

.mini-tag{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:12px 24px;

    border-radius:100px;

    background:rgba(255,255,255,.03);

    border:1px solid var(--border);

    backdrop-filter:blur(18px);

    color:var(--primary-light);

    letter-spacing:3px;

    font-size:.75rem;

    font-weight:700;

}


/*=========================================================
SECTION TITLE
==========================================================*/

.section-title{

    text-align:center;

    max-width:780px;

    margin:auto;

    margin-bottom:90px;

}

.section-title h2{

    margin-top:25px;

}

.section-title p{

    margin-top:20px;

}


/*=========================================================
GLASS
==========================================================*/

.glass{

    background:var(--glass);

    border:1px solid var(--border);

    backdrop-filter:blur(25px);

    border-radius:var(--radius-lg);

}


/*=========================================================
BUTTONS
==========================================================*/

.primary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:18px 40px;

    border-radius:60px;

    background:var(--gold-gradient);

    color:#111;

    font-weight:700;

    transition:var(--transition);

    box-shadow:var(--shadow-gold);

}

.primary-btn:hover{

    transform:translateY(-6px);

    box-shadow:

    0 30px 70px rgba(217,164,65,.25);

}

.secondary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:18px 40px;

    border-radius:60px;

    background:transparent;

    color:#fff;

    border:1px solid var(--border);

    backdrop-filter:blur(20px);

    transition:var(--transition);

}

.secondary-btn:hover{

    background:rgba(255,255,255,.06);

    border-color:rgba(217,164,65,.30);

    transform:translateY(-5px);

}


/*=========================================================
CARDS
==========================================================*/

.premium-card{

    background:var(--glass);

    border:1px solid var(--border);

    border-radius:32px;

    backdrop-filter:blur(25px);

    transition:var(--transition);

}

.premium-card:hover{

    transform:translateY(-10px);

    border-color:rgba(217,164,65,.30);

    box-shadow:var(--shadow-gold);

}


/*=========================================================
IMAGES
==========================================================*/

.image-radius{

    border-radius:35px;

    overflow:hidden;

}

.image-radius img{

    transition:.8s;

}

.image-radius:hover img{

    transform:scale(1.08);

}


/*=========================================================
UTILITY CLASSES
==========================================================*/

.text-gold{

    color:var(--primary-light);

}

.text-muted{

    color:var(--muted)!important;

}

.bg-dark{

    background:var(--bg)!important;

}

.rounded-xl{

    border-radius:40px;

}

.shadow-gold{

    box-shadow:var(--shadow-gold);

}

.shadow-dark{

    box-shadow:var(--shadow-dark);

}

.overflow-hidden{

    overflow:hidden;

}

.position-relative{

    position:relative;

}

/*=========================================================
                PREMIUM NAVBAR
=========================================================*/

.navbar{

    position:fixed;

    /* top:20px; */

    left:50%;

    transform:translateX(-50%);

    width: 100%;

    max-width:1400px;

    padding:16px 30px;

    z-index:9999;

    border-radius:22px;

    background:rgba(10,10,10,.55);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(24px);

    -webkit-backdrop-filter:blur(24px);

    transition:all .45s ease;

}

.navbar.navbar-scrolled{

    top:10px;

    background:rgba(5,5,5,.82);

    border-color:rgba(217,164,65,.18);

    box-shadow:
    0 18px 60px rgba(0,0,0,.35);

}


/*=========================================================
LOGO
=========================================================*/

.navbar-brand{
    height: 60px;
}


/*=========================================================
NAV LINKS
=========================================================*/

.navbar-nav{

    gap:12px;

}

.navbar-nav .nav-link{

    position:relative;

    color:#d6d6d6!important;

    font-size:15px;

    font-weight:600;

    letter-spacing:1px;

    padding:12px 18px!important;

    transition:.35s;

}

.navbar-nav .nav-link:hover{

    color:#fff!important;

}

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    left:18px;

    bottom:6px;

    width:0;

    height:2px;

    border-radius:20px;

    background:linear-gradient(
    90deg,
    var(--primary),
    var(--primary-light));

    transition:.4s;

}

.navbar-nav .nav-link:hover::after,

.navbar-nav .nav-link.active::after{

    width:calc(100% - 36px);

}

.navbar-nav .nav-link.active{

    /* color:#fff!important; */

}


/*=========================================================
NAV CTA
=========================================================*/

.navbar .primary-btn{

    padding:14px 28px;

    font-size:14px;

}


/*=========================================================
DROPDOWN
=========================================================*/

.dropdown-menu{

    margin-top:18px;

    border:none;

    background:rgba(12,12,12,.95);

    border-radius:18px;

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(22px);

    overflow:hidden;

    z-index:1000000;

    position:absolute;

}

.dropdown-item{

    color:#ddd;

    padding:14px 22px;

    transition:.35s;

}

.dropdown-item:hover{

    background:rgba(217,164,65,.12);

    color:#fff;

}


/*=========================================================
TOGGLER
=========================================================*/

.navbar-toggler{

    border:none;

    box-shadow:none!important;

}

.navbar-toggler i{

    color:#fff;

    font-size:28px;

}


/*=========================================================
HERO
=========================================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

}


/*=========================================================
BACKGROUND
=========================================================*/

.hero::before{

    content:"";

    position:absolute;

    width:800px;

    height:800px;

    left:-220px;

    top:-180px;

    border-radius:50%;

    background:

    radial-gradient(circle,

    rgba(217,164,65,.10),

    transparent 70%);

    filter:blur(90px);

}

.hero::after{

    content:"";

    position:absolute;

    right:-280px;

    bottom:-220px;

    width:700px;

    height:700px;

    border-radius:50%;

    background:

    radial-gradient(circle,

    rgba(255,255,255,.03),

    transparent);

    filter:blur(120px);

}


/*=========================================================
HERO CONTENT
=========================================================*/

.hero-content{

    position:relative;

    z-index:2;

}

.hero-content h1{

    font-size:82px;

    line-height:1.05;

    font-weight:900;

    margin-bottom:30px;

}

.hero-content p{

    max-width:650px;

    color:#b8b8b8;

    font-size:19px;

    line-height:2;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:45px;

}


/*=========================================================
HERO IMAGE
=========================================================*/

.hero-image{

    position:relative;

}

.hero-image img{

    border-radius:35px;

    box-shadow:
    0 40px 90px rgba(0,0,0,.45);

    transition:.8s;

}

.hero-image:hover img{

    transform:scale(1.04);

}


/*=========================================================
FLOATING GLASS CARD
=========================================================*/

.hero-floating-card{

    position:absolute;

    right:-30px;

    bottom:40px;

    padding:24px 30px;

    border-radius:24px;

    background:rgba(10,10,10,.78);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(25px);

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.hero-floating-card h4{

    color:var(--primary-light);

    margin-bottom:6px;

}

.hero-floating-card p{

    margin:0;

    color:#bbb;

    font-size:14px;

}


/*=========================================================
SCROLL INDICATOR
=========================================================*/

.scroll-indicator{

    position:absolute;

    left:50%;

    bottom:40px;

    transform:translateX(-50%);

    width:32px;

    height:55px;

    border:2px solid rgba(255,255,255,.25);

    border-radius:30px;

}

.scroll-indicator::before{

    content:"";

    position:absolute;

    left:50%;

    top:10px;

    width:6px;

    height:10px;

    border-radius:50px;

    background:var(--primary);

    transform:translateX(-50%);

    animation:scrollMove 2s infinite;

}

@keyframes scrollMove{

    0%{

        opacity:0;

        transform:translate(-50%,0);

    }

    50%{

        opacity:1;

    }

    100%{

        opacity:0;

        transform:translate(-50%,20px);

    }

}


/*=========================================================
HERO GLOW
=========================================================*/

.hero-glow{

    position:absolute;

    width:550px;

    height:550px;

    border-radius:50%;

    background:

    radial-gradient(circle,

    rgba(217,164,65,.18),

    transparent 70%);

    filter:blur(70px);

    pointer-events:none;

    z-index:0;

}


/*=========================================================
BADGES
=========================================================*/

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:12px 22px;

    margin-bottom:28px;

    border-radius:100px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

}

.hero-badge i{

    color:var(--primary);

}


/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

    .navbar{

        display:flex;
        align-items:center;

        width:96%;

        padding:14px 20px;

    }

    .navbar .container{

        display:flex;
        align-items:center;
        justify-content:space-between;
        flex-wrap:wrap;

        width:100%;
        max-width:none;

        margin:0;
        padding:0;

    }

    /* Logo: keep left, vertically centered, never stretch */
    a.navbar-brand{

        display:flex;
        align-items:center;

        height:auto;

        margin:0;
        padding:0;

        flex-shrink:0;

    }

    .navbar-brand img.navbar-brand{

        width:auto;
        height:44px;
        max-height:44px;
        max-width:100%;

        margin:0;
        padding:0;

        flex-shrink:0;

    }

    /* Hamburger: right, square 48x48 touch target, icon perfectly centered */
    .navbar-toggler{

        display:flex;
        align-items:center;
        justify-content:center;

        width:48px;
        height:48px;
        min-width:48px;
        min-height:48px;

        padding:0;
        margin:0;

        flex-shrink:0;

    }

    .navbar-toggler .navbar-toggler-icon{

        margin:0;

        background-size:100% 100%;

    }

    /* Dropped-down menu always takes a full-width row below the logo/toggler */
    .navbar-collapse{

        flex-basis:100%;

        width:100%;

        margin-top:18px;

        padding:20px;

        border-radius:20px;

        background:rgba(8,8,8,.95);

        border:1px solid rgba(255,255,255,.08);

        max-height:calc(100vh - 120px);

        overflow-y:auto;

        -webkit-overflow-scrolling:touch;

    }

    .hero{

        text-align:center;

        padding-top:140px;

    }

    .hero-content h1{

        font-size:58px;

    }

    .hero-content p{

        margin:auto;

    }

    .hero-buttons{

        justify-content:center;

        flex-wrap:wrap;

    }

    .hero-image{

        margin-top:60px;

    }

    .hero-floating-card{

        right:20px;

        bottom:20px;

    }

}

@media(max-width:576px){

    .navbar{

        top:10px;

    }

    .hero-content h1{

        font-size:38px;

    }

    .hero-content p{

        font-size:16px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .hero-buttons .primary-btn,

    .hero-buttons .secondary-btn{

        width:100%;

    }

    .hero-floating-card{

        position:relative;

        right:auto;

        bottom:auto;

        margin-top:20px;

    }

}

/*=========================================================
                SECTION BACKGROUNDS
=========================================================*/

.section-dark{
    position:relative;
    background:linear-gradient(180deg,#070707,#101010);
    overflow:hidden;
}

.section-dark::before{
    content:"";
    position:absolute;
    width:900px;
    height:900px;
    top:-320px;
    right:-320px;
    border-radius:50%;
    background:radial-gradient(circle,
        rgba(217,164,65,.06),
        transparent 70%);
    filter:blur(90px);
}

.section-dark::after{
    content:"";
    position:absolute;
    width:650px;
    height:650px;
    bottom:-250px;
    left:-250px;
    border-radius:50%;
    background:radial-gradient(circle,
        rgba(255,255,255,.025),
        transparent 70%);
    filter:blur(80px);
}


/*=========================================================
                PREMIUM FEATURE CARD
=========================================================*/

.feature-card{

    position:relative;

    height:100%;

    padding:45px;

    overflow:hidden;

    border-radius:32px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(24px);

    transition:all .45s ease;

}

.feature-card:hover{

    transform:translateY(-12px);

    border-color:rgba(217,164,65,.28);

    box-shadow:
        0 30px 70px rgba(217,164,65,.15);

}

.feature-card::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    top:-120px;

    right:-120px;

    border-radius:50%;

    background:radial-gradient(circle,
        rgba(217,164,65,.18),
        transparent);

    transition:.6s;

}

.feature-card:hover::before{

    transform:scale(1.4);

}

.feature-icon{

    width:90px;

    height:90px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:25px;

    background:linear-gradient(
        135deg,
        rgba(217,164,65,.22),
        rgba(255,255,255,.03));

    margin-bottom:35px;

}

.feature-icon i{

    font-size:42px;

    color:var(--primary-light);

}

.feature-card h3{

    margin-bottom:20px;

}

.feature-card p{

    color:var(--muted);

}

.feature-link{

    display:inline-flex;

    align-items:center;

    gap:12px;

    margin-top:25px;

    color:var(--primary-light);

    font-weight:600;

}

.feature-link i{

    transition:.35s;

}

.feature-card:hover .feature-link i{

    transform:translateX(8px);

}


/*=========================================================
                SERVICE CARD
=========================================================*/

.service-card{

    position:relative;

    border-radius:35px;

    overflow:hidden;

    background:#0d0d0d;

    transition:.45s;

}

.service-card img{

    width:100%;

    transition:.8s;

}

.service-card:hover img{

    transform:scale(1.08);

}

.service-overlay{

    position:absolute;

    inset:0;

    padding:40px;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.92));

}

.service-overlay h3{

    margin-bottom:15px;

}

.service-overlay p{

    color:#cfcfcf;

}

.service-card:hover{

    box-shadow:var(--shadow-gold);

}


/*=========================================================
                ARTIST CARD
=========================================================*/

.artist-card{

    position:relative;

    overflow:hidden;

    border-radius:35px;

}

.artist-card img{

    width:100%;

    transition:.9s;

}

.artist-card:hover img{

    transform:scale(1.12);

}

.artist-info{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:30px;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.92));

    transform:translateY(30px);

    opacity:0;

    transition:.45s;

}

.artist-card:hover .artist-info{

    transform:none;

    opacity:1;

}

.artist-info h4{

    margin-bottom:8px;

}

.artist-info span{

    color:var(--primary-light);

}


/*=========================================================
                EVENT CARD
=========================================================*/

.event-card{

    position:relative;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:35px;

    overflow:hidden;

    transition:.45s;

}

.event-card:hover{

    transform:translateY(-10px);

    border-color:rgba(217,164,65,.28);

}

.event-image{

    overflow:hidden;

}

.event-image img{

    transition:.8s;

}

.event-card:hover .event-image img{

    transform:scale(1.08);

}

.event-content{

    padding:35px;

}

.event-date{

    display:inline-block;

    margin-bottom:18px;

    padding:10px 20px;

    border-radius:40px;

    background:rgba(217,164,65,.14);

    color:var(--primary-light);

    font-size:14px;

    font-weight:600;

}


/*=========================================================
                STATS
=========================================================*/

.stats-section{

    background:linear-gradient(180deg,#080808,#0f0f0f);

}

.stat-box{

    text-align:center;

    padding:45px 20px;

    border-radius:28px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

}

.stat-box:hover{

    transform:translateY(-8px);

    border-color:rgba(217,164,65,.25);

}

.stat-box h2{

    font-size:60px;

    color:var(--primary-light);

    margin-bottom:10px;

}

.stat-box p{

    color:var(--muted);

    margin:0;

}


/*=========================================================
                IMAGE FRAME
=========================================================*/

.image-frame{

    position:relative;

    border-radius:35px;

    overflow:hidden;

}

.image-frame::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:35px;

    border:1px solid rgba(255,255,255,.08);

    pointer-events:none;

}

.image-frame img{

    transition:.8s;

}

.image-frame:hover img{

    transform:scale(1.08);

}


/*=========================================================
                HOVER LIGHT
=========================================================*/

.hover-light{

    position:relative;

    overflow:hidden;

}

.hover-light::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:radial-gradient(circle,
        rgba(255,255,255,.16),
        transparent);

    left:-220px;

    top:-220px;

    transition:all .8s ease;

}

.hover-light:hover::before{

    left:70%;

    top:70%;

}


/*=========================================================
                RESPONSIVE
=========================================================*/

@media(max-width:992px){

    .feature-card,
    .service-overlay,
    .event-content{

        padding:30px;

    }

    .feature-icon{

        width:75px;
        height:75px;

    }

    .feature-icon i{

        font-size:34px;

    }

}

@media(max-width:576px){

    .feature-card,
    .event-content{

        padding:25px;

    }

    .stat-box h2{

        font-size:42px;

    }

    .service-overlay{

        padding:25px;

    }

}

/*=========================================================
                PREMIUM GALLERY
=========================================================*/

.gallery-section{
    position:relative;
    overflow:hidden;
    background:linear-gradient(180deg,#080808,#111);
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(12,1fr);
    gap:25px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:32px;
    cursor:pointer;
    background:#111;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .9s cubic-bezier(.22,.61,.36,1);
}

.gallery-item:hover img{
    transform:scale(1.12);
}

.gallery-large{
    grid-column:span 6;
    height:620px;
}

.gallery-medium{
    grid-column:span 3;
    height:300px;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.85)
    );
    display:flex;
    align-items:flex-end;
    padding:35px;
    opacity:0;
    transition:.45s;
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay h3{
    transform:translateY(25px);
    transition:.45s;
}

.gallery-item:hover h3{
    transform:none;
}


/*=========================================================
                TESTIMONIALS
=========================================================*/

.testimonial-card{

    position:relative;

    padding:45px;

    border-radius:32px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    transition:.45s;

    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    border-color:rgba(217,164,65,.30);

    box-shadow:var(--shadow-gold);

}

.testimonial-card::before{

    content:"“";

    position:absolute;

    right:30px;

    top:20px;

    font-size:120px;

    color:rgba(255,255,255,.04);

    line-height:1;

}

.testimonial-stars{

    color:#F6D78A;

    margin-bottom:20px;

}

.testimonial-author{

    display:flex;

    align-items:center;

    gap:18px;

    margin-top:30px;

}

.testimonial-author img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

}

.testimonial-author h5{

    margin-bottom:4px;

}


/*=========================================================
                    TEAM
=========================================================*/

.team-card{

    position:relative;

    overflow:hidden;

    border-radius:35px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    transition:.45s;

}

.team-card:hover{

    transform:translateY(-10px);

    border-color:rgba(217,164,65,.30);

}

.team-image{

    overflow:hidden;

}

.team-image img{

    transition:.8s;

}

.team-card:hover img{

    transform:scale(1.08);

}

.team-content{

    padding:35px;

    text-align:center;

}

.team-social{

    margin-top:20px;

}

.team-social a{

    width:42px;

    height:42px;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    margin:0 5px;

    color:#fff;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.team-social a:hover{

    background:var(--primary);

    color:#111;

}


/*=========================================================
                CTA
=========================================================*/

.cta-section{

    position:relative;

    overflow:hidden;

    text-align:center;

    padding:160px 0;

}

.cta-section::before{

    content:"";

    position:absolute;

    width:800px;

    height:800px;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    border-radius:50%;

    background:

    radial-gradient(circle,

    rgba(217,164,65,.12),

    transparent);

    filter:blur(90px);

}

.cta-content{

    position:relative;

    z-index:2;

}

.cta-content h2{

    max-width:900px;

    margin:auto;

}

.cta-content p{

    max-width:720px;

    margin:30px auto;

}


/*=========================================================
                NEWSLETTER
=========================================================*/

.newsletter{

    margin-top:70px;

}

.newsletter form{

    max-width:700px;

    margin:auto;

    display:flex;

    gap:15px;

}

.newsletter input{

    flex:1;

    height:60px;

    border-radius:50px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    padding:0 25px;

    color:#fff;

}

.newsletter input:focus{

    outline:none;

    border-color:rgba(217,164,65,.35);

}


/*=========================================================
                CONTACT FORM
=========================================================*/

.contact-form input,
.contact-form textarea{

    width:100%;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:18px 22px;

    color:#fff;

    margin-bottom:22px;

    transition:.35s;

}

.contact-form textarea{

    min-height:180px;

    resize:none;

}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;

    border-color:rgba(217,164,65,.35);

}


/*=========================================================
                    FOOTER
=========================================================*/

footer{

    background:#050505;

    padding:90px 0 35px;

    border-top:1px solid rgba(255,255,255,.06);

}

.footer-title{

    margin-bottom:25px;

}

.footer-links li{

    margin-bottom:14px;

}

.footer-links a{

    color:#bfbfbf;

}

.footer-links a:hover{

    color:#F6D78A;

    padding-left:8px;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.footer-social a:hover{

    background:var(--primary);

    color:#111;

}

.footer-bottom{

    margin-top:70px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.06);

    color:#888;

}


/*=========================================================
                RESPONSIVE
=========================================================*/

@media(max-width:991px){

.gallery-grid{

grid-template-columns:1fr;

}

.gallery-large,
.gallery-medium{

grid-column:auto;

height:320px;

}

.newsletter form{

flex-direction:column;

}

.newsletter input,
.newsletter button{

width:100%;

}

.cta-section{

padding:100px 0;

}

}

@media(max-width:576px){

.testimonial-card,
.team-content{

padding:25px;

}

.footer{

text-align:center;

}

.footer-social{

justify-content:center;

}

}


/*=========================================================
                PREMIUM LOADER
=========================================================*/

.preloader{

    position:fixed;

    inset:0;

    background:#050505;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:999999;

    transition:.8s;

}

.preloader.hide{

    opacity:0;

    visibility:hidden;

}

.loader-circle{

    width:90px;

    height:90px;

    border-radius:50%;

    border:4px solid rgba(255,255,255,.08);

    border-top:4px solid var(--primary);

    animation:loaderSpin 1s linear infinite;

}

@keyframes loaderSpin{

    to{

        transform:rotate(360deg);

    }

}

/*=========================================================
                SCROLL PROGRESS
=========================================================*/

.scroll-progress{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:var(--gold-gradient);

    z-index:999999;

}

/*=========================================================
                CUSTOM CURSOR
=========================================================*/

.cursor{

    position:fixed;

    width:22px;

    height:22px;

    border-radius:50%;

    border:2px solid var(--primary);

    pointer-events:none;

    transform:translate(-50%,-50%);

    transition:

        width .25s,

        height .25s,

        background .25s;

    z-index:999999;

}

.cursor.active{

    width:60px;

    height:60px;

    background:rgba(217,164,65,.15);

}

/*=========================================================
                FLOATING BLOBS
=========================================================*/

.blob{

    position:absolute;

    border-radius:50%;

    filter:blur(90px);

    opacity:.18;

    pointer-events:none;

}

.blob-1{

    width:450px;

    height:450px;

    background:#D9A441;

    left:-150px;

    top:-100px;

    animation:blobMove 16s ease-in-out infinite;

}

.blob-2{

    width:350px;

    height:350px;

    background:#5B3A0C;

    right:-120px;

    bottom:-100px;

    animation:blobMove 18s ease-in-out infinite;

    animation-delay:5s;

}

@keyframes blobMove{

0%,100%{

transform:translateY(0) scale(1);

}

50%{

transform:translateY(-40px) scale(1.08);

}

}

/*=========================================================
                REVEAL ANIMATIONS
=========================================================*/

.reveal{

opacity:0;

transform:translateY(60px);

transition:

opacity .9s ease,

transform .9s ease;

}

.reveal.active{

opacity:1;

transform:none;

}

.fade-left{

opacity:0;

transform:translateX(-60px);

transition:.9s;

}

.fade-left.active{

opacity:1;

transform:none;

}

.fade-right{

opacity:0;

transform:translateX(60px);

transition:.9s;

}

.fade-right.active{

opacity:1;

transform:none;

}

.zoom-in{

opacity:0;

transform:scale(.85);

transition:.9s;

}

.zoom-in.active{

opacity:1;

transform:scale(1);

}

/*=========================================================
                HOVER GLOW
=========================================================*/

.glow-hover{

position:relative;

overflow:hidden;

}

.glow-hover::before{

content:"";

position:absolute;

width:250px;

height:250px;

background:

radial-gradient(circle,

rgba(255,255,255,.18),

transparent);

left:-250px;

top:-250px;

transition:.8s;

}

.glow-hover:hover::before{

left:60%;

top:40%;

}

/*=========================================================
                ICON FLOAT
=========================================================*/

.float-icon{

animation:iconFloat 4s ease-in-out infinite;

}

@keyframes iconFloat{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

}

/*=========================================================
                GLASS OVERLAY
=========================================================*/

.glass-overlay{

position:absolute;

inset:0;

background:

linear-gradient(

rgba(255,255,255,.02),

transparent);

pointer-events:none;

}

/*=========================================================
                PARALLAX
=========================================================*/

.parallax-slow{

will-change:transform;

}

.parallax-medium{

will-change:transform;

}

.parallax-fast{

will-change:transform;

}

/*=========================================================
                DIVIDER
=========================================================*/

.gold-divider{

width:120px;

height:4px;

border-radius:50px;

margin:30px auto;

background:

linear-gradient(

90deg,

transparent,

var(--primary),

transparent);

}

/*=========================================================
                BADGES
=========================================================*/

.premium-badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:12px 24px;

border-radius:100px;

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

color:var(--primary-light);

font-weight:600;

}

/*=========================================================
                ANIMATION HELPERS
=========================================================*/

.rotate-hover{

transition:.45s;

}

.rotate-hover:hover{

transform:rotate(3deg);

}

.scale-hover{

transition:.45s;

}

.scale-hover:hover{

transform:scale(1.05);

}

.lift-hover{

transition:.45s;

}

.lift-hover:hover{

transform:translateY(-10px);

}

/*=========================================================
                IMAGE EFFECT
=========================================================*/

.image-shine{

position:relative;

overflow:hidden;

}

.image-shine::before{

content:"";

position:absolute;

top:0;

left:-120%;

width:70%;

height:100%;

background:

linear-gradient(

90deg,

transparent,

rgba(255,255,255,.20),

transparent);

transform:skewX(-25deg);

transition:1s;

z-index:2;

}

.image-shine:hover::before{

left:140%;

}

/*=========================================================
                GSAP HELPERS
=========================================================*/

.gsap-hidden{

opacity:0;

visibility:hidden;

}

.gsap-visible{

opacity:1;

visibility:visible;

}

/*=========================================================
                RESPONSIVE
=========================================================*/

@media(max-width:992px){

section{

padding:100px 0;

}

h1{

font-size:56px;

}

h2{

font-size:42px;

}

}

@media(max-width:768px){

section{

padding:80px 0;

}

h1{

font-size:46px;

}

h2{

font-size:36px;

}

h3{

font-size:28px;

}

.primary-btn,

.secondary-btn{

width:100%;

justify-content:center;

}

}

@media(max-width:576px){

.container{

padding-left:20px;

padding-right:20px;

}

h1{

font-size:38px;

}

h2{

font-size:30px;

}

p{

font-size:15px;

line-height:1.8;

}

}

/*=========================================================
                END OF PREMIUM STYLE.CSS
=========================================================*/






/*=========================================================
        GLOBAL READ MORE
=========================================================*/

.read-more-wrapper{
    position:relative;
    margin-top:15px;
}

.read-more-content{
    max-height:0;
    overflow:hidden;
    opacity:0;
    transition:
        max-height .6s ease,
        opacity .45s ease,
        margin .45s ease;
}

.read-more-content.active{
    max-height:2500px;
    opacity:1;
    margin-top:18px;
}

.read-more-btn{

    display:inline-flex;
    align-items:center;
    gap:8px;

    margin-top:18px;

    padding:10px 16px;

    background:none;
    border:none;

    color:#22d3ee;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

    border-radius:8px;
}

@media(max-width:768px){
  .read-more-btn{
    min-height:44px;
    padding:12px 16px;
  }
}

.read-more-btn i{
    transition:.35s;
}

.read-more-btn.active i{
    transform:rotate(180deg);
}

.read-more-btn:hover{

    color:#7ee7ff;

}