/* =========================
   CUSTOM COLORS
========================== */
:root {

    --main-font: 'Gothic A1', sans-serif;
    --accent-font: 'Bebas Neue', cursive;

    --nav-btn-bg: #ffffff;
    --nav-btn-bg-hover: #0d6efd;


    --brand-blue: #0d6efd;
    --brand-blue-dark: hwb(218 4% 71%);
    --brand-blue-light: #eaf3ff;
    --brand-black: #05070d;
    --brand-black-soft: #101522;
    --brand-border: #dbeafe;


    --bena-hero-color: #03005e;
    --creative-hero-color: #bfd6fc;
    --hero-text-color: #000000;

    --sections-text-color: #101522;
    --sections-heading-color: #05070d;

}

/* =========================
   animations kryframes
========================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fromLeft {
    from {
        transform: translate3d(-70px, 0, 0) scale(0.98);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 1;
    }
}

@keyframes fromRight {
    from {
        transform: translate3d(70px, 0, 0) scale(0.98);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 1;
    }
}

@keyframes fromBottom {
    from {
        transform: translate3d(0, 70px, 0) scale(0.98);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 1;
    }
}


/* =========================
   GLOBAL STYLES
========================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--main-font);
    color: var(--brand-black);
    background: #ffffff;
}

/* =========================
   BRAND / NAVBAR
========================== */

nav {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    border-bottom: var(--brand-blue) 6px solid !important;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-black));
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
}

.brand-text {
    font-size: 1.25rem;
    color: var(--brand-black);
    font-family: var(--main-font);
    font-weight: 800;
    text-transform: uppercase;
    transition: ease-in-out 0.2s color;
}

.brand-text:hover {
    color: var(--brand-blue);
}

.nav-link {
    color: var(--brand-black) !important;
    transition: ease-in-out 0.2s color;
}

.nav-link:hover {
    color: var(--brand-blue) !important;
    border-bottom: var(--brand-blue) 6px solid !important;
}

.nav-btn {
    background: var(--nav-btn-bg);
    font-family: var(--main-font);
    font-weight: 800;
    text-transform: uppercase;
    border: 1px solid #000000;
    border-radius: 0%;
    color: #000000;
    box-shadow: 0 14px 30px rgba(6, 8, 10, 0.1);
    padding: 0.5rem 1rem;
    transition: ease-out 0.2s background;
}

.nav-btn:hover {
    color: #ffffff;
    background: var(--nav-btn-bg-hover);
    border-color: var(--nav-btn-bg-hover);
}

/* =========================
   REUSABLE TEXT STYLES
========================== */
.section-eyebrow {
    color: var(--brand-blue);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}

.hero-title {
    color: var(--brand-black);
    line-height: 1.05;
}

.text-page {
    color: var(--sections-text-color);
    line-height: 1.6;
    text-align: center;
    font-family: var(--main-font);
}

.heading-section {
    color: var(--sections-heading-color);
    line-height: 1.05;
    font-family: var(--main-font);
    font-weight: 800;
    text-align: center;

}

/* =========================
   HERO SECTION
========================== */
.hero-section {
    margin-bottom: 5px;
    background-image: url("../img/hero-bg.png");
    height: 500px;
    /* You must set a specified height */
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Do not repeat the image */
    background-size: cover;

}

.hero-text {
    color: var(--main-font);
    font-size: 1.25rem;
    line-height: 1.5;
}

.bena {
    color: var(--bena-hero-color);
    font-size: 5.25rem;
    padding-left: 40px;

    font-family: var(--main-font);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.creative {
    padding-left: 16px;
    letter-spacing: 10px;
    font-family: var(--main-font);
    color: var(--creative-hero-color);
    border-bottom: #063b93 1px solid;
}

.hero-left {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}



.hero-left p {
    color: var(--hero-text-color);
    text-align: center;
    text-wrap: balance;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.right-col {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(330px, 42vw, 470px);
}

.animate-img {
    position: absolute;
    width: clamp(170px, 18vw, 260px);
    aspect-ratio: 16 / 10;
    height: auto;
    object-fit: cover;
    filter: blur(.25px) saturate(1.08) contrast(1.05);
    box-shadow: 0 22px 45px rgba(5, 7, 13, 0.28);
    will-change: transform;
}

.img-bottom {
    z-index: 0;
    top: 0%;
    left: 50%;
    translate: -50% 10%;
    width: clamp(190px, 20vw, 280px);
    animation: fromBottom 600ms cubic-bezier(1, 2, .3, 2) 120ms forwards;
}

.img-right {
    z-index: 1;
    bottom: 10%;
    left: 5%;
    animation: fromRight 700ms cubic-bezier(1, 2, .3, 2) 220ms forwards;
}

.img-left {
    z-index: 1;
    right: 5%;
    bottom: 10%;
    animation: fromLeft 700ms cubic-bezier(1, 2, .3, 2) 220ms forwards;
}


/* =========================
   BUTTON OVERRIDES
========================== */
.btn-primary {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    box-shadow: 0 14px 30px rgba(13, 110, 253, 0.25);
}

.btn-primary:hover {
    background: var(--brand-blue-dark);
    border-color: var(--brand-blue-dark);
}

.btn-outline-dark:hover {
    background: var(--brand-black);
    border-color: var(--brand-black);
}

/* =========================
   SERVICES
========================== */
.service-card {
    border: 1px solid var(--brand-border);
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(13, 110, 253, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 65px rgba(13, 110, 253, 0.16);
}

.service-card-dark {
    background: var(--brand-black);
    color: #ffffff;
    border-color: var(--brand-black);
}

.service-card-dark p {
    color: rgba(255, 255, 255, 0.78);
}



.service-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    background: none;
    font-size: 1.5rem;
}

.service-card-dark .service-icon {
    background: rgba(255, 255, 255, 0.1);
}

.service-container {
    text-align: center;
    padding: 1.5rem;
    background: var(--brand-blue-light);
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(13, 110, 253, 0.08);
}

.service-link {
    color: var(--brand-blue);
    font-weight: 800;
    text-decoration: none;
}

.service-link:hover {
    text-decoration: underline;
}

/* =========================
   WORK SECTION
========================== */
/* =========================
   OUR WORK SECTION
========================= */
.our-work-section {
    padding: 90px 20px;
    background: #ffffff;
    color: #111111;
}

.our-work-header {
    max-width: 850px;
    margin: 0 auto 50px;
}

.section-label {
    color: #16008a;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.our-work-header h2 {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 1;
    margin-bottom: 18px;
}

.our-work-header p {
    max-width: 650px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* =========================
   SHOWCASE LAYOUT
========================= */
.showcase-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Left buttons */
.showcase-tabs {
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-right: 1px solid #ddd;
    padding-right: 28px;
}

.showcase-btn {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: 2px solid #16008a;
    color: #16008a;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: 0.25s ease;
}

.showcase-btn:hover,
.showcase-btn.active {
    background: #16008a;
    color: #ffffff;
}

/* Right display */
.showcase-display {
    min-height: 420px;
    border: 2px solid #16008a;

    box-shadow: 0 20px 50px rgba(13, 110, 253, 0.08);
    border-radius: 30px;
    padding: 45px;
    position: relative;
    overflow: hidden;
}

.showcase-panel {
    display: none;
}

.showcase-panel.active {
    display: block;
}

.showcase-number {
    display: inline-block;
    color: #16008a;
    font-weight: 900;
    margin-bottom: 20px;
}

.showcase-panel h3 {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
    margin-bottom: 18px;
}

.showcase-panel p {
    max-width: 650px;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.showcase-panel ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 12px;
    padding: 0;
    margin: 0 0 34px;
    list-style: none;
}

.showcase-panel li {
    padding-left: 18px;
    position: relative;
    color: #222;
    font-weight: 600;
}

.showcase-panel li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #16008a;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
}

.showcase-link {
    display: inline-block;
    padding: 13px 22px;
    background: #16008a;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
}


/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .our-work-section {
        padding: 70px 16px;
    }

    .showcase-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .showcase-tabs {
        flex-direction: row;
        overflow-x: auto;
        border-right: 0;
        border-bottom: 1px solid #ddd;
        padding-right: 0;
        padding-bottom: 18px;
    }

    .showcase-btn {
        min-width: max-content;
        text-align: center;
        padding: 13px 18px;
        font-size: 0.95rem;
    }

    .showcase-display {
        padding: 28px;
        border-radius: 24px;
        min-height: auto;
    }

    .showcase-panel ul {
        grid-template-columns: 1fr;
    }

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

    .contact-submit {
        width: 100%;
    }
}

/* =========================
   PROCESS SECTION
========================== */
.process-step {
    padding: 2rem;
    border-radius: 1.5rem;
    background: #ffffff;
    border: 1px solid var(--brand-border);
    box-shadow: 0 20px 50px rgba(13, 110, 253, 0.08);
}

.process-step span {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: var(--brand-blue);
    color: #ffffff;
    font-weight: 800;
}

/* =========================
   CONTACT SECTION
========================== */
#contact {
    scroll-margin-top: 96px;
}

.contact-card {
    padding: 2rem;
    border-radius: 2rem;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.25), transparent 35%),
        linear-gradient(135deg, var(--brand-blue), var(--brand-black));
    color: #ffffff;
    box-shadow: 0 30px 70px rgba(13, 110, 253, 0.25);
}

.contact-card .section-eyebrow {
    color: #ffffff;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.82);
}

.contact-form {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 1.25rem;
    padding: clamp(1rem, 3vw, 1.5rem);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-field-full,
.captcha-field,
.contact-submit {
    grid-column: 1 / -1;
}

.captcha-field {
    min-height: 78px;
}

.captcha-error {
    min-height: 1.25rem;
    margin: 0.5rem 0 0;
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 700;
}

.label-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-text-box {
    width: 100%;
    min-height: 48px;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.9rem;
    color: #ffffff;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-text-box::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-text-box:focus {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

textarea.form-text-box {
    min-height: 130px;
    resize: vertical;
}

.contact-submit {
    justify-self: start;
    border: 0;
    border-radius: 999px;
    background: #ffffff;
    color: var(--brand-black);
    padding: 0.9rem 1.5rem;
    font-weight: 800;
    box-shadow: 0 18px 40px rgba(5, 7, 13, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-submit:hover,
.contact-submit:focus {
    background: var(--brand-blue-light);
    box-shadow: 0 22px 50px rgba(5, 7, 13, 0.28);
    transform: translateY(-2px);
}


/* =========================
   RESPONSIVE FIXES
========================== */
@media (max-width: 991px) {
    .bena {
        font-size: 4.5rem;
        padding-left: 30px;
    }

    .creative {
        padding-left: 4px;
        letter-spacing: 8px;
    }

    .right-col {
        min-height: 400px;
        max-width: 560px;
        margin: 0 auto;
    }

    .animate-img {
        width: clamp(150px, 34vw, 220px);
        border-radius: 16px;
    }

    .img-bottom {
        left: 50%;

        width: clamp(175px, 40vw, 245px);
        top: 15%;
    }

    .img-right {
        left: 0;
        bottom: 8%;
    }

    .img-left {
        right: 0;
        bottom: 8%;
    }
}

@media (max-width: 575px) {
    .bena {
        font-size: 3.5rem;
        padding-left: 20px;
    }

    .creative {
        padding-left: 2px;
        letter-spacing: 6px;
    }

    .right-col {
        min-height: 320px;
    }

    .animate-img {
        width: min(42vw, 165px);
        border-width: 4px;
        border-radius: 14px;
        box-shadow: 0 16px 30px rgba(5, 7, 13, 0.24);
    }

    .img-bottom {
        top: 20%;
        width: min(48vw, 185px);
    }

    .img-right {
        left: 10%;
        bottom: 10%;
    }

    .img-left {
        right: 10%;
        bottom: 10%;
    }
}
