@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@700&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --orange-accent: #ff9f1c;  /* Warm branding orange color from photo */
    --nav-bg: rgba(20, 20, 20, 0.75); 
    --light-gray: #bcbcbc;
}

body {
    margin: 0; padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #0d0d0e;
    min-height: 100vh;
    overflow-x: hidden;
}

/* --- THE GLOBAL FULLSCREEN BACKGROUND VIDEO CONFIGURATION --- */
.video-bg-viewport {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -2;
    overflow: hidden;
}

.global-html5-video {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* Warm Linear Gradient overlaying the asset to emulate the reference style atmosphere */
.vignette-overlay-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(15,15,18,0.92) 0%, rgba(35,22,12,0.85) 50%, rgba(10,10,12,0.95) 100%);
    pointer-events: none;
}

/* --- PILL FLOATING NAVIGATION BAR DESIGN MODULE (As per image_763e62.jpg) --- */
.digi-header-floating {
    width: 100%;
    position: relative;
    z-index: 100;
}

.digi-nav-container {
    /* max-width: 1500px; */
    margin: 0 auto;
    background: var(--nav-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px; /* Gives the distinctive clean capsule pill shape */
    padding: 10px 30px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Minimal Text Anchor Elements */
.nav-txt-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none !important;
    letter-spacing: 0.08em;
    transition: color 0.2s ease-in-out;
    position: relative;
    padding: 5px 0;
}
.nav-txt-link:hover, .nav-txt-link.active {
    color: var(--orange-accent) !important;
}

/* Actions Right Panel Elements */
.orange-circle-icon {
    width: 40px; height: 40px;
    background-color: var(--orange-accent);
    color: #111111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.call-meta-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.call-meta-text .label {
    font-size: 0.65rem;
    color: var(--light-gray);
}
.call-meta-text .phone-number {
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
}

/* Clean Modular Hamburger Layout Elements */
.mobile-hamburger-btn {
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}
.mobile-hamburger-btn .bar-line {
    width: 22px; height: 2px;
    background-color: #ffffff;
    display: block;
    transition: all 0.2s ease;
}

/* --- MAIN CENTRAL PRESENTATION CONTAINER LAYOUT --- */
.page-frame {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: relative;
}

.landing-container {
    width: 100%;
     /* max-width: 1350px; */
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    height: 80vh; 
    min-height: 550px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
}

.paper-texture {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.03; pointer-events: none;
    background-image: url('https://www.transparenttextures.com/patterns/cardboard-flat.png');
    z-index: 1;
}

/* Local Typography configurations */
.text-orange { color: var(--orange-accent); }
.text-light-gray { color: var(--light-gray); }
.tracking-wider { letter-spacing: 0.15em; }
.main-title { font-family: 'Montserrat', sans-serif; font-weight: 700; letter-spacing: -0.02em; font-size: 30px; }
.lead-text { font-size: 0.92rem; line-height: 1.7; }
.btn-orange { background-color: var(--orange-accent); border: none; border-radius: 30px; font-size: 0.78rem; }
.btn-orange:hover { opacity: 0.9; }

.social-icon {
    color: #ffffff; font-size: 1.1rem; opacity: 0.7; transition: opacity 0.2s;
}
.social-icon:hover { opacity: 1; color: var(--orange-accent); }

/* --- CONTINUOUS PHOTO RIBBON TRACKS LAYOUT --- */
.photo-zone-height { height: 100%; }
.filmstrip-skew-box {
    position: absolute;
    top: -10%; left: 10%; width: 80%; height: 120%;
    transform: rotate(-3deg);
    z-index: 5;
}
.vertical-scroll-viewport { width: 100%; height: 100%; overflow: hidden; position: relative; }
.filmstrip-ribbon { display: flex; flex-direction: column; will-change: transform; }
.ribbon-offset { margin-top: 90px; }
.ribbon-cell { width: 100%; overflow: hidden; margin-bottom: 15px; border-radius: 8px; }
.ribbon-cell img {
    width: 100%; height: 260px; object-fit: cover; display: block;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.3s ease;
}
.ribbon-cell:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.02);
}

/* Adaptive Breakdown Media Steps */
@media (max-width: 991.98px) {
    .digi-header-floating { padding: 15px !important; }
    .digi-nav-container { padding: 10px 20px; }
    .landing-container { height: auto; min-height: auto; }
    .photo-zone-height { height: 60vh; margin-top: 3rem; }
    .filmstrip-skew-box { position: relative; width: 100%; height: 100%; transform: none; top: 0; left: 0; }
    .ribbon-offset { margin-top: 0; }
}

/* --- HOVER TO OPEN DROPDOWN SYSTEM --- */
@media (min-width: 992px) {
    /* Triggers the dropdown display when hovering over the wrapper container */
    .digi-nav-links .dropdown:hover .custom-digi-dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Smoothes out the transition appearance */
    .custom-digi-dropdown {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
}


/* --- MOBILE DRAWER LAYOUT SYSTEM --- */
.mobile-drawer-menu {
    position: absolute;
    top: calc(100% + 15px); /* Drops perfectly right under the capsule pill */
    left: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    
    /* Smooth slide drop animation */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active trigger state handled by JavaScript toggles */
.mobile-drawer-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.mobile-nav-link:hover, .mobile-nav-link:active {
    background: rgba(255, 159, 28, 0.1);
    color: var(--orange-accent);
}

.mobile-nav-link.sub-link {
    font-size: 0.82rem;
    color: #bcbcbc;
}

.mobile-services-heading {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange-accent);
    text-uppercase: uppercase;
    padding-left: 12px;
    margin-top: 5px;
}

/* --- HAMBURGER TRANSITION ANIMATIONS --- */
.mobile-hamburger-btn.active .bar-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-hamburger-btn.active .bar-line:nth-child(2) {
    opacity: 0;
}
.mobile-hamburger-btn.active .bar-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* --- CINEMATIC ABOUT US LAYOUT ENGINE --- */
.about-cinematic-section {
    min-height: 100vh;
    width: 100%;
    background-color: #0d0d0e;
    z-index: 10;
}

.about-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
    z-index: 1;
}

.about-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.main-about-title {
    font-size: clamp(2rem, 4.5vh + 1.5rem, 4.5rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.accent-line {
    width: 25px;
    height: 1.5px;
    background-color: var(--orange-accent);
}

.small-caps {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Reference image border button replica */
.btn-outline-orange {
    background: transparent;
    border: 1px solid var(--orange-accent);
    color: #ffffff !important;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 12px 28px;
    border-radius: 0px; /* Square styling matching the reference image perfectly */
    transition: all 0.3s ease;
}

.btn-outline-orange i {
    font-size: 0.65rem;
    color: var(--orange-accent);
    transition: color 0.3s ease;
}

.btn-outline-orange:hover {
    background-color: var(--orange-accent);
    color: #0d0d0e !important;
}

.btn-outline-orange:hover i {
    color: #0d0d0e;
}

/* --- VERTICAL INDICATORS SYSTEM (FAR RIGHT) --- */
.about-vertical-indicators {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.indicator-step {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: color 0.3s ease;
}

.indicator-step.active, .indicator-step:hover {
    color: var(--orange-accent);
}

.indicator-line-track {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.indicator-line-progress {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 0%;
    background: var(--orange-accent);
    transition: height 5s linear; /* Synced up directly to interval loop cycles */
}

/* Responsive updates for small views */
@media (max-width: 767.98px) {
    .about-vertical-indicators { right: 15px; }
    .main-about-title { font-size: 2.2rem; }
} 


/* --- 3D SHOWCASE CAROUSEL STYLES --- */

 .photography-services-section {
    background-color: #0b0b0b;
    width: 100%;
    position: relative;
}

.text-orange {
    color: #ff6b00;
    letter-spacing: 2px;
}

.coverflow-container-fluid {
    position: relative;
    width: 100%;
    height: 560px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
    padding: 0 4%;
}

.coverflow-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.coverflow-card {
    position: absolute;
    width: 350px;
    height: 520px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.75);
    /* Clean smooth cubic transition timing parameters for automated rotation sets */
    transition: transform 0.8s cubic-bezier(0.2, 0.9, 0.3, 1), 
                opacity 0.8s ease, 
                filter 0.8s ease;
    cursor: pointer;
    filter: brightness(0.35);
}

.coverflow-card.active {
    filter: brightness(1);
    cursor: default;
    box-shadow: 0 45px 90px rgba(0, 0, 0, 0.9);
}

.card-inner-content {
    color: #ffffff;
    text-align: center;
    width: 100%;
    z-index: 5;
    opacity: 0;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.coverflow-card.active .card-inner-content {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.brand-sub {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.service-card-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 15px;
}

.service-card-desc {
    font-size: 0.95rem;
    color: #e0e0e0;
    margin-bottom: 35px;
    line-height: 1.5;
    font-weight: 300;
}

.btn-gallery-pill {
    display: inline-block;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-gallery-pill:hover {
    background-color: #ffffff;
    color: #0b0b0b;
    border-color: #ffffff;
}

.nav-3d-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    color: #0b0b0b;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 200;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: background 0.3s, transform 0.2s;
}

.nav-3d-btn:hover {
    background: #f0f0f0;
}

.btn-prev { left: 2%; }
.btn-next { right: 2%; }

@media (max-width: 991px) {
    .coverflow-card {
        width: 300px;
        height: 450px;
    }
    .service-card-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .coverflow-card {
        width: 250px;
        height: 380px;
    }
    .service-card-title {
        font-size: 1.6rem;
    }
    .btn-prev { left: 1%; }
    .btn-next { right: 1%; }
}

.service-card-title {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.service-card-desc {
    color: #bcbcbc;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 25px;
    padding: 0 10px;
}

/* White Pill Button Replica from Reference */
.btn-gallery-pill {
    display: inline-block;
    background-color: #ffffff;
    color: #111111 !important;
    text-decoration: none !important;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-gallery-pill:hover {
    background-color: var(--orange-accent);
    transform: scale(1.03);
}

/* --- INTERACTIVE ACTION BUTTON TRACKERS --- */
.nav-3d-btn {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    font-size: 1rem;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: background-color 0.2s, color 0.2s, transform 0.2s;
}

.nav-3d-btn:hover {
    background-color: var(--orange-accent);
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

.btn-prev { left: 8%; }
.btn-next { right: 8%; }

/* --- RESPONSIVE MODIFICATIONS --- */
@media (max-width: 991.98px) {
    .service-3d-card {
        width: 300px;
        height: 420px;
        left: calc(50% - 150px);
    }
    .service-card-title { font-size: 1.4rem; }
    .btn-prev { left: 2%; }
    .btn-next { right: 2%; }
} 


/* --- CINEMATIC VIEWPORT TRACK BASE --- */
.premium-parallax-viewport {
    width: 100%;
    height: 100vh;
    background-color: #0b0c10;
}

.cinematic-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    z-index: 1;
    /* Slanted bottom reveal mask initialization built to handle bottom-up animation cuts */
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    transition: clip-path 1.3s cubic-bezier(0.25, 1, 0.2, 1);
}

/* Activated slides cut cleanly through the screen at a 7-degree visual slant angle */
.cinematic-slide.active {
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* incoming setup state from bottom up */
.cinematic-slide.incoming-next {
    z-index: 3;
    clip-path: polygon(0 100%, 100% 86%, 100% 100%, 0 100%);
}

.cinematic-slide.incoming-next.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* --- FULL IMAGE BACKGROUND CANVAS LAYER --- */
.slide-image-canvas {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.12);
    transition: transform 1.4s cubic-bezier(0.25, 1, 0.2, 1);
}

.cinematic-slide.active .slide-image-canvas {
    transform: scale(1);
}

/* --- TEXT FOREGROUND BLOCKS STAGGERING --- */
.content-inner-card {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 1s cubic-bezier(0.25, 1, 0.2, 1);
    transition-delay: 0.4s;
}

.cinematic-slide.active .content-inner-card {
    opacity: 1;
    transform: translateY(0);
}

/* --- PRESERVED SCALE METRIC MEASUREMENT LINES --- */
.fixed-timeline-ruler {
    height: 70px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(to bottom, rgba(11,12,16,0.95) 0%, rgba(11,12,16,0) 100%);
}

.ruler-node {
    font-size: 0.72rem;
    font-weight: 700;
    font-family: monospace;
    color: rgba(255,255,255,0.25);
    transition: color 0.3s, transform 0.3s;
}

.ruler-node.active {
    color: #ffffff;
    transform: scale(1.15);
}

.ruler-ticks {
    flex-grow: 1;
    height: 10px;
    margin: 0 20px;
    background-image: linear-gradient(to right, rgba(255,255,255,0.15) 1px, transparent 1px);
    background-size: 14px 100%;
}

/* --- USER ACTION BUTTON BADGES --- */
.badge-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 6px 16px;
    border-radius: 40px;
    backdrop-filter: blur(8px);
}

.btn-action-pill {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-action-pill:hover {
    background: #ffffff;
    color: #0b0c10 !important;
    border-color: #ffffff;
}

.shutter-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #0b0c10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 0 20px rgba(255,255,255,0.15);
}

.arrow-trigger {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s;
}

.arrow-trigger:hover {
    background: #ffffff;
    color: #0b0c10;
}

@media (max-width: 768px) {
    .cinematic-slide { clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%) !important; }
    .cinematic-slide.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important; }
}



.parallax-showcase-viewport.portfolios-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: #0c0d0f;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    font-family: 'Inter', sans-serif;
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* REMOVED THE SLANTED CLIP-PATH ANGLES THAT CAUSED OVERLAPPING IN THE HIGHLIGHTED BOXES.
   Replaced with a clean, cinematic slide transition that prevents color artifacts.
*/
.parallax-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s ease;
    z-index: 1;
}

/* Smooth layer visibility handling */
.parallax-slide.active-slide {
    opacity: 1;
    visibility: visible;
    z-index: 5;
}

/* Beautiful dynamic background scale and translation for deep parallax */
.slide-background-parallax {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
    transform: scale(1.02) translateY(0px);
}

.prev-slide .slide-background-parallax {
    transform: scale(1.08) translateY(-40px);
}

.next-slide .slide-background-parallax {
    transform: scale(1.08) translateY(40px);
}

.active-slide .slide-background-parallax {
    transform: scale(1) translateY(0);
}

/* Interface Layout overlays */
.slide-interface-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    box-sizing: border-box;
    z-index: 20;
    color: #ffffff;
}

.info-content-left {
    max-width: 55%;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
    transition-delay: 0.2s;
}

.active-slide .info-content-left {
    opacity: 1;
    transform: translateY(0);
}

.slide-main-title {
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.tag-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-pill-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

/* Lens aperture button layout styling rules */
.btn-view-details-circle {
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 6px 6px 6px 20px;
    border-radius: 50px;
    color: #ffffff;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.2px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.arrow-icon-circle {
    width: 38px;
    height: 38px;
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 14px;
    transition: transform 0.4s ease, background-color 0.3s, color 0.3s;
}

.lens-aperture-icon {
    font-size: 0.9rem;
}

.btn-view-details-circle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.btn-view-details-circle:hover .arrow-icon-circle {
    background-color: #ffffff;
    color: #0c0d0f;
    transform: rotate(180deg);
}

/* Fine-Grained Focus Meter System Styles */
.ruler-bar {
    position: absolute;
    width: 100%;
    height: 55px;
    z-index: 100;
    display: flex;
    overflow: hidden;
    pointer-events: none;
    box-sizing: border-box;
}

.fine-ruler-top { 
    top: 0; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.15); 
    align-items: flex-end;
    padding-bottom: 2px;
}
.fine-ruler-bottom { 
    bottom: 0; 
    border-top: 1px solid rgba(255, 255, 255, 0.15); 
    align-items: flex-start;
    padding-top: 2px;
}

.ruler-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.ruler-segment {
    width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0.35;
    transition: opacity 0.4s ease;
}

.ruler-segment.active {
    opacity: 1;
}

.tick-number {
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: absolute;
    top: -20px;
}

.fine-ruler-bottom .tick-number {
    top: auto;
    bottom: -20px;
}

.sub-ticks-cluster {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 16px;
}

.fine-ruler-bottom .sub-ticks-cluster {
    align-items: flex-start;
}

.tick-line {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.6);
}

.tick-line.minor { height: 6px; opacity: 0.5; }
.tick-line.mid { height: 11px; opacity: 0.8; }
.tick-line.major { height: 16px; background-color: #ffffff; }

/* Fixed Bottom Up Pill */
.fixed-bottom-indicator {
    position: absolute;
    bottom: 75px;
    right: 4%;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 0.85rem;
    z-index: 110;
}

/* Responsiveness Settings */
@media (max-width: 991px) {
    .slide-main-title { font-size: 2.8rem; }
    .slide-interface-overlay { padding: 0 6%; }
}

@media (max-width: 768px) {
    .slide-main-title { font-size: 2.2rem; }
    .slide-interface-overlay { flex-direction: column; justify-content: center; align-items: flex-start; gap: 30px; }
    .info-content-left { max-width: 100%; }
}



/* About Us */

/* Core Structural Context */
.about-us-section {
    background-color: #0b0c0e;
    color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Subtitle Pill Layout */
.section-subtitle-pill {
    background: rgba(255, 107, 0, 0.1);
    color: #ff6b00;
    border: 1px solid rgba(255, 107, 0, 0.25);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: inline-block;
}

/* Main Typography Architecture */
.about-main-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.brand-highlight {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.about-description {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #a0a5b0;
    font-weight: 300;
}

/* Premium Counter Layouts */
.stat-box {
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 20px;
    transition: border-color 0.3s ease;
}

.stat-box:hover {
    border-color: #ff6b00;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c727f;
    margin: 0;
}

/* Right Side Matrix Frame Setup */
.matrix-headline-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.matrix-title {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #6c727f;
    margin: 0;
    white-space: nowrap;
}

.accent-line {
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
    width: 100%;
}

/* Interactive Keywords Layout */
.keywords-flex-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    position: relative;
    z-index: 10;
}

.keyword-matrix-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    transition: background 0.3s ease, transform 0.3s ease;
}

.keyword-icon-wrapper {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a5b0;
    font-size: 1.1rem;
    transition: color 0.3s, background 0.3s;
}

.keyword-info {
    display: flex;
    flex-direction: column;
}

.keyword-index {
    font-size: 0.7rem;
    color: #ff6b00;
    font-weight: 600;
    margin-bottom: 2px;
    font-family: monospace;
}

.keyword-label {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    color: #e2e8f0;
}

/* Matrix Card Hover Physics */
.keyword-matrix-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.keyword-matrix-card:hover .keyword-icon-wrapper {
    background: #ff6b00;
    color: #0b0c0e;
}

/* Background Abstract Layout Frame Artworks */
.composite-image-backdrop {
    position: absolute;
    right: -10%;
    bottom: -5%;
    width: 500px;
    height: 350px;
    opacity: 0.06;
    pointer-events: none;
    z-index: 1;
    display: flex;
    gap: 20px;
}

.decorative-img-frame {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border: 1px solid #ffffff;
}

.decorative-img-frame.image-one { transform: translateY(40px); }

/* Responsive Adaptability Rules */
@media (max-width: 1200px) {
    .about-main-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .about-us-section { padding: 60px 0; }
    .about-main-title { font-size: 2.1rem; }
    .keywords-flex-grid { grid-template-columns: 1fr; }
    .composite-image-backdrop { display: none; }
} 




/* Hero Slide  */

.snapture-hero-slider {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: #08080a;
    color: #ffffff;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 6%;
    box-sizing: border-box;
}

/* Ambient Backdrops */
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
}
.orange-glow { top: -10%; left: 20%; background: #ff5e00; }
.purple-glow { bottom: -10%; right: 10%; background: #8b5cf6; }

/* Silhouette Graphics */
.photographer-silhouette {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 85vh;
    width: auto;
    opacity: 0.25;
    z-index: 2;
    pointer-events: none;
}
.silhouette-img {
    height: 100%;
    object-fit: contain;
    mix-blend-mode: lighten;
    filter: grayscale(1) contrast(1.2);
}

/* Metadata Configuration Header Grid */
.hero-top-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 10;
    width: 100%;
}

.meta-left { max-width: 420px; }
.hero-tagline { font-size: 0.9rem; color: #a0a5b0; line-height: 1.6; margin-bottom: 15px; }

.reviews-badge { display: flex; align-items: center; gap: 12px; }
.avatar-group { display: flex; }
.avatar-mini {
    width: 28px;
    height: 28px;
    background: #444;
    border: 2px solid #08080a;
    border-radius: 50%;
    margin-right: -10px;
}
.rating-info { display: flex; flex-direction: column; font-size: 0.75rem; }
.stars { color: #facc15; }
.score { font-weight: 600; color: #fff; }
.sub-text { color: #64748b; }

.meta-right { text-align: right; max-width: 300px; }
.copyright-year { font-size: 1.1rem; font-weight: 600; display: block; margin-bottom: 5px; color: #ff5e00; }
.studio-subtext { font-size: 0.8rem; color: #a0a5b0; line-height: 1.4; }

/* Massive Background Canvas Branding */
.massive-bg-title {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
    width: 100%;
    text-align: center;
}
.massive-bg-title h1 {
    font-size: 13vw;
    font-weight: 900;
    letter-spacing: -2px;
    color: #ffffff;
    margin: 0;
    line-height: 1;
    opacity: 0.95;
}

/* DSLR Camera Device Framework Architecture */
.camera-housing-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -46%);
    z-index: 5;
    pointer-events: none;
}

.camera-body-container {
    position: relative;
    width: 460px;
    height: 320px;
}

.camera-chassis {
    position: relative;
    width: 100%;
    height: 100%;
    background: #121318;
    border: 4px solid #1c1d24;
    border-radius: 60px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.85), inset 0 2px 10px rgba(255,255,255,0.05);
}

.camera-top-dial {
    position: absolute;
    top: -14px;
    left: 70px;
    width: 70px;
    height: 14px;
    background: #23252f;
    border-radius: 6px 6px 0 0;
}

.camera-grip {
    position: absolute;
    right: 0;
    top: 10%;
    width: 50px;
    height: 80%;
    background: #0d0e12;
    border-radius: 0 54px 54px 0;
    opacity: 0.5;
}

/* Active Circular Glass Aperture Viewport */
.camera-lens-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: #1a1b22;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.camera-lens-ring {
    width: 100%;
    height: 100%;
    background: #232530;
    border: 6px dashed #323545;
    border-radius: 50%;
    padding: 8px;
    overflow: hidden;
}

.lens-aperture-glass {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 50%;
    overflow: hidden;
    pointer-events: auto;
}

.lens-image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.15) rotate(10deg);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lens-image-layer.active {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.lens-reflection {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 45%, rgba(139,92,246,0.05) 50%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

/* Horizontal Bottom Thumbnail Ribbon Track */
.bottom-gallery-tray {
    width: 100%;
    position: relative;
    z-index: 10;
    margin-top: auto;
    padding-top: 20px;
}

.tray-scroll-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.gallery-tray-card {
    position: relative;
    width: 130px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #16171d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s, 
                box-shadow 0.4s;
}

.tray-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) grayscale(0.3);
    transition: filter 0.4s;
}

.tray-card-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 10px;
    box-sizing: border-box;
    z-index: 2;
}

.tray-card-title {
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
    transition: color 0.4s;
}

/* Target focused Active Ribbon States */
.gallery-tray-card.center-card-focus {
    transform: translateY(-10px) scale(1.05);
    border-color: #ff5e00;
    box-shadow: 0 15px 30px rgba(255, 94, 0, 0.15);
}

.gallery-tray-card.center-card-focus .tray-card-bg {
    filter: brightness(0.95) grayscale(0);
}

.gallery-tray-card.center-card-focus .tray-card-title {
    color: #ffffff;
    font-weight: 600;
}

.gallery-tray-card:hover:not(.center-card-focus) {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.2);
}
.gallery-tray-card:hover .tray-card-bg {
    filter: brightness(0.6) grayscale(0);
}

/* Control Elements Navigation */
.nav-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: background 0.3s, border-color 0.3s;
}
.nav-arrow-btn:hover {
    background: #ffffff;
    color: #08080a;
    border-color: #ffffff;
}
.left-arrow { left: 2%; }
.right-arrow { right: 2%; }

/* Responsive Layout Settings */
@media (max-width: 991px) {
    .massive-bg-title h1 { font-size: 16vw; }
    .camera-body-container { transform: scale(0.85); }
    .gallery-tray-card { width: 110px; height: 130px; }
    .hero-top-meta { flex-direction: column; gap: 20px; }
    .meta-right { text-align: left; }
}

@media (max-width: 650px) {
    .camera-body-container { transform: scale(0.68); }
    .tray-scroll-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
    .gallery-tray-card:nth-child(5), .gallery-tray-card:nth-child(6), .gallery-tray-card:nth-child(7) { display: none; }
    .gallery-tray-card { width: 100%; height: 110px; }
    .photographer-silhouette { display: none; }
}


/* ImageGallery3D */

.photo-section {
  position: relative;
  min-height: 100vh;
  background-color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.cards-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo-card {
  position: absolute;
  width: 240px;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gradient {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.photo-card h3 {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  color: white;
  margin: 0;
  font-size: 0.9rem;
}

.fixed-content-area {
  margin-top: 100px;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.read-btn {
  background: transparent;
  color: white;
  border: 1px solid white;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
}

.nav-controls {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.nav-arrow {
  background: #222;
  border: none;
  color: white;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 4px;
}

/* Image slider  */

@layer base {
  body {
    background-color: #1c120c;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
  }
}

@layer utilities {
  /* Creates the soft, vignette dark atmosphere from the reference image */
  .bg-radial-gradient {
    background: radial-gradient(circle at center, transparent 20%, #0e0906 100%);
  }
}

/* Enhances typography rendering for the serif titles */
h1, h2 {
  font-family: 'Playfair Display', 'Didot', 'Georgia', serif;
  letter-spacing: 0.05em;
}

@layer base {
  body {
    background-color: #1c120c;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
  }
}

@layer utilities {
  /* Creates the soft, vignette dark atmosphere from the reference image */
  .bg-radial-gradient {
    background: radial-gradient(circle at center, transparent 20%, #0e0906 100%);
  }
}

/* Enhances typography rendering for the serif titles */
h1, h2 {
  font-family: 'Playfair Display', 'Didot', 'Georgia', serif;
  letter-spacing: 0.05em;
}

/* Footer  */

/* Footer Container */
.digi-footer {
    background-color: #1a1a1a; /* Matches a dark, professional theme */
    color: #ffffff;
    padding-top: 60px;
    padding-bottom: 20px;
}

/* Headings */
.digi-footer .footer-heading {
    color: #ff8c00; /* Matching your orange theme */
    font-weight: 600;
    margin-bottom: 20px;
}

/* Links */
.digi-footer .footer-link {
    color: #cccccc;
    text-decoration: none;
    transition: 0.3s;
    display: block;
    margin-bottom: 10px;
}

.digi-footer .footer-link:hover {
    color: #ff8c00;
    padding-left: 5px;
}

/* Text and Contact Info */
.digi-footer .footer-text {
    color: #aaaaaa;
    line-height: 1.6;
}

.digi-footer .footer-contact li {
    margin-bottom: 12px;
    color: #cccccc;
}

.digi-footer .footer-contact i {
    color: #ff8c00;
}

/* Bottom Divider */
.digi-footer hr {
    border-top: 1px solid #333333;
}



.services-section {
  background-color: #0a0c10;
  color: #ffffff;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: 0.3s;
  height: 100%;
}

.service-card.active {
  background: rgba(0, 255, 170, 0.1);
  border: 1px solid #00ffaa;
}

.icon { color: #00ffaa; }

.card-number {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 2rem;
  font-weight: bold;
  opacity: 0.3;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #00ffaa;
}


.wedding-services-section {
  background: linear-gradient(180deg, #0a0c10 0%, #151921 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card h4 , p {
  color: #fff !important;
  margin-bottom: 15px;
}


/* Slider */

.portfolio-container {
  background-color: #0b0a0a;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
  width: 100vw;
}

.portfolio-ambient-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: blur(50px);
  z-index: 0;
  /* Faster backdrop opacity/image fade matching the speed */
  transition: background-image 0.35s ease-in-out;
}

.portfolio-wrapper {
  display: flex;
  width: 100%;
  max-width: 1600px;
  position: relative;
  z-index: 1;
  padding-left: 2rem;
}

.side-tag-container {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vertical-side-tag {
  font-size: 0.65rem;
  color: #555;
  letter-spacing: 0.5em;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  text-transform: uppercase;
}

.slider-viewport {
  width: 100%;
  overflow: visible;
}

.slider-track {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  width: max-content;
  transform: translateX(0px);
}

/* Changed from 0.75s to 0.35s with snappy cubic-bezier */
.slider-track.is-moving {
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portfolio-card-wrapper {
  width: 440px;
  display: flex;
  flex-direction: column;
  transition: opacity 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portfolio-card-frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.35s ease;
}

.tall-frame {
  aspect-ratio: 3.2 / 4.6;
}

.short-frame {
  aspect-ratio: 3.2 / 3.8;
}

.portfolio-card-wrapper.inactive-slide {
  opacity: 0.35;
}
.portfolio-card-wrapper.inactive-slide .portfolio-card-frame {
  filter: contrast(85%) brightness(65%);
}

.slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cinematic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
}

.fixed-vertical-title {
  font-family: 'Playfair Display', serif;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  font-weight: 300;
  letter-spacing: 0.22em;
}

.inline-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.65);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
  transition: color 0.2s ease, transform 0.2s ease;
}

.inline-nav-arrow:hover {
  color: #ffffff;
  transform: translateY(-50%) scale(1.15);
}

.arrow-left-pos { right: -1.25rem; }
.arrow-right-pos { left: 20px; }

.meta-underlay {
  margin-top: 1.5rem;
  padding-left: 0.25rem;
}

.meta-category {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: #555;
  font-weight: 600;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.meta-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: #c5c5c5;
  font-weight: 400;
}

.text-dark {
    --bs-text-opacity: 1;
    color: rgb(255 255 255) !important;
} 



.footer-section {
  background: #111111;
  color: #fff;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-circle{
    position:absolute;
    width:260px;
    height:260px;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,.05),
        rgba(255,255,255,.05) 10px,
        transparent 10px,
        transparent 22px
    );
    border-radius:50%;
    left:-120px;
    bottom:-120px;
}

.footer-logo{
    width:220px;
}

.footer-text{
    color:#bdbdbd;
    line-height:30px;
    margin-top:10px;
}

.footer-section h4{
    font-size:26px;
    margin-bottom:30px;
    font-weight:700;
}

.footer-section ul{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-section ul li{
    margin-bottom:14px;
}

.footer-section ul li a{
    color:#cfcfcf;
    text-decoration:none;
    transition:.3s;
}

.footer-section ul li a:hover{
    color:#d7ff4b;
    padding-left:8px;
}

.footer-social{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.footer-social a{
    width:48px;
    height:48px;
    background:#222;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    transition:.4s;
    text-decoration:none;
}

.footer-social a:hover{
    background:#d7ff4b;
    color:#111;
    transform:translateY(-5px);
}

.contact-box{
    display:flex;
    gap:15px;
    margin-bottom:28px;
}

.contact-box .icon{
    /* width:55px; */
    /* height:55px; */
    /* border-radius:50%; */
    /* background:#222; */
    display:flex;
    justify-content:center;
    align-items:center;
    color:#d7ff4b;
    font-size:20px;
    /* border:1px solid #444; */
}

.contact-box span{
    color:#bfbfbf;
    font-size:15px;
}

.contact-box p{
    margin:4px 0 0;
    font-weight:600;
}

.footer-section hr{
    border-color:#2a2a2a;
    margin-top:50px;
    margin-bottom:25px;
}

.copyright{
    color:#d1d1d1;
}

@media(max-width:991px){

.footer-section{
text-align:center;
}

.footer-social{
justify-content:center;
}

.contact-box{
justify-content:center;
text-align:left;
}

.footer-logo{
margin:auto;
display:block;
}

}