
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');


/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;

    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;

    background: #ffffff;

    color: #111111;

    overflow-x: hidden;
}
/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: relative;
    width: 100%;
    height: 105px;

    display: flex;
    align-items: center;

    padding: 0 40px;
    box-sizing: border-box;

    background: #ffffff;

    border-bottom: 1px solid #eeeeee;

    z-index: 1000;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    width: 120px;
    height: 95px;

    display: flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;
}

.logo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
}


/* =========================================================
   DESKTOP RIGHT SIDE
========================================================= */

.nav-right {
    display: flex;
    align-items: center;

    margin-left: 30px;

    gap: 35px;

    flex: 1;
    min-width: 0;
}


/* =========================================================
   DESKTOP NAV LINKS
========================================================= */

.nav-links {
    display: flex;
    align-items: center;

    /*
       Use the complete available width
    */
    flex: 1;
    min-width: 0;

    /*
       Distribute navigation items evenly
    */
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   DESKTOP LINKS
========================================================= */

.nav-links > a,
.products > a {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #222222;

    text-decoration: none;

    /*
       Slightly larger font gives the navigation
       a more balanced visual weight.
    */
    font-size: 16px;

    font-weight: 700;

    white-space: nowrap;

    transition: color 0.2s ease;
}

.nav-links > a:hover,
.products > a:hover {
    color: #777777;
}


/* =========================================================
   PRODUCTS
========================================================= */

.products {
    position: relative;

    flex-shrink: 0;
}

.products > a {
    gap: 8px;
}


/* =========================================================
   PRODUCT ARROW
========================================================= */

.dropdown-arrow {
    width: 15px;
    height: 15px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.imgss {
    width: 15px;
    height: 15px;

    display: block;

    object-fit: contain;

    transition: transform 0.25s ease;
}

.products:hover .imgss {
    transform: rotate(180deg);
}


/* =========================================================
   PRODUCTS DROPDOWN
========================================================= */

.dropdown {
    position: absolute;

    top: calc(100% + 12px);
    left: 50%;

    transform: translateX(-50%);

    width: 215px;

    padding: 8px 0;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 8px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;

    z-index: 1100;
}


/* =========================================================
   DROPDOWN BRIDGE
========================================================= */

.products::after {
    content: "";

    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;
    height: 12px;
}


/* =========================================================
   SHOW DROPDOWN
========================================================= */

.products:hover .dropdown {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* =========================================================
   CATEGORY
========================================================= */

.category {
    position: relative;
}

.category > a {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 12px 18px;

    box-sizing: border-box;

    color: #222222;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition: background 0.2s ease;
}

.category > a:hover {
    background: #f5f5f5;
}


/* =========================================================
   SUBCATEGORY ARROW
========================================================= */

.subcategory-arrow {
    font-size: 21px;

    line-height: 1;

    font-weight: 400;

    transition: transform 0.2s ease;
}

.category:hover .subcategory-arrow {
    transform: translateX(3px);
}


/* =========================================================
   SUBCATEGORY DROPDOWN
========================================================= */

.sub-dropdown {
    position: absolute;

    top: 0;

    left: calc(100% + 5px);

    width: 215px;

    padding: 8px 0;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 8px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;

    z-index: 1200;
}


/* =========================================================
   SUBCATEGORY BRIDGE
========================================================= */

.category::after {
    content: "";

    position: absolute;

    top: 0;
    left: 100%;

    width: 5px;
    height: 100%;
}


/* =========================================================
   SHOW SUBCATEGORY
========================================================= */

.category:hover .sub-dropdown {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* =========================================================
   SUBCATEGORY LINKS
========================================================= */

.sub-dropdown a {
    display: block;

    width: 100%;

    padding: 11px 18px;

    box-sizing: border-box;

    color: #222222;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.sub-dropdown a:hover {
    background: #f5f5f5;

    color: #111111;
}


/* =========================================================
   EMAIL BUTTON
========================================================= */

.email-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    padding: 16px 30px;

    background: #e63946;

    color: #ffffff;

    border-radius: 30px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.email-btn:hover {
    background: #333333;

    transform: translateY(-1px);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    display: none;

    position: static;
}


/* =========================================================
   MOBILE HAMBURGER
========================================================= */

.mobile-menu-button {
    width: 45px;
    height: 45px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 5px;

    cursor: pointer;

    list-style: none;
}

.mobile-menu-button::-webkit-details-marker {
    display: none;
}

.mobile-menu-button span {
    display: block;

    width: 25px;
    height: 2px;

    background: #222222;

    border-radius: 2px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* =========================================================
   HAMBURGER → X
========================================================= */

.mobile-menu[open]
.mobile-menu-button
span:nth-child(1) {

    transform: translateY(7px) rotate(45deg);
}

.mobile-menu[open]
.mobile-menu-button
span:nth-child(2) {

    opacity: 0;
}

.mobile-menu[open]
.mobile-menu-button
span:nth-child(3) {

    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   MOBILE PANEL
========================================================= */

.mobile-menu-panel {
    position: fixed;

    top: 0;
    left: 0;

    width: 50vw;
    height: 100vh;

    background: #ffffff;

    z-index: 9999;

    overflow-y: auto;

    box-shadow: 8px 0 35px rgba(0, 0, 0, 0.15);

    animation: mobileSlideIn 0.3s ease;
}


/* =========================================================
   SLIDE ANIMATION
========================================================= */

@keyframes mobileSlideIn {

    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }

}


/* =========================================================
   MOBILE HEADER
========================================================= */

.mobile-menu-header {
    height: 80px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 0 25px;

    box-sizing: border-box;

    border-bottom: 1px solid #eeeeee;
}

.mobile-menu-title {
    color: #222222;

    font-size: 20px;

    font-weight: 800;
}


/*
   This is only visual.
   The hamburger itself is the close control.
*/

.mobile-menu-close {
    font-size: 12px;

    font-weight: 600;

    color: #999999;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}


/* =========================================================
   MOBILE NAV
========================================================= */

.mobile-nav {
    padding: 15px 25px 40px;

    box-sizing: border-box;
}


/* =========================================================
   MAIN MOBILE LINKS
========================================================= */

.mobile-nav > a,
.mobile-nav > details > summary {

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    padding: 15px 5px;

    box-sizing: border-box;

    color: #222222;

    text-decoration: none;

    font-size: 16px;

    font-weight: 700;

    border-bottom: 1px solid #eeeeee;

    cursor: pointer;

    list-style: none;
}

.mobile-nav > details > summary::-webkit-details-marker {
    display: none;
}

.mobile-nav > a:hover,
.mobile-nav > details > summary:hover {
    color: #777777;
}


/* =========================================================
   MOBILE PRODUCTS
========================================================= */

.mobile-products {
    width: 100%;
}


/* =========================================================
   MOBILE ARROWS
========================================================= */

.mobile-arrow {
    display: inline-block;

    font-size: 24px;

    line-height: 1;

    font-weight: 400;

    transition: transform 0.25s ease;
}

.mobile-products[open]
> summary
.mobile-arrow,

.mobile-product-list details[open]
> summary
.mobile-arrow {

    transform: rotate(90deg);
}


/* =========================================================
   MOBILE PRODUCT LIST
========================================================= */

.mobile-product-list {
    padding: 5px 0 5px 15px;

    box-sizing: border-box;
}


/* =========================================================
   MOBILE PRODUCT CATEGORIES
========================================================= */

.mobile-product-list > a,
.mobile-product-list > details > summary {

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    padding: 12px 5px;

    box-sizing: border-box;

    color: #444444;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    list-style: none;
}

.mobile-product-list > details > summary::-webkit-details-marker {
    display: none;
}

.mobile-product-list > a:hover,
.mobile-product-list > details > summary:hover {
    color: #111111;
}


/* =========================================================
   MOBILE SUB LINKS
========================================================= */

.mobile-sub-links {
    padding: 3px 0 5px 18px;

    margin-left: 5px;

    border-left: 1px solid #eeeeee;

    box-sizing: border-box;
}

.mobile-sub-links a {
    display: block;

    padding: 9px 10px;

    color: #666666;

    text-decoration: none;

    font-size: 13px;

    font-weight: 500;

    border-radius: 4px;
}

.mobile-sub-links a:hover {
    background: #f5f5f5;

    color: #222222;
}


/* =========================================================
   MOBILE EMAIL
========================================================= */

.mobile-email {

    display: flex !important;

    align-items: center;

    justify-content: center !important;

    margin-top: 25px;

    padding: 14px 20px !important;

    background: #e63946;

    color: #ffffff !important;

    border: none !important;

    border-radius: 30px;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.mobile-email:hover {
    background: #333333;

    color: #ffffff !important;

    transform: translateY(-1px);
}


/* =========================================================
   TABLET
   1200px
========================================================= */

@media (max-width: 1200px) {

    .navbar {
        padding: 0 25px;
    }

    .nav-right {
        margin-left: 20px;

        gap: 25px;
    }

    .nav-links {
        gap: 25px;
    }

    .nav-links > a,
    .products > a {
        font-size: 14px;
    }

    .email-btn {
        padding: 14px 22px;

        font-size: 14px;
    }

}


/* =========================================================
   SMALL TABLET
   1050px
========================================================= */

@media (max-width: 1050px) {

    .navbar {
        padding: 0 20px;
    }

    .logo {
        width: 105px;

        height: 85px;
    }

    .nav-right {
        margin-left: 15px;

        gap: 15px;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-links > a,
    .products > a {
        font-size: 12px;
    }

    .email-btn {
        padding: 11px 17px;

        font-size: 12px;
    }

}


/* =========================================================
   MOBILE
   768px AND BELOW
========================================================= */

@media (max-width: 768px) {

    .navbar {

        width: 100%;

        height: 80px;

        min-height: 80px;

        padding: 0 20px;

        display: flex;

        align-items: center;

        justify-content: space-between;
    }


    /* Logo */

    .logo {
        width: 100px;

        height: 70px;
    }


    /* Hide desktop */

    .nav-right {
        display: none;
    }


    /* Show mobile */

    .mobile-menu {
        display: block;
    }

}


/* =========================================================
   MOBILE PANEL - 600px
========================================================= */

@media (max-width: 600px) {

    .mobile-menu-panel {
        width: 75vw;
    }

}


/* =========================================================
   SMALL MOBILE - 480px
========================================================= */

@media (max-width: 480px) {

    .navbar {

        height: 75px;

        min-height: 75px;

        padding: 0 15px;
    }


    .logo {

        width: 90px;

        height: 65px;
    }


    .mobile-menu-panel {

        width: 85vw;
    }


    .mobile-nav {

        padding-left: 20px;

        padding-right: 20px;
    }

}


/* =========================================================
   VERY SMALL MOBILE - 360px
========================================================= */

@media (max-width: 360px) {

    .mobile-menu-panel {

        width: 90vw;
    }


    .mobile-menu-header {

        padding: 0 20px;
    }


    .mobile-menu-title {

        font-size: 18px;
    }


    .mobile-nav {

        padding-left: 18px;

        padding-right: 18px;
    }

}


/* =========================================================
   VIDEO BANNER
========================================================= */

.video-banner {
    position: relative;

    width: 100%;

    height: calc(100vh - 105px);

    min-height: 500px;

    overflow: hidden;
}


/* =========================================================
   VIDEO
========================================================= */

.banner-video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: 1;
}


/* =========================================================
   VIDEO OVERLAY
========================================================= */

.video-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.35);

    z-index: 2;
}


/* =========================================================
   VIDEO CONTENT
========================================================= */

.video-content {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 90%;
    max-width: 900px;

    text-align: center;

    color: #ffffff;

    z-index: 3;
}

.video-content h1 {
    margin-bottom: 20px;

    font-size: 64px;

    font-weight: 800;

    line-height: 1.1;
}

.video-content p {
    margin-bottom: 30px;

    font-size: 22px;

    font-weight: 500;

    line-height: 1.5;
}


/* =========================================================
   BANNER BUTTON
========================================================= */

.banner-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 15px 30px;

    background: #e63946;

    color: #ffffff;

    border-radius: 30px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.banner-btn:hover {
    background: #ffffff;

    color: #111111;

    transform: translateY(-2px);
}


/* =========================================================
   PRODUCTS SECTION
========================================================= */

.products-section {
    position: relative;
    width: 100%;
    padding: 100px 0 90px;
    background:
        radial-gradient(circle at 10% 20%, rgba(245, 74, 74, 0.05), transparent 28%),
        radial-gradient(circle at 90% 80%, rgba(245, 74, 74, 0.04), transparent 30%),
        #fafafa;
    overflow: hidden;
}


/* =========================================================
   SUBTLE BACKGROUND DETAILS
========================================================= */

.products-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: rgba(0, 0, 0, 0.025);
    pointer-events: none;
}

.products-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(245, 74, 74, 0.06);
    border-radius: 50%;
    right: -180px;
    top: 80px;
    pointer-events: none;
}


/* =========================================================
   PRODUCTS HEADING
========================================================= */

.products-heading {
    position: relative;
    z-index: 2;

    max-width: 800px;
    margin: 0 auto 55px;

    padding: 0 20px;

    text-align: center;
}


.products-heading span {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 16px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 4px;
    text-transform: uppercase;

    color: #f54a4a;
}


/* Small lines beside heading label */

.products-heading span::before,
.products-heading span::after {
    content: "";

    display: block;

    width: 28px;
    height: 1px;

    background: #f54a4a;
}


.products-heading h2 {
    margin: 0;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1.5px;

    color: #111111;
}


/* =========================================================
   OPTIONAL HEADING DESCRIPTION
========================================================= */

.products-heading p {
    max-width: 620px;

    margin: 18px auto 0;

    font-size: 15px;

    line-height: 1.7;

    color: #707070;
}


/* =========================================================
   PRODUCT SLIDER
========================================================= */

.product-slider {
    position: relative;

    width: 100%;

    overflow: hidden;

    padding: 10px 0 20px;
}


/* Fade edges */

.product-slider::before,
.product-slider::after {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    width: 120px;

    z-index: 5;

    pointer-events: none;
}

.product-slider::before {
    left: 0;

    background: linear-gradient(to right,
            #fafafa 0%,
            rgba(250, 250, 250, 0) 100%);
}

.product-slider::after {
    right: 0;

    background: linear-gradient(to left,
            #fafafa 0%,
            rgba(250, 250, 250, 0) 100%);
}


/* =========================================================
   PRODUCT TRACK
========================================================= */

.product-track {
    display: flex;

    align-items: stretch;

    width: max-content;

    gap: 24px;

    padding: 0 12px;

    animation: productScroll 32s linear infinite;

    will-change: transform;
}


/* Pause on hover */

.product-slider:hover .product-track {
    animation-play-state: paused;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {
    position: relative;

    width: 240px;

    flex-shrink: 0;

    text-align: center;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.04);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.product-card:hover {
    transform: translateY(-8px);

    border-color: rgba(245, 74, 74, 0.25);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   PRODUCT IMAGE AREA
========================================================= */

.product-card img {
    width: 100%;

    height: 165px;

    display: block;

    object-fit: contain;

    object-position: center;

    padding: 18px;

    background:
        linear-gradient(135deg,
            #ffffff 0%,
            #f7f7f7 100%);

    transition:
        transform 0.4s ease;
}


.product-card:hover img {
    transform: scale(1.06);
}


/* =========================================================
   RED ACCENT LINE
========================================================= */

.product-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 0;
    height: 3px;

    background: #f54a4a;

    transform: translateX(-50%);

    transition: width 0.35s ease;

    z-index: 3;
}


.product-card:hover::before {
    width: 55%;
}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.product-card h3 {
    margin: 17px 14px 7px;

    font-size: 17px;

    line-height: 1.3;

    font-weight: 800;

    color: #111111;
}


.product-card p {
    min-height: 42px;

    margin: 0 16px 19px;

    font-size: 12px;

    line-height: 1.6;

    color: #777777;
}


/* =========================================================
   AUTOMATIC INFINITE SLIDER
========================================================= */

@keyframes productScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 12px));
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    .products-section {
        padding: 85px 0 75px;
    }

    .product-track {
        gap: 20px;
    }

    .product-card {
        width: 220px;
    }

    .product-card img {
        height: 155px;
    }

}


/* =========================================================
   SMALL LAPTOP
========================================================= */

@media (max-width: 1000px) {

    .products-heading {
        margin-bottom: 45px;
    }

    .products-heading h2 {
        font-size: 40px;
    }

    .product-card {
        width: 205px;
    }

    .product-card img {
        height: 145px;
    }

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 768px) {

    .products-section {
        padding: 70px 0 65px;
    }

    .products-heading {
        margin-bottom: 38px;

        padding: 0 18px;
    }

    .products-heading span {
        font-size: 10px;

        letter-spacing: 3px;

        gap: 8px;
    }

    .products-heading span::before,
    .products-heading span::after {
        width: 20px;
    }

    .products-heading h2 {
        font-size: 34px;

        letter-spacing: -1px;
    }

    .products-heading p {
        font-size: 14px;

        margin-top: 14px;
    }

    .product-slider {
        padding-bottom: 15px;
    }

    .product-slider::before,
    .product-slider::after {
        width: 60px;
    }

    .product-track {
        gap: 16px;

        animation-duration: 28s;
    }

    .product-card {
        width: 180px;

        border-radius: 13px;
    }

    .product-card img {
        height: 125px;

        padding: 14px;
    }

    .product-card h3 {
        margin: 14px 10px 6px;

        font-size: 15px;
    }

    .product-card p {
        margin: 0 10px 15px;

        font-size: 11px;

        line-height: 1.5;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .products-section {
        padding: 60px 0 55px;
    }

    .products-heading {
        margin-bottom: 32px;
    }

    .products-heading h2 {
        font-size: 30px;
    }

    .products-heading p {
        font-size: 13px;
    }

    .product-track {
        gap: 14px;

        animation-duration: 25s;
    }

    .product-card {
        width: 165px;
    }

    .product-card img {
        height: 115px;

        padding: 12px;
    }

    .product-card h3 {
        font-size: 14px;
    }

    .product-card p {
        font-size: 10.5px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .products-section {
        padding: 50px 0;
    }

    .products-heading {
        padding: 0 15px;
    }

    .products-heading span {
        font-size: 9px;

        letter-spacing: 2.5px;
    }

    .products-heading h2 {
        font-size: 27px;
    }

    .products-heading p {
        font-size: 12px;
    }

    .product-slider::before,
    .product-slider::after {
        width: 35px;
    }

    .product-track {
        gap: 12px;
    }

    .product-card {
        width: 150px;

        border-radius: 12px;
    }

    .product-card img {
        height: 105px;
    }

    .product-card h3 {
        font-size: 13px;

        margin-top: 12px;
    }

    .product-card p {
        font-size: 10px;

        margin-bottom: 13px;
    }

}


 /* =========================================================
   INDUSTRY SECTION
========================================================= */

.industry-section {
    position: relative;

    width: 100%;
    min-height: 100vh;

    background-image: url("../images/DSC.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    overflow: hidden;
}


/* =========================================================
   DARK OVERLAY
========================================================= */

.industry-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.68) 45%,
            rgba(0, 0, 0, 0.58) 100%
        );

    z-index: 1;
}


/* =========================================================
   SUBTLE RED GLOW
========================================================= */

.industry-section::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -250px;
    bottom: -250px;

    border-radius: 50%;

    border: 1px solid rgba(245, 74, 74, 0.15);

    box-shadow:
        0 0 0 60px rgba(245, 74, 74, 0.025),
        0 0 0 120px rgba(245, 74, 74, 0.015);

    z-index: 1;

    pointer-events: none;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.industry-container {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    padding: 110px 60px;

    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 90px;

    align-items: start;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.industry-left {
    color: #ffffff;
}


/* =========================================================
   LABEL
========================================================= */

.industry-label {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;
}


.industry-label::before {
    content: "";

    width: 38px;
    height: 2px;

    background: #f54a4a;
}


.industry-label span {
    display: inline-block;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3.5px;

    text-transform: uppercase;

    color: #f54a4a;
}


/* =========================================================
   MAIN LEFT HEADING
========================================================= */

.industry-left > h2 {
    max-width: 680px;

    margin: 0 0 48px;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.12;

    letter-spacing: -1px;

    font-weight: 800;

    color: #ffffff;
}


/* =========================================================
   INDUSTRY ITEMS
========================================================= */

.industry-item {
    position: relative;

    max-width: 650px;

    padding: 25px 0 25px 24px;

    border-top: 1px solid rgba(255, 255, 255, 0.18);

    transition:
        padding-left 0.3s ease,
        border-color 0.3s ease;
}


.industry-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}


/* Red vertical indicator */

.industry-item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 25px;

    width: 3px;
    height: 0;

    background: #f54a4a;

    transition: height 0.3s ease;
}


.industry-item:hover {
    padding-left: 30px;

    border-color: rgba(245, 74, 74, 0.4);
}


.industry-item:hover::before {
    height: calc(100% - 50px);
}


/* =========================================================
   INDUSTRY ITEM HEADING
========================================================= */

.industry-item h3 {
    margin: 0 0 9px;

    font-size: 20px;

    line-height: 1.3;

    font-weight: 750;

    color: #ffffff;
}


/* =========================================================
   INDUSTRY ITEM DESCRIPTION
========================================================= */

.industry-item p {
    max-width: 550px;

    margin: 0;

    font-size: 14px;

    line-height: 1.75;

    font-weight: 400;

    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.industry-right {
    position: relative;

    display: flex;

    align-items: flex-start;

    padding-top: 65px;

    padding-left: 25px;
}


/* Vertical divider */

.industry-right::before {
    content: "";

    position: absolute;

    left: 0;
    top: 70px;

    width: 1px;
    height: 150px;

    background:
        linear-gradient(
            to bottom,
            #f54a4a,
            rgba(245, 74, 74, 0)
        );
}


/* =========================================================
   RIGHT HEADING
========================================================= */

.industry-right h1 {
    max-width: 620px;

    margin: 0;

    font-size: clamp(46px, 5.2vw, 72px);

    line-height: 1.03;

    letter-spacing: -2px;

    font-weight: 850;

    color: #ffffff;
}


/* =========================================================
   OPTIONAL RED HIGHLIGHT
========================================================= */

.industry-right h1 span {
    color: #f54a4a;
}


/* =========================================================
   SMALL DECORATIVE NUMBER / DETAIL
========================================================= */

.industry-right::after {
    content: "01";

    position: absolute;

    right: 10px;
    bottom: -20px;

    font-size: 110px;

    line-height: 1;

    font-weight: 900;

    color: rgba(255, 255, 255, 0.045);

    pointer-events: none;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .industry-container {
        grid-template-columns: 1fr 0.85fr;

        gap: 60px;

        padding: 90px 45px;
    }

    .industry-right h1 {
        font-size: 52px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .industry-container {
        grid-template-columns: 1fr;

        gap: 55px;

        padding: 85px 40px;
    }

    .industry-right {
        padding-top: 0;

        padding-left: 20px;
    }

    .industry-right::before {
        top: 5px;

        height: 120px;
    }

    .industry-right h1 {
        max-width: 700px;

        font-size: 48px;
    }

    .industry-right::after {
        display: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .industry-section {
        min-height: auto;

        background-attachment: scroll;

        background-position: center;
    }


    .industry-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.78),
                rgba(0, 0, 0, 0.82)
            );
    }


    .industry-container {
        padding: 70px 25px;

        gap: 50px;
    }


    /* Label */

    .industry-label {
        gap: 9px;

        margin-bottom: 18px;
    }

    .industry-label::before {
        width: 28px;
    }

    .industry-label span {
        font-size: 10px;

        letter-spacing: 2.5px;
    }


    /* Heading */

    .industry-left > h2 {
        font-size: 31px;

        line-height: 1.18;

        margin-bottom: 38px;
    }


    /* Items */

    .industry-item {
        padding: 20px 0 20px 18px;
    }

    .industry-item::before {
        top: 20px;
    }

    .industry-item:hover {
        padding-left: 22px;
    }

    .industry-item:hover::before {
        height: calc(100% - 40px);
    }

    .industry-item h3 {
        font-size: 18px;
    }

    .industry-item p {
        font-size: 13px;

        line-height: 1.65;
    }


    /* Right */

    .industry-right {
        padding-left: 18px;
    }

    .industry-right::before {
        top: 2px;

        height: 100px;
    }

    .industry-right h1 {
        font-size: 40px;

        line-height: 1.1;

        letter-spacing: -1px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .industry-container {
        padding: 60px 20px;

        gap: 42px;
    }


    .industry-left > h2 {
        font-size: 27px;

        line-height: 1.2;
    }


    .industry-item {
        padding: 18px 0 18px 16px;
    }

    .industry-item h3 {
        font-size: 16px;
    }

    .industry-item p {
        font-size: 12px;

        line-height: 1.65;
    }


    .industry-right {
        padding-left: 16px;
    }

    .industry-right h1 {
        font-size: 32px;

        line-height: 1.12;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .industry-item,
    .industry-item::before {
        transition: none;
    }

}


/* ==================3x3 Grid Section============================== */


/* =========================================================
   INDUSTRIES SECTION
========================================================= */

.industries-section {
    width: 100%;
    padding: 80px 30px 100px;

    background:
        radial-gradient(circle at 10% 20%, rgba(242, 56, 67, 0.045), transparent 28%),
        radial-gradient(circle at 90% 80%, rgba(36, 59, 93, 0.05), transparent 30%),
        #f8f9fb;

    box-sizing: border-box;

    font-family: "Afacad", sans-serif;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.industries-heading {
    text-align: center;
    margin-bottom: 55px;
}

.industries-heading span {
    display: inline-block;

    margin-bottom: 10px;
    padding: 6px 15px;

    color: #db4826;
    background: rgba(242, 56, 67, 0.08);

    border-radius: 50px;

    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.industries-heading h2 {
    position: relative;

    margin: 0;

    color: #243b5d;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.heading-line {
    width: 65px;
    height: 3px;

    margin: 15px auto 0;

    background: #db4826;

    border-radius: 10px;

    position: relative;
}

.heading-line::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 0;

    width: 18px;
    height: 3px;

    transform: translateX(-50%);

    /* background: #243b5d; */

    border-radius: 10px;
}


/* =========================================================
   INDUSTRIES GRID
========================================================= */

.industries-container {
    width: 100%;
    max-width: 1050px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 45px 24px;
}


/* =========================================================
   INDUSTRY CARD
========================================================= */

.industry-card {
    position: relative;

    min-width: 0;

    padding: 0 0 25px;

    background: #ffffff;

    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(36, 59, 93, 0.06);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.industry-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(36, 59, 93, 0.13);
}


/* =========================================================
   IMAGE
========================================================= */

.industry-image {
    position: relative;

    width: 100%;
    height: 300px;

    overflow: hidden;
}

.industry-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 55%,
            rgba(20, 34, 55, 0.15)
        );

    pointer-events: none;
}

.industry-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.6s cubic-bezier(.2,.7,.2,1);
}

.industry-card:hover .industry-image img {
    transform: scale(1.08);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.industry-card h3 {
    margin: 23px 22px 0;

    color: #243b5d;

    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
}


/* =========================================================
   RED ACCENT
========================================================= */

.card-line {
    width: 45px;
    height: 3px;

    margin: 10px 22px 0;

    background: #db4826;

    border-radius: 5px;

    transition: width 0.35s ease;
}

.industry-card:hover .card-line {
    width: 75px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.industry-card p {
    margin: 15px 22px 0;

    color: #6d7888;

    font-size: 13px;
    line-height: 1.75;
    font-weight: 400;
}


/* =========================================================
   SUBTLE CARD BORDER
========================================================= */

.industry-card::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background: #db4826;

    transition: width 0.4s ease;

    z-index: 2;
}

.industry-card:hover::before {
    width: 100%;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .industries-section {
        padding: 70px 25px 80px;
    }

    .industries-container {
        max-width: 760px;

        grid-template-columns: repeat(2, 1fr);

        gap: 35px 20px;
    }

    .industry-image {
        height: 300px;
    }

    .industries-heading h2 {
        font-size: 34px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .industries-section {
        padding: 60px 18px 70px;
    }

    .industries-heading {
        margin-bottom: 38px;
    }

    .industries-heading span {
        font-size: 12px;

        padding: 6px 13px;
    }

    .industries-heading h2 {
        font-size: 29px;
    }

    .heading-line {
        margin-top: 12px;
    }

    .industries-container {
        max-width: 430px;

        grid-template-columns: 1fr;

        gap: 30px;
    }

    .industry-card {
        border-radius: 14px;
    }

    .industry-image {
        height: 280px;
    }

    .industry-card h3 {
        margin: 20px 20px 0;

        font-size: 19px;
    }

    .card-line {
        margin-left: 20px;
    }

    .industry-card p {
        margin: 14px 20px 0;

        font-size: 13px;
        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .industries-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .industries-heading h2 {
        font-size: 26px;
    }

    .industry-image {
        height: 255px;
    }

    .industry-card h3 {
        font-size: 18px;
    }

}

















/* ===============================CONTACT US============================= */
/* ===============================CONTACT US============================= */
/* ===============================CONTACT US============================= */
/* ===============================CONTACT US============================= */

/* =========================================================
   INDUSTRIAL CTA SECTION
========================================================= */

.industrial-cta {
    position: relative;

    width: 100%;

    padding: 65px 8%;

    background: #243b5d;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   DECORATIVE ELEMENTS
========================================================= */

.industrial-cta::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: -180px;
    right: 8%;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 50%;
}

.industrial-cta::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    bottom: -120px;
    left: 5%;

    border: 1px solid rgba(242, 56, 67, 0.35);

    border-radius: 50%;
}


/* =========================================================
   CONTENT
========================================================= */

.industrial-cta-content {
    position: relative;
    z-index: 2;

    max-width: 1150px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 70px;
}


/* =========================================================
   HEADING
========================================================= */

.industrial-cta-heading {
    max-width: 680px;
}

.cta-label {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 15px;

    color: #db4826;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}

.cta-label::before {
    content: "";

    width: 28px;
    height: 2px;

    background: #db4826;
}

.industrial-cta h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(32px, 4vw, 50px);

    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -0.8px;
}

.industrial-cta h2 span {
    color: #e63946;
}


/* =========================================================
   ACTION AREA
========================================================= */

.industrial-cta-action {
    flex-shrink: 0;

    min-width: 230px;

    padding-left: 35px;

    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.industrial-cta-action p {
    margin: 0 0 22px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 14px;

    line-height: 1.6;

    max-width: 260px;
}


/* =========================================================
   CONTACT BUTTON
========================================================= */

.cta-button {
    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    min-width: 155px;

    padding: 13px 15px 13px 20px;

    color: #ffffff;

    background: #e63946;

    border: 1px solid #e63946;

    border-radius: 5px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    overflow: hidden;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.cta-button::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 0;
    height: 100%;

    background: #ffffff;

    transition: width 0.35s ease;

    z-index: 0;
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    color: #243b5d;

    transform: translateY(-3px);
}

.cta-button:hover::before {
    width: 100%;
}


/* =========================================================
   ARROW
========================================================= */

.cta-arrow {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 31px;
    height: 31px;

    background: rgba(255, 255, 255, 0.16);

    border-radius: 50%;

    font-size: 17px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: rotate(45deg);

    background: #243b5d;

    color: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .industrial-cta {
        padding: 55px 30px;
    }

    .industrial-cta-content {
        gap: 40px;
    }

    .industrial-cta h2 {
        font-size: 36px;
    }

    .industrial-cta-action {
        min-width: 210px;

        padding-left: 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .industrial-cta {
        padding: 50px 22px;
    }

    .industrial-cta-content {
        flex-direction: column;

        align-items: flex-start;

        gap: 30px;
    }

    .industrial-cta-heading {
        max-width: 100%;
    }

    .industrial-cta h2 {
        font-size: 32px;
    }

    .industrial-cta-action {
        width: 100%;

        padding-left: 0;
        padding-top: 25px;

        border-left: none;

        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    .industrial-cta-action p {
        max-width: 350px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .industrial-cta {
        padding: 45px 18px;
    }

    .industrial-cta h2 {
        font-size: 28px;
    }

    .cta-label {
        font-size: 11px;

        letter-spacing: 1.5px;
    }

}



/* =====================FOOOOOOOOOOTTTER=========================== */
/* =====================FOOOOOOOOOOTTTER=========================== */
/* =====================FOOOOOOOOOOTTTER=========================== */
/* =====================FOOOOOOOOOOTTTER=========================== */


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    position: relative;

    background: #111c2b;
    color: #ffffff;

    overflow: hidden;
}


/* =========================================================
   BACKGROUND DETAILS
========================================================= */

.site-footer::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -180px;

    border: 1px solid rgba(240, 136, 37, 0.10);

    border-radius: 50%;

    pointer-events: none;
}


.site-footer::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    bottom: -180px;
    left: -150px;

    background: rgba(240, 136, 37, 0.035);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.footer-main {
    position: relative;

    z-index: 1;

    padding: 75px 40px 65px;
}


.footer-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    /*
       Company | Menu | Locations
    */
    grid-template-columns:
        1fr
        0.65fr
        2.5fr;

    gap: 60px;

    box-sizing: border-box;
}


/* =========================================================
   COMPANY
========================================================= */

.footer-company {
    padding-right: 10px;
}


.footer-logo {
    display: inline-flex;

    align-items: center;

    margin-bottom: 25px;
}


.footer-logo img {
    width: 145px;
    height: auto;

    display: block;
}


.footer-description {
    max-width: 390px;

    margin: 0 0 24px;

    color: #aeb8c5;

    font-size: 15px;
    line-height: 1.9;

    font-weight: 400;
}


.footer-about-link {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.3s ease;
}


.footer-about-link span {
    color: #e63946;

    font-size: 19px;

    transition: transform 0.3s ease;
}


.footer-about-link:hover {
    color: #e63946;
}


.footer-about-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   HEADINGS
========================================================= */

.footer-menu h3,
.footer-locations h3,
.footer-contact h3 {
    position: relative;

    margin: 7px 0 28px;

    padding-bottom: 15px;

    color: #ffffff;

    font-size: 20px;
    font-weight: 800;

    letter-spacing: 0.2px;
}


.footer-menu h3::after,
.footer-locations h3::after,
.footer-contact h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 38px;
    height: 2px;

    background: #e63946;
}


/* =========================================================
   SITE MENU
========================================================= */

.footer-menu ul {
    list-style: none;

    margin: 0;
    padding: 0;
}


.footer-menu li {
    margin-bottom: 13px;
}


.footer-menu a {
    position: relative;

    color: #aeb8c5;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}


.footer-menu a::before {
    content: "";

    position: absolute;

    left: -15px;
    top: 50%;

    width: 5px;
    height: 5px;

    background: #e63946;

    border-radius: 50%;

    opacity: 0;

    transform: translateY(-50%);

    transition: opacity 0.3s ease;
}


.footer-menu a:hover {
    color: #ffffff;

    padding-left: 5px;
}


.footer-menu a:hover::before {
    opacity: 1;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.footer-right {
    min-width: 0;
}


/* =========================================================
   LOCATIONS GRID
========================================================= */

.locations-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;

    box-sizing: border-box;
}


/* =========================================================
   LOCATION
========================================================= */

.footer-location {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    min-width: 0;

    margin: 0;
}


.location-number {
    flex-shrink: 0;

    color: #e63946;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;

    padding-top: 2px;
}


.footer-location h4 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;
}


.footer-location p {
    max-width: 100%;

    margin: 0;

    color: #9faab8;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   CONTACT
========================================================= */

.footer-contact {
    width: 100%;

    margin-top: 45px;

    padding-top: 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;

    align-items: center;

    gap: 25px;

    flex-wrap: wrap;
}


.footer-contact h3 {
    margin: 0;

    padding-bottom: 15px;

    min-width: 130px;
}


.contact-label {
    margin: 0;

    color: #7f8c9c;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}


.footer-email {
    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer-email:hover {
    color: #e63946;
}


/* =========================================================
   CONTACT BUTTON
========================================================= */

.footer-contact-button {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    width: 190px;

    padding: 14px 17px;

    box-sizing: border-box;

    border: 1px solid #e63946;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}


.footer-contact-button span {
    color: #e63946;

    font-size: 17px;

    transition: transform 0.3s ease;
}


.footer-contact-button:hover {
    background: #e63946;

    border-color: #e63946;

    color: #111c2b;
}


.footer-contact-button:hover span {
    color: #111c2b;

    transform: translate(3px, -3px);
}


/* =========================================================
   BOTTOM FOOTER
========================================================= */

.footer-bottom {
    position: relative;

    z-index: 2;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    padding: 20px 40px;
}


.footer-bottom-container {
    max-width: 1400px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {
    margin: 0;

    color: #7f8b99;

    font-size: 12px;

    line-height: 1.6;
}


.footer-bottom a {
    color: #c5ccd5;

    font-weight: 700;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer-bottom a:hover {
    color: #e63946;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1200px) {

    .footer-container {
        grid-template-columns:
            1fr
            0.7fr
            2fr;

        gap: 40px;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);

        row-gap: 35px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .footer-main {
        padding: 60px 30px 50px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 50px 35px;
    }

    .footer-right {
        grid-column: 1 / -1;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 35px 30px;
    }

    .footer-contact {
        margin-top: 40px;
    }

}


/* =========================================================
   SMALL TABLET / MOBILE
========================================================= */

@media (max-width: 650px) {

    .footer-main {
        padding: 55px 22px 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    .footer-right {
        grid-column: auto;
    }

    .locations-grid {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .footer-location p {
        max-width: 400px;
    }

    .footer-contact {
        align-items: flex-start;

        flex-direction: column;

        gap: 14px;

        margin-top: 35px;

        padding-top: 25px;
    }

    .footer-contact h3 {
        margin: 0 0 5px;
    }

    .footer-contact-button {
        width: 190px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .footer-main {
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-logo img {
        width: 130px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-location {
        gap: 10px;
    }

    .footer-location p {
        font-size: 12px;
    }

    .footer-bottom {
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-bottom-container {
        flex-direction: column;

        align-items: flex-start;

        gap: 6px;
    }

}