* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #000000;
    font-family: "Geologica", sans-serif;
}

body {
    padding-top: 86px;
}

@media (max-width: 1100px) {
    body {
        padding-top: 76px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}

/* =========================
   NAVBAR
========================= */

/* Normal navbar */
.navbar {
    width: 100%;
    height: 86px;
    background: #000;

    display: flex;
    align-items: center;

    padding: 0 28px;

    position: fixed;
    top: 0;
    z-index: 1000;

    transition:
        background-color 0.6s ease,
        transform 0.35s ease;
}

/* Olive drab navbar */
.navbar.defense-active {
    background: #3d4519;
}

.navbar.nav-hidden {
    transform: translateY(-100%);
    pointer-events: none;
}

.navbar.nav-hidden .nav-dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.nav-logo {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 36px;
}

.nav-menu {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.nav-actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 45px;
}

.nav-item {
    position: relative;
    height: 86px;
    display: flex;
    align-items: center;
}

.nav-item::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -20px;
    width: calc(100% + 40px);
    height: 30px;
}

.nav-item > a {
    display: inline-flex;
    align-items: center;
    height: auto;
    padding: 8px 0;
}

.nav-menu a,
.nav-actions a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-actions a:hover {
    color: #808080;
}

.nav-separator {
    width: 2px;
    height: 24px;
    background: #a8a8a7;
}

.defense-link span {
    color: #3d4519;
    font-weight: 700;
}

.search-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-link .material-icons {
    font-size: 20px;
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #4B5320;
    z-index: 99999;

    transition:
        width 0.25s ease,
        opacity 0.3s ease;

    pointer-events: none;
}


/* ___________________________ */

/* Consumer Products Dropdown */
.consumer-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-height: 360px;

    display: flex;
    background: #f2f2f2;
    padding: 55px 40px;
    gap: 40px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition:
        opacity 0.4s ease,
        transform 0.5s cubic-bezier(0.16,1,0.3,1),
        visibility 0s linear 0.4s;
    pointer-events: none;
}

.consumer-dropdown-item:hover .consumer-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.consumer-separator {
    width: 1px;
    background: #ffffff; /* or olive drab if you want colored */
    margin: 0 20px; /* spacing left/right */
}

/* Each column */
.consumer-col {
    flex: 1;
}

/* Headings */
.consumer-col h4 {
    font-size: 16px;
    margin-bottom: 12px;
}

/* Paragraphs */
.consumer-col p {
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* List */
.consumer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.consumer-col li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 6px;
    cursor: pointer;
}

.toro {
    color: #FF0000; /* Bright Red */
    font-weight: 700; /* optional bold */
}

/* Plus / Minus hover icon */
.list-icon {
    position: relative;
    width: 14px;
    height: 14px;
    display: inline-block;
    flex-shrink: 0;
}

.list-icon .icon-plus,
.list-icon .icon-minus {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    transition:
        opacity 0.55s ease,
        transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.list-icon .icon-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.list-icon .icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.consumer-col li:hover .icon-plus {
    opacity: 0;
    transform: rotate(180deg);
}

.consumer-col li:hover .icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

/* DROPDOWN */

.nav-dropdown {
    position: fixed;
    top: 86px;
    left: 0;

    width: 100%;
    height: 360px;

    background: #000;
    color: #fff;

    display: flex;
    gap: 220px;
    padding: 55px 70px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-35px);

    transition:
        opacity 0.4s ease,
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0s linear 0.4s;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

    transition:
        opacity 0.4s ease,
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0s linear 0s;
}

.dropdown-info {
    width: 420px;

}

.dropdown-info h4,
.dropdown-categories h4 {
    font-size: 16px;
    margin-bottom: 35px;
}

.dropdown-info p {
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
}

.dropdown-categories ul {
    list-style: none;
}

.dropdown-categories li {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 3px;
}

.search-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-link .material-icons {
    font-size: 20px;
}

/* COMPANY PLUS / MINUS ICON */

.company-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.company-icon {
    position: relative;
    width: 14px;
    height: 14px;
    display: inline-block;
}

.icon-plus,
.icon-minus {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    line-height: 1;
    font-weight: 500;

    transition:
        opacity 0.55s ease,
        transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.icon-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

/* =========================
   SOCIAL SECTION (LEFT SIDE)
========================= */

.company-social {
    margin-top: 40px;
}

.company-social h4 {
    font-size: 13px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 100;
}

.company-social .ig {
    font-size: 16px;
    font-weight: 600; /* REQUIRED */
    color: #fff;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.25s ease;
}

.company-social .ig:hover {
    color: #bdbdbd;
}

/* keep company aligned with nav-item system */
.company-item {
    position: relative;
}

/* reuse your existing nav-dropdown BUT adjust layout only for company */
.company-dropdown {
    gap: 120px; /* same spacing system */
}

/* override categories into 2-column grid */
.company-grid {
    display: flex;
    gap: 80px;
}

/* container stays normal flex */
.company-grid {
    display: flex;
    gap: 80px;
}

/* FIRST COLUMN (LEARN MORE) */
.company-grid .company-col:nth-child(1) {
    margin-left: 120px; /* keep default */
}

/* SECOND COLUMN (EXPLORE) */
.company-grid .company-col:nth-child(2) {
    margin-left: 50px; /* adjust this value freely */
}

/* columns inside company only */
.company-col h4 {
    font-size: 16px;
    margin-bottom: 35px;
    color: #fff;
}

.company-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* COMPANY LIST ITEMS WITH ICON */
.company-col li {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 17px;
    font-weight: 400;

    margin-bottom: 6px;
    cursor: pointer;
}

/* =========================
   DEFAULT STATE (+ icon)
========================= */

.company-col .list-icon {
    position: relative;
    width: 14px;
    height: 14px;
    display: inline-block;
    flex-shrink: 0;
}

.company-col .icon-plus,
.company-col .icon-minus {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: 500;

    transition:
        opacity 0.4s ease,
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* DEFAULT = PLUS visible */
.company-col .icon-plus {
    opacity: 1;
    transform: rotate(0deg);
}

/* DEFAULT = MINUS hidden */
.company-col .icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}


/* DELLA DEFENSE MEGA MENU */

.defense-dropdown {
    background: linear-gradient(
        180deg,
        #3d4519 0%,
        #3d4519 50%,
        #3d4519 100%
    );
}

.defense-dropdown .dropdown-info h4,
.defense-dropdown .dropdown-categories h4,
.defense-dropdown .dropdown-info p,
.defense-dropdown .dropdown-categories li {
    color: #ffffff;
}

/* DROPDOWN LIST PLUS / MINUS ICON */

.dropdown-categories li {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 17px;
    font-weight: 400;
    margin-bottom: 6px;

    cursor: pointer;
}

.list-icon {
    position: relative;
    width: 14px;
    height: 14px;
    display: inline-block;
    flex-shrink: 0;
}

.list-icon .icon-plus,
.list-icon .icon-minus {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    line-height: 1;
    font-weight: 500;

    transition:
        opacity 0.55s ease,
        transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.list-icon .icon-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.list-icon .icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.dropdown-categories li:hover .icon-plus {
    opacity: 0;
    transform: rotate(180deg);
}

.dropdown-categories li:hover .icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}



/* =========================
   FIRST PAGE
========================= */

.first-page {
    width: 100%;
    background: #000;
    padding: 0 28px 28px;
}

.hero-placeholder {
    width: 100%;
    height: 770px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.hero-picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-picture .hero-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.business-units {
    width: 100%;
    display: flex;
    gap: 30px;
    padding: 0 28px 28px;
    align-items: stretch;
}

/* BASE CARD */
.unit-card {
    flex: 1;
    height: 480px;

    /* Fallback color */
    background-color: #b3b3b3;

    /* Image */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    position: relative;
    overflow: hidden;
    border-radius: 4px;

    transition: flex 6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Individual backgrounds */
.unit-solutions {
    background-color: #b3b3b3;
    background-image: url("/assets/images/img/DELLASOLUTION.png");
}

.unit-defense {
    background-color: #b3b3b3;
    background-image: url("/assets/images/img/defense/DELLADEFENSE3.png");
}

.unit-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,0.35);

    z-index: 0;
}

.unit-number,
.unit-content {
    position: relative;
    z-index: 1;
    color: #fff;
}



/* =========================
   NUMBER (LOCKED)
========================= */
.unit-number {
    position: absolute;
    top: 60px;
    left: 40px;
    font-size: 50px;
    font-weight: 700;
}

/* =========================
   CONTENT
========================= */
.unit-content {
    position: absolute;
    left: 40px;
    bottom: 40px;
    width: calc(100% - 80px);

    /* Starts lower */
    transform: translateY(45px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Move entire content upward */
.business-units:has(.unit-solutions:hover) .unit-solutions .unit-content,
.business-units:has(.unit-defense:hover) .unit-defense .unit-content {
    transform: translateY(0);
}

/* TITLE */
.unit-content h2 {
    font-size: 35px;
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
}

/* PARAGRAPH */
.unit-content p {
    font-size: 22px;
    line-height: 1.25;
    color: white;

    opacity: 0;
    transform: translateY(18px);

    transition:
        opacity 0.8s ease 0.15s,
        transform 0.8s ease 0.15s;
}

/* Show paragraph */
.business-units:has(.unit-solutions:hover) .unit-solutions p,
.business-units:has(.unit-defense:hover) .unit-defense p {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   SECTOR GRID
========================= */

.sector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    padding: 0 28px 28px;
    background: #000;
}

.sector {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    height: 480px;
    background: #b3b3b3;
}

.sector {
    text-decoration: none;
    color: inherit;
}

.sector-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition: transform 1s ease, filter 1s ease;
}

.sector::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.35),
        rgba(0, 0, 0, 0.1)
    );
    z-index: 1;
}

.sector:hover .sector-img {
    transform: scale(1.05);
    filter: brightness(0.85);
}

.sector-content {
    position: absolute;
    left: 38px;
    right: 38px; 
    bottom: 38px;
    max-width: 520px;
    z-index: 2;

    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.sector:hover .sector-content {
    transform: translateY(-22px);
}

.sector h3,
.sector p {
    color: #fff;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.6),
        0 1px 2px rgba(0, 0, 0, 0.8);
}

.sector h3 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.sector p {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    line-height: 1.25;

    opacity: 0;
    transform: translateY(18px);
    clip-path: inset(0 0 100% 0);

    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        clip-path 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.sector:hover p {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
}

.sector-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.sector-link p {
    margin: 0;
    flex: 1;
}

.sector-arrow-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.sector-arrow {
    font-size: 26px;
    color: #fff;

    opacity: 0;
    transform: translateY(18px);

    transition:
        opacity 0.9s ease,
        transform 0.3s ease;
}

.sector:hover .sector-arrow {
    opacity: 1;
    transform: translateY(0);
}

.sector-arrow-link:hover .sector-arrow {
    transform: translateY(0) scale(1.15);
}

.sector:hover .sector-arrow {
    opacity: 1;
    transform: translateY(0);
}
/* =========================
   DELLA DEFENSE SECTION
========================= */

.defense-section {
    width: 100%;
    background: #b3b3b3;

    padding: 30px;
    margin: 0px;

    width: calc(100%);
}

.defense-header {
    margin-bottom: 12px;
}

.defense-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.defense-header span {
    color: #3d4519;
}

.defense-media {
    display: block;
    width: 100%;
    height: 600px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.defense-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   WHAT DELLA DELIVERS
========================= */

.della-delivers {
    background: #fff;
    color: #000;
    padding: 70px 38px;
}

.delivers-title {
    border-bottom: 2px solid #000;
    padding-bottom: 22px;
}

.delivers-title h2 {
    font-size: 62px;
    font-weight: 400;
}

.delivers-content {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 80px;
    padding: 30px 0;
    border-bottom: 2px solid #000;
}

.delivers-copy h3 {
    font-size: 46px;
    font-weight: 400;
    line-height: 1.2;
    max-width: 850px;
    margin-bottom: 36px;
}

.delivers-copy p {
    font-size: 24px;
    line-height: 1.25;
    max-width: 720px;
}

.delivers-slider {
    position: relative;
    height: 475px;
    background: #f3f3f3;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    padding: 0 38px 58px;

    display: flex;
    align-items: flex-end;

    opacity: 0;
    transform: translateX(45px);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.25),
        rgba(0, 0, 0, 0.05)
    );
    z-index: 1;
}

.slide h3 {
    position: relative;
    z-index: 2;

    font-size: 76px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide h3 {
    font-size: 76px;
    font-weight: 800;
    line-height: 1;
}

.slide-indicators {
    position: absolute;
    left: 38px;
    bottom: 34px;

    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 55px;
    height: 8px;
    background: #d8d8d8;
}

.indicator.active {
    background: #06ad00;
}

.slide-progress {
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 5px;
    background: transparent;
}

.slide-progress-bar {
    height: 100%;
    width: 0%;
    background: #06ad00;
    animation: progressLoad 5s linear infinite;
}

@keyframes progressLoad {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* Blur effect applied to the page content */
.page-content.blur {
    filter: blur(6px); /* adjust blur intensity */
    pointer-events: none; /* optional: prevent interaction while blurred */
    transition: filter 0.3s ease;
}



/* =========================
   FOOTER
========================= */

.footer {
    width: 100%;
    min-height: 420px;
    background: #000;
    color: #fff;

    display: grid;
    grid-template-columns: 1.3fr 1.4fr;
    gap: 80px;

    padding: 46px 32px 36px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 32px;
    width: auto;
    display: block;
    object-fit: contain;

    margin-bottom: 155px;
}

.footer-addresses {
    margin-top: 0;
}

.footer-address h4,
.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.footer-address p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    color: #fff;
}

.footer-line {
    width: 220px;
    height: 1px;
    background: #999;
    margin: 18px 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 90px;
    padding-top: 12px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    color: #9a9a9a;
    margin-bottom: 34px;
}

.footer-col a {
    color: #fff;
    text-decoration: none;

    font-size: 19px;
    font-weight: 100;
    line-height: 1.55;
}

.footer-col a:hover {
    color: #808080;
}

/* =========================
   DESKTOP FOOTER FIX
========================= */

.footer-toggle {
    display: flex;
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 34px;

    color: #9a9a9a;
    font-family: "Geologica", sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: left;

    pointer-events: none;
}

.footer-toggle .footer-icon {
    display: none;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.55;
}

/* Mobile footer accordion */
@media (max-width: 768px) {
    .footer-toggle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;

        margin-bottom: 0;
        padding: 28px 0;

        color: #8f8f8f;
        font-size: 14px;
        font-weight: 700;

        pointer-events: auto;
        cursor: pointer;
    }

    .footer-toggle .footer-icon {
        display: inline-flex;
    }
}

/* Desktop keeps normal footer links visible */
.footer-links {
    display: flex;
    flex-direction: column;
}

/* Mobile footer accordion */
@media (max-width: 768px) {
    .footer-columns {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding-top: 20px;
    }

    .footer-col {
        padding: 0;
    }

    .footer-col h4 {
        display: none;
    }

    .footer-toggle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;

        background: none;
        border: none;
        color: #8f8f8f;

        padding: 28px 0;

        font-family: "Geologica", sans-serif;
        font-size: 14px;
        font-weight: 700;
        text-align: left;
        cursor: pointer;
    }

    .footer-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;

        color: #fff;
        font-size: 30px;
        font-weight: 300;
        line-height: 1;

        transition:
            opacity 0.25s ease,
            transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .footer-col.active .footer-icon {
        transform: rotate(180deg);
    }

    .footer-links {
        max-height: 0;
        overflow: hidden;
        opacity: 0;

        display: flex;
        flex-direction: column;
        gap: 8px;

        transition:
            max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
            opacity 0.35s ease;
    }

    .footer-col.active .footer-links {
        max-height: 260px;
        opacity: 1;
        padding-bottom: 24px;
    }

    @media (max-width: 768px) {
        .footer-col a,
        .footer-links a {
            font-family: "Geologica", sans-serif;
            font-size: 25px;
            font-weight: 500;
            line-height: 1.45;
            color: #fff;
            text-decoration: none;
            -webkit-font-smoothing: antialiased;
            text-rendering: geometricPrecision;
        }
    }
}

/* =========================
   SCROLL TO TOP BUTTON
========================= */

.scroll-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;

    width: 48px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.88);
    color: #ffffff;

    cursor: pointer;
    z-index: 950;

    /* Hidden before the user scrolls down */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.scroll-to-top .material-icons {
    font-size: 24px;
    line-height: 1;
}

/* Visible state added by common.js */
.scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #3d4519;
    border-color: #3d4519;
}

.scroll-to-top:active {
    transform: scale(0.94);
}

.scroll-to-top:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

/* Hide it while the mobile menu is open */
body.mobile-menu-open .scroll-to-top {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Tablet */
@media (max-width: 1100px) {
    .scroll-to-top {
        right: 20px;
        bottom: 20px;

        width: 46px;
        height: 46px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .scroll-to-top {
        right: 16px;
        bottom: 16px;

        width: 44px;
        height: 44px;
    }

    .scroll-to-top .material-icons {
        font-size: 22px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .scroll-to-top {
        right: 14px;
        bottom: 14px;

        width: 42px;
        height: 42px;
    }

    .scroll-to-top .material-icons {
        font-size: 21px;
    }
}

/* Reduce animation for users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
    .scroll-to-top {
        transition: none;
    }
}



/* =========================================================
   RESPONSIVE FIXES - DELLA GROUP HOME
========================================================= */

html,
body {
    width: 100%;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
}

.first-page,
.business-units,
.sector-grid {
    padding-left: clamp(14px, 2vw, 28px);
    padding-right: clamp(14px, 2vw, 28px);
    padding-bottom: clamp(14px, 2vw, 28px);
}

.hero-placeholder {
    height: clamp(420px, 92vh, 820px);
}

.unit-card,
.sector {
    height: clamp(360px, 42vw, 520px);
}

.unit-card {
    transition: none;
}

.unit-number {
    top: clamp(28px, 4vw, 60px);
    left: clamp(22px, 3vw, 40px);
    font-size: clamp(32px, 4vw, 50px);
}

.unit-content {
    left: clamp(22px, 3vw, 40px);
    bottom: clamp(24px, 3vw, 40px);
    width: calc(100% - clamp(44px, 6vw, 80px));
}

.unit-content h2 {
    font-size: clamp(26px, 3vw, 35px);
}

.unit-content p {
    font-size: clamp(15px, 1.7vw, 22px);
}

.sector-content {
    left: clamp(22px, 3vw, 38px);
    right: clamp(22px, 3vw, 38px);
    bottom: clamp(24px, 3vw, 38px);
}

.sector h3 {
    font-size: clamp(24px, 3vw, 30px);
}

.sector p {
    font-size: clamp(15px, 1.6vw, 20px);
}

.defense-section {
    padding: clamp(16px, 2vw, 30px);
}

.defense-header h2 {
    font-size: clamp(30px, 4vw, 42px);
}

.defense-media {
    height: clamp(360px, 52vw, 650px);
}

.della-delivers {
    padding: clamp(38px, 5vw, 70px) clamp(18px, 3vw, 38px);
}

.delivers-title h2 {
    font-size: clamp(34px, 5vw, 62px);
}

.delivers-copy h3 {
    font-size: clamp(28px, 4vw, 46px);
}

.delivers-copy p {
    font-size: clamp(16px, 2vw, 24px);
}

.delivers-slider {
    height: clamp(360px, 40vw, 500px);
}

.slide h3 {
    font-size: clamp(34px, 6vw, 76px);
}

.indicator {
    width: clamp(28px, 4vw, 55px);
}

/* =========================
   MOBILE / COMPACT NAVBAR
========================= */

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 6px;
}

.mobile-menu-btn .material-icons {
    font-size: 34px;
}

.mobile-menu-panel {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    height: calc(100vh - 76px);
    background: #000;
    z-index: 999;

    display: flex;
    flex-direction: column;
    gap: 22px;

    padding: 30px 24px;

    transform: translateX(100%);
    transition: transform 0.35s ease;

    overflow-y: auto;
    overscroll-behavior: contain;
}

body.mobile-menu-open {
    overflow: hidden;
    touch-action: none;
}

.mobile-menu-panel.active {
    transform: translateX(0);
}

.mobile-menu-panel a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    font-family: "Geologica", sans-serif;
}

/* Large desktop */
@media (min-width: 1440px) {
    .page-content {
        max-width: 1920px;
        margin: 0 auto;
        background: #000;
    }

    .navbar {
        padding-left: 42px;
        padding-right: 42px;
    }

    .nav-menu {
        gap: 42px;
    }
}

/* When desktop navbar no longer fits */
@media (max-width: 1100px) {
    .navbar {
        height: 76px;
        padding: 0 22px;
        justify-content: space-between;
    }

    .nav-logo {
        flex: unset;
    }

    .nav-logo img {
        height: 32px;
    }

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-dropdown {
        display: none;
    }

    .page-content.blur {
        filter: none;
        pointer-events: auto;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .business-units {
        gap: 18px;
    }

    .sector-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .sector.infrastructure {
        grid-column: span 2;
    }

    .delivers-content {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .footer-logo {
        margin-bottom: 60px;
    }

    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        height: 70px;
        padding: 0 16px;
    }

    .mobile-menu-panel {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .nav-logo img {
        height: 30px;
    }

    @media (max-width: 768px) {

        /* Hero goes edge-to-edge */
        .first-page {
            padding-left: 0 !important;
            padding-right: 0 !important;
            padding-top: 0;
            padding-bottom: 14px;
        }

        .hero-placeholder {
            width: 100%;
            border-radius: 0;
            height: 730px;
        }

    }

    /* Business Units stacked vertically: 01 then 02 */
/* FORCE BUSINESS UNITS TO SHOW ON MOBILE */
@media (max-width: 768px) {
    .business-units {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 14px !important;
        padding: 0 14px 14px !important;
        background: #000 !important;
    }

    .unit-card {
        display: block !important;
        width: 100% !important;
        min-height: 300px !important;
        height: 300px !important;
        flex: none !important;
        position: relative !important;
        background: #ffffff !important;
        overflow: hidden !important;
    }

    .unit-number {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: absolute !important;
        top: 24px !important;
        left: 20px !important;
        font-size: 30px !important;
        color: #fcfcfc !important;
        z-index: 5 !important;
    }

    .unit-content {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: absolute !important;
        left: 20px !important;
        bottom: 24px !important;
        width: calc(100% - 40px) !important;
        transform: translateY(0) !important;
        z-index: 5 !important;
    }

    .unit-content h2 {
        display: block !important;
        font-size: 24px !important;
        color: #ffffff !important;
    }

    .unit-content p {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        font-size: 14px !important;
        line-height: 1.35 !important;
        color: #ffffff !important;
    }
}

@media (max-width: 480px) {
    .unit-card {
        min-height: 280px !important;
        height: 280px !important;
    }

    .unit-number {
        font-size: 28px !important;
    }

    .unit-content h2 {
        font-size: 22px !important;
    }

    .unit-content p {
        font-size: 13px !important;
    }
}

    .sector-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sector.infrastructure {
        grid-column: auto;
    }

    .sector {
        height: 390px;
    }

    .sector-content {
        transform: translateY(0);
    }

    .sector p,
    .sector-arrow {
        opacity: 1;
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
    }

    .defense-media {
        height: 420px;
    }

    .della-delivers {
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .delivers-content {
        padding: 24px 0;
    }

    .delivers-slider {
        height: 390px;
    }

    .slide {
        padding: 0 22px 52px;
    }

    .slide-indicators {
        left: 22px;
        bottom: 28px;
        gap: 7px;
    }

    .indicator {
        height: 6px;
    }

    .footer {
        padding: 42px 22px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-col h4 {
        margin-bottom: 16px;
    }

    .footer-line {
        width: 100%;
        max-width: 260px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-placeholder {
        height: 730px;
    }

    .business-units {
        flex-direction: column;
        gap: 12px;
    }

    .unit-card {
        width: 100%;
        height: 280px;
    }

    .unit-number {
        top: 20px;
        left: 16px;
        font-size: 28px;
    }

    .unit-content {
        left: 16px;
        bottom: 20px;
        width: calc(100% - 32px);
    }

    .unit-content h2 {
        font-size: 22px;
    }

    .unit-content p {
        font-size: 13px;
        line-height: 1.35;
    }

    .sector {
        height: 360px;
    }

    .sector h3 {
        font-size: 25px;
    }

    .sector p {
        font-size: 14px;
    }

    .defense-media {
        height: 340px;
    }

    .delivers-slider {
        height: 340px;
    }

    .slide h3 {
        font-size: 34px;
        word-break: break-word;
    }

    .footer-address p,
    .footer-col a {
        font-size: 23px;
    }
}

/* =========================
   MOBILE SCROLL REVEAL TEXT
========================= */

@media (max-width: 768px) {
    .unit-content {
        transform: translateY(18px);
        transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .unit-content p,
    .sector p,
    .sector-arrow {
        opacity: 0;
        transform: translateY(18px);
        transition:
            opacity 0.8s ease,
            transform 0.8s ease;
    }

    .unit-card.is-visible .unit-content {
        transform: translateY(0);
    }

    .unit-card.is-visible .unit-content p,
    .sector.is-visible p,
    .sector.is-visible .sector-arrow {
        opacity: 1;
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
    }

    .sector.is-visible .sector-content {
        transform: translateY(0);
    }
}

/* =========================
   MOBILE OFFICE ADDRESSES
========================= */

@media (max-width:768px){

    .footer-left{
        width:100%;
    }

    .footer-logo{
        margin-bottom:50px;
    }

    .footer-addresses{
        display:grid;
        grid-template-columns:1.2fr 1px 1fr;
        align-items:start;
        width:100%;
        margin-bottom:0px;
        gap:18px;
    }

    .footer-line{
        width:1px;
        height:100%;
        min-height:110px;
        background:#4a4a4a;
        margin:0;
    }

    .footer-address{
        width:100%;
    }

    .footer-address h4{
        font-size:13px;
        margin-bottom:12px;
        color:#9a9a9a;
    }

    .footer-address p{
        font-size:13px;
        line-height:1.55;
        color:#fff;
    }
}

/* =========================================================
   DESKTOP 80% VISUAL SCALE
   Makes 100% browser zoom resemble the previous 80% view.
   Tablet and mobile layouts below 1100px remain unchanged.
========================================================= */

@media (min-width: 1101px) {
    body {
        padding-top: 69px;
    }

    .navbar {
        height: 69px;
        padding-left: 22px;
        padding-right: 22px;
    }

    .nav-logo img {
        height: 29px;
    }

    .nav-menu {
        gap: 27px;
    }

    .nav-actions {
        gap: 36px;
    }

    .nav-item {
        height: 69px;
    }

    .nav-item::after {
        left: -16px;
        width: calc(100% + 32px);
        height: 24px;
    }

    .nav-item > a {
        padding: 6px 0;
    }

    .nav-menu a,
    .nav-actions a {
        font-size: 12px;
    }

    .nav-separator {
        width: 2px;
        height: 19px;
    }

    .search-link,
    .company-link {
        gap: 6px;
    }

    .search-link .material-icons {
        font-size: 16px;
    }

    .company-icon,
    .list-icon,
    .company-col .list-icon {
        width: 11px;
        height: 11px;
    }

    .icon-plus,
    .icon-minus,
    .list-icon .icon-plus,
    .list-icon .icon-minus,
    .company-col .icon-plus,
    .company-col .icon-minus {
        font-size: 14px;
    }

    #page-loader {
        height: 3px;
    }

    .nav-dropdown {
        top: 69px;
        height: 288px;
        gap: 176px;
        padding: 44px 56px;
        transform: translateY(-28px);
    }

    .consumer-dropdown {
        min-height: 288px;
        padding: 44px 32px;
        gap: 32px;
        transform: translateY(-16px);
    }

    .consumer-separator {
        margin: 0 16px;
    }

    .consumer-col h4,
    .dropdown-info h4,
    .dropdown-categories h4,
    .company-col h4 {
        font-size: 13px;
    }

    .consumer-col h4 {
        margin-bottom: 10px;
    }

    .dropdown-info h4,
    .dropdown-categories h4,
    .company-col h4 {
        margin-bottom: 28px;
    }

    .consumer-col p {
        font-size: 11px;
        margin-bottom: 20px;
    }

    .consumer-col li,
    .dropdown-categories li,
    .company-col li {
        gap: 8px;
        font-size: 14px;
        margin-bottom: 5px;
    }

    .dropdown-info {
        width: 336px;
    }

    .dropdown-info p {
        font-size: 13px;
    }

    .company-social {
        margin-top: 32px;
    }

    .company-social h4 {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .company-social .ig {
        font-size: 13px;
    }

    .company-dropdown {
        gap: 96px;
    }

    .company-grid {
        gap: 64px;
    }

    .company-grid .company-col:nth-child(1) {
        margin-left: 96px;
    }

    .company-grid .company-col:nth-child(2) {
        margin-left: 40px;
    }

    .first-page,
    .business-units,
    .sector-grid {
        padding-left: clamp(11px, 1.6vw, 22px);
        padding-right: clamp(11px, 1.6vw, 22px);
        padding-bottom: clamp(11px, 1.6vw, 22px);
    }

    .hero-placeholder {
        height: clamp(336px, 73.6vh, 656px);
        border-radius: 3px;
    }

    .business-units,
    .sector-grid {
        gap: 24px;
    }

    .unit-card,
    .sector {
        height: clamp(288px, 33.6vw, 416px);
        border-radius: 3px;
    }

    .unit-number {
        top: clamp(22px, 3.2vw, 48px);
        left: clamp(18px, 2.4vw, 32px);
        font-size: clamp(26px, 3.2vw, 40px);
    }

    .unit-content {
        left: clamp(18px, 2.4vw, 32px);
        bottom: clamp(19px, 2.4vw, 32px);
        width: calc(100% - clamp(35px, 4.8vw, 64px));
        transform: translateY(36px);
    }

    .unit-content h2 {
        font-size: clamp(21px, 2.4vw, 28px);
        margin-bottom: 8px;
    }

    .unit-content p {
        font-size: clamp(12px, 1.36vw, 18px);
        transform: translateY(14px);
    }

    .sector-content {
        left: clamp(18px, 2.4vw, 30px);
        right: clamp(18px, 2.4vw, 30px);
        bottom: clamp(19px, 2.4vw, 30px);
        max-width: 416px;
    }

    .sector:hover .sector-content {
        transform: translateY(-18px);
    }

    .sector h3 {
        font-size: clamp(19px, 2.4vw, 24px);
        margin-bottom: 6px;
    }

    .sector p {
        font-size: clamp(12px, 1.28vw, 16px);
        transform: translateY(14px);
    }

    .sector-arrow {
        font-size: 21px;
        transform: translateY(14px);
    }

    .defense-section {
        padding: clamp(13px, 1.6vw, 24px);
    }

    .defense-header {
        margin-bottom: 10px;
    }

    .defense-header h2 {
        font-size: clamp(24px, 3.2vw, 34px);
    }

    .defense-media {
        height: clamp(288px, 41.6vw, 520px);
    }

    .della-delivers {
        padding: clamp(30px, 4vw, 56px) clamp(14px, 2.4vw, 30px);
    }

    .delivers-title {
        padding-bottom: 18px;
    }

    .delivers-title h2 {
        font-size: clamp(27px, 4vw, 50px);
    }

    .delivers-content {
        gap: 64px;
        padding: 24px 0;
    }

    .delivers-copy h3 {
        font-size: clamp(22px, 3.2vw, 37px);
        max-width: 680px;
        margin-bottom: 29px;
    }

    .delivers-copy p {
        font-size: clamp(13px, 1.6vw, 19px);
        max-width: 576px;
    }

    .delivers-slider {
        height: clamp(288px, 32vw, 400px);
    }

    .slide {
        padding: 0 30px 46px;
        transform: translateX(36px);
    }

    .slide h3 {
        font-size: clamp(27px, 4.8vw, 61px);
    }

    .slide-indicators {
        left: 30px;
        bottom: 27px;
        gap: 8px;
    }

    .indicator {
        width: clamp(22px, 3.2vw, 44px);
        height: 6px;
    }

    .slide-progress {
        height: 4px;
    }

    .footer {
        min-height: 336px;
        gap: 64px;
        padding: 37px 26px 29px;
    }

    .footer-logo {
        height: 26px;
        margin-bottom: 124px;
    }

    .footer-address h4,
    .footer-col h4,
    .footer-toggle {
        font-size: 12px;
    }

    .footer-address h4 {
        margin-bottom: 8px;
    }

    .footer-address p {
        font-size: 11px;
    }

    .footer-line {
        width: 176px;
        margin: 14px 0;
    }

    .footer-columns {
        gap: 72px;
        padding-top: 10px;
    }

    .footer-col h4,
    .footer-toggle {
        margin-bottom: 27px;
    }

    .footer-col a,
    .footer-links a {
        font-size: 15px;
    }
}

/* Keep the page comfortably centered on very large monitors. */
@media (min-width: 1440px) {
    .page-content {
        max-width: 1536px;
    }

    .navbar {
        padding-left: 34px;
        padding-right: 34px;
        }

    .nav-menu {
        gap: 34px;
    }
}

/* =========================================================
   FULL RESPONSIVE CONTENT PATCH
   Keeps content filled and proportional at different viewport
   sizes and browser zoom levels.
========================================================= */

/* Never restrict the main website to a fixed desktop width. */
.page-content {
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: hidden;
}

/* Flexible media defaults. */
img,
video {
    display: block;
    width: 100%;
    max-width: 100%;
}

.hero-image,
.sector-img,
.defense-media img,
.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Fluid horizontal spacing shared by the main sections. */
.first-page,
.business-units,
.sector-grid {
    padding-left: clamp(12px, 1.5vw, 28px);
    padding-right: clamp(12px, 1.5vw, 28px);
    padding-bottom: clamp(12px, 1.5vw, 28px);
}

/*
   Aspect ratio allows the media to grow with screen width.
   min/max-height prevent it from becoming excessively short or tall.
*/
.hero-placeholder {
    width: 100%;
    height: auto;
    min-height: clamp(420px, 65vh, 760px);
    aspect-ratio: 16 / 8.2;
}

.business-units {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 1.6vw, 30px);
}

.unit-card {
    width: 100%;
    height: auto;
    min-height: clamp(330px, 31vw, 520px);
    aspect-ratio: 16 / 8.5;
    background-size: cover;
    background-position: center;
}

.sector-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 1.6vw, 30px);
}

.sector {
    width: 100%;
    height: auto;
    min-height: clamp(330px, 30vw, 500px);
    aspect-ratio: 4 / 3;
}

.defense-section {
    width: 100%;
    padding: clamp(16px, 1.6vw, 30px);
}

.defense-media {
    width: 100%;
    height: auto;
    min-height: clamp(360px, 42vw, 680px);
    aspect-ratio: 16 / 7;
}

.della-delivers {
    width: 100%;
    padding:
        clamp(38px, 4vw, 70px)
        clamp(18px, 2.4vw, 38px);
}

.delivers-content {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
    gap: clamp(32px, 4vw, 80px);
}

.delivers-copy,
.delivers-slider {
    min-width: 0;
}

.delivers-title h2 {
    font-size: clamp(34px, 3.3vw, 62px);
}

.delivers-copy h3 {
    font-size: clamp(28px, 2.5vw, 46px);
}

.delivers-copy p {
    font-size: clamp(16px, 1.3vw, 24px);
}

.delivers-slider {
    width: 100%;
    height: auto;
    min-height: clamp(340px, 31vw, 500px);
    aspect-ratio: 4 / 3;
}

.slide h3 {
    max-width: 100%;
    font-size: clamp(32px, 4vw, 76px);
    overflow-wrap: anywhere;
}

/* Allow footer columns to shrink instead of overflowing. */
.footer {
    width: 100%;
    grid-template-columns: minmax(280px, 1.3fr) minmax(0, 1.4fr);
    gap: clamp(36px, 4vw, 80px);
}

.footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(30px, 4.5vw, 90px);
}

.footer-col,
.footer-left,
.footer-columns {
    min-width: 0;
}

.footer-col a,
.footer-links a,
.footer-address p {
    overflow-wrap: anywhere;
}

/* Large displays: fill the full screen instead of stopping at 1536px. */
@media (min-width: 1440px) {
    .page-content {
        width: 100%;
        max-width: none;
    }

    .hero-placeholder {
        min-height: clamp(620px, 70vh, 920px);
    }

    .unit-card,
    .sector {
        min-height: clamp(400px, 29vw, 620px);
    }

    .defense-media {
        min-height: clamp(520px, 40vw, 820px);
    }
}

/* Medium desktop / laptop. */
@media (max-width: 1200px) and (min-width: 769px) {
    .hero-placeholder {
        min-height: clamp(440px, 62vh, 680px);
    }

    .business-units {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sector-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sector.infrastructure {
        grid-column: 1 / -1;
        aspect-ratio: 16 / 7;
    }

    .delivers-content {
        grid-template-columns: 1fr;
    }

    .delivers-slider {
        aspect-ratio: 16 / 8;
    }
}

/* Tablet. */
@media (max-width: 1024px) {
    .hero-placeholder {
        height: auto;
        min-height: clamp(420px, 65vh, 650px);
        aspect-ratio: 16 / 9;
    }

    .unit-card {
        min-height: 340px;
    }

    .footer {
        grid-template-columns: 1fr;
    }
}

/* Mobile. */
@media (max-width: 768px) {
    .first-page {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero-placeholder {
        width: 100%;
        height: auto !important;
        min-height: clamp(480px, 82svh, 730px);
        aspect-ratio: 9 / 13;
        border-radius: 0;
    }

    .business-units {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    /*
       Use background-color rather than the background shorthand.
       The previous shorthand removed background-image on mobile.
    */
    .unit-card {
        width: 100% !important;
        height: auto !important;
        min-height: clamp(290px, 82vw, 390px) !important;
        aspect-ratio: 4 / 3;
        background-color: #b3b3b3 !important;
        background-size: cover !important;
        background-position: center !important;
    }

    .unit-solutions {
        background-image: url("/assets/images/img/DELLASOLUTION.png") !important;
    }

    .unit-defense {
        background-image: url("/assets/images/img/defense/DELLADEFENSE3.png") !important;
    }

    .sector-grid {
        grid-template-columns: 1fr;
    }

    .sector,
    .sector.infrastructure {
        grid-column: auto;
        width: 100%;
        height: auto;
        min-height: clamp(340px, 105vw, 470px);
        aspect-ratio: 4 / 5;
    }

    .defense-media {
        height: auto;
        min-height: clamp(330px, 95vw, 480px);
        aspect-ratio: 4 / 3;
    }

    .delivers-content {
        grid-template-columns: 1fr;
    }

    .delivers-slider {
        height: auto;
        min-height: clamp(330px, 100vw, 430px);
        aspect-ratio: 4 / 3;
    }

    .footer {
        grid-template-columns: 1fr;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }
}

/* Small phones. */
@media (max-width: 480px) {
    .hero-placeholder {
        height: auto !important;
        min-height: clamp(500px, 165vw, 730px);
    }

    .unit-card {
        height: auto !important;
        min-height: clamp(280px, 85vw, 350px) !important;
    }

    .sector {
        height: auto;
        min-height: clamp(330px, 110vw, 430px);
    }

    .defense-media,
    .delivers-slider {
        height: auto;
        min-height: clamp(310px, 95vw, 390px);
    }
}

/* =========================================================
   NAVBAR LOGO ASPECT-RATIO FIX
   Prevents the global img width rule from stretching the logo.
========================================================= */

.nav-logo {
    flex-shrink: 0;
    min-width: 0;
}

.nav-logo a {
    display: inline-flex;
    align-items: center;
    width: auto;
    height: auto;
}

.nav-logo img {
    display: block;
    width: auto !important;
    max-width: min(100%, 360px);
    height: 29px;
    object-fit: contain;
    object-position: left center;
    flex-shrink: 0;
}

/* Tablet navbar */
@media (max-width: 1100px) {
    .nav-logo img {
        width: auto !important;
        max-width: min(72vw, 320px);
        height: 32px;
    }
}

/* Mobile navbar */
@media (max-width: 768px) {
    .nav-logo img {
        width: auto !important;
        max-width: min(70vw, 280px);
        height: 30px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .nav-logo img {
        width: auto !important;
        max-width: 68vw;
        height: 27px;
    }
}


/* =========================================================
   DELLA DELIVERS — SLIDER NAVIGATION ARROWS
========================================================= */

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    background: rgba(0, 0, 0, .48);
    color: #ffffff;
    cursor: pointer;
    opacity: .9;
    transform: translateY(-50%);
    transition: background-color .25s ease, border-color .25s ease, opacity .25s ease, transform .25s ease;
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

.slider-arrow .material-icons {
    font-size: 30px;
    line-height: 1;
    pointer-events: none;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, .78);
    border-color: rgba(255, 255, 255, .8);
    opacity: 1;
}

.slider-arrow.prev:hover { transform: translateY(-50%) translateX(-2px); }
.slider-arrow.next:hover { transform: translateY(-50%) translateX(2px); }
.slider-arrow:active { transform: translateY(-50%) scale(.94); }

.slider-arrow:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .slider-arrow { width: 42px; height: 42px; }
    .slider-arrow.prev { left: 12px; }
    .slider-arrow.next { right: 12px; }
    .slider-arrow .material-icons { font-size: 27px; }
}

@media (max-width: 480px) {
    .slider-arrow { width: 38px; height: 38px; }
    .slider-arrow.prev { left: 9px; }
    .slider-arrow.next { right: 9px; }
    .slider-arrow .material-icons { font-size: 25px; }
}

/* =========================================================
   NAVBAR HASH-LINK / SECTION TARGET SUPPORT
========================================================= */

/*
   The navbar uses links such as:
   /pages/Healthcare.html#diagnostic-tools

   The matching destination page must contain the same id:
   <div id="diagnostic-tools" class="construction-label">Diagnostic Tools</div>
*/

/* Full dropdown row remains clickable. */
.nav-dropdown .dropdown-categories li > a,
.nav-dropdown .consumer-col li > a {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
    font-family: "Geologica", sans-serif;
    font-size: inherit;
    font-weight: inherit;
    line-height: 1.35;
    cursor: pointer;
}

/* Preserve white dropdown text in normal/visited states. */
.nav-dropdown .dropdown-categories li > a,
.nav-dropdown .consumer-col li > a,
.nav-dropdown .dropdown-categories li > a:visited,
.nav-dropdown .consumer-col li > a:visited {
    color: #ffffff;
}

/* Preserve your existing gray hover effect. */
.nav-dropdown .dropdown-categories li > a:hover,
.nav-dropdown .consumer-col li > a:hover {
    color: #808080;
}

/* Anchor controls the layout for consumer rows. */
.consumer-col li {
    display: block;
}

.dropdown-categories li > a .list-icon,
.consumer-col li > a .list-icon {
    flex-shrink: 0;
}

/*
   Put this same rule in Industrial.css, Healthcare.css and
   Infrastructure.css so a hash target is not hidden under the fixed navbar.
*/
.construction-label[id] {
    scroll-margin-top: 100px;
}

@media (min-width: 1101px) {
    .nav-dropdown .dropdown-categories li > a,
    .nav-dropdown .consumer-col li > a {
        gap: 8px;
    }

    .construction-label[id] {
        scroll-margin-top: 90px;
    }
}

@media (max-width: 1100px) {
    .construction-label[id] {
        scroll-margin-top: 96px;
    }
}

@media (max-width: 768px) {
    .construction-label[id] {
        scroll-margin-top: 88px;
    }
}

/* =========================================================
   GLOBAL SEARCH DROPDOWN
   Controlled by assets/js/search.js
========================================================= */

.search-link {
    cursor: pointer;
}

/* =========================================================
   SEARCH PANEL
========================================================= */

.site-search-panel {
    position: fixed;
    top: 69px;
    left: 0;

    width: 100%;
    max-height: min(620px, calc(100vh - 69px));

    background: #000;
    color: #fff;

    z-index: 999;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-24px);

    transition:
        opacity 0.28s ease,
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0s linear 0.45s;
}


/* OPEN STATE */
.site-search-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);

    transition:
        opacity 0.28s ease,
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0s linear 0s;
}


/* =========================================================
   SEARCH INNER CONTAINER
========================================================= */

.site-search-inner {
    width: 100%;

    padding: 34px 42px 32px;

    max-height: min(620px, calc(100vh - 69px));

    overflow-y: auto;

    overscroll-behavior: contain;
}


/* =========================================================
   SEARCH TOP LINE
========================================================= */

.site-search-topline {
    display: flex;
    align-items: center;

    gap: 18px;
}


/* =========================================================
   SEARCH INPUT WRAPPER
========================================================= */

.site-search-field-wrap {
    position: relative;

    flex: 1;

    display: flex;
    align-items: center;

    gap: 14px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}


.site-search-field-wrap .material-icons {
    flex: 0 0 auto;

    color: #fff;

    font-size: 25px;
}


/* =========================================================
   SEARCH INPUT
========================================================= */

.site-search-input {
    width: 100%;
    height: 62px;

    border: 0;
    outline: 0;

    background: transparent;

    color: #fff;

    font-family: "Geologica", sans-serif;

    font-size: clamp(24px, 2.2vw, 38px);

    font-weight: 400;

    letter-spacing: -0.02em;
}


.site-search-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}


/* REMOVE DEFAULT SEARCH X */
.site-search-input::-webkit-search-cancel-button {
    display: none;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.site-search-close {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 50%;

    background: transparent;

    color: #fff;

    cursor: pointer;

    transition:
        background-color 0.22s ease,
        border-color 0.22s ease,
        transform 0.22s ease;
}


.site-search-close:hover {
    background: rgba(255, 255, 255, 0.10);

    border-color: rgba(255, 255, 255, 0.70);
}


.site-search-close:active {
    transform: scale(0.94);
}


.site-search-close .material-icons {
    font-size: 22px;
}


/* =========================================================
   SEARCH HELPER TEXT
========================================================= */

.site-search-helper {
    margin-top: 14px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================================
   SEARCH RESULTS CONTAINER
========================================================= */

.site-search-results {
    margin-top: 26px;
}


/* =========================================================
   SEARCH STATUS
========================================================= */

.site-search-status {
    padding: 12px 0 2px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;
}


/* =========================================================
   SEARCH RESULT GRID
========================================================= */

.site-search-result-list {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 0 34px;
}


/* =========================================================
   INDIVIDUAL SEARCH RESULT
========================================================= */

.site-search-result {
    min-width: 0;

    display: grid;

    grid-template-columns: 1fr auto;

    align-items: center;

    gap: 20px;

    padding: 18px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    color: #fff;

    text-decoration: none;

    transition:
        opacity 0.2s ease,
        padding-left 0.25s ease;
}


.site-search-result:hover {
    padding-left: 8px;
}


/* =========================================================
   RESULT CONTENT
========================================================= */

.site-search-result-main {
    min-width: 0;
}


/* =========================================================
   RESULT META
========================================================= */

.site-search-result-meta {
    display: flex;
    flex-wrap: wrap;

    align-items: center;

    gap: 8px 12px;

    margin-bottom: 6px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 0.06em;
}


/* PRODUCT ID */
.site-search-result-code {
    color: #aab36a;

    font-weight: 600;
}


/* =========================================================
   RESULT TITLE
========================================================= */

.site-search-result-title {
    color: #fff;

    font-size: 18px;

    font-weight: 500;

    line-height: 1.25;
}


/* =========================================================
   RESULT DESCRIPTION
========================================================= */

.site-search-result-description {
    margin-top: 5px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 12px;

    line-height: 1.4;
}


/* =========================================================
   RESULT ARROW
========================================================= */

.site-search-result-arrow {
    color: rgba(255, 255, 255, 0.72);

    font-size: 23px;

    transition: transform 0.25s ease;
}


.site-search-result:hover .site-search-result-arrow {
    transform: translate(3px, -3px);
}


/* =========================================================
   NO RESULTS
========================================================= */

.site-search-empty {
    padding: 24px 0 4px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    color: rgba(255, 255, 255, 0.58);

    font-size: 14px;

    line-height: 1.55;
}


/* =========================================================
   SEARCH OPEN STATE
   Prevent navbar mega menus opening over search
========================================================= */

body.site-search-open .nav-dropdown {
    opacity: 0 !important;

    visibility: hidden !important;

    pointer-events: none !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .site-search-panel {
        top: 76px;

        max-height: calc(100vh - 76px);
    }


    .site-search-inner {
        padding: 28px 24px 30px;

        max-height: calc(100vh - 76px);
    }


    .site-search-result-list {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .site-search-panel {
        top: 70px;

        max-height: calc(100svh - 70px);
    }


    .site-search-inner {
        padding: 24px 18px 28px;

        max-height: calc(100svh - 70px);
    }


    .site-search-topline {
        gap: 12px;
    }


    .site-search-field-wrap {
        gap: 10px;
    }


    .site-search-field-wrap .material-icons {
        font-size: 22px;
    }


    .site-search-input {
        height: 56px;

        font-size: 24px;
    }


    .site-search-close {
        width: 38px;
        height: 38px;

        flex-basis: 38px;
    }


    .site-search-helper {
        font-size: 11px;
    }


    .site-search-results {
        margin-top: 20px;
    }


    .site-search-result {
        padding: 16px 0;
    }


    .site-search-result-title {
        font-size: 17px;
    }


    .site-search-result-description {
        font-size: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .site-search-inner {
        padding-left: 15px;
        padding-right: 15px;
    }


    .site-search-input {
        font-size: 21px;
    }


    .site-search-close {
        width: 36px;
        height: 36px;

        flex-basis: 36px;
    }

}

/* =========================================================
   CUSTOM TEXT SELECTION COLOR
========================================================= */

::selection {
    background: #8A9460; /* light olive drab */
    color: #ffffff;
}

/* Firefox */
::-moz-selection {
    background: #8A9460;
    color: #ffffff;
}

/* =========================================================
   CUSTOM TEXT SELECTION COLOR
========================================================= */

::selection {
    background: #8A9460; /* light olive drab */
    color: #ffffff;
}

/* Firefox */
::-moz-selection {
    background: #8A9460;
    color: #ffffff;
}