/* =========================================================
   EVENTORA EVENTS
   GLOBAL DESIGN SYSTEM
========================================================= */

:root {

    --black: #080808;
    --dark: #0e0e0e;
    --dark-2: #151515;
    --dark-3: #1c1c1c;

    --white: #ffffff;
    --off-white: #f4f3ef;
    --muted: #9c9c9c;

    --gold: #c8a96b;
    --gold-light: #dfc58f;

    --border: rgba(255,255,255,0.12);
    --light-border: rgba(0,0,0,0.10);

    --container: 1440px;

    --font-body: "DM Sans", sans-serif;
    --font-display: "Manrope", sans-serif;

    --transition: 0.45s cubic-bezier(.16,1,.3,1);

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: var(--font-body);

    background: var(--off-white);

    color: var(--black);

    font-size: 16px;

    line-height: 1.7;

    overflow-x: hidden;

}

.confcoll-logo {
    width: 190px;
    height: auto;
    display: block;
}

.eventora-header.scrolled {
    background: rgba(16, 28, 44, 0.97);
    backdrop-filter: blur(18px);
}

body.menu-open {
    overflow: hidden;
}


img {
    max-width: 100%;
    display: block;
}


a {
    text-decoration: none;
    color: inherit;
}


button,
input,
textarea,
select {
    font-family: inherit;
}


.container {
    max-width: var(--container);
}


/* =========================================================
   PRELOADER
========================================================= */

.page-loader {

    position: fixed;

    inset: 0;

    z-index: 99999;

    background: var(--black);

    display: flex;

    align-items: center;

    justify-content: center;

    transition: opacity .7s ease,
                visibility .7s ease;

}


.page-loader.loaded {

    opacity: 0;

    visibility: hidden;

}


.loader-inner {

    width: 180px;

    color: var(--white);

    text-align: center;

}


.loader-inner > span {

    display: block;

    font-family: var(--font-display);

    font-weight: 700;

    font-size: 18px;

    letter-spacing: .18em;

}


.loader-line {

    margin-top: 18px;

    height: 1px;

    background: rgba(255,255,255,.2);

    overflow: hidden;

}


.loader-line div {

    height: 100%;

    width: 0;

    background: var(--gold);

    animation: loaderProgress 1.5s ease forwards;

}


@keyframes loaderProgress {

    to {
        width: 100%;
    }

}


/* =========================================================
   HEADER
========================================================= */

.main-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 15px 0;

    transition:
        background .4s ease,
        padding .4s ease,
        backdrop-filter .4s ease;

}


.main-header.scrolled {

    background: rgba(8,8,8,.88);

    backdrop-filter: blur(18px);

    padding: 8px 0;

    border-bottom: 1px solid var(--border);

}


.eventora-logo {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--white) !important;

}


.logo-mark {

    width: 38px;

    height: 38px;

    border: 1px solid rgba(255,255,255,.5);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: var(--font-display);

    font-weight: 700;

    font-size: 17px;

}


.logo-text {

    font-family: var(--font-display);

    font-size: 16px;

    font-weight: 800;

    letter-spacing: .12em;

    line-height: 1;

}


.logo-text small {

    display: block;

    font-size: 7px;

    letter-spacing: .42em;

    color: var(--gold);

    margin-top: 5px;

}


.navbar-nav {

    gap: 7px;

}


.nav-link {

    position: relative;

    color: rgba(255,255,255,.75) !important;

    font-size: 13px;

    font-weight: 500;

    letter-spacing: .04em;

    padding: 12px 16px !important;

    transition: color .3s ease;

}


.nav-link::after {

    content: "";

    position: absolute;

    bottom: 4px;

    left: 16px;

    width: 0;

    height: 1px;

    background: var(--gold);

    transition: width .35s ease;

}


.nav-link:hover,
.nav-link.active {

    color: var(--white) !important;

}


.nav-link:hover::after,
.nav-link.active::after {

    width: calc(100% - 32px);

}


.nav-contact {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    color: var(--white);

    border: 1px solid rgba(255,255,255,.35);

    padding: 11px 16px;

    font-size: 12px;

    letter-spacing: .05em;

    transition: all .35s ease;

}


.nav-contact i {

    font-size: 14px;

}


.nav-contact:hover {

    background: var(--white);

    color: var(--black);

    border-color: var(--white);

}


.navbar-toggler {

    width: 44px;

    height: 44px;

    padding: 0;

    border: 1px solid rgba(255,255,255,.35);

    border-radius: 0;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 6px;

}


.navbar-toggler:focus {

    box-shadow: none;

}


.navbar-toggler span {

    width: 19px;

    height: 1px;

    background: var(--white);

}


/* =========================================================
   HERO
========================================================= */

.hero-section {

    position: relative;

    min-height: 100svh;

    height: 100svh;

    background: var(--black);

    color: var(--white);

    overflow: hidden;

    display: flex;

    align-items: center;

}


.hero-video-wrapper {

    position: absolute;

    inset: 0;

    z-index: 0;

}


.hero-video {

    width: 100%;

    height: 100%;

    object-fit: cover;

    opacity: .75;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.82) 0%,
            rgba(0,0,0,.45) 50%,
            rgba(0,0,0,.25) 100%
        );

}


.hero-overlay::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,.8) 0%,
            transparent 35%,
            rgba(0,0,0,.15) 100%
        );

}


.hero-content {

    position: relative;

    z-index: 2;

    width: 100%;

    padding-top: 80px;

}


.hero-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    color: rgba(255,255,255,.75);

    font-size: 11px;

    letter-spacing: .18em;

    margin-bottom: 25px;

}


.hero-eyebrow span {

    width: 34px;

    height: 1px;

    background: var(--gold);

}


.hero-content h1 {

    max-width: 1050px;

    font-family: var(--font-display);

    font-size: clamp(4rem, 8vw, 8.8rem);

    line-height: .94;

    letter-spacing: -.065em;

    font-weight: 500;

}


.hero-content h1 span {

    display: block;

    font-weight: 800;

}


.hero-bottom {

    display: flex;

    align-items: center;

    gap: 50px;

    margin-top: 45px;

}


.hero-bottom p {

    max-width: 420px;

    margin: 0;

    color: rgba(255,255,255,.72);

    font-size: 15px;

}


.btn-eventora {

    display: inline-flex;

    align-items: center;

    gap: 22px;

    padding: 16px 21px;

    color: var(--white);

    border: 1px solid rgba(255,255,255,.35);

    font-size: 12px;

    letter-spacing: .06em;

    transition: all var(--transition);

}


.btn-eventora i {

    font-size: 16px;

    transition: transform var(--transition);

}


.btn-eventora:hover {

    background: var(--white);

    border-color: var(--white);

    color: var(--black);

}


.btn-eventora:hover i {

    transform: translate(3px,-3px);

}


.hero-scroll {

    position: absolute;

    left: 50px;

    bottom: 42px;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 15px;

    transform: rotate(-90deg);

    transform-origin: left center;

}


.hero-scroll span {

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .2em;

    color: rgba(255,255,255,.55);

}


.scroll-line {

    width: 50px;

    height: 1px;

    background: rgba(255,255,255,.4);

}


.hero-location {

    position: absolute;

    right: 45px;

    bottom: 45px;

    z-index: 3;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

}


.hero-location span {

    font-size: 9px;

    letter-spacing: .25em;

    color: rgba(255,255,255,.5);

}


/* =========================================================
   SECTIONS
========================================================= */

.section-padding {

    padding: 130px 0;

}


.dark-section {

    background: var(--black);

    color: var(--white);

}


.section-label {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #666;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .18em;

    margin-bottom: 28px;

}


.section-label span {

    color: var(--gold);

}


.section-label.light {

    color: #777;

}


.section-title,
.section-heading-row h2,
.categories-title h2,
.clients-section h2 {

    font-family: var(--font-display);

    font-size: clamp(3rem, 5vw, 6rem);

    font-weight: 500;

    line-height: .98;

    letter-spacing: -.06em;

}


.section-title em,
.section-heading-row h2 em,
.categories-title h2 em,
.clients-section h2 em {

    font-style: normal;

    color: var(--gold);

}


.intro-content h2 {

    font-family: var(--font-display);

    font-size: clamp(2.8rem, 5vw, 5.7rem);

    line-height: 1;

    letter-spacing: -.06em;

    font-weight: 500;

    margin-bottom: 35px;

}


.intro-content h2 em {

    font-style: normal;

    color: var(--gold);

}


.intro-content p {

    /* max-width: 700px; */

    color: #6b6b6b;

    font-size: 16px;

    margin-bottom: 18px;

}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 20px;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .08em;

    text-transform: uppercase;

    border-bottom: 1px solid #222;

    padding-bottom: 8px;

    transition: all .35s ease;

}


.text-link i {

    transition: transform .35s ease;

}


.text-link:hover {

    color: var(--gold);

    border-color: var(--gold);

}


.text-link:hover i {

    transform: translate(4px,-4px);

}


/* =========================================================
   SECTION HEADER
========================================================= */

.section-heading-row {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 60px;

}


.outline-link {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    color: var(--white);

    border-bottom: 1px solid rgba(255,255,255,.3);

    padding-bottom: 8px;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: .1em;

    transition: all .35s ease;

}


.outline-link:hover {

    color: var(--gold);

    border-color: var(--gold);

}


/* =========================================================
   UPCOMING EVENT
========================================================= */

.upcoming-event {

    position: relative;

    min-height: 620px;

    overflow: hidden;

}


.event-image {

    position: absolute;

    inset: 0;

}


.event-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 1.2s ease;

}


.upcoming-event:hover .event-image img {

    transform: scale(1.04);

}


.event-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.85),
            rgba(0,0,0,.25)
        );

}


.event-info {

    position: absolute;

    left: 50px;

    right: 50px;

    bottom: 50px;

    display: flex;

    align-items: flex-end;

    gap: 45px;

}


.event-date {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    color: var(--white);

}


.event-date strong {

    font-family: var(--font-display);

    font-size: 70px;

    line-height: .8;

    font-weight: 400;

}


.event-date span {

    display: flex;

    flex-direction: column;

    font-size: 12px;

    letter-spacing: .15em;

}


.event-date small {

    color: var(--gold);

    margin-top: 3px;

}


.event-main-info {

    position: relative;

}


.event-category {

    display: block;

    color: var(--gold);

    font-size: 10px;

    letter-spacing: .2em;

    margin-bottom: 10px;

}


.event-main-info h3 {

    font-family: var(--font-display);

    font-size: clamp(2.5rem, 5vw, 5rem);

    line-height: .95;

    letter-spacing: -.05em;

    font-weight: 500;

    margin: 0;

}


.event-main-info p {

    color: rgba(255,255,255,.65);

    margin: 18px 0 0;

}


.round-arrow {

    position: absolute;

    right: 0;

    bottom: 0;

    width: 58px;

    height: 58px;

    border: 1px solid rgba(255,255,255,.4);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--white);

    transition: all .4s ease;

}


.round-arrow:hover {

    background: var(--white);

    color: var(--black);

}


/* =========================================================
   FEATURED GRID
========================================================= */

.featured-grid {

    display: grid;

    grid-template-columns: 1.35fr 1fr;

    gap: 20px;

}


.featured-card {

    position: relative;

    height: 540px;

    overflow: hidden;

    background: var(--black);

}


.featured-card-large {

    grid-row: span 2;

    height: 800px;

}


.featured-image {

    position: absolute;

    inset: 0;

}


.featured-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 1s cubic-bezier(.16,1,.3,1);

}


.featured-card:hover .featured-image img {

    transform: scale(1.06);

}


.featured-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,.9),
            transparent 65%
        );

}


.featured-card-content {

    position: absolute;

    left: 32px;

    right: 32px;

    bottom: 30px;

    color: var(--white);

}


.featured-card-content span {

    color: var(--gold);

    font-size: 9px;

    letter-spacing: .15em;

}


.featured-card-content h3 {

    font-family: var(--font-display);

    font-size: clamp(2rem, 3vw, 3.4rem);

    line-height: .95;

    letter-spacing: -.05em;

    font-weight: 500;

    margin: 10px 0 22px;

}


.featured-card-content a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .12em;

}


.featured-card-content a i {

    transition: transform .35s ease;

}


.featured-card-content a:hover i {

    transform: translate(4px,-4px);

}


/* =========================================================
   CATEGORIES
========================================================= */

.categories-section {

    padding: 130px 0;

    background: #e8e7e2;

}


.categories-title {

    margin-bottom: 65px;

}


.category-list {

    border-top: 1px solid rgba(0,0,0,.18);

}


.category-item {

    display: grid;

    grid-template-columns: 100px 1fr 70px;

    align-items: center;

    min-height: 110px;

    border-bottom: 1px solid rgba(0,0,0,.18);

    transition:
        padding .45s ease,
        background .45s ease;

}


.category-number {

    color: #999;

    font-size: 11px;

}


.category-name {

    font-family: var(--font-display);

    font-size: clamp(1.8rem, 3vw, 3.4rem);

    letter-spacing: -.04em;

    transition:
        transform .45s ease,
        color .45s ease;

}


.category-arrow {

    width: 48px;

    height: 48px;

    border: 1px solid #999;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: all .45s ease;

}


.category-item:hover {

    padding-left: 20px;

    padding-right: 20px;

    background: rgba(255,255,255,.35);

}


.category-item:hover .category-name {

    color: var(--gold);

    transform: translateX(10px);

}


.category-item:hover .category-arrow {

    background: var(--black);

    color: var(--white);

    border-color: var(--black);

}


/* =========================================================
   WHY
========================================================= */

.why-title {

    font-family: var(--font-display);

    font-size: clamp(3rem, 5vw, 5.7rem);

    line-height: .95;

    letter-spacing: -.06em;

    font-weight: 500;

}


.why-title em {

    font-style: normal;

    color: var(--gold);

}


.why-list {

    border-top: 1px solid var(--border);

}


.why-item {

    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 30px;

    padding: 35px 0;

    border-bottom: 1px solid var(--border);

}


.why-item > span {

    color: var(--gold);

    font-size: 11px;

}


.why-item h3 {

    font-family: var(--font-display);

    font-size: 23px;

    font-weight: 500;

    margin-bottom: 8px;

}


.why-item p {

    color: #888;

    max-width: 550px;

    margin: 0;

}


/* =========================================================
   STATISTICS
========================================================= */

.stats-section {

    background: var(--gold);

}


.stat-box {

    min-height: 270px;

    padding: 45px 25px;

    border-right: 1px solid rgba(0,0,0,.18);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

}


.stat-box:last-child {

    border-right: none;

}


.counter {

    font-family: var(--font-display);

    font-size: clamp(4rem, 6vw, 6rem);

    line-height: .9;

    letter-spacing: -.07em;

    font-weight: 500;

}


.counter::after {

    content: "+";

}


.stat-box span {

    margin-top: 18px;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .16em;

}


/* =========================================================
   CINEMATIC VIDEO
========================================================= */

.cinematic-section {

    position: relative;

    height: 800px;

    overflow: hidden;

    color: var(--white);

}


.cinematic-video {

    position: absolute;

    inset: 0;

}


.cinematic-video video {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.cinematic-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,.5);

}


.cinematic-content {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    text-align: center;

    padding: 30px;

}


.cinematic-content > span {

    color: var(--gold);

    font-size: 10px;

    letter-spacing: .2em;

    margin-bottom: 20px;

}


.cinematic-content h2 {

    font-family: var(--font-display);

    font-size: clamp(3.5rem, 7vw, 8rem);

    line-height: .9;

    letter-spacing: -.07em;

    font-weight: 500;

    margin-bottom: 35px;

}


.light-btn {

    border-color: rgba(255,255,255,.5);

}


/* =========================================================
   PROJECTS
========================================================= */

.project-row {

    display: grid;

    grid-template-columns: 1.25fr .75fr;

    gap: 80px;

    align-items: center;

    margin-bottom: 130px;

}


.project-row.reverse {

    grid-template-columns: .75fr 1.25fr;

}


.project-row.reverse .project-image {

    order: 2;

}


.project-row.reverse .project-content {

    order: 1;

}


.project-image {

    height: 650px;

    overflow: hidden;

}


.project-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 1s ease;

}


.project-row:hover .project-image img {

    transform: scale(1.04);

}


.project-content > span {

    color: var(--gold);

    font-size: 10px;

    letter-spacing: .18em;

}


.project-content h3 {

    font-family: var(--font-display);

    font-size: clamp(3rem, 5vw, 5.8rem);

    line-height: .9;

    letter-spacing: -.06em;

    font-weight: 500;

    margin: 18px 0 25px;

}


.project-content p {

    color: #666;

    max-width: 480px;

}


.project-meta {

    display: flex;

    gap: 10px;

    flex-wrap: wrap;

    margin: 28px 0;

}


.project-meta span {

    border: 1px solid #ccc;

    padding: 6px 12px;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .08em;

}


/* =========================================================
   GALLERY
========================================================= */

.gallery-preview {

    overflow: hidden;

}


.gallery-grid {

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 15px;

}


.gallery-item {

    height: 430px;

    overflow: hidden;

}


/* .gallery-wide {

    height: 600px;

} */


.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 1s ease;

}


.gallery-item:hover img {

    transform: scale(1.06);

}


/* =========================================================
   CLIENTS
========================================================= */

.clients-section h2 {

    max-width: 800px;

    margin: 0 auto;

}


.clients-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    margin-top: 80px;

    border-top: 1px solid #ddd;

    border-left: 1px solid #ddd;

}


.clients-grid div {

    min-height: 130px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-right: 1px solid #ddd;

    border-bottom: 1px solid #ddd;

    font-family: var(--font-display);

    font-size: 19px;

    font-weight: 700;

    letter-spacing: .08em;

    color: #555;

}


/* =========================================================
   TESTIMONIAL
========================================================= */

.testimonial-section {

    background: #e7e5df;

    padding: 45px 0;

}


.testimonial-inner {

    max-width: 1000px;

    margin: auto;

    text-align: center;

}


.quote-mark {

    font-family: Georgia, serif;

    font-size: 100px;

    line-height: .5;

    color: var(--gold);

}


.testimonial-inner blockquote {

    font-family: var(--font-display);

    font-size: clamp(2rem, 4vw, 4.2rem);

    line-height: 1.1;

    letter-spacing: -.05em;

    margin: 50px 0;

}


.testimonial-author {

    display: flex;

    flex-direction: column;

}


.testimonial-author strong {

    font-family: var(--font-display);

    font-size: 14px;

}


.testimonial-author span {

    color: #777;

    font-size: 11px;

    margin-top: 4px;

}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {

    position: relative;

    min-height: 750px;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: var(--white);

}


.final-cta-image {

    position: absolute;

    inset: 0;

}


.final-cta-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.final-cta-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,.65);

}


.final-cta-content {

    position: relative;

    z-index: 2;

    max-width: 900px;

}


.final-cta-content > span {

    color: var(--gold);

    font-size: 10px;

    letter-spacing: .2em;

}


.final-cta-content h2 {

    font-family: var(--font-display);

    font-size: clamp(4rem, 8vw, 8rem);

    line-height: .9;

    letter-spacing: -.07em;

    font-weight: 500;

    margin: 25px 0 40px;

}


.final-cta-content h2 em {

    color: var(--gold);

    font-style: normal;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    background: var(--black);

    color: var(--white);

    padding: 100px 0 30px;

}


.footer-top {

    padding-bottom: 80px;

    border-bottom: 1px solid var(--border);

}


.footer-logo {

    display: inline-flex;

    flex-direction: column;

    font-family: var(--font-display);

    font-weight: 800;

    font-size: 30px;

    letter-spacing: .1em;

}


.footer-logo span {

    color: var(--gold);

    font-size: 9px;

    letter-spacing: .4em;

    margin-top: 3px;

}


.footer-description {

    color: #777;

    max-width: 430px;

    margin: 30px 0;

}


.footer-social {

    display: flex;

    gap: 8px;

}


.footer-social a {

    width: 40px;

    height: 40px;

    border: 1px solid var(--border);

    display: flex;

    align-items: center;

    justify-content: center;

    transition: all .35s ease;

}


.footer-social a:hover {

    background: var(--white);

    color: var(--black);

}


.footer h4 {

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: .16em;

    margin-bottom: 25px;

}


.footer ul {

    list-style: none;

    padding: 0;

    margin: 0;

}


.footer li {

    margin-bottom: 12px;

}


.footer li a {

    color: #777;

    font-size: 13px;

    transition: color .3s ease;

}


.footer li a:hover {

    color: var(--white);

}


.newsletter-text {

    color: #777;

    font-size: 13px;

}


.newsletter-form {

    display: flex;

    border-bottom: 1px solid #555;

    margin-top: 25px;

}


.newsletter-form input {

    flex: 1;

    border: none;

    background: transparent;

    color: var(--white);

    padding: 12px 0;

    outline: none;

    font-size: 12px;

}


.newsletter-form button {

    border: none;

    background: transparent;

    color: var(--white);

    width: 40px;

    cursor: pointer;

}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;

    color: #555;

    font-size: 10px;

}


.footer-bottom div {

    display: flex;

    gap: 25px;

}


.footer-bottom a:hover {

    color: var(--white);

}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 48px;

    height: 48px;

    border: 1px solid var(--gold);

    background: var(--gold);

    color: var(--black);

    z-index: 900;

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: all .35s ease;

}


.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


/* =========================================================
   SELECTION
========================================================= */

::selection {

    background: var(--gold);

    color: var(--black);

}

/* =========================================================
   UPCOMING EVENTS SLIDER
========================================================= */

.upcomingSwiper {
    width: 100%;
    overflow: hidden;
}


/* =========================================================
   SLIDE
========================================================= */

.upcomingSwiper .swiper-slide {
    height: auto;
}


/* =========================================================
   EVENT CARD
========================================================= */

.upcoming-event {

    position: relative;

    width: 100%;

    min-height: 620px;

    overflow: hidden;

    background: var(--dark);

}


/* =========================================================
   EVENT IMAGE
========================================================= */

.upcoming-event .event-image {

    position: absolute;

    inset: 0;

    overflow: hidden;

}


.upcoming-event .event-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 1.2s
        cubic-bezier(.16,1,.3,1);

}


/* =========================================================
   IMAGE HOVER
========================================================= */

.upcoming-event:hover
.event-image img {

    transform: scale(1.055);

}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.upcoming-event .event-image-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(16,28,44,.92) 0%,
            rgba(16,28,44,.65) 42%,
            rgba(16,28,44,.15) 100%
        ),

        linear-gradient(
            0deg,
            rgba(0,0,0,.75) 0%,
            transparent 55%
        );

}


/* =========================================================
   EVENT INFORMATION
========================================================= */

.upcoming-event .event-info {

    position: relative;

    z-index: 2;

    min-height: 620px;

    display: flex;

    align-items: flex-end;

    gap: 55px;

    padding: 60px;

}


/* =========================================================
   DATE
========================================================= */

.upcoming-event .event-date {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    min-width: 115px;

    padding-bottom: 10px;

    border-bottom: 1px solid
        rgba(255,255,255,.35);

}


.upcoming-event .event-date strong {

    font-family:
        var(--font-display);

    font-size: 72px;

    line-height: .8;

    font-weight: 700;

    color: var(--white);

}


.upcoming-event .event-date span {

    display: flex;

    flex-direction: column;

    gap: 3px;

    color: var(--gold);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

}


.upcoming-event .event-date small {

    font-size: 10px;

    color:
        rgba(255,255,255,.55);

    letter-spacing: 1px;

}


/* =========================================================
   MAIN EVENT INFORMATION
========================================================= */

.upcoming-event .event-main-info {

    position: relative;

    max-width: 700px;

}


.upcoming-event .event-category {

    display: inline-block;

    margin-bottom: 18px;

    color: var(--gold-light);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2.5px;

}


.upcoming-event .event-main-info h3 {

    margin: 0;

    font-family:
        var(--font-display);

    font-size:
        clamp(42px, 5vw, 76px);

    line-height: .94;

    letter-spacing: -3px;

    font-weight: 700;

    color: var(--white);

}


.upcoming-event .event-main-info p {

    margin:

        25px

        0

        0;

    color:
        rgba(255,255,255,.65);

    font-size: 14px;

}


/* =========================================================
   ROUND ARROW
========================================================= */

.upcoming-event .round-arrow {

    position: absolute;

    left: calc(100% + 70px);

    bottom: 0;

    width: 64px;

    height: 64px;

    border: 1px solid
        rgba(255,255,255,.35);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--white);

    text-decoration: none;

    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease,
        border-color .35s ease;

}


.upcoming-event .round-arrow:hover {

    background: var(--gold);

    border-color: var(--gold);

    color: var(--black);

    transform: rotate(45deg);

}


/* =========================================================
   SLIDER CONTROLS
========================================================= */

.upcoming-slider-controls {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 14px;

    margin-top: 28px;

}


.upcoming-prev,
.upcoming-next {

    width: 48px;

    height: 48px;

    border: 1px solid
        rgba(255,255,255,.22);

    background: transparent;

    color: var(--white);

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;

}


.upcoming-prev:hover,
.upcoming-next:hover {

    background: var(--gold);

    border-color: var(--gold);

    color: var(--black);

}


/* =========================================================
   PAGINATION
========================================================= */

.upcoming-pagination {

    display: flex;

    align-items: center;

    gap: 7px;

    width: auto !important;

}


.upcoming-pagination
.swiper-pagination-bullet {

    width: 5px;

    height: 5px;

    margin: 0 !important;

    opacity: 1;

    background:
        rgba(255,255,255,.3);

    border-radius: 50%;

    transition:
        width .3s ease,
        background .3s ease,
        border-radius .3s ease;

}


.upcoming-pagination
.swiper-pagination-bullet-active {

    width: 28px;

    border-radius: 10px;

    background: var(--gold);

}


/* =========================================================
   DISABLED ARROW
========================================================= */

.upcoming-prev.swiper-button-disabled,
.upcoming-next.swiper-button-disabled {

    opacity: .3;

    cursor: not-allowed;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .upcoming-event {

        min-height: 560px;

    }


    .upcoming-event .event-info {

        min-height: 560px;

        padding: 45px;

        gap: 30px;

    }


    .upcoming-event .event-date {

        min-width: 90px;

    }


    .upcoming-event .event-date strong {

        font-size: 55px;

    }


    .upcoming-event .event-main-info h3 {

        font-size: 52px;

    }


    .upcoming-event .round-arrow {

        position: static;

        margin-top: 25px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .upcoming-event {

        min-height: 600px;

    }


    .upcoming-event .event-info {

        min-height: 600px;

        display: block;

        padding: 35px 25px;

    }


    .upcoming-event .event-date {

        width: fit-content;

        margin-bottom: 35px;

    }


    .upcoming-event .event-date strong {

        font-size: 52px;

    }


    .upcoming-event .event-main-info h3 {

        font-size: 42px;

        letter-spacing: -2px;

    }


    .upcoming-event .event-main-info p {

        margin-top: 18px;

    }


    .upcoming-event .round-arrow {

        width: 54px;

        height: 54px;

    }


    .upcoming-slider-controls {

        justify-content: space-between;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .upcoming-event {

        min-height: 560px;

    }


    .upcoming-event .event-info {

        min-height: 560px;

        padding: 28px 20px;

    }


    .upcoming-event .event-main-info h3 {

        font-size: 35px;

        line-height: 1;

    }


    .upcoming-event .event-category {

        font-size: 8px;

        letter-spacing: 2px;

    }


    .upcoming-event .event-date strong {

        font-size: 46px;

    }

}


/* ==========================service page css========================================= */

        /* =========================================================
           SERVICES PAGE
        ========================================================= */

        .services-page {

            background: #080808;

            color: #fff;

        }


        /* =========================================================
           HERO
        ========================================================= */

        .services-hero {

            min-height: 92vh;

            position: relative;

            overflow: hidden;

            display: flex;

            align-items: flex-end;

            background:
                linear-gradient(
                    180deg,
                    rgba(0, 0, 0, 0.853),
                    rgba(0,0,0,.88)
                ),
               url("../images/banners/servicebg.jpg")
                center / cover no-repeat;

        }


        .services-hero::before {

            content: "";

            position: absolute;

            inset: 0;

            background:
                radial-gradient(
                    circle at 70% 25%,
                    rgba(255,255,255,.12),
                    transparent 32%
                );

        }


        .services-hero-content {

            position: relative;

            z-index: 2;

            width: 100%;

            padding-bottom: 110px;

        }


        .services-eyebrow {

            display: flex;

            align-items: center;

            gap: 12px;

            color: rgba(255,255,255,.65);

            font-size: 11px;

            font-weight: 700;

            letter-spacing: 3px;

            text-transform: uppercase;

            margin-bottom: 25px;

        }


        .services-eyebrow span {

            width: 40px;

            height: 1px;

            background: #fff;

        }


        .services-hero h1 {

            font-family: "Manrope", sans-serif;

            font-size: clamp(55px, 9vw, 135px);

            line-height: .9;

            font-weight: 800;

            letter-spacing: -6px;

            margin: 0;

            max-width: 1050px;

        }


        .services-hero h1 span {

            color: rgb(200 169 107);

        }


        .services-hero-description {

            max-width: 620px;

            color: rgba(255,255,255,.68);

            font-size: 17px;

            line-height: 1.8;

            margin-top: 35px;

        }


        /* =========================================================
           INTRO
        ========================================================= */

        .services-intro {

            padding: 145px 0;

        }


        .services-intro-title {

            font-family: "Manrope", sans-serif;

            font-size: clamp(40px, 5vw, 75px);

            font-weight: 700;

            line-height: 1.05;

            letter-spacing: -3px;

        }


        .services-intro-title span {

            color: rgb(200 169 107);

        }


        .services-intro-text {

            color: rgba(255,255,255,.55);

            line-height: 1.9;

            font-size: 17px;

            max-width: 600px;

        }


        /* =========================================================
           SERVICE FEATURE
        ========================================================= */

        .service-feature {

            padding: 80px 0 150px;

        }


        .service-row {

            min-height: 650px;

            display: flex;

            align-items: center;

        }


        .service-image {

            position: relative;

            overflow: hidden;

            height: 650px;

        }


        .service-image img {

            width: 100%;

            height: 100%;

            object-fit: cover;

            transition:
                transform 1s cubic-bezier(.2,.7,.2,1);

        }


        .service-row:hover .service-image img {

            transform: scale(1.06);

        }


        .service-image::after {

            content: "";

            position: absolute;

            inset: 0;

            background:
                linear-gradient(
                    180deg,
                    transparent 60%,
                    rgba(0,0,0,.35)
                );

            pointer-events: none;

        }


        .service-number {

            position: absolute;

            top: 25px;

            left: 25px;

            z-index: 2;

            width: 55px;

            height: 55px;

            display: flex;

            align-items: center;

            justify-content: center;

            background: rgba(0,0,0,.35);

            backdrop-filter: blur(15px);

            border: 1px solid rgba(255,255,255,.2);

            font-size: 12px;

        }


        .service-content {

            padding: 70px;

        }


        .service-category {

            font-size: 11px;

            letter-spacing: 3px;

            text-transform: uppercase;

            color: rgba(255,255,255,.38);

            margin-bottom: 20px;

        }


        .service-content h2 {

            font-family: "Manrope", sans-serif;

            font-size: clamp(38px, 4vw, 65px);

            line-height: 1;

            letter-spacing: -3px;

            margin-bottom: 30px;

        }


        .service-content p {

            color: rgba(255,255,255,.55);

            line-height: 1.9;

            font-size: 16px;

            max-width: 560px;

            margin-bottom: 35px;

        }


        .service-list {

            list-style: none;

            padding: 0;

            margin: 0 0 35px;

        }


        .service-list li {

            display: flex;

            align-items: center;

            gap: 12px;

            color: rgba(255,255,255,.65);

            padding: 9px 0;

            font-size: 14px;

        }


        .service-list i {

            font-size: 12px;

            color: rgba(255,255,255,.4);

        }


        .service-button {

            display: inline-flex;

            align-items: center;

            gap: 18px;

            color: #fff;

            text-decoration: none;

            font-size: 12px;

            font-weight: 700;

            letter-spacing: 1px;

            text-transform: uppercase;

            border-bottom: 1px solid rgba(255,255,255,.35);

            padding-bottom: 10px;

            transition: all .35s ease;

        }


        .service-button:hover {

            color: #fff;

            gap: 28px;

            border-color: #fff;

        }


        /* =========================================================
           VIDEO SECTION
        ========================================================= */

        .services-video {

            height: 760px;

            position: relative;

            overflow: hidden;

            display: flex;

            align-items: center;

            justify-content: center;

        }


        .services-video video {

            position: absolute;

            inset: 0;

            width: 100%;

            height: 100%;

            object-fit: cover;

        }


        .services-video::after {

            content: "";

            position: absolute;

            inset: 0;

            background:
                rgba(0,0,0,.5);

        }


        .video-overlay-content {

            position: relative;

            z-index: 2;

            text-align: center;

            max-width: 900px;

            padding: 30px;

        }


        .video-overlay-content .small-title {

            font-size: 11px;

            letter-spacing: 4px;

            text-transform: uppercase;

            color: rgba(255,255,255,.65);

            margin-bottom: 25px;

        }


        .video-overlay-content h2 {

            font-family: "Manrope", sans-serif;

            font-size: clamp(45px, 7vw, 95px);

            line-height: .95;

            letter-spacing: -5px;

        }


        .video-overlay-content h2 span {

            color: rgba(255,255,255,.45);

        }


        .video-play {

            margin-top: 40px;

            width: 78px;

            height: 78px;

            border: 1px solid rgba(255,255,255,.5);

            border-radius: 50%;

            display: inline-flex;

            align-items: center;

            justify-content: center;

            color: #fff;

            font-size: 22px;

            transition: all .4s ease;

        }


        .video-play:hover {

            color: #000;

            background: #fff;

            transform: scale(1.1);

        }


        /* =========================================================
           SERVICES GRID
        ========================================================= */

        .services-grid-section {

            padding: 150px 0;

            background: #111;

        }


        .service-grid-card {

            position: relative;

            min-height: 480px;

            overflow: hidden;

            background: #181818;

        }


        .service-grid-card img {

            position: absolute;

            filter: blur(5px);

            inset: 0;

            width: 100%;

            height: 100%;

            object-fit: cover;

            transition: transform .8s ease;

        }


        .service-grid-card::after {

            content: "";

            position: absolute;

            inset: 0;

            background:
                linear-gradient(
                    transparent 25%,
                    rgba(0,0,0,.9)
                );

        }


        .service-grid-card:hover img {

            transform: scale(1.08);

        }


        .grid-card-content {

            position: absolute;

            left: 30px;

            right: 30px;

            bottom: 30px;

            z-index: 2;

        }


        .grid-card-number {

            font-size: 11px;

            color: rgba(255,255,255,.5);

            margin-bottom: 12px;

        }


        .grid-card-content h3 {

            font-family: "Manrope", sans-serif;

            font-size: 30px;

            margin-bottom: 12px;

        }


        .grid-card-content p {

            font-size: 14px;

            line-height: 1.7;

            color: rgba(255,255,255,.6);

            margin-bottom: 18px;

        }


        .grid-card-link {

            color: #fff;

            text-decoration: none;

            font-size: 11px;

            letter-spacing: 1.5px;

            text-transform: uppercase;

        }


        .grid-card-link i {

            margin-left: 8px;

            transition: margin .3s ease;

        }


        .grid-card-link:hover {

            color: #fff;

        }


        .grid-card-link:hover i {

            margin-left: 15px;

        }


        /* =========================================================
           PROCESS
        ========================================================= */

        .process-section {

            padding: 150px 0;

        }


        .process-heading {

            position: sticky;

            top: 130px;

        }


        .process-heading h2 {

            font-family: "Manrope", sans-serif;

            font-size: clamp(45px, 5vw, 75px);

            line-height: 1;

            letter-spacing: -4px;

        }


        .process-heading h2 span {

            color: rgb(200 169 107);

        }


        .process-heading p {

            color: rgba(255,255,255,.5);

            line-height: 1.8;

            max-width: 450px;

            margin-top: 25px;

        }


        .process-item {

            display: grid;

            grid-template-columns: 80px 1fr;

            gap: 30px;

            padding: 40px 0;

            border-top: 1px solid rgba(255,255,255,.1);

        }


        .process-item:last-child {

            border-bottom: 1px solid rgba(255,255,255,.1);

        }


        .process-number {

            font-size: 13px;

            color: rgba(255,255,255,.35);

        }


        .process-item h3 {

            font-family: "Manrope", sans-serif;

            font-size: 28px;

            margin-bottom: 12px;

        }


        .process-item p {

            color: rgba(255,255,255,.5);

            line-height: 1.8;

            margin: 0;

        }


        /* =========================================================
           CTA
        ========================================================= */

        .services-cta {

            min-height: 620px;

            position: relative;

            display: flex;

            align-items: center;

            background:
                linear-gradient(
                    rgba(0,0,0,.5),
                    rgba(0,0,0,.8)
                ),
                url("https://images.unsplash.com/photo-1505373877841-8d25f7d46678?auto=format&fit=crop&w=2200&q=90")
                center / cover;

        }


        .services-cta h2 {

            font-family: "Manrope", sans-serif;

            font-size: clamp(48px, 7vw, 100px);

            line-height: .95;

            letter-spacing: -5px;

            max-width: 1000px;

        }


        .services-cta h2 span {

            color: rgba(255,255,255,.4);

        }


        .cta-button {

            display: inline-flex;

            align-items: center;

            gap: 20px;

            background: #fff;

            color: #000;

            text-decoration: none;

            padding: 18px 28px;

            margin-top: 35px;

            font-weight: 700;

            font-size: 12px;

            transition: all .4s ease;

        }


        .cta-button:hover {

            background: #000;

            color: #fff;

            transform: translateY(-4px);

        }


        /* =========================================================
           RESPONSIVE
        ========================================================= */

        @media(max-width:1199px) {

            .service-content {

                padding: 45px;

            }

            .service-image {

                height: 560px;

            }

            .service-row {

                min-height: 560px;

            }

        }


        @media(max-width:991px) {

            .services-hero {

                min-height: 80vh;

            }

            .services-intro {

                padding: 100px 0;

            }

            .service-feature {

                padding: 50px 0 100px;

            }

            .service-row {

                min-height: auto;

            }

            .service-image {

                height: 520px;

            }

            .service-content {

                padding: 50px 15px;

            }

            .services-video {

                height: 600px;

            }

            .services-grid-section,

            .process-section {

                padding: 100px 0;

            }

            .process-heading {

                position: relative;

                top: auto;

                margin-bottom: 60px;

            }

        }


        @media(max-width:575px) {

            .services-hero h1 {

                letter-spacing: -3px;

            }

            .services-hero-content {

                padding-bottom: 70px;

            }

            .services-intro {

                padding: 80px 0;

            }

            .service-feature {

                padding: 20px 0 70px;

            }

            .service-image {

                height: 420px;

            }

            .service-content {

                padding: 40px 5px;

            }

            .service-content h2 {

                letter-spacing: -2px;

            }

            .services-video {

                height: 500px;

            }

            .video-overlay-content h2 {

                letter-spacing: -3px;

            }

            .service-grid-card {

                min-height: 430px;

            }

            .services-grid-section,

            .process-section {

                padding: 80px 0;

            }

            .process-item {

                grid-template-columns: 50px 1fr;

                gap: 15px;

            }

            .services-cta {

                min-height: 520px;

            }

            .services-cta h2 {

                letter-spacing: -3px;

            }

        }
        /* =============================testoimon========================================= */
        /* =========================================================
   TESTIMONIAL SLIDER
========================================================= */

.testimonialSwiper {
    width: 100%;
    overflow: hidden;
}

.testimonialSwiper .swiper-wrapper {
    align-items: stretch;
}

.testimonialSwiper .swiper-slide {
    height: auto;
}


/* =========================================================
   TESTIMONIAL INNER
========================================================= */

.testimonial-inner {
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
    padding: 90px 40px;
}


/* =========================================================
   QUOTE MARK
========================================================= */

.testimonial-inner .quote-mark {
    font-family: Georgia, serif;
    font-size: 100px;
    line-height: .6;
    color: var(--gold);
    margin-bottom: 35px;
    opacity: .9;
}


/* =========================================================
   TESTIMONIAL TEXT
========================================================= */

.testimonial-inner blockquote {
    margin: 0 auto;
    max-width: 950px;

    font-family: var(--font-display);
    font-size: clamp(28px, 3.2vw, 46px);
    line-height: 1.25;
    letter-spacing: -1.5px;
    font-weight: 500;

    color: var(--text);
}


/* =========================================================
   AUTHOR
========================================================= */

.testimonial-author {
    margin-top: 42px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}


.testimonial-author strong {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
}


.testimonial-author span {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .3px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .testimonial-inner {
        padding: 65px 20px;
    }

    .testimonial-inner .quote-mark {
        font-size: 75px;
        margin-bottom: 25px;
    }

    .testimonial-inner blockquote {
        font-size: 26px;
        line-height: 1.3;
        letter-spacing: -.7px;
    }

    .testimonial-author {
        margin-top: 30px;
    }

    .testimonial-author span {
        max-width: 280px;
        line-height: 1.5;
    }

}
/* ====================about page=============================== */
 
 /* ====================================================== */