html, body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* UNIVERSAL FIX */
* {
    box-sizing: border-box;
}

/* =========================
      MOBILE WIDTH FIX
========================= */
@media (max-width: 820px) {

    body, html {
        max-width: 100%;
        overflow-x: hidden !important;
    }

    .hero-box,
    .about-section,
    .contact-wrapper,
    .contact-section,
    .topbar,
    .top-menu {
        width: 100% !important;
        margin-left: 0 !important;
        padding-left: 0;
        padding-right: 0;
    }

    .contact-card {
        margin: 0 auto !important;
    }

    .service-grid {
        width: 100%;
        margin: 0 auto;
    }

    .hero-text,
    .hero-report {
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        position: static !important;
    }

    .hero-logo {
        display: block;
        margin: 0 auto;
    }
}

/* GLOBAL SITE BG */
body {
    background: #0f1c2f;
    margin: 0;
    font-family: Inter, sans-serif;
}

/* =========================
      TOP MENU (DESKTOP)
========================= */
.top-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;

    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;

    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    position: relative;
    transition: 0.25s;
}

.top-menu a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0%;
    height: 2px;
    background: #deaf47;
    transition: 0.3s;
}

.top-menu a:hover::after {
    left: 0;
    width: 100%;
}

.top-menu a:hover {
    color: #deaf47;
}

/* =========================
        HERO SECTION
========================= */
.hero-box {
    width: 100%;
    margin: 120px 0 40px 0;
    padding: 70px 20px;

    background: #E6E6E6;   /* stays the same */
    position: relative;
    min-height: 320px;

    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    border-radius: 0;

    animation: heroFade 1s ease-out forwards;
}

.hero-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #deaf47;
}

/* LEFT TEXT */
.hero-text {
    position: absolute;
    left: 100px;
    top: 42%;
    transform: translateY(-50%);
    color: #0f1c2f;

    font-size: 38px;
    font-weight: 800;
    line-height: 1.1;

    opacity: 0;
    animation: slideLeft 1s ease-out forwards;
    animation-delay: 0.2s;
}

/* =========================
      FIXED HERO LOGO
========================= */
.hero-logo {
    display: block;
    margin: 0 auto;
    width: 420px;
    max-width: 90%;
    height: auto;

    /* REMOVE ALL SHADOWS, OUTLINES, BORDERS */
    filter: none !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    background: transparent !important;

    opacity: 0;
    animation: fadeInUp 1.2s ease-out forwards;
}

/* RIGHT TEXT */
.hero-report {
    position: absolute;
    right: 100px;
    top: 42%;
    transform: translateY(-50%);

    text-align: left;
    color: #0f1c2f;

    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;

    opacity: 0;
    animation: slideRight 1s ease-out forwards;
    animation-delay: 0.3s;
}

.report-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 28px;

    background: #0f1c2f;
    color: #fff;
    border-radius: 6px;

    font-size: 17px;
    font-weight: 600;
    text-decoration: none;

    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.report-btn:hover {
    background: #deaf47;
    color: black;
}

/* =========================
      WHO WE ARE
========================= */
.about-section {
    width: 100%;
    max-width: 1100px;

    margin: 20px auto 180px auto;
    padding: 50px 20px;
    text-align: center;
    color: white;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
    opacity: 0.85;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.service-box {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 6px;

    font-size: 18px;
    font-weight: 600;
    color: #ffffff;

    transition: 0.3s;
    backdrop-filter: blur(4px);
}

.service-box:hover {
    background: rgba(222,175,71,0.2);
    border-color: #deaf47;
    transform: translateY(-3px);
}

/* =========================
      CONTACT SECTION
========================= */
.contact-wrapper {
    width: 100%;
    text-align: center;
    margin-bottom: 80px;
}

.contact-title {
    color: white;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 40px;
}

.contact-section {
    width: 100%;
    padding: 60px 20px 120px 20px;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-card {
    background: #E6E6E6;
    padding: 40px 60px;
    border-radius: 8px;
    text-align: center;

    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    max-width: 380px;
    min-width: 280px;
}

.contact-card h3 {
    margin-bottom: 10px;
    font-size: 26px;
    color: #0f1c2f;
    font-weight: 800;
}

.contact-card p {
    margin: 6px 0;
    font-size: 17px;
    color: #0f1c2f;
}

.contact-card a {
    color: #0f1c2f;
    font-weight: 700;
}

/* =========================
      FOOTER
========================= */
.site-footer {
    width: 100%;
    padding: 25px 0;
    text-align: center;
    background: #07121f;
    color: #d1d5db;
    font-size: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* =========================
      ANIMATIONS
========================= */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(25px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
    0% { opacity: 0; transform: translate(-40px, -50%); }
    100% { opacity: 1; transform: translate(0, -50%); }
}

@keyframes slideRight {
    0% { opacity: 0; transform: translate(40px, -50%); }
    100% { opacity: 1; transform: translate(0, -50%); }
}

@keyframes heroFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =========================
      MOBILE MENU SYSTEM
========================= */
.topbar {
    display: none;
}

.hamburger {
    width: 28px;
    height: 28px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.desktop-only { display: inline-block; }
.mobile-only { display: none; }

/* =========================
        MOBILE MODE
========================= */
@media (max-width: 820px) {

    .topbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 30px !important;
        height: 60px;
        background: rgba(0,0,0,0.55);
        backdrop-filter: blur(6px);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 2000;
    }

    .mobile-title {
        color: white;
        font-size: 18px;
        font-weight: 700;
    }

    .hamburger {
        display: flex;
    }

    .top-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(0,0,0,0.92);

        position: fixed;
        top: 60px;
        left: 0;

        padding: 20px 0;
        text-align: center;
        gap: 25px;
        z-index: 1500;

        height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .top-menu.menu-open {
        display: flex;
    }

    .desktop-only { display: none; }
    .mobile-only { display: block; }

    .top-menu a {
        font-size: 22px;
        padding: 12px 0;
    }

    .hero-text {
        position: static;
        transform: none;
        margin-bottom: 20px;
        text-align: center;
        font-size: 30px;
    }

    .hero-logo {
        width: 300px;
        filter: none !important; /* ensure clean on mobile too */
    }

    .hero-report {
        position: static;
        transform: none;
        text-align: center;
        margin-top: 20px;
        font-size: 20px;
    }

    .hero-box {
        text-align: center;
        padding: 60px 20px;
    }

    .contact-section {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 80px;
    }

    .contact-card {
        max-width: 90%;
        margin: 0 auto;
    }
}

/* MOBILE IMAGE FIX */
@media (max-width: 820px) {

    .hero-logo {
        filter: brightness(0) invert(0) !important;  /* remove bright box edge */
        mix-blend-mode: multiply !important;         /* blends logo into background */
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
    }

    /* If the JPG has a white/grey canvas, fade edges slightly */
    .hero-logo {
        -webkit-mask-image: radial-gradient(circle, black 90%, transparent 100%);
        mask-image: radial-gradient(circle, black 90%, transparent 100%);
    }
}

