/* Bulfher custom styles */
:root {
    --bulfher-yellow: #c96a12;
    --bulfher-pink: #c96a12;
    --bulfher-blue: #c96a12;
    --bulfher-dark: #202020;
    --bulfher-dark-soft: #262626;
    --bulfher-accent: #c96a12;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #202020;
}

.bulfher-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
}

.bulfher-logo:hover,
.bulfher-logo:focus {
    color: var(--bulfher-yellow);
}

.side-copy {
    max-width: 360px;
}


.hero-bulfher {
    position: relative;
    overflow: hidden;
    background: #111;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    min-width: 100%;
    height: 56.25vw;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: 0;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18,18,18,0.82) 0%, rgba(18,18,18,0.62) 44%, rgba(18,18,18,0.72) 100%);
}

.hero-content-wrap {
    position: relative;
    z-index: 2;
}

.hero-bottom-note {
    position: absolute;
    left: 50%;
    bottom: 38px;
    transform: translateX(-50%);
    z-index: 2;
    width: calc(100% - 32px);
    max-width: 640px;
    padding: 1rem 1.4rem;
    border-radius: 999px;
    text-align: center;
    color: rgba(255,255,255,0.92);
    background: rgba(18,18,18,0.42);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
}

.operations-card {
    padding: 1.6rem;
}

.operations-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.operation-item {
    border-radius: 22px;
    padding: 1.4rem;
    background: rgba(18,18,18,0.82);
    border: 1px solid rgba(255,255,255,0.08);
    min-height: 100%;
}

.operation-number {
    display: inline-block;
    margin-bottom: .75rem;
    color: var(--bulfher-yellow);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: .08em;
}

.operation-item h5 {
    color: #fff;
    margin-bottom: .45rem;
}

.hero-kicker {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bulfher-yellow);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.85rem, 5vw, 4.9rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    max-width: 640px;
}

.hero-copy {
    max-width: 560px;
    font-size: 1.05rem;
}

.hero-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.95rem;
    color: rgba(255,255,255,0.88);
}

.hero-list li::before {
    content: "";
    min-width: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bulfher-yellow), var(--bulfher-pink));
    margin-right: 14px;
    margin-top: 8px;
}


.text-yellow { color: var(--bulfher-yellow) !important; }
.text-pink { color: var(--bulfher-pink) !important; }
.text-blue { color: var(--bulfher-blue) !important; }
.bg-yellow { background: var(--bulfher-yellow) !important; }
.bg-pink { background: var(--bulfher-pink) !important; }
.bg-blue { background: var(--bulfher-blue) !important; }

.capability-row .about-box {
    border-radius: 24px;
    max-width: none;
    padding: 2rem 1.6rem;
    border: 1px solid rgba(255,255,255,0.06);
}

.service-panel {
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.service-panel:hover {
    transform: translateY(-10px);
    border-color: rgba(241, 195, 15, 0.25);
    box-shadow: 0 24px 44px rgba(0,0,0,0.26);
}

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
}

.video-card {
    border-radius: 30px;
    padding: 1.1rem;
    background: linear-gradient(135deg, rgba(241, 195, 15, 0.18), rgba(132, 161, 210, 0.18));
    box-shadow: 0 24px 54px rgba(0,0,0,0.3);
}

.video-frame-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 24px;
    background: #000;
}

.video-frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.work-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #161616;
    box-shadow: 0 18px 38px rgba(0,0,0,0.25);
}

.work-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform .5s ease;
}

.work-card:hover img {
    transform: scale(1.06);
}

.work-copy {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(18,18,18,0.88);
    backdrop-filter: blur(12px);
}

.work-copy h5 {
    color: #ffffff;
    margin-bottom: .35rem;
}

.work-copy p {
    font-size: 0.95rem;
}

.process-card {
    min-height: 100%;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-boxes-wrap,
.contact-form-shell {
    border-radius: 28px;
    padding: 2.1rem;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.contact-form-shell {
    background: rgba(38,38,38,0.72);
}

.contact-info .icon-box {
    border-bottom-color: rgba(255,255,255,0.08);
}

.contact-info strong {
    color: #ffffff;
}

.footer p {
    opacity: 0.75;
}

@media (max-width: 1199.98px) {
}

@media (max-width: 991.98px) {
    .navbar .menu-btn {
        display: block;
    }

    .nav-btn-number {
        display: none !important;
    }

    .hero-bottom-note {
        bottom: 24px;
        max-width: 92%;
        border-radius: 24px;
    }

    .main-title {
        margin-bottom: 4rem;
    }
}

@media (max-width: 767.98px) {
    section, .section-padding {
        padding: 5.5rem 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .service-panel,
    .contact-boxes-wrap,
    .contact-form-shell,
    .video-card {
        padding: 1.4rem;
    }

    .hero-bottom-note {
        position: static;
        transform: none;
        width: auto;
        max-width: none;
        margin: 0 16px 24px;
        display: block;
        border-radius: 18px;
    }

    .operations-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== Header / Slider / Preloader overrides ===== */
html, body {
    background: #07070a;
}
body:not(.page-ready) {
    overflow: hidden;
}
.bulfher-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, rgba(255,153,0,0.14), rgba(7,7,10,0.98) 48%), #07070a;
    transition: opacity .75s ease, visibility .75s ease;
}
.bulfher-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-panel {
    position: relative;
    width: min(78vw, 540px);
    text-align: center;
}
.preloader-logo-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    padding: 18px 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    box-shadow: 0 18px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.08) inset;
}
.preloader-logo-img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
}
.preloader-shine {
    position: absolute;
    inset: -20% auto -20% -35%;
    width: 28%;
    background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.08) 35%, rgba(255,255,255,.85) 50%, rgba(255,255,255,.08) 65%, rgba(255,255,255,0) 100%);
    transform: skewX(-22deg);
    animation: bulfherShine 1.8s ease-in-out infinite;
    pointer-events: none;
}
.preloader-reflection {
    position: relative;
    width: 86%;
    margin: 6px auto 0;
    opacity: .24;
    transform: translateY(-2px) scaleY(-1);
    filter: blur(1px);
}
.preloader-reflection img {
    display: block;
    width: 100%;
    height: auto;
}
.preloader-reflection::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(7,7,10,0.08) 0%, rgba(7,7,10,0.72) 55%, rgba(7,7,10,1) 100%);
}
@keyframes bulfherShine {
    0% { transform: translateX(0) skewX(-22deg); opacity: .1; }
    20% { opacity: .95; }
    100% { transform: translateX(520%) skewX(-22deg); opacity: .05; }
}
.top-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
}
.top-header .btn-setting,
.nav-btn-number {
    text-transform: uppercase;
    letter-spacing: .08em;
}
header .navbar {
    background: transparent;
}
header.header-appear .navbar,
header .bottom-nav.navbar {
    background: rgba(8, 8, 12, 0.72);
    backdrop-filter: blur(16px);
}
.bulfher-header-logo {
    width: auto;
    max-height: 64px;
}
.side-menu-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
}
.hero-main-logo {
    width: min(78vw, 560px);
    max-width: 560px;
    min-width: 240px;
    height: auto;
}
#home .banner-overlay {
    background: linear-gradient(180deg, rgba(6,6,8,0.25) 0%, rgba(6,6,8,0.55) 46%, rgba(6,6,8,0.78) 100%);
}
#home .tp-caption .btn-setting {
    min-width: 180px;
}
@media (max-width: 991px) {
    .bulfher-header-logo { max-height: 54px; }
    .top-header .slider-social { padding-left: 18px; }
}
@media (max-width: 767px) {
    .preloader-panel { width: min(86vw, 420px); }
    .preloader-logo-wrap { padding: 14px 16px; }
    .bulfher-header-logo { max-height: 46px; }
    .side-menu-logo { max-width: 240px; }
}


/* Final Bulfher overrides */
.text-pink, .text-blue, .text-yellow { color: var(--bulfher-accent) !important; }
.bg-pink, .bg-blue, .bg-yellow,
.btn-yellow, .btn-pink, .btn-blue {
    background-color: var(--bulfher-accent) !important;
    border-color: var(--bulfher-accent) !important;
}
.btn-hvr-yellow:after,
.btn-hvr-blue:after,
.btn-hvr-pink:after,
.btn-hvr-whatsapp:after {
    background-color: var(--bulfher-accent) !important;
}
.btn-hvr-yellow:hover, .btn-hvr-yellow:focus,
.btn-hvr-blue:hover, .btn-hvr-blue:focus,
.btn-hvr-pink:hover, .btn-hvr-pink:focus,
.btn-hvr-whatsapp:hover, .btn-hvr-whatsapp:focus {
    border-color: var(--bulfher-accent) !important;
}
.hero-list li::before { background: var(--bulfher-accent) !important; }
.operation-number,
.hero-kicker,
.bulfher-logo:hover,
.bulfher-logo:focus {
    color: var(--bulfher-accent) !important;
}
.service-panel:hover { border-color: rgba(201,106,18,.35); }
.video-card { background: linear-gradient(135deg, rgba(201,106,18,0.2), rgba(201,106,18,0.09)); }
.menu_bars span, .menu_bars2 span, .menu-lines span,
.menu_bars:hover span, .menu_bars2:hover span { background: var(--bulfher-accent) !important; }
.quarter-circle { background: rgba(14, 14, 18, 0.98) !important; }
.nav-three-circles .navbar-nav .nav-item .nav-link::after,
.tp-bullet, .tp-bullet:before,
.owl-dots .owl-dot span,
.owl-theme .owl-dots .owl-dot span {
    background: var(--bulfher-accent) !important;
    border-color: var(--bulfher-accent) !important;
}
.nav-three-circles .navbar-nav .nav-item .nav-link:hover,
.nav-three-circles .navbar-nav .nav-item .nav-link.active { color: var(--bulfher-accent) !important; }
.contact-info .icon-box i, .service-icon i, .about-box i { color: #fff !important; }
.work-card img, .about-img { filter: saturate(.92) contrast(1.05) brightness(.92); }
.contact-info a { color: var(--bulfher-accent); }
@media (max-width: 767px) {
    .hero-main-logo { width: min(70vw, 360px); }
}


/* Final menu interaction fixes */
.nav-three-circles .navbar-nav .nav-item .nav-link::after {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}
.nav-three-circles .navbar-nav .nav-item .nav-link:hover::after,
.nav-three-circles .navbar-nav .nav-item .nav-link.active::after {
    color: var(--bulfher-accent) !important;
    text-shadow: 10px 0 var(--bulfher-accent), -10px 0 var(--bulfher-accent) !important;
}
.tp-bullet, .tp-bullet:before,
.owl-dots .owl-dot span,
.owl-theme .owl-dots .owl-dot span {
    background: var(--bulfher-accent) !important;
    border-color: var(--bulfher-accent) !important;
}
.navbar .menu-btn {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar .menu-btn .menu_bars,
.top-header .menu_bars,
.menu-bars-setting {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.menu-lines,
.menu-lines.animated-element {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.side-menu {
    z-index: 10020;
}
#close_side_menu {
    z-index: 10010;
}
#btn_sideNavClose,
.menu_bars2,
.menu_bars2.active {
    z-index: 10030;
    cursor: pointer;
}
@media (max-width: 991.98px) {
    .navbar .menu-btn {
        min-width: 48px;
        margin-left: auto;
    }
}


/* Targeted final fixes */
.side-menu,
.side-menu.center {
    background: var(--bulfher-accent) !important;
}

@media (max-width: 767px) {
    .hero-main-logo {
        width: min(68vw, 340px);
    }
}
