:root {
    --brand-orange: #f16605;
    --brand-yellow: #fabb06;
    --brand-navy: #0d233f;
    --text-dark: #18202b;
    --text-muted: #667085;
    --bg-light: #f5f7fa;
    --white: #ffffff;
    --font-main: 'Manrope', Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.25s ease;
}

.top-bar {
    background: var(--brand-navy);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.86rem;
    padding: 10px 0;
}

.top-bar i {
    color: var(--brand-yellow);
    margin-right: 8px;
}

.top-bar a:hover,
.lang-switch a.active,
.mobile-lang a.active {
    color: var(--brand-yellow);
}

.lang-switch,
.mobile-lang {
    font-weight: 800;
    letter-spacing: 0;
}

.mobile-lang a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 36px;
    border: 1px solid #e8edf3;
    margin-right: 8px;
}

.navbar {
    background: var(--white);
    padding: 0;
    box-shadow: 0 8px 30px rgba(13, 35, 63, 0.08);
    z-index: 1000;
}

.navbar-brand {
    padding: 14px 0;
}

.navbar-brand img {
    height: 56px;
    width: auto;
}

.nav-link {
    color: var(--brand-navy) !important;
    font-weight: 800;
    font-size: 0.92rem;
    text-transform: uppercase;
    padding: 34px 16px !important;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-item.show .nav-link::after {
    transform: scaleX(1);
}

.btn-brand {
    background: var(--brand-orange);
    border: 0;
    color: var(--white);
    font-weight: 800;
    border-radius: 4px;
    padding: 12px 24px;
    box-shadow: 0 10px 24px rgba(241, 102, 5, 0.24);
}

.btn-brand:hover {
    background: #d95b04;
    color: var(--white);
    transform: translateY(-1px);
}

.navbar .dropdown-menu {
    border: 0;
    border-radius: 0;
    margin: 0;
}

@media (min-width: 992px) {
    .has-megamenu {
        position: static;
    }

    .megamenu {
        display: none;
        left: 0;
        right: 0;
        width: 100%;
        padding: 34px 0;
        border-top: 4px solid var(--brand-orange);
        box-shadow: 0 18px 45px rgba(13, 35, 63, 0.14);
    }

    .nav-item:hover .megamenu {
        display: block;
        position: absolute;
    }
}

.mega-panel {
    min-height: 100%;
    background: linear-gradient(135deg, var(--brand-navy), #061426);
    color: var(--white);
    padding: 30px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.mega-panel > i {
    position: absolute;
    right: -20px;
    bottom: -28px;
    font-size: 9rem;
    color: rgba(250, 187, 6, 0.1);
}

.mega-panel h4 {
    max-width: 300px;
    font-weight: 800;
}

.mega-panel p {
    max-width: 330px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.service-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 13px;
    border: 1px solid transparent;
    border-radius: 8px;
    height: 100%;
}

.service-item:hover {
    background: var(--bg-light);
    border-color: #e7ecf2;
    transform: translateX(4px);
}

.service-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(241, 102, 5, 0.11);
    color: var(--brand-orange);
    font-size: 1.15rem;
}

.service-content {
    display: grid;
    gap: 3px;
}

.service-content strong {
    color: var(--brand-navy);
}

.service-content small {
    color: var(--text-muted);
    line-height: 1.35;
}

.hero-slider .carousel-item {
    min-height: 650px;
    height: 84vh;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    min-height: inherit;
    height: 100%;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(13, 35, 63, 0.94), rgba(13, 35, 63, 0.56), rgba(13, 35, 63, 0.22)),
        linear-gradient(0deg, rgba(13, 35, 63, 0.2), rgba(13, 35, 63, 0.2));
}

.hero-content {
    max-width: 780px;
    color: var(--white);
}

.hero-badge,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-orange);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-badge {
    background: rgba(250, 187, 6, 0.14);
    color: var(--brand-yellow);
    padding: 9px 14px;
    border-left: 4px solid var(--brand-orange);
}

.hero-content h1 {
    font-size: clamp(2.45rem, 5vw, 5.2rem);
    line-height: 1.04;
    font-weight: 800;
    margin: 0 0 24px;
    letter-spacing: 0;
}

.hero-content p {
    font-size: 1.18rem;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 32px;
}

.carousel-indicators {
    bottom: 28px;
}

.carousel-indicators [data-bs-target] {
    width: 38px;
    height: 4px;
    border: 0;
    background: var(--brand-yellow);
}

.about-section,
.services-section,
.partners-section,
.content-section,
.cta-section {
    padding: 90px 0;
}

.about-section {
    background: var(--white);
}

.about-section h2,
.section-head h2,
.content-section h2,
.cta-box h2 {
    color: var(--brand-navy);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: 0;
}

.about-section h2,
.section-head h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
}

.lead {
    color: var(--text-muted);
}

.feature-box,
.check-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid #e8edf3;
}

.feature-box i,
.check-card i {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--brand-orange);
    border-radius: 8px;
}

.feature-box strong {
    display: block;
    color: var(--brand-navy);
}

.feature-box small {
    display: block;
    color: var(--text-muted);
}

.image-stack {
    position: relative;
    min-height: 520px;
}

.image-stack img:first-child {
    width: 82%;
    height: 430px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 22px 45px rgba(13, 35, 63, 0.18);
}

.image-stack img:nth-child(2) {
    position: absolute;
    width: 52%;
    height: 250px;
    object-fit: cover;
    right: 0;
    bottom: 0;
    border: 8px solid var(--white);
    border-radius: 8px;
    box-shadow: 0 22px 45px rgba(13, 35, 63, 0.18);
}

.experience-badge {
    position: absolute;
    left: 28px;
    bottom: 36px;
    display: grid;
    gap: 0;
    background: var(--brand-navy);
    color: var(--white);
    padding: 18px 22px;
    border-left: 5px solid var(--brand-yellow);
    border-radius: 8px;
}

.experience-badge strong {
    font-size: 2rem;
    line-height: 1;
}

.experience-badge span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.86rem;
}

.services-section {
    background: var(--bg-light);
}

.partners-section {
    background: var(--white);
    overflow: hidden;
}

.partners-section .section-head {
    margin-bottom: 34px;
}

.partners-marquee {
    position: relative;
    overflow: hidden;
    padding: 8px 0 14px;
}

.partners-marquee::before,
.partners-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.partners-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
}

.partners-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--white), rgba(255, 255, 255, 0));
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: partners-scroll 32s linear infinite;
}

.partners-marquee:hover .partners-track {
    animation-play-state: paused;
}

.partner-logo {
    width: 190px;
    height: 96px;
    flex: 0 0 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid #e7ecf2;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 12px 30px rgba(13, 35, 63, 0.06);
}

.partner-logo img {
    max-width: 100%;
    max-height: 64px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.78;
    transition: 0.25s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes partners-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 12px));
    }
}

.section-head {
    max-width: 760px;
    margin: 0 auto 44px;
}

.service-card {
    display: block;
    height: 100%;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e7ecf2;
    box-shadow: 0 14px 35px rgba(13, 35, 63, 0.06);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 42px rgba(13, 35, 63, 0.12);
}

.service-card-image {
    height: 210px;
    background-size: cover;
    background-position: center;
}

.service-card-body {
    padding: 24px;
}

.service-card-body > i {
    color: var(--brand-orange);
    font-size: 1.65rem;
    margin-bottom: 16px;
}

.service-card h3 {
    color: var(--brand-navy);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-muted);
    min-height: 78px;
}

.service-card span {
    color: var(--brand-orange);
    font-weight: 800;
}

.stat-section {
    background: var(--brand-navy);
    color: var(--white);
    padding: 50px 0;
}

.stat-section strong {
    display: block;
    color: var(--brand-yellow);
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1;
    font-weight: 800;
}

.stat-section span {
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
}

.cta-box {
    background:
        linear-gradient(110deg, rgba(13, 35, 63, 0.96), rgba(13, 35, 63, 0.84)),
        url('../img/slider-244_1660732264.png') center/cover;
    color: var(--white);
    border-radius: 8px;
    padding: 54px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cta-box h2 {
    color: var(--white);
    max-width: 780px;
    margin: 0;
}

.page-header {
    min-height: 390px;
    display: flex;
    align-items: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 35, 63, 0.94), rgba(13, 35, 63, 0.42));
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 18px;
}

.page-header p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
}

.sidebar-box,
.help-box,
.contact-card,
.contact-form {
    background: var(--white);
    border: 1px solid #e7ecf2;
    border-radius: 8px;
    padding: 26px;
    box-shadow: 0 14px 35px rgba(13, 35, 63, 0.06);
}

.sidebar-box {
    display: grid;
    gap: 10px;
}

.sidebar-box h5,
.help-box h5,
.contact-card h3 {
    color: var(--brand-navy);
    font-weight: 800;
    margin-bottom: 14px;
}

.sidebar-box a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 15px;
    color: var(--brand-navy);
    background: var(--bg-light);
    border-radius: 6px;
    font-weight: 700;
}

.sidebar-box a.active,
.sidebar-box a:hover {
    background: var(--brand-orange);
    color: var(--white);
}

.help-box {
    margin-top: 24px;
    background: var(--brand-navy);
    color: var(--white);
}

.help-box h5 {
    color: var(--white);
}

.help-box p {
    color: rgba(255, 255, 255, 0.7);
}

.content-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 32px;
    box-shadow: 0 18px 40px rgba(13, 35, 63, 0.13);
}

.product-catalog {
    margin-top: 58px;
    padding-top: 42px;
    border-top: 1px solid #e7ecf2;
}

.catalog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
}

.catalog-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 22px;
    background: var(--white);
    border: 1px solid #e7ecf2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(13, 35, 63, 0.06);
}

.catalog-card img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
}

.catalog-card > div {
    padding: 24px 24px 24px 0;
}

.catalog-card h3 {
    color: var(--brand-navy);
    font-size: 1.16rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.catalog-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--text-muted);
}

.catalog-card li {
    margin-bottom: 8px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.gallery-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 190px;
    background: var(--white);
    border: 1px solid #e7ecf2;
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 14px 35px rgba(13, 35, 63, 0.06);
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(13, 35, 63, 0.12);
}

.gallery-card img {
    max-width: 100%;
    max-height: 170px;
    object-fit: contain;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(7, 24, 41, 0.88);
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox img {
    max-width: min(1100px, 92vw);
    max-height: 88vh;
    object-fit: contain;
    background: var(--white);
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

.gallery-lightbox-close {
    position: absolute;
    top: 18px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--brand-orange);
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
}

.empty-gallery {
    padding: 36px;
    background: var(--bg-light);
    border: 1px solid #e7ecf2;
    border-radius: 8px;
    color: var(--text-muted);
    text-align: center;
    font-weight: 700;
}

.admin-page {
    background: var(--bg-light);
}

.admin-shell {
    min-height: 100vh;
    padding: 42px 18px;
}

.admin-card {
    max-width: 1180px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid #e7ecf2;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 18px 42px rgba(13, 35, 63, 0.1);
}

.admin-card h1,
.admin-section h2 {
    color: var(--brand-navy);
    font-weight: 800;
}

.admin-card p {
    color: var(--text-muted);
    margin: 0;
}

.admin-login,
.upload-form {
    display: flex;
    gap: 12px;
    align-items: end;
}

.admin-login {
    max-width: 430px;
    align-items: flex-end;
}

.admin-login label {
    display: grid;
    gap: 8px;
    flex: 1;
    font-weight: 800;
    color: var(--brand-navy);
}

.admin-login input,
.upload-form input {
    width: 100%;
    border: 1px solid #d9e0e9;
    border-radius: 6px;
    padding: 12px 14px;
}

.admin-section {
    border: 1px solid #e7ecf2;
    border-radius: 8px;
    padding: 22px;
    min-height: 100%;
}

.admin-gallery-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.admin-gallery-item {
    display: grid;
    gap: 10px;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 12px;
}

.admin-gallery-item img {
    width: 100%;
    height: 130px;
    object-fit: contain;
    background: var(--white);
    border-radius: 6px;
}

.narrow {
    max-width: 900px;
}

.contact-card {
    height: 100%;
    background: var(--brand-navy);
    color: var(--white);
}

.contact-card h3 {
    color: var(--white);
}

.contact-card p,
.office-line {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.78);
}

.contact-card i,
.office-line i {
    color: var(--brand-yellow);
    margin-top: 5px;
}

.office-line {
    margin-bottom: 18px;
}

.office-line span {
    display: grid;
    gap: 4px;
}

.office-line strong {
    color: var(--white);
}

.office-line small {
    color: rgba(255, 255, 255, 0.72);
}

.office-line small i {
    margin-right: 6px;
    margin-top: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d9e0e9;
    border-radius: 6px;
    padding: 14px 16px;
    outline: none;
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 4px rgba(241, 102, 5, 0.12);
}

.main-footer {
    background: #071829;
    color: var(--white);
    padding: 70px 0 0;
}

.footer-logo {
    height: 58px;
    background: var(--white);
    padding: 8px;
    border-radius: 6px;
}

.main-footer h5 {
    color: var(--white);
    font-weight: 800;
    margin-bottom: 22px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a,
.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.66);
    margin-bottom: 12px;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 10px;
}

.footer-contact-grid li {
    margin-bottom: 0;
}

.footer-contact-email {
    grid-column: 1 / -1;
}

.footer-office span {
    font-size: 0.92rem;
    line-height: 1.45;
}

.footer-office strong {
    color: var(--white);
}

.footer-links a:hover {
    color: var(--brand-yellow);
    transform: translateX(4px);
}

.footer-links i,
.footer-contact i {
    color: var(--brand-orange);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 54px;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, 0.58);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-left: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: 50%;
}

.footer-social a:hover {
    background: var(--brand-orange);
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    font-size: 1.9rem;
    box-shadow: 0 14px 30px rgba(18, 140, 76, 0.34);
}

.whatsapp-float:hover {
    color: var(--white);
    background: #1ebe5d;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .nav-link {
        padding: 13px 0 !important;
    }

    .nav-link::after {
        display: none;
    }

    .megamenu {
        padding: 12px;
    }

    .hero-slider .carousel-item {
        min-height: 590px;
        height: auto;
    }

    .about-section,
    .services-section,
    .partners-section,
    .content-section,
    .cta-section {
        padding: 64px 0;
    }

    .image-stack {
        min-height: auto;
    }

    .image-stack img:first-child,
    .image-stack img:nth-child(2) {
        position: static;
        width: 100%;
        height: 300px;
        border: 0;
        margin-bottom: 16px;
    }

    .experience-badge {
        left: 18px;
        bottom: 30px;
    }

    .cta-box {
        display: block;
        padding: 36px 24px;
    }

    .cta-box .btn {
        margin-top: 22px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .navbar-brand img {
        height: 48px;
    }

    .hero-content h1 {
        font-size: 2.35rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .page-header {
        min-height: 320px;
    }

    .content-image {
        height: 260px;
    }

    .catalog-card {
        grid-template-columns: 1fr;
    }

    .catalog-card img {
        height: 210px;
    }

    .catalog-card > div {
        padding: 22px;
    }

    .footer-bottom {
        display: block;
    }

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

    .footer-social {
        display: block;
        margin-top: 14px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
        font-size: 1.75rem;
    }

    .partners-marquee::before,
    .partners-marquee::after {
        width: 42px;
    }

    .partner-logo {
        width: 150px;
        height: 78px;
        flex-basis: 150px;
    }

    .gallery-grid,
    .admin-gallery-list {
        grid-template-columns: 1fr;
    }

    .admin-login,
    .upload-form {
        display: grid;
        align-items: stretch;
    }
}
