body {
    padding: 30px;
    font-family: 'Instrument Sans', sans-serif;

    @media (max-width: 1200px) {
        padding: 15px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: 'Sora', sans-serif;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Instrument Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    letter-spacing: -0.03em;
    padding: 7px 8px 7px 20px;
    gap: 10px;
    border-radius: 100px;
    outline: none;
    box-shadow: none;
    @media (max-width: 767px){
        padding: 2px 2px  2px 12px;
        font-size: 14px;
    }
    @media (max-width: 400px){
        padding: 2px 2px  2px 12px;
    }
    
    &:after {
        content: '';
        display: block;
        width: 46px;
        height: 46px;
        background-size: 18px;
        background-repeat: no-repeat;
        background-position: center;
        background-color: #fff;
        border-radius: 100px;
        @media (max-width: 991px) {
            width: 38px;
            height: 38px;
        }
        @media (max-width: 767px){
            width: 32px;
            height: 32px;
        }
        @media (max-width: 400px){
            width: 28px;
            height: 28px;
        }
        
    }

    &:first-child:active,
    &:active,
    &:hover,
    &:focus {
        outline: none;
        box-shadow: none;
    }
}

.btn-primary {
    background-color: #539DB7;
    color: #fff;
    border: 1px solid #539DB7;

    &:after {
        background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.75 9H14.25' stroke='%23124050' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 3.75L14.25 9L9 14.25' stroke='%23124050' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    }

    &:first-child:active,
    &:active,
    &:hover,
    &:focus {
        background-color: #4cc1d3;
        border-color: #4cc1d3;
    }
}

.btn-secondary {
    background-color: #fff;
    color: #124050;
    border: 1px solid #fff;

    &:after {
        background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.75 9H14.25' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 3.75L14.25 9L9 14.25' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
        background-color: #539DB7;
    }

    &:first-child:active,
    &:active,
    &:hover,
    &:focus {
        background-color: #dae5e9;
        border-color: #dae5e9;
        color: #124050;
    }
}


.container-fluid {
    --bs-gutter-x: 30px;

    @media (min-width: 768px) {
        --bs-gutter-x: 60px;
    }
}

.main-header {
    position: fixed;
    inset: 30px 30px auto;
    z-index: 1000;
    background-color: transparent;
    padding: 0;
    transition: all 0.3s ease;

    @media (max-width: 1200px) {
        inset: 0 0 auto;
    }

    .header-inner-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
        border-radius: 0px;
        padding: 30px 70px;

        @media (max-width: 1200px) {
            padding: 0px 30px;
        }
    }
    
    &.fixed {
        inset: 10px 30px auto;
        
        @media (max-width: 1200px) {
            inset: 0 0 auto;
        }
        
        .header-inner-content {
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding-block: 15px;
            @media (max-width: 1200px) {
                padding-block: 0px;
            }
        }
    }
    
    &.header-light {
        .header-inner-content {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .menu ul li a {
            color: #124050;

            &::after {
                background-color: #124050;
            }
        }

        .logo img {
            /* Transform white to #124050 via CSS filter */
            filter: brightness(0) saturate(100%) invert(21%) sepia(20%) saturate(2059%) hue-rotate(156deg) brightness(93%) contrast(94%);
        }
    }

    .navbar-toggler {
        color: #ffffff;
        transition: color 0.3s ease;
    }

    &.header-light .navbar-toggler {
        color: #124050;
    }

    .logo {


        img {
            width: 227px;
            height: auto;
            display: block;
            transition: all 0.3s ease;

            @media (max-width: 1200px) {
                width: 100px;
            }
        }
    }

    .menu {
        ul {
            list-style: none;
            display: flex;
            gap: 30px;
            margin: 0;
            padding: 0;
            list-style: none;

            li {
                a {
                    text-decoration: none;
                    color: #fff;
                    font-size: 18px;
                    font-weight: 400;
                    font-family: 'Instrument Sans', sans-serif;
                    text-transform: none;
                    position: relative;
                    padding: 12px 0;
                    display: inline-flex;
                    line-height: 1;

                    &::after {
                        content: '';
                        position: absolute;
                        inset: auto 0 0;
                        width: 0;
                        height: 2px;
                        margin: auto;
                        background-color: #fff;
                        transition: all 0.4s ease;
                    }
                }

                &:hover {
                    a {
                        &::after {
                            width: 100%;
                        }
                    }
                }
            }
        }
    }
}

.hero-section {
    position: relative;
    padding: 0;
    margin: 0;
    min-height: 50vh;
    display: flex;
    /* border-radius: 15px; */
    border-radius: 30px;
    
    @media (min-width: 992px) {
        min-height: calc(100dvh - 60px);
    }
    
    .hero-section-image {
        position: absolute;
        inset: 0;
        z-index: 1;
        
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
            border-radius: 30px;
            &.home-hero-banner{
                object-position: 70% center;
            }
            @media (min-width: 992px) {
                border-radius: 30px;
            }
        }
    }

    .hero-section-image:after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
        border-radius: 30px;
        pointer-events: none;
        width: 100%;
        height: 100%;
    }

    .container-fluid {
        position: relative;
        z-index: 2;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .hero-section-content {
        flex: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        color: #fff;
        padding: 80px 0 40px;
        @media (min-width: 768px) {
            padding: 120px 0 40px;
        }
        @media (min-width: 992px) {
            padding: 120px 0 40px;
            justify-content: space-between;
        }

        @media (min-width: 1200px) {
            flex-direction: row;
            padding: 150px 0 60px;
        }

        .content-left {
            max-width: 1020px;
            align-self: flex-start;
            flex: 1;

            @media (min-width: 1200px) {
                align-self: center;
            }

            h1 {
                font-size: 22px;
                font-weight: 700;
                margin-bottom: 20px;

                @media (min-width: 768px) {
                    font-size: 48px;
                    margin-bottom: 30px;
                }

                @media (min-width: 1200px) {
                    font-size: 60px;
                }

                @media (min-width: 1400px) {
                    font-size: 90px;
                }
            }

            p {
                font-size: 14px;
                font-weight: 400;
                margin-bottom: 30px;

                @media (min-width: 768px) {
                    font-size: 18px;
                }

                @media (min-width: 1200px) {
                    font-size: 20px;
                }

                @media (min-width: 1400px) {
                    font-size: 24px;
                    max-width: 840px;
                }
            }

            ul {
                margin: 0 0 30px;
                padding: 0;
                list-style: none;
                display: inline-grid;
                gap: 10px;

                @media (min-width: 768px) {
                    margin: 0 0 40px;
                }

                li {
                    margin: 0;
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                    padding: 8px 12px;
                    gap: 10px;
                    background: rgba(255, 255, 255, 0.2);
                    border: 1px solid rgba(255, 255, 255, 0.3);
                    backdrop-filter: blur(4px);
                    border-radius: 50px;
                    font-family: 'Instrument Sans';
                    font-style: normal;
                    font-weight: 500;
                    font-size: 14px;
                    line-height: 1.2;
                    color: #FFFFFF;

                    @media (min-width: 768px) {
                        font-size: 16px;
                        padding: 10px 15px;
                    }

                    @media (min-width: 1200px) {
                        font-size: 20px;
                        padding: 10px 20px;
                    }

                    svg {
                        width: 18px;
                        height: 18px;

                        @media (min-width: 768px) {
                            width: 24px;
                            height: 24px;
                        }
                    }
                }
            }
        }

        .hero-text-box {
            width: 100%;
            padding: 20px;
            background: rgba(255, 255, 255, 0.20);
            border-radius: 20px;
            outline: 1px rgba(255, 255, 255, 0.30) solid;
            outline-offset: -1px;
            backdrop-filter: blur(10px);
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            gap: 20px;

            @media (max-width: 767px) {
                display: none;
            }
            @media (min-width: 768px) {
                padding: 30px;
                border-radius: 30px;
                gap: 30px;
            }

            @media (min-width: 1200px) {
                width: 536px;
                align-self: flex-end;
            }

            .hero-text-box__badge {
                padding: 10px 15px;
                background: white;
                border-radius: 40px;
                display: inline-flex;
                justify-content: center;
                align-items: center;
                gap: 10px;

                @media (min-width: 768px) {
                    padding: 15px;
                }
            }

            .hero-text-box__dot {
                width: 10px;
                height: 10px;
                background: #539DB7;
                border-radius: 9999px;

                @media (min-width: 768px) {
                    width: 12px;
                    height: 12px;
                }
            }

            .hero-text-box__badge-title {
                color: black;
                font-size: 16px;
                font-family: Sora;
                font-weight: 600;
                line-height: 1.2;
                margin: 0;

                @media (min-width: 768px) {
                    font-size: 20px;
                }
            }

            .hero-text-box__description {
                width: 100%;
                margin: 0;
                color: white;
                font-size: 16px;
                font-family: 'Instrument Sans';
                font-weight: 400;
                line-height: 1.5;

                @media (min-width: 768px) {
                    font-size: 20px;
                }
            }

            .btn {
                align-self: flex-start;
            }
        }
    }
}

@media(max-width: 600px) {
    .hero-btn {
        /* flex-direction: column; */

        .btn {
            /* width: 100%; */
        }
    }
}

.stats-section {
    padding: 60px 0;

    @media (min-width: 992px) {
        padding: 150px 0;
    }

    .stats-item {
        padding: 0px 15px;
        position: relative;

        @media (max-width: 991px) {
            padding: 30px 15px;
        }

        @media (max-width: 767px) {
            &:not(:last-child) {
                border-bottom: 1px solid rgba(18, 64, 80, 0.1);
            }

            &:nth-child(odd):not(:last-child) {
                border-right: 1px solid rgba(18, 64, 80, 0.1);
            }
        }

        @media (min-width: 768px) and (max-width: 991px) {
            &:nth-child(-n+3) {
                border-bottom: 1px solid rgba(18, 64, 80, 0.1);
            }

            &:not(:nth-child(3)):not(:last-child) {
                border-right: 1px solid rgba(18, 64, 80, 0.1);
            }
        }

        @media (min-width: 992px) {
            &:not(:last-child)::after {
                content: '';
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
                height: 100%;
                width: 1px;
                background-color: rgba(0, 0, 0, 0.3);
            }
        }

        .stats-number {
            color: #124050;
            font-size: 38px;
            font-weight: 600;
            margin-bottom: 10px;
            line-height: 1;

            @media (min-width: 768px) {
                font-size: 48px;
            }

            @media (min-width: 1200px) {
                font-size: 60px;
            }
        }

        .stats-text {
            color: #124050;
            font-size: 14px;
            font-family: 'Instrument Sans';
            font-weight: 400;
            margin: 0;

            @media (min-width: 1200px) {
                font-size: 20px;
            }
        }
    }
}

.about-section {
    padding: 0 0 60px 0;

    @media (min-width: 992px) {
        padding: 0 0 150px 0;
    }

    .about-content {
        max-width: 750px;


        @media (min-width: 992px) {
            margin-bottom: 0;
            padding-right: 40px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 16px;
            background-color: rgba(86, 157, 183, 0.1);
            border-radius: 40px;
            margin-bottom: 30px;

            .dot {
                width: 10px;
                height: 10px;
                background-color: #539DB7;
                border-radius: 50%;
            }

            .badge-text {
                font-family: 'Sora', sans-serif;
                font-size: 16px;
                font-weight: 600;
                color: #000000;
                margin: 0;
            }
        }

        .main-title {
            color: #124050;
            font-size: 32px;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 30px;
            letter-spacing: -0.03em;

            @media (min-width: 768px) {
                font-size: 40px;
            }

            @media (min-width: 1200px) {
                font-size: 60px;
            }
        }

        p {
            color: #64748B;
            font-family: 'Instrument Sans', sans-serif;
            font-size: 16px;
            font-weight: 400;
            line-height: 1.6;
            margin-bottom: 25px;

            @media (min-width: 1200px) {
                font-size: 20px;
                line-height: 1.7;
            }
        }

        .btn {
            margin-top: 15px;            
        }
    }

    .about-collage {
        display: flex;
        gap: 15px;
        height: 100%;

        @media (min-width: 768px) {
            gap: 20px;
        }

        .collage-left {
            flex: 1;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 20px;

                @media (min-width: 768px) {
                    border-radius: 30px;
                }
            }
        }

        .collage-right {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 15px;

            @media (min-width: 768px) {
                gap: 20px;
            }

            img {
                width: 100%;
                height: calc(50% - 8px);
                object-fit: cover;
                border-radius: 20px;

                @media (min-width: 768px) {
                    height: calc(50% - 10px);
                    border-radius: 30px;
                }
            }
        }
    }
}

.collection-section {
    padding: 0 0 60px 0;

    @media (min-width: 992px) {
        padding: 0 0 150px 0;
    }

    .collection-wrapper {
        background-color: #F8FAFC;
        border-radius: 20px;
        padding: 40px 20px;

        @media (min-width: 768px) {
            border-radius: 30px;
            padding: 60px 40px;
        }

        @media (min-width: 992px) {
            border-radius: 30px;
            padding: 100px 70px 70px;
        }
    }

    .collection-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 40px;

        .main-title {
            color: #124050;
            font-size: 32px;
            font-weight: 700;
            margin: 0;
            line-height: 1;

            @media (min-width: 768px) {
                font-size: 40px;
            }

            @media (min-width: 1200px) {
                font-size: 60px;
            }
        }

        .view-all-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #124050;
            font-family: 'Instrument Sans', sans-serif;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            padding-bottom: 4px;

            @media (min-width: 768px) {
                font-size: 16px;
                padding-bottom: 8px;
            }

            &:hover {
                color: #539DB7;
            }

            svg {
                width: 10px;
                height: 10px;
            }
        }
    }

    .product-card {
        background-color: #fff;
        border-radius: 20px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        height: 100%;
        transition: transform 0.3s ease;

        @media (min-width: 768px) {
            padding: 25px;
            border-radius: 30px;
        }

        &:hover {
            transform: translateY(-5px);
        }

        .product-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            margin-bottom: 25px;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 20px;

                @media (min-width: 768px) {
                    border-radius: 24px;
                }
            }
        }

        .product-info {
            text-align: center;
            display: flex;
            flex-direction: column;
            flex: 1;

            h4 {
                color: #124050;
                font-size: 18px;
                font-family: 'Sora', sans-serif;
                font-weight: 600;
                line-height: 1.4;
                margin-bottom: 25px;

                @media (min-width: 1200px) {
                    font-size: 24px;
                }
            }

            .btn {
                margin-top: auto;
                width: 100%;
                justify-content: space-between;
                padding-left: 24px;
                padding-right: 8px;
                font-size: 16px;
                /* height: 54px; */
            }
        }
    }
}

.facilities-section {
    padding: 0 0 60px 0;

    @media (min-width: 992px) {
        padding: 0 0 150px;
    }

    .facilities-header {
        max-width: 400px;


        &.sticky-lg-top {
            @media (min-width: 992px) {
                position: relative;
                z-index: 1;
            }
        }

        .main-title {
            color: #124050;
            font-size: 32px;
            font-weight: 600;
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -0.03em;

            @media (min-width: 768px) {
                font-size: 40px;
            }

            @media (min-width: 1200px) {
                font-size: 60px;
            }
        }

        p {
            color: #000000;
            font-family: 'Instrument Sans', sans-serif;
            font-size: 16px;
            font-weight: 400;
            line-height: 1.6;
            margin: 0;

            @media (min-width: 1200px) {
                font-size: 20px;
            }
        }
    }

    .facility-card {
        background-color: #fff;
        border: 1px solid #E2E8F0;
        border-radius: 20px;
        padding: 40px 30px;
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease;
        display: flex;
        flex-direction: column;
        z-index: 1;

        @media (min-width: 768px) {
            padding: 38px 30px;
            border-radius: 24px;
        }

        &::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: var(--hover-bg);
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
            will-change: opacity;
        }

        &::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(18, 64, 80, 0.85);
            /* #124050 darker overlay */
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 2;
            will-change: opacity;
        }

        /* Ensure texts appear above overlays */
        .facility-num,
        .facility-title,
        .facility-desc {
            position: relative;
            z-index: 3;
        }

        &:hover {
            border-color: transparent;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

            &::before,
            &::after {
                opacity: 1;
            }

            .facility-num {
                color: #fff;
            }

            .facility-title {
                color: #fff;
            }

            .facility-desc {
                color: rgba(255, 255, 255, 0.9);
            }
        }

        .facility-num {
            font-family: 'Instrument Sans', sans-serif;
            font-size: 24px;
            font-weight: 500;
            color: #539DB7;
            margin-bottom: 44px;
            line-height: 1;
            transition: color 0.4s ease;

            @media (min-width: 1200px) {
                font-size: 30px;
            }
        }

        .facility-title {
            color: #124050;
            font-size: 20px;
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            margin-bottom: 18px;
            transition: color 0.4s ease;

            @media (min-width: 1200px) {
                font-size: 30px;
            }
        }

        .facility-desc {
            color: #636363;
            font-family: 'Instrument Sans', sans-serif;
            font-size: 14px;
            font-weight: 400;
            line-height: 1.6;
            margin: 0;
            transition: color 0.4s ease;
            flex-grow: 1;

            @media (min-width: 1200px) {
                font-size: 20px;
            }
        }
    }
}

.industries-section {
    padding: 0 0 60px 0;
    overflow: hidden;


    @media (min-width: 992px) {
        padding: 0 0 150px 0;
    }

    .row {
        margin-bottom: 30px;

        @media (min-width: 992px) {
            margin-bottom: 56px;
        }
    }

    .main-title {
        color: #124050;
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 15px;

        @media (min-width: 768px) {
            font-size: 40px;
        }

        @media (min-width: 1200px) {
            font-size: 60px;
        }
    }

    .section-desc {
        color: #636363;
        font-size: 16px;
        margin: 0;

        @media (min-width: 1200px) {
            font-size: 20px;
        }
    }

    .view-all-link {
        color: #000000;
        font-size: 16px;
        font-weight: 500;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: opacity 0.3s ease;

        @media (min-width: 1200px) {
            font-size: 20px;
        }

        &:hover {
            opacity: 0.8;
        }

        svg {
            width: 16px;
            height: 16px;
            stroke: currentColor;
        }
    }

    .industries-slider-container {
        width: 100%;
        cursor: grab;

        &:active {
            cursor: grabbing;
        }
    }

    .industries-track {
        display: flex;
        gap: 20px;
        width: max-content;
        padding-right: 30px;

        @media (min-width: 768px) {
            gap: 30px;
        }
    }

    .industry-card {
        width: 280px;
        height: 380px;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        flex-shrink: 0;
        display: block;
        text-decoration: none;

        @media (min-width: 768px) {
            width: 360px;
            height: 480px;
        }

        @media (min-width: 1200px) {
            width: calc((100vw - 165px) / 3);
            height: 445px;
            border-radius: 30px;
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .industry-overlay {
            position: absolute;
            inset: auto 0 0 0;
            height: 60%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
            z-index: 1;
        }

        .industry-title {
            position: absolute;
            bottom: 30px;
            left: 30px;
            right: 30px;
            color: #fff;
            font-size: 20px;
            font-weight: 600;
            margin: 0;
            z-index: 2;

            @media (min-width: 1200px) {
                font-size: 30px;
                bottom: 30px;
                left: 30px;
                right: 30px;
            }
        }
    }

    .scroll-indicator-wrapper {
        margin-top: 40px;
        width: 100%;
        max-width: 100%;

        @media (min-width: 992px) {
            margin-top: 60px;
        }
    }

    .scroll-indicator-track {
        width: 100%;
        height: 4px;
        background-color: #E2E8F0;
        /* standard track bg */
        position: relative;
        border-radius: 4px;
        overflow: hidden;
    }

    .scroll-indicator-bar {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 20%;
        /* Will be dynamically updated by JS */
        background-color: #124050;
        border-radius: 4px;
    }
}

/* Global Export Section */
.global-export-section {
    padding: 60px 0;
    background-color: rgba(18, 64, 80, 0.05);
    border-radius: 30px;
}

@media (min-width: 992px) {
    .global-export-section {
        padding: 100px 0;
    }
}

.global-export-section .export-header {
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .global-export-section .export-header {
        margin-bottom: 60px;
    }
}

.global-export-section .export-header .main-title {
    color: #124050;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;

    @media (min-width: 992px) {
        font-size: 40px;
    }

    @media (min-width: 1200px) {
        font-size: 60px;
    }
}

.global-export-section .export-header .section-desc {
    color: #636363;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0;

    @media (min-width: 1200px) {
        font-size: 20px;
    }
}

.export-map-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    @media(min-width:1700px) {
        max-width: 1600px;

    }
}

.export-map-container {
    position: relative;
    width: 100%;
    background-image: url('../images/map.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-content: flex-start;
    flex-wrap: wrap;
    padding: 40px 10px;
    border-radius: 20px;
    gap: 15px;
    /* Clean mobile stacking */
}

@media (min-width: 768px) {
    .export-map-container {
        padding: 60px 40px;
    }
}

@media (min-width: 992px) {
    .export-map-container {
        padding: 103px 115px 80px 115px;
        min-height: 800px;
        gap: 0;
    }
}

.map-pin {
    text-decoration: none;
    transition: transform 0.3s ease, z-index 0s;
    z-index: 10;
    flex: 0 0 45%;
    max-width: 45%;
    height: fit-content;
    display: flex;
    justify-content: center;

    @media (min-width: 768px) {
        flex: 0 0 30%;
        max-width: 30%;
    }

    @media (min-width: 992px) {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (min-width: 992px) {
    .map-pin:nth-child(1) {
        margin-top: 30px;
    }

    .map-pin:nth-child(2) {
        margin-top: 90px;
    }

    .map-pin:nth-child(3) {
        margin-top: 0px;
    }

    .map-pin:nth-child(4) {
        margin-top: 70px;
    }

    .map-pin:nth-child(5) {
        margin-top: 20px;
    }

    .map-pin:nth-child(6) {
        margin-top: 60px;
    }

    .map-pin:nth-child(7) {
        margin-top: 120px;
    }

    .map-pin:nth-child(8) {
        margin-top: 40px;
    }

    .map-pin:nth-child(9) {
        margin-top: 90px;
    }
}

.map-pin:hover {
    transform: scale(1.05) translateY(-5px);
    z-index: 20;
}

.pin-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 110px;
    position: relative;

    @media (min-width: 768px) {
        width: 130px;
        padding: 8px;
    }
}

.pin-card::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ffffff;
}

.pin-card img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;

    @media (min-width: 768px) {
        height: 70px;
    }
}

.pin-card span {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #124050;
    text-align: center;
    padding-bottom: 2px;

    @media (min-width: 992px) {
        font-size: 14px;
        padding-bottom: 4px;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 60px 0 60px 0;

    @media (min-width: 992px) {
        padding: 150px 0 150px 0;
    }
}

.why-choose-wrapper {


    @media (min-width: 768px) {
        border-radius: 30px;
    }
}

.why-choose-image {
    height: 100%;
    min-height: 300px;
    border-radius: 30px;
    overflow: hidden;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-choose-content {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    border-radius: 30px;
    background-color: #122832;
    margin-top: 30px;

    @media (min-width: 768px) {
        padding: 60px 40px;

    }

    @media(min-width:980px) {
        margin-top: 0px;
    }

    @media (min-width: 1200px) {
        padding: 80px 60px;

    }
}

.why-choose-content .main-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;

    @media (min-width: 992px) {
        font-size: 60px;
    }
}

.why-choose-content .description {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Instrument Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;

    @media (min-width: 1200px) {
        font-size: 20px;
    }
}

.choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.choose-list li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 10px;
    width: fit-content;
    color: #fff;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;

    @media (min-width: 1200px) {
        font-size: 20px;
        padding: 11px 10px;
    }
}

.choose-list li:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.choose-list li svg {
    flex-shrink: 0;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;

    @media (min-width: 992px) {
        padding: 0 0 150px 0;
    }
}

.contact-info {
    padding-right: 20px;
    margin-bottom: 40px;

    @media (min-width: 992px) {
        padding-right: 50px;

        margin-bottom: 0;
    }
}

.contact-info .main-title {
    color: #124050;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;

    @media (min-width: 992px) {
        font-size: 60px;
    }
}

.contact-info .description {
    color: #636363;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Instrument Sans', sans-serif;

    @media (min-width: 992px) {
        font-size: 20px;
    }
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item .contact-text {
    display: flex;
    flex-direction: column;
}

.contact-item .contact-text .label {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Instrument Sans', sans-serif;

    @media (min-width: 992px) {
        font-size: 24px;
    }
}

.contact-item .contact-text .value {
    color: #4A5568;
    font-size: 14px;
    font-family: 'Instrument Sans', sans-serif;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: rgba(18, 64, 80, 0.05);
    border-radius: 30px;
    padding: 15px;
    @media (min-width: 768px) {
        padding: 40px;
    }
}

.contact-form .form-control {
    background-color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 14px;
    color: #000000;
    margin-bottom: 15px;
    font-family: 'Instrument Sans', sans-serif;

    @media(min-width:992px) {
        font-size: 20px;
    }
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 2px rgba(83, 157, 183, 0.2);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: #A0AEC0;
}

.contact-form textarea.form-control {
    border-radius: 20px;
    resize: none;
    min-height: 150px;
}

.btn-submit {
    background-color: #539DB7;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: background-color 0.3s ease;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 14px;
    padding: 2px 2px  2px 12px;    
    @media (min-width: 768px) {
        padding: 10px 10px 10px 25px;
        font-size: 18px;
     
    }
}

.btn-submit:hover {
    background-color: #3b7b91;
}

.btn-submit .btn-icon {
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer Section */
.footer-section {
    padding: 0 0 0;
}

.footer-wrapper {
    background-color: #124050;
    border-radius: 30px;
    padding: 40px 20px;
    color: #ffffff;
    font-family: 'Instrument Sans', sans-serif;

    @media (min-width: 768px) {
        padding: 60px 40px;
    }

    @media (min-width: 992px) {
        padding: 100px 70px 30px 70px;
    }
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;

    @media (min-width: 768px) {
        height: 50px;
        margin-bottom: 50px;
    }
}

.footer-description {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
    max-width: 430px;
    margin-bottom: 20px;

    @media (min-width: 1200px) {
        font-size: 16px;
        margin-bottom: 50px;
    }
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #539DB7;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-btn:hover {
    background-color: #3b7b91;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-widget .widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;


    &:after {
        content: "";
        position: absolute;
        bottom: -10px;
        border-radius: 10px;
        left: 0;
        width: 42px;
        height: 2px;
        background-color: #539DB7;
    }

    @media (min-width: 1200px) {
        font-size: 20px;
        margin-bottom: 42px;
    }
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;

    @media (min-width: 1200px) {
        font-size: 16px;
    }
}

.footer-links li a:hover {
    color: #ffffff;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 375px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    color: #fff;
    font-size: 15px;
    align-items: flex-start;

    @media (min-width: 1200px) {
        font-size: 20px;
    }

    a {
        color: #fff;
        text-decoration: none;

    }
}

.footer-contact li .icon {
    color: #539DB7;
    margin-top: 2px;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);

    @media (min-width: 992px) {
        margin-top: 60px;
    }
}

.footer-bottom p,
.footer-bottom a {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
    text-decoration: none;

    @media (min-width: 1200px) {
        font-size: 18px;
    }
}

/* ========================================= */
/* ABOUT PAGE STYLES                         */
/* ========================================= */

.page-hero {
    position: relative;
    padding: 110px 0 60px;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    margin-bottom: 60px;
    overflow: hidden;

    @media (min-width: 992px) {
        padding: 160px 0 90px;
    }
}

.inner-hero {
    min-height: unset;
    height: 30vh;
    @media(min-width:992px) {
        height: 700px;
    }

    .content-left {
        flex: unset !important;
        width: fit-content;
    }
    @media(max-width: 767px){
        .hero-section-content{
            padding-block-start: 50px;
        }    
    }
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    margin: 0;
    font-family: 'Instrument Sans', sans-serif;

    @media (min-width: 992px) {
        font-size: 56px;
    }
}

.purpose-section {
    padding: 60px 0 0;

    @media (min-width: 992px) {
        padding: 150px 0;
    }

    .main-title {
        color: #124050;
        font-size: 36px;
        font-weight: 600;
        margin-bottom: 50px;

        @media (min-width: 768px) {
            font-size: 60px;
        }
    }
}

.purpose-card {

    border-radius: 30px;
    border: none;

    .purpose-content {
        background: rgba(18, 64, 80, 0.05);
        padding: 50px;
        border-radius: 30px;
    }
}

.purpose-card .purpose-img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    border-radius: 20px;

    @media(min-width: 992px) {
        min-height: 350px;
    }
}

.purpose-title {
    color: #124050;
    font-size: 36px;
    font-weight: 600;
    font-family: 'Instrument Sans', sans-serif;

    @media (min-width: 992px) {
        font-size: 60px;
    }
}

.purpose-text {
    color: #4A5568;
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Instrument Sans', sans-serif;
    width: 957px;
    max-width: 100%;

    @media (min-width: 992px) {
        font-size: 20px;
    }
}

.process-section {
    padding: 30px 15px;
    background: rgba(18, 64, 80, 0.05);
    border-radius: 30px;

    @media(min-width: 992px) {
        padding: 90px 70px;
    }

    .main-title {
        color: #124050;
        font-size: 36px;
        font-weight: 600;
        margin-bottom: 20px;

        @media (min-width: 992px) {
            font-size: 60px;
            margin-bottom: 50px;
        }
    }

    .description {
        color: #636363;
        font-size: 16px;
        line-height: 1.6;
        font-family: 'Instrument Sans', sans-serif;
        max-width: 100%;
        margin-bottom: 60px;

        @media (min-width: 992px) {
            font-size: 20px;
            margin-bottom: 110px;
        }
    }
}

.process-main-img {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
    max-height: 450px;
}

.process-step-card {

    border-radius: 20px;
    padding: 25px 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 15px;


    @media (min-width: 768px) {
        padding: 30px;
        margin-bottom: 30px !important;
    }
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}



.process-step-card .step-title {
    color: #124050;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: 'Instrument Sans', sans-serif;

    @media (min-width: 992px) {
        font-size: 20px;
    }
}

.step-main {
    display: flex;
    width: 100%;
    align-items: flex-start;
    margin-bottom: 20px;

    @media(min-width: 992px) {
        align-items: center;
    }

    .step-num {
        background: #539DB7;
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        font-family: 'Instrument Sans', sans-serif;
        margin-bottom: 15px;

        @media(min-width: 992px) {
            width: 70px;
            height: 70px;
            font-size: 30px;
            margin-bottom: 0;
        }
    }

    .step-title {
        font-size: 30px;
        padding: 0;
        color: #124050;
        font-family: 'Sora', sans-serif;
        font-weight: 600;

        @media(min-width: 992px) {
            padding-left: 32px;
            width: calc(100% - 102px);
        }
    }


}

.process-step-card .step-desc {
    color: #636363;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-family: 'Instrument Sans', sans-serif;

    @media(min-width: 992px) {
        font-size: 20px;
    }
}

.space-150 {
    padding-top: 60px;

    @media(min-width:992px) {
        padding-top: 150px;
    }
}


/* Quality page style */

.cras-section {
    display: flex;
    width: 100%;
    padding: 60px 0 0px;

    @media(min-width:992px) {
        padding: 150px 0 80px;
    }

    .main-title {
        color: #124050;
        font-size: 36px;
        font-weight: 600;
        margin-bottom: 0px;

        @media (min-width: 992px) {
            font-size: 60px;
        }
    }

    .cras-card {
        display: flex;
        width: 100%;
        padding: 30px;
        background-color: rgba(18, 64, 80, 0.05);
        flex-direction: column;
        margin-top: 30px;
        border-radius: 30px;

        .cars-cap {
            display: flex;
            width: fit-content;
            align-items: center;
            margin-bottom: 20px;
            background-color: #539DB7;
            height: 50px;
            padding-left: 10px;
            padding-right: 10px;
            justify-content: center;
            border-radius: 10px;

            h5 {
                color: #ffffff;
                font-size: 18px;
                font-family: 'Sora', sans-serif;
                font-weight: 600;
                line-height: 1;
                margin: 0;

                @media(min-width:992px) {
                    font-size: 24px;
                }
            }
        }

        .cars-description {
            p {
                color: #636363;
                font-size: 16px;
                line-height: 1.6;
                margin: 0;
                font-family: 'Instrument Sans', sans-serif;

                @media(min-width: 992px) {
                    font-size: 20px;
                }
            }
        }

    }

}

/* cta section */

.cta-content-section {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 0px;
    border-radius: 30px;
    overflow: hidden;
    min-height: 907px;
    position: relative;
    margin-top: 30px;

    @media(min-width:992px) {
        padding: 70px;
        margin-top: 0;
    }

    .cta-section-image {
        position: absolute;
        inset: 0;
        z-index: -1;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .cta-content {
        background-color: rgba(255, 255, 255, .8);
        padding: 15px;
        border-radius: 30px;
        height: 100%;
        display: flex;
        width: 100%;
        flex-direction: column;

        @media(min-width:992px) {
            padding: 50px;
        }

        .main-title {
            color: #000000;
            font-size: 36px;
            font-weight: 600;
            margin-bottom: 15px;
            font-family: "Raleway", sans-serif;

            @media (min-width: 992px) {
                font-size: 60px;
                margin-bottom: 30px;
            }


        }

        p {
            color: #000000;
            font-size: 16px;
            line-height: 1.6;
            margin: 0 0 15px;
            font-family: 'Instrument Sans', sans-serif;
            max-width: 100%;

            @media(min-width: 992px) {
                font-size: 20px;
                margin-bottom: 20px;
                max-width: 97%;
            }
        }


    }
}



/* Product page */

section.product-list-section {
    display: flex;
    width: 100%;
    padding: 60px 0;

    @media(min-width:992px) {
        padding: 150px 0;
    }

    .main-title {
        color: #124050;
        font-size: 36px;
        font-weight: 600;
        margin-bottom: 15px;
        font-family: 'Sora', sans-serif;

        @media(min-width:992px) {
            font-size: 60px;
            margin-bottom: 30px;
        }
    }

    .product-sidebar {
        background-color: rgba(18, 64, 80, 0.05);
        padding: 30px;
        border-radius: 30px;
        margin-bottom: 30px;

        @media(min-width:992px) {
            position: sticky;
            top: 110px;
            margin-bottom: 0;
        }

        h3 {
            color: #ffffff;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            font-family: 'Sora', sans-serif;
            background-color: #539DB7;
            padding: 10px;
            height: 50px;
            display: flex;
            width: fit-content;
            border-radius: 10px;
            margin-bottom: 10px;
            align-items: center;
            justify-content: center;

            @media(min-width:992px) {
                font-size: 24px;
                margin-bottom: 25px;
            }
        }

        ul {
            list-style: none;
            display: flex;
            width: 100%;
            margin: 0;
            padding: 0;
            flex-direction: column;

            li {
                a {
                    color: #000000;
                    font-size: 16px;
                    font-weight: 400;
                    margin-bottom: 15px;
                    font-family: 'Instrument Sans', sans-serif;
                    border: 1px solid rgba(0, 0, 0, .12);
                    padding: 10px;
                    height: 50px;
                    display: flex;
                    width: 100%;
                    border-radius: 5px;
                    margin-bottom: 8px;
                    align-items: center;
                    justify-content: flex-start;
                    text-decoration: none;
                    transition: all 0.4s ease-in-out;

                    &.active {
                        background-color: #fff;
                        border-color: #fff;
                        transition: all 0.4s ease-in-out;
                    }

                    &:hover {
                        background-color: #fff;
                        border-color: #fff;
                        transition: all 0.4s ease-in-out;
                    }

                    @media(min-width:992px) {
                        font-size: 20px;
                        margin-bottom: 12px;
                    }
                }
            }
        }


    }

    .product-card {
        display: flex;
        width: 100%;
        flex-direction: column;
        margin-bottom: 30px;
        border-radius: 30px;
        overflow: hidden;
        background: rgba(18, 64, 80, .05);
        text-decoration: none;

        .product-card-image {
            width: 100%;
            border-radius: 30px;
            overflow: hidden;
            margin-bottom: 25px;

            img {
                width: 100%;
                object-fit: cover;
            }
        }

        .product-card-content {
            padding: 0 30px 25px 30px;

            h3 {
                color: #124050;
                font-size: 16px;
                font-weight: 600;
                margin-bottom: 10px;
                font-family: 'Sora', sans-serif;

                @media(min-width:992px) {
                    font-size: 24px;
                    margin-bottom: 10.5px;
                }
            }

            p {
                color: #636363;
                font-size: 16px;
                line-height: 1.6;
                margin: 0;
                font-family: 'Instrument Sans', sans-serif;

                @media(min-width: 992px) {
                    font-size: 20px;
                }
            }
        }
    }
}
#brochureModal{
    @media(min-width:992px) {
        --bs-modal-header-padding:1.5rem;
    }
    
    .modal-header{
        
    }
    .modal-body{
        @media(min-width:992px) {
            padding-block: 26px;
        }
        #brochureForm.contact-form .form-control {
            background: rgba(18, 64, 80, 0.05);
            @media(min-width:992px) {
                margin-bottom: 26px;
            }
        }
    }
}
