/********** Template CSS **********/
:root {
    --primary: #ff1a1a !important;       /* Main red – buttons, highlights */
    --secondary: #0a0a0a !important;     /* Darker than Bootstrap bg-dark */
    --light: #d7d7d7 !important;         /* Softer grey for text/lines */
    --dark: #000000 !important;          /* Full black */
}

/* HERO VIDEO WRAPPER */
.hero-video {
    position: relative;
    width: 100%;
    height: 100vh;  /* full screen hero */
    overflow: hidden;
    background: #000; /* fallback */
	
}

/* Fullscreen video hero background */
.hero-video {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
	  box-shadow: 5px 10px 14px rgba(0,0,0,0.45) !important;
}

/* Make the video cover like a background image */
#heroVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 1;
    z-index: 1;
}

/* Ensure hero text sits above video */
.hero-video .hero-content {
    position: relative;
    z-index: 5;
    padding-top: 130px; /* adjust to align under navbar */
}

/* Optional: dark overlay for readability */
.hero-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35); /* adjust opacity as needed */
    z-index: 3;
}




.bg-primary {
    background: linear-gradient(45deg, #ff1a1a 0%, #cfcfcf 100%) !important;
}
.bg-light {
    background: radial-gradient(circle,
        #f8f8f8 0%,
        #e5e5e5 45%,
        #cfcfcf 100%
    ) !important;
    color: #000 !important;
}



#cookieConsent {
    display: none; /* keep your JS logic */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    color: #fff;
    padding: 16px 24px;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

#cookieConsent p {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-left {
    flex: 1;
}

.cookie-actions button {
    margin-right: 8px;
}

.cookie-right img {
    max-height: 48px;
    width: auto;
}


/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

p.mb-4 {
    margin-top: inherit !important;
}

a.one {
    color: white !important;
}

cookieConsent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #356ddc !Important;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

cookieConsent button {
    margin: 1 5px;
}

.main-content {
    display: none;
}

/* LOGO PULSE SPINNER */
.spinner-logo {
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse 1.6s infinite ease-in-out,
               glow 1.6s infinite ease-in-out;
}

.spinner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* Keep text + icons above effect */
.container-fluid.bg-dark.d-none.d-lg-block > .row,
.container-fluid.bg-dark.d-none.d-lg-block * {
    position: relative;
    z-index: 5;
}


/* Gentle pulsing scale */
@keyframes pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* Red glow breathing effect */
@keyframes glow {
    0%   { filter: drop-shadow(0 0 2px rgba(255,0,0,0.3)); opacity: 0.85; }
    50%  { filter: drop-shadow(0 0 12px rgba(255,0,0,0.7)); opacity: 1; }
    100% { filter: drop-shadow(0 0 2px rgba(255,0,0,0.3)); opacity: 0.85; }
}


/*** Spinner Visibility Controls ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** SPINNER ANIMATION KEYFRAMES ***/
@-webkit-keyframes sk-rotateplane {
    0% { -webkit-transform: perspective(300px) rotateX(0deg) rotateY(0deg); }
    50% { -webkit-transform: perspective(300px) rotateX(180deg) rotateY(20deg); }
    100% { -webkit-transform: perspective(300px) rotateX(360deg) rotateY(0deg); }
}

@keyframes sk-rotateplane {
    0% { transform: perspective(300px) rotateX(0deg) rotateY(0deg); }
    50% { transform: perspective(300px) rotateX(180deg) rotateY(20deg); }
    100% { transform: perspective(300px) rotateX(360deg) rotateY(0deg); }
}

/*** General Fixes ***/
small.me-3.text-light-a {
    color: white!important;
}

a.nmz {
    color: white!important;
}

img {
    padding-left: 5px;
}

img.a.flex.align-center {
    padding: 12px;
    max-height: 50px;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

[id] {
  scroll-margin-top: 135px;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


.btn-dark {
    background: linear-gradient(
        135deg,
        #111111 0%,
        #1b1b1b 25%,
        #2a2a2a 50%,
        #1a1a1a 75%,
        #0d0d0d 100%
    );
    border: 1px solid #000;
    color: #e6e6e6 !important;
    font-weight: 700;

    /* Metallic / steel-like reflection */
    box-shadow:
        inset 0 0 6px rgba(255,255,255,0.12),
        inset 0 0 12px rgba(0,0,0,0.6),
        0 3px 14px rgba(0,0,0,0.45);

    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Soft top highlight for metal */
.btn-dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.02)
    );
    pointer-events: none;
}

/* Hover = stronger metal + silver shift */
.btn-dark:hover {
    background: linear-gradient(
        135deg,
        #1a1a1a 0%,
        #2c2c2c 40%,
        #121212 100%
    );
    box-shadow:
        inset 0 0 10px rgba(255,255,255,0.18),
        0 4px 18px rgba(0,0,0,0.6);
    transform: translateY(-1px);
}
/*** Button ***/


.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        #b30000 0%,
        #ff1a1a 40%,
        #ff4d4d 60%,
        #b30000 100%
    );
    border: 1px solid #660000;
    color: #fff !important;
    font-weight: 700;

    /* Metallic sheen */
    box-shadow:
        inset 0 0 6px rgba(255,255,255,0.25),
        0 3px 10px rgba(0,0,0,0.4);

    transition: 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(
        135deg,
        #ff4d4d 0%,
        #ff1a1a 40%,
        #b30000 100%
    );
    box-shadow:
        inset 0 0 10px rgba(255,255,255,0.35),
        0 4px 14px rgba(0,0,0,0.6);
    transform: translateY(-1px);
}


.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 20px 0;
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

img.oklogo {
    max-height:100px;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: #000 !important;
    border-color: #000 !important;
    background: linear-gradient(#ffffff, #e6e6e6);
    box-shadow:
        1px 1px 1px rgba(0,0,0,0.35),
        inset 0 1px 2px rgba(255,255,255,0.8),
        inset 0 -1px 2px rgba(0,0,0,0.15);
    border-radius: 6px;
}

.container-xxl {
    margin-top: 350px;
}

.py-5 {
	padding-top: 4rem !important;
	padding-bottom: 1rem !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }
    .navbar {
      background-position-x: 20px;
      background-position-y: center;
      background-size: 150px;
      background-repeat: no-repeat;
    }

    .sticky-top.navbar-dark.logo {
      height:inherit;
      width:inherit;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
		background: #FFFFFF; 
        width: 100%;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
		background-repeat: no-repeat;
        background-position-x: 30px;
        background-position-y: 20px;  
    }

    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
        background-size: 200px;
        background-repeat: no-repeat;
        background-position-x:30px;
        background-position-y:-40px;
    }


    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/* HERO SECTION – 3D RIPPLE / LIQUID WAVE EFFECT */
.hero-ripple {
    position: relative;
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #000;
    box-shadow: 5px 10px 14px rgba(0,0,0,0.45) !important;
}

.hero-ripple::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,0,0,0.35) 0%, rgba(0,0,0,0.9) 60%);
    animation: rippleMove 12s infinite linear;
    filter: blur(70px);
    opacity: 0.9;
}

.hero-ripple::after {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,0,0,0.25) 0%, rgba(0,0,0,0.95) 70%);
    animation: rippleMove2 18s infinite linear;
    filter: blur(70px);
    opacity: 0.8;
}

@keyframes rippleMove {
    0% { transform: translate(-20%, -20%) scale(1); }
    50% { transform: translate(10%, 10%) scale(1.3); }
    100% { transform: translate(-20%, -20%) scale(1); }
}

@keyframes rippleMove2 {
    0% { transform: translate(30%, 20%) scale(1.1); }
    50% { transform: translate(-10%, -20%) scale(1.4); }
    100% { transform: translate(30%, 20%) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 20px rgba(255,0,0,0.6);
    animation: fadeIn 2s ease-out forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 3, 6, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}
/* TOP BAR – PURE BLACK, NO ANIMATION */
.top-bar-wave {
    background-color: #000000 !important;   /* Override Bootstrap navy */
    position: relative;
    overflow: hidden;
}

/* Remove any leftover pseudo-elements */
.top-bar-wave::before,
.top-bar-wave::after {
    content: none !important;
}

/* Ensure text stays crisp */
.top-bar-wave small,
.top-bar-wave a,
.top-bar-wave i {
    color: #fff !important;
}

/* ==========================================================
   PREMIUM AGENCY FOOTER — CLEAN, 3-SHADE DARK + RED ACCENTS
   ========================================================== */

.ok-footer {
    background: #000;
    color: #e6e6e6;
    padding: 70px 0 0;
    margin-top: 80px;
    font-family: 'Nunito', sans-serif;
}

/* Three-shade background */
.ok-footer .footer-section:nth-child(1) { background: #000000; }
.ok-footer .footer-section:nth-child(2) { background: #0d0d0d; }
.ok-footer .footer-section:nth-child(3) { background: #161616; }
.ok-footer .footer-section:nth-child(4) { background: #0b0b0b; }

.ok-footer .footer-section {
    padding: 40px;
    min-height: 280px;
}

/* Logo */
.footer-logo {
    max-width: 160px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 6px rgba(255, 0, 0, 0.35));
}

/* Titles */
.ok-footer h4 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
}

.ok-footer h4::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #ff1a1a;
    position: absolute;
    left: 0;
    bottom: -6px;
}

/* Contact + legal lists */
.footer-list,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li,
.footer-links li {
    margin-bottom: 12px;
    color: #cccccc;
}

.footer-list i,
.footer-links i {
    color: #ff1a1a;
    margin-right: 8px;
}

/* Footer social icons */
.footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    margin-right: 8px;
    background: #ff1a1a;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: 0.3s;
    color: #fff;
}

.footer-social a:hover {
    background: #ff3b3b;
    transform: translateY(-3px);
}

/* Footer links */
.footer-links a {
    color: #d8d8d8;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff1a1a;
    padding-left: 6px;
}

/* Bottom strip */
.ok-footer-bottom {
    background: #000;
    text-align: center;
    padding: 22px 0;
    color: #a8a8a8;
    font-size: 15px;
    border-top: 1px solid #1a1a1a;
}

.ok-footer-bottom a {
    color: #fff;
    text-decoration: underline;
}

.ok-footer-bottom a:hover {
    color: #ff1a1a;
}
/* === FORCE NAVBAR TO STAY AT THE TOP === */
nav.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff !important; /* keep your existing look */
    box-shadow: 0 8px 14px rgba(0,0,0,0.35) !important;
    border-top: 3px solid #000 !important;
    border-bottom: 3px solid #000 !important;

}

#cookieConsent {
	flex-direction: column;
	align-items: flex-start;
}

.cookie-right {
	margin-top: 10px;
	align-self: flex-end;
}



/* === PREVENT CONTENT FROM SLIDING UNDER NAV === */
body {
    padding-top: 68px !important;   /* match your navbar total height */
}

/* === MOBILE VERSION (slightly smaller navbar) === */
@media (max-width: 991px) {
    body {
        padding-top: 70px !important;
    }
}

/* FIXED PAGE HEADER BAR */
.contact-fixed-header {
    position: sticky;
    top: 50px; /* adjust to your navbar height */
    width: 100%;
    background: #ffffff;
    z-index: 900;

    /* 3D Shadow under the bar */
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);

    padding: 18px 0;
    margin: 0;
}

/* Fix inner container width */
.contact-fixed-header .section-title {
    margin: 0 auto;
    padding: 0;
}

/* Makes content slide under it */
.contact-offset-area {
    padding-top: 40px;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .contact-fixed-header {
        top: 60px;  /* smaller mobile navbar */
        padding: 12px 0;
    }

    .contact-offset-area {
        padding-top: 25px;
    }

    .contact-fixed-header h1 {
        font-size: 26px;
    }
}

/* Remove animated underline for any section-title that contains an H1 */
.section-title:has(h1)::before,
.section-title:has(h1)::after {
    content: none !important;
}

/* ===========================================
   STACKED CARD SLIDE-UP SECTION EFFECT
   =========================================== */

/* Main section card */
.slide-card {
    position: relative;
    background: #ffffff;
    border-radius: 10px;
    padding: 45px 35px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    margin-bottom: 120px;  /* space between cards */
    z-index: 2;
    transform: translateY(0);
    transition: transform .4s ease, box-shadow .4s ease;
}

/* The 2px “tab” that peeks out from below the next card */
.section-divider {
    border: none;
    height: 2px;
    width: 100%;
    margin: -60px 0 0 0;    /* slide up under the card */
    background: #ff1a1a;    /* small coloured strip */
    z-index: 1;
    position: relative;
}

/* Make the cards slide up under the sticky header */
.slide-card {
    scroll-margin-top: 120px;
}

/* Hover/lift effect (optional but makes it feel premium) */
.slide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.20);
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .slide-card {
        padding: 35px 20px;
        margin-bottom: 90px;
        scroll-margin-top: 90px;
    }

    .section-divider {
        margin: -40px 0 0 0;
    }
}

/* Ensure anchor targets sit BELOW the sticky header + navbar */
[id] {
    scroll-margin-top: 200px; /* desktop */
}

@media (max-width: 991px) {
    [id] {
        scroll-margin-top: 180px; /* mobile */
    }
}


/* Fix contact box spacing on mobile */
@media (max-width: 991px) {

    /* Remove excessive left/right padding on the wrapper */
    .bg-primary.rounded.h-100.d-flex.align-items-center.p-5 {
        padding: 20px !important;
        margin: 0 auto !important;
        border-radius: 12px !important;
        width: 100% !important;
    }

    /* Ensure form fields stretch perfectly edge to edge */
    .bg-primary .form-control,
    .bg-primary .form-select,
    .bg-primary textarea {
        width: 100% !important;
    }

    /* Keep the captcha aligned */
    .g-recaptcha {
        transform: scale(0.90);
        transform-origin: left center;
    }
}
/* CAT THAT CHASES MOUSE */
#chaseCat {
    position: fixed;
    width: 80px;
    height: 80px;
    background-image: url('img/cat.png'); /* change to your cat path */
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none; 
    z-index: 999999; 
    transition: transform 0.15s linear;
}

/* Hide on small screens */
@media (max-width: 768px) {
    #chaseCat {
        display: none;
    }
}

