/* =========================
   GLOBAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #10233f;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

section {
    padding: 80px 7%;
}

h1,
h2,
h3 {
    line-height: 1.2;
}


/* =========================
   TOP BAR
========================= */

.top-bar {
    background: #0b1d36;
    color: #ffffff;

    min-height: 32px;
    padding: 0 5%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 12px;
    font-weight: 600;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
}

.top-left {
    gap: 8px;
}

.top-right {
    gap: 18px;
}

.top-right a {
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s ease;
}

.top-right a[aria-label="Call"],
.top-right a[aria-label^="Call "] {
    gap: 7px;
    white-space: nowrap;
}

.top-right a[aria-label="WhatsApp"],
.top-right a[aria-label="Instagram"] {
    font-size: 18px;
}

.top-right a:hover {
    color: #e85d04;
}

.top-right a[aria-label="WhatsApp"]:hover {
    color: #25D366;
}

.top-right a[aria-label="Instagram"]:hover {
    color: #E4405F;
}


/* =========================
   NAVIGATION
========================= */

nav {
    height: 90px;
    padding: 0 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #ffffff;

    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);

    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    height: 90px;
}

.logo img {
    width: 145px;
    height: 85px;

    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;

    font-size: 14px;
    font-weight: 600;
}

.nav-links a {
    transition: 0.3s;
}

.nav-links a:hover {
    color: #e85d04;
}


/* =========================
   QUOTE BUTTON
========================= */

.quote-btn,
.primary-btn {
    display: inline-block;

    background: #e85d04;
    color: #ffffff;

    padding: 13px 25px;

    border-radius: 4px;

    font-weight: 700;
    font-size: 14px;

    transition: 0.3s;
}

.quote-btn:hover,
.primary-btn:hover {
    background: #c94d00;
    transform: translateY(-2px);
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 570px;

    padding: 60px 7%;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #f8fafc;
}


/* =========================
   HERO BACKGROUND IMAGE
========================= */

.hero-bg {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;

    width: 78%;

    overflow: hidden;

    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;
}


/* =========================
   HERO IMAGE FADE
========================= */

.hero-bg::after {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: linear-gradient(
    90deg,
    #f8fafc 0%,
    rgba(248, 250, 252, 0.96) 6%,
    rgba(248, 250, 252, 0.82) 14%,
    rgba(248, 250, 252, 0.58) 23%,
    rgba(248, 250, 252, 0.32) 32%,
    rgba(248, 250, 252, 0.14) 42%,
    rgba(248, 250, 252, 0.04) 51%,
    rgba(248, 250, 252, 0) 58%
    );

    z-index: 1;

    pointer-events: none;
}


/* =========================
   HERO CONTENT
========================= */

.hero-content {
    width: 50%;

    position: relative;

    z-index: 2;
}

.small-title,
.section-label {
    color: #e85d04;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 12px;
}

.hero h1 {
    font-size: clamp(48px, 6vw, 78px);

    font-weight: 900;

    letter-spacing: -2px;

    color: #10233f;

    line-height: 1.05;
}

.hero h1 span {
    color: #e85d04;
}

.hero-text {
    margin-top: 20px;

    font-size: 20px;

    font-weight: 600;

    color: #34445b;
}

.hero-buttons {
    display: flex;

    gap: 15px;

    margin-top: 30px;
}


/* =========================
   SECONDARY BUTTON
========================= */

.secondary-btn {
    display: inline-block;

    border: 2px solid #e85d04;

    color: #e85d04;

    padding: 11px 25px;

    border-radius: 4px;

    font-weight: 700;

    transition: 0.3s;
}

.secondary-btn:hover {
    background: #e85d04;

    color: #ffffff;
}


/* =========================
   ABOUT
========================= */

.about {
    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    gap: 55px;

    align-items: center;

    background: #ffffff;
}


/* =========================
   ABOUT TEXT
========================= */

.about-text {
    max-width: 500px;
}

.about-text .section-label {
    color: #e85d04;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 12px;
}

.about h2 {
    font-size: 42px;

    margin-bottom: 22px;

    color: #10233f;

    font-weight: 800;

    line-height: 1.15;
}

.about-text p {
    color: #536176;

    margin-bottom: 18px;

    font-size: 15px;

    line-height: 1.7;
}

.about-text .primary-btn {
    margin-top: 5px;
}


/* =========================
   ABOUT CENTER LOGO
========================= */

.about-center {
    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 10px;
}

.about-logo {
    width: 270px;

    max-width: 100%;

    height: auto;

    object-fit: contain;

    display: block;
}

.about-center p {
    margin-top: 18px;

    letter-spacing: 6px;

    font-size: 12px;

    font-weight: 800;

    color: #10233f;
}


/* =========================
   ABOUT FEATURES
========================= */

.about-features {
    display: flex;

    flex-direction: column;

    gap: 16px;

    width: 100%;
}


/* =========================
   ABOUT FEATURE ITEM
========================= */

.about-feature {
    min-height: 62px;

    padding: 10px 20px;

    border-radius: 10px;

    background: #f8fafc;

    box-shadow: 0 6px 22px rgba(16, 35, 63, 0.06);

    display: flex;

    align-items: center;

    gap: 15px;

    color: #10233f;

    font-size: 14px;

    font-weight: 700;

    transition: 0.3s ease;
}

.about-feature:hover {
    transform: translateX(5px);

    box-shadow: 0 10px 28px rgba(16, 35, 63, 0.10);
}


/* =========================
   ABOUT FEATURE ICON
========================= */

.about-feature-icon {
    width: 40px;

    height: 40px;

    min-width: 40px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    color: #e85d04;

    font-size: 16px;

    box-shadow: 0 3px 12px rgba(16, 35, 63, 0.10);
}

.about-feature-icon i {
    display: block;
}


/* =========================
   SERVICES
========================= */

.services {
    background: #f7f9fc;

    text-align: center;

    padding-left: 4%;

    padding-right: 4%;
}

.services h2 {
    font-size: 38px;

    margin-bottom: 45px;

    color: #10233f;
}

.services h2 span {
    color: #e85d04;
}


/* =========================
   SERVICE GRID
========================= */

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

    width: 100%;

    max-width: 100%;
}


/* =========================
   SERVICE CARD
========================= */

.service-card {
    background: #ffffff;

    padding: 35px 30px;

    border-radius: 8px;

    border: 1px solid #edf0f4;

    min-height: 185px;

    transition: 0.3s;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;
}

.service-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
}


/* =========================
   SERVICE ICON
========================= */

.service-icon {
    width: 65px;

    height: 65px;

    margin: 0 auto 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #e85d04;

    font-size: 42px;
}


/* =========================
   SERVICE TITLE
========================= */

.service-card h3 {
    margin-bottom: 10px;

    color: #10233f;

    font-size: 16px;
}


/* =========================
   SERVICE DESCRIPTION
========================= */

.service-card p {
    color: #6b7280;

    font-size: 14px;

    line-height: 1.5;

    max-width: 360px;
}


/* =========================
   PROJECTS
========================= */

.projects {
    text-align: center;
}

.projects h2 {
    font-size: 38px;

    margin-bottom: 45px;
}

.projects h2 span {
    color: #e85d04;
}

.project-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.project-card {
    position: relative;

    text-align: left;

    overflow: hidden;

    border-radius: 10px;

    height: 380px;

    background: #ffffff;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
}

.project-image {
    width: 100%;

    height: 100%;

    overflow: hidden;
}

.project-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}


/* =========================
   STATS
========================= */

.stats {
    background: #0b1d36;

    color: #ffffff;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    padding: 20px 4%;

    text-align: left;
}


/* =========================
   STAT ITEM
========================= */

.stat-item {
    min-height: 85px;

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 5px 35px;

    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:last-child {
    border-right: none;
}


/* =========================
   STAT ICON
========================= */

.stat-icon {
    width: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #e85d04;

    font-size: 46px;

    flex-shrink: 0;
}


/* =========================
   STAT TEXT
========================= */

.stat-text {
    display: flex;

    flex-direction: column;

    justify-content: center;
}


/* =========================
   STAT NUMBER
========================= */

.stat-text strong {
    display: block;

    color: #ffffff;

    font-size: 34px;

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 5px;
}


/* =========================
   STAT LABEL
========================= */

.stat-text span {
    display: block;

    color: #ffffff;

    font-size: 15px;

    font-weight: 500;

    line-height: 1.2;
}


/* =========================
   CONTACT
========================= */

.contact {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.contact-info > p {
    margin-bottom: 18px;
    color: #596579;
    font-size: 15px;
    line-height: 1.7;
}

.contact-info > .section-label {
    color: #e85d04;
    font-size: 13px;
}

.contact-detail {
    font-size: 16px;
    line-height: 1.7;
}

.contact-form {
    display: grid;

    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    padding: 15px;

    border: 1px solid #d8dee7;

    border-radius: 5px;

    font-family: inherit;

    font-size: 14px;

    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #e85d04;
}

.contact-form textarea {
    min-height: 150px;

    resize: vertical;
}

.contact-form button {
    border: none;

    background: #e85d04;

    color: #ffffff;

    padding: 15px;

    border-radius: 5px;

    font-weight: 800;

    cursor: pointer;

    font-size: 15px;
}

.contact-form button:hover {
    background: #c94d00;
}


/* =========================
   FOOTER
========================= */

footer {
    background: #07162a;

    color: #ffffff;

    padding: 35px 7%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;
}


/* =========================
   FOOTER BRAND
========================= */

.footer-brand {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


/* =========================
   FOOTER LOGO WHITE BOX
========================= */

.footer-logo-wrap {
    background: #ffffff;

    padding: 8px 12px;

    border-radius: 6px;

    display: inline-flex;

    align-items: center;

    justify-content: center;
}


/* =========================
   FOOTER LOGO
========================= */

.footer-logo {
    width: 125px;

    height: 70px;

    object-fit: contain;

    display: block;
}


/* =========================
   FOOTER TAGLINE
========================= */

.footer-brand p {
    margin-top: 10px;

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 4px;
}


/* =========================
   FOOTER RIGHT
========================= */

.footer-right {
    display: flex;

    flex-direction: column;

    align-items: center;

    width: 380px;

    max-width: 100%;
}


/* =========================
   FOOTER SOCIAL ICONS
========================= */

.footer-social {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    margin-bottom: 16px;
}

.footer-social a {
    width: 42px;

    height: 42px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    font-size: 20px;

    transition: 0.3s ease;
}


/* =========================
   WHATSAPP
========================= */

.footer-social a[aria-label="WhatsApp"] {
    background: #25D366;
}

.footer-social a[aria-label="WhatsApp"]:hover {
    transform: translateY(-3px);

    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}


/* =========================
   INSTAGRAM
========================= */

.footer-social a[aria-label="Instagram"] {
    background: linear-gradient(
    135deg,
    #833AB4,
    #E1306C,
    #F77737,
    #FCAF45
    );
}

.footer-social a[aria-label="Instagram"]:hover {
    transform: translateY(-3px);

    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.35);
}


/* =========================
   FOOTER DIVIDER
========================= */

.footer-line {
    width: 100%;

    height: 1px;

    background: rgba(255, 255, 255, 0.22);

    margin-bottom: 14px;
}


/* =========================
   COPYRIGHT
========================= */

.footer-copyright {
    margin: 0;

    color: #d5dbe4;

    font-size: 12px;

    line-height: 1.7;

    text-align: center;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

/* =========================
   NAVIGATION
========================== */

    .nav-links {
        display: none;
    }


    /* =========================
       HERO
    ========================== */

    .hero {
        min-height: auto;

        padding: 60px 7%;

        display: flex;

        flex-direction: column;

        text-align: center;

        gap: 35px;

        background: #f8fafc;
    }

    .hero-bg {
        position: relative;

        top: auto;
        right: auto;
        bottom: auto;

        width: 100%;

        height: 400px;

        display: block;

        overflow: hidden;

        border-radius: 10px;

        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);

        order: 2;
    }

    .hero-bg::after {
        display: none;
    }

    .hero-bg img {
        width: 100%;

        height: 100%;

        object-fit: cover;

        object-position: center;

        display: block;
    }

    .hero-content {
        width: 100%;

        order: 1;
    }

    .hero-buttons {
        justify-content: center;
    }


    /* =========================
       ABOUT
    ========================== */

    .about {
        grid-template-columns: 1fr;

        gap: 40px;

        text-align: center;
    }

    .about-text {
        max-width: 700px;

        margin: 0 auto;
    }

    .about-center {
        order: 2;
    }

    .about-features {
        order: 3;

        max-width: 650px;

        margin: 0 auto;

        text-align: left;
    }

    .about-logo {
        width: 250px;
    }


    /* =========================
       CONTACT
    ========================== */

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


    /* =========================
       SERVICES / PROJECTS
    ========================== */

    .services {
        padding-left: 5%;

        padding-right: 5%;
    }

    .services-grid,
    .project-grid {
        grid-template-columns: 1fr 1fr;
    }


    /* =========================
       STATS
    ========================== */

    .stats {
        grid-template-columns: 1fr 1fr;

        padding: 30px 7%;
    }

    .stat-item {
        padding: 20px 25px;

        min-height: 80px;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .stat-icon {
        width: 55px;

        font-size: 40px;
    }

    .stat-text strong {
        font-size: 30px;
    }

    .stat-text span {
        font-size: 13px;
    }


    /* =========================
       FOOTER
    ========================== */

    footer {
        padding: 40px 7%;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    section {
        padding: 60px 5%;
    }


    /* =========================
       TOP BAR
    ========================== */

    .top-bar {
        min-height: auto;

        padding: 6px 5%;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 5px;

        font-size: 9px;
    }

    .top-left {
        width: 100%;

        max-width: 100%;

        display: flex;

        align-items: center;

        justify-content: flex-start;

        gap: 6px;
    }

    .top-left span:first-child {
        flex-shrink: 0;
    }

    .top-left span:last-child {
        white-space: nowrap;

        overflow: hidden;

        text-overflow: ellipsis;
    }

    .top-right {
        width: 100%;

        display: flex;

        align-items: center;

        justify-content: flex-start;

        gap: 14px;

        padding-left: 0;
    }

    .top-right a[aria-label="Call"],
    .top-right a[aria-label^="Call "] {
        font-size: 10px;

        gap: 6px;

        white-space: nowrap;
    }

    .top-right a[aria-label="Call"] i,
    .top-right a[aria-label^="Call "] i {
        margin-right: 2px;
    }

    .top-right a[aria-label="WhatsApp"],
    .top-right a[aria-label="Instagram"] {
        display: flex;

        font-size: 18px;

        flex-shrink: 0;
    }


    /* =========================
       NAVIGATION
    ========================== */

    nav {
        height: 80px;

        padding: 0 5%;
    }

    .logo {
        height: 80px;
    }

    .logo img {
        width: 125px;

        height: 75px;
    }

    .quote-btn {
        padding: 10px 12px;

        font-size: 11px;
    }


    /* =========================
       HERO
    ========================== */

    .hero {
        padding: 50px 5%;

        gap: 35px;

        display: flex;

        flex-direction: column;

        text-align: center;

        background: #f8fafc;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size: 50px;

        letter-spacing: -1px;
    }

    .hero-text {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: center;
    }

    .primary-btn,
    .secondary-btn {
        width: 200px;

        text-align: center;
    }


    /* =========================
       MOBILE HERO IMAGE
    ========================== */

    .hero-bg {
        width: 100%;

        height: 280px;

        position: relative;

        order: 2;

        border-radius: 10px;

        overflow: hidden;

        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

    .hero-bg::after {
        display: none;
    }

    .hero-bg img {
        width: 100%;

        height: 100%;

        object-fit: cover;

        object-position: center;

        display: block;
    }


    /* =========================
       ABOUT
    ========================== */

    .about {
        grid-template-columns: 1fr;

        gap: 35px;

        text-align: center;

        padding-top: 55px;

        padding-bottom: 55px;
    }

    .about-text {
        width: 100%;

        max-width: 100%;
    }

    .about h2 {
        font-size: 34px;

        line-height: 1.15;

        margin-bottom: 18px;
    }

    .about-text p {
        font-size: 14px;

        line-height: 1.65;
    }

    .about-center {
        width: 100%;

        padding: 5px 0;
    }

    .about-logo {
        width: 220px;

        max-width: 75%;
    }

    .about-center p {
        font-size: 10px;

        letter-spacing: 4px;

        margin-top: 14px;
    }

    .about-features {
        width: 100%;

        gap: 12px;

        text-align: left;
    }


    /* =========================
       MOBILE ABOUT FEATURES
    ========================== */

    .about-feature {
        min-height: 58px;

        padding: 10px 13px;

        gap: 12px;

        font-size: 13px;

        border-radius: 9px;
    }

    .about-feature-icon {
        width: 36px;

        height: 36px;

        min-width: 36px;

        font-size: 14px;
    }


    /* =========================
       SERVICES
    ========================== */

    .services {
        padding-left: 5%;

        padding-right: 5%;
    }

    .services h2 {
        font-size: 32px;

        margin-bottom: 35px;
    }

    .services-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .service-card {
        min-height: 190px;

        padding: 30px 20px;
    }

    .service-icon {
        width: 60px;

        height: 60px;

        font-size: 38px;

        margin-bottom: 14px;
    }

    .service-card h3 {
        font-size: 18px;

        margin-bottom: 8px;
    }

    .service-card p {
        font-size: 14px;

        line-height: 1.5;
    }


    /* =========================
       PROJECTS
    ========================== */

    .projects h2 {
        font-size: 32px;
    }

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

    .project-card {
        height: 360px;
    }


    /* =========================
       STATS
    ========================== */

    .stats {
        grid-template-columns: 1fr 1fr;

        padding: 25px 5%;

        gap: 0;
    }

    .stat-item {
        min-height: 75px;

        padding: 15px 8px;

        gap: 10px;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .stat-icon {
        width: 38px;

        font-size: 27px;
    }

    .stat-text strong {
        font-size: 23px;

        margin-bottom: 3px;
    }

    .stat-text span {
        font-size: 10px;

        line-height: 1.2;
    }


    /* =========================
       CONTACT
    ========================== */

    .about h2,
    .contact h2 {
        font-size: 34px;
    }


    /* =========================
       FOOTER
    ========================== */

    footer {
        padding: 35px 5%;

        flex-direction: column;

        gap: 30px;

        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-logo-wrap {
        padding: 7px 10px;
    }

    .footer-logo {
        width: 115px;

        height: 65px;
    }

    .footer-brand p {
        font-size: 9px;

        letter-spacing: 3px;
    }

    .footer-right {
        width: 100%;

        min-width: 0;
    }

    .footer-social {
        gap: 20px;
    }

    .footer-social a {
        width: 40px;

        height: 40px;

        font-size: 19px;
    }

    .footer-line {
        width: 90%;
    }

    .footer-copyright {
        font-size: 11px;
    }
}


/* =========================
   FORM SUCCESS MESSAGE
========================= */

.form-success-message {
    margin-top: 15px;

    padding: 16px 18px;

    border-radius: 8px;

    background: #f0fdf4;

    border: 1px solid #bbf7d0;

    color: #166534;

    display: flex;

    flex-direction: column;

    gap: 3px;

    font-size: 14px;
}

.form-success-message strong {
    font-size: 16px;

    font-weight: 800;
}

.form-success-message span {
    line-height: 1.5;
}


/* =========================================================
   PROJECT GALLERY LIGHTBOX
========================================================= */

.lightbox-image {
    cursor: zoom-in;
}


/* =========================
   LIGHTBOX BACKGROUND
========================= */

.lightbox {
    position: fixed;

    inset: 0;

    background: rgba(7, 22, 42, 0.94);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 40px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
    opacity 0.3s ease,
    visibility 0.3s ease;

    z-index: 9999;
}


/* =========================
   ACTIVE LIGHTBOX
========================= */

.lightbox.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* =========================
   LIGHTBOX IMAGE
========================= */

.lightbox-content {
    max-width: 85vw;

    max-height: 85vh;

    width: auto;

    height: auto;

    object-fit: contain;

    border-radius: 8px;

    box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.45);

    transform: scale(0.95);

    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}


/* =========================
   CLOSE BUTTON
========================= */

.lightbox-close {
    position: absolute;

    top: 20px;

    right: 25px;

    width: 45px;

    height: 45px;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);

    color: #ffffff;

    font-size: 32px;

    line-height: 1;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: 0.3s ease;

    z-index: 2;
}

.lightbox-close:hover {
    background: #e85d04;

    transform: rotate(90deg);
}


/* =========================
   PREVIOUS / NEXT BUTTONS
========================= */

.lightbox-prev,
.lightbox-next {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 52px;

    height: 52px;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);

    color: #ffffff;

    font-size: 30px;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: 0.3s ease;

    z-index: 2;
}


/* Previous position */

.lightbox-prev {
    left: 25px;
}


/* Next position */

.lightbox-next {
    right: 25px;
}


/* Hover */

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #e85d04;

    transform:
    translateY(-50%)
    scale(1.08);
}


/* =========================================================
   MOBILE LIGHTBOX
========================================================= */

@media (max-width: 600px) {

    .lightbox {
        padding: 20px;
    }


    .lightbox-content {
        max-width: 90vw;

        max-height: 78vh;

        border-radius: 6px;
    }


    .lightbox-close {
        top: 15px;

        right: 15px;

        width: 40px;

        height: 40px;

        font-size: 28px;
    }


    .lightbox-prev,
    .lightbox-next {
        width: 42px;

        height: 42px;

        font-size: 24px;
    }


    .lightbox-prev {
        left: 10px;
    }


    .lightbox-next {
        right: 10px;
    }

}