
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            width: 100%;
            min-height: 100%;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #fff;
            color: #fff;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
        }


        /* ==========================================
           MAIN
        ========================================== */

        .construction-page {
            width: 100%;
            overflow: hidden;
            height: 100%;
            background:
                url("../../image-ganmarine/banner-ship.png") center center / cover no-repeat;
        }


        /* ==========================================
           DARK OVERLAY
        ========================================== */

        .construction-page::before {
            content: "";
            position: absolute;
            inset: 0;

            background:
                linear-gradient(
                    90deg,
                    #021a31 0%,
                    rgba(2, 28, 49, .96) 27%,
                    rgba(3, 34, 58, .55) 55%,
                    rgba(3, 28, 50, .25) 100%
                );

            z-index: 1;
        }


        /* ==========================================
           HEADER
        ========================================== */

        .main-header {
            position: relative;
            z-index: 20;
            padding: 0px 0;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }


        /* LOGO */

        .gan-logo {
            width: 220px;
            height: auto;
            display: block;
        }


        /* NAVIGATION */

        .main-navigation {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .main-navigation a {
            position: relative;
            color: #ffffff;
            font-size: 16px;
            font-weight: 500;
            transition: .3s ease;
        }

        .main-navigation a:hover {
            color: #fff;
        }

        .main-navigation a.active {
            color: #fff;
        }

        .main-navigation a.active::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -10px;
            height: 3px;
            background: #ff6b1b;
        }


        /* QUOTE BUTTON */

        .header-quote {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 10px 15px;
            background: #ff6b1b;
            color: #fff;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 700;
            transition: .3s ease;
        }
        .header-quote:hover {
            background: #ff7b32;
            color: #fff;
            transform: translateY(-2px);
        }


        /* LANGUAGE */

        .language-box {
            display: flex;
            align-items: center;
            gap: 7px;

            padding: 12px 15px;

            background: rgba(0, 24, 44, .72);

            border-radius: 5px;

            font-size: 12px;
            font-weight: 600;
        }


        /* ==========================================
           CONTENT
        ========================================== */

        .construction-content {
            position: relative;
            z-index: 10;
            align-items: center;

            padding: 70px 0 180px;
        }

        .content-area {
            max-width: 720px;
        }


        /* SMALL ORANGE TITLE */

        .section-label {
            display: flex;
            align-items: center;
            gap: 13px;

            margin-bottom: 22px;

            color: #ff6b1b;

            font-size: 15px;
            font-weight: 800;

            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .section-label::before {
            content: "";
            width: 38px;
            height: 4px;

            background: #ff6b1b;

            display: block;
        }


        /* HEADING */

        .construction-title {
    margin: 0;
    font-size: 70px;
    font-weight: 900;
}

        .construction-title .white-text {
            display: block;
            color: #fff;
        }

        .construction-title .orange-text {
            display: block;
            color: #ff6b1b;
        }


        /* DESCRIPTION */

        .construction-description {
            max-width: 620px;
            text-align: justify;
            margin-top: 25px;
            color: rgb(255 255 255);
            font-size: 17px;
            line-height: 1.65;
        }


        /* ==========================================
           BUTTONS
        ========================================== */

        .content-buttons {
            display: flex;
            align-items: center;
            gap: 30px;

            margin-top: 70px;
        }

        .orange-button,
        .outline-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;

            gap: 10px;

            min-width: 175px;

            padding: 15px 23px;

            border-radius: 5px;

            font-size: 13px;
            font-weight: 700;

            transition: .3s ease;
        }


        .orange-button {
            background: #ff6b1b;
            border: 1px solid #ff6b1b;
            color: #fff;
        }

        .orange-button:hover {
            background: #ff7b32;
            border-color: #ff7b32;
            color: #fff;

            transform: translateY(-3px);
        }


        .outline-button {
            color: #fff;

            background: rgba(255, 255, 255, .04);

            border: 1px solid rgba(255, 255, 255, .45);
        }

        .outline-button:hover {
            color: #fff;

            border-color: #ff6b1b;

            background: rgba(255, 107, 27, .12);

            transform: translateY(-3px);
        }


        /* ==========================================
           STATUS
        ========================================== */

        .construction-status {
            display: flex;
            align-items: center;
            gap: 13px;

            margin-top: 35px;
        }

        .status-circle {
            position: relative;

            width: 40px;
            height: 40px;

            flex-shrink: 0;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            color: #ff6b1b;

            background: rgba(255, 107, 27, .10);

            border: 1px solid rgba(255, 107, 27, .35);

            animation: statusPulse 2s infinite;
        }

        .status-text {
            color: rgba(255, 255, 255, .65);

            font-size: 12px;

            line-height: 1.5;
        }

        .status-text span {
            color: #fff;
            font-weight: 700;
        }

        @keyframes statusPulse {

            0% {
                box-shadow: 0 0 0 0 rgba(255, 107, 27, .45);
            }

            70% {
                box-shadow: 0 0 0 12px rgba(255, 107, 27, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 107, 27, 0);
            }

        }


        /* ==========================================
           DECORATIVE WAVES
        ========================================== */

        .wave-decoration {
            position: absolute;

            left: -5%;
            bottom: -30px;

            width: 110%;

            height: 260px;

            z-index: 4;

            pointer-events: none;
        }

        .wave {
            position: absolute;

            width: 120%;
            height: 160px;

            left: -10%;

            border-radius: 50% 50% 0 0;

            transform: rotate(-3deg);
        }


        .wave-1 {
            bottom: -90px;

            background: #063d63;

            animation: waveOne 8s ease-in-out infinite;
        }


        .wave-2 {
            bottom: -120px;

            background: #075080;

            animation: waveTwo 10s ease-in-out infinite;
        }


        .wave-3 {
            bottom: -155px;

            background: #021f39;

            animation: waveThree 12s ease-in-out infinite;
        }


        @keyframes waveOne {

            0%,
            100% {
                transform: translateX(-2%) rotate(-3deg);
            }

            50% {
                transform: translateX(3%) rotate(-3deg);
            }

        }


        @keyframes waveTwo {

            0%,
            100% {
                transform: translateX(3%) rotate(-4deg);
            }

            50% {
                transform: translateX(-3%) rotate(-4deg);
            }

        }


        @keyframes waveThree {

            0%,
            100% {
                transform: translateX(-3%) rotate(-2deg);
            }

            50% {
                transform: translateX(3%) rotate(-2deg);
            }

        }


        /* ==========================================
           SHIP IMAGE LAYER
        ========================================== */

        .ship-image {
            position: absolute;

            z-index: 3;

            right: 0;
            bottom: 70px;

            width: 62%;

            pointer-events: none;

            animation: shipMove 5s ease-in-out infinite;
        }

        .ship-image img {
            width: 100%;
            height: auto;

            display: block;
        }


        @keyframes shipMove {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-7px);
            }

        }


        /* ==========================================
           GLOW
        ========================================== */

        .blue-glow {
            position: absolute;

            right: 10%;
            top: 20%;

            width: 450px;
            height: 450px;

            border-radius: 50%;

            background: radial-gradient(
                circle,
                rgba(20, 116, 172, .25),
                transparent 70%
            );

            z-index: 2;

            pointer-events: none;
        }


        /* ==========================================
           FLOATING PARTICLES
        ========================================== */

        .particle {
            position: absolute;

            width: 4px;
            height: 4px;

            border-radius: 50%;

            background: rgba(255, 255, 255, .55);

            z-index: 5;

            animation: floatingParticle 5s ease-in-out infinite;
        }

        .particle-1 {
            right: 42%;
            top: 28%;
        }

        .particle-2 {
            right: 25%;
            top: 23%;

            animation-delay: 1s;
        }

        .particle-3 {
            right: 14%;
            top: 40%;

            animation-delay: 2s;
        }

        .particle-4 {
            right: 50%;
            top: 15%;

            animation-delay: 1.5s;
        }

        @keyframes floatingParticle {

            0%,
            100% {
                opacity: .25;
                transform: translateY(0);
            }

            50% {
                opacity: 1;
                transform: translateY(-18px);
            }

        }


        /* ==========================================
           BOTTOM BAR
        ========================================== */

        .bottom-bar {
            position: relative;

            z-index: 15;

            left: 0;
            bottom: 25px;

            width: 100%;
        }

        .bottom-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .copyright {
            color: rgb(255 255 255);
            font-size: 14px;
        }


        .social-icons {
            display: flex;
            gap: 8px;
        }

        .social-icons a {
            width: 31px;
            height: 31px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            color: rgba(255, 255, 255, .65);

            border: 1px solid rgba(255, 255, 255, .2);

            font-size: 11px;

            transition: .3s ease;
        }

        .social-icons a:hover {
            background: #ff6b1b;
            border-color: #ff6b1b;
            color: #fff;
        }


        /* ==========================================
           1500 PX+
        ========================================== */

        @media (min-width: 1500px) {

            .main-header {
                padding-top: 5px;
            }

            .gan-logo {
                width: 200px;
            }

            .main-navigation {
                gap: 35px;
            }

            .construction-content {
                padding-bottom: 60px;
            }

            .ship-image {
                width: 63%;
                bottom: 65px;
            }

        }


        /* ==========================================
           1300 - 1499 PX
        ========================================== */

        @media (min-width: 1300px) and (max-width: 1499px) {

            .ship-image {
                width: 61%;
                bottom: 60px;
            }

            .main-navigation {
                gap: 25px;
            }

        }


        /* ==========================================
           992 - 1299 PX
        ========================================== */

        @media (min-width: 992px) and (max-width: 1299px) {

            .main-navigation {
                gap: 18px;
            }

            .main-navigation a {
                font-size: 14px;
            }

            .gan-logo {
                width: 190px;
            }

            .header-quote {
                padding: 11px 15px;
            }

            .ship-image {
                width: 62%;
                bottom: 75px;
            }

            .construction-title {
                font-size: 62px;
            }

        }


        /* ==========================================
           TABLET
        ========================================== */

        @media (max-width: 991px) {

            .main-navigation,
            .language-box {
                display: none;
            }

            .gan-logo {
                width: 190px;
            }

            .construction-content {
                min-height: auto;

                padding-top: 65px;
                padding-bottom: 390px;

                align-items: flex-start;
            }

            .content-area {
                max-width: 700px;
            }

            .construction-title {
                font-size: 60px;
            }

            .ship-image {
                width: 90%;
                right: -10%;
                bottom: 70px;
            }

            .wave-decoration {
                height: 230px;
            }

        }


        /* ==========================================
           768 PX
        ========================================== */

        @media (max-width: 767px) {

            .main-header {
                padding: 16px 0;
            }

            .gan-logo {
                width: 170px;
            }

            .header-quote {
                padding: 10px 13px;
                font-size: 14px;
            }

            .construction-content {
                padding:
                    45px 20px 25px;
            }

            .section-label {
                font-size: 11px;
                letter-spacing: 1px;

                gap: 9px;

                margin-bottom: 17px;
            }

            .section-label::before {
                width: 28px;
                height: 3px;
            }

            .construction-title {
                font-size: 47px;

                line-height: 1;

                letter-spacing: -2px;
            }

            .construction-description {
                margin-top: 20px;

                font-size: 14px;
                text-align: justify;
                line-height: 1.65;

                max-width: 560px;
            }

            .content-buttons {
                margin-top: 20px;

                gap: 9px;
            }

            .orange-button,
            .outline-button {
                min-width: 145px;

                padding: 13px 15px;

                font-size: 14px;
            }

            .construction-status {
                margin-top: 25px;
            }

            .status-circle {
                width: 35px;
                height: 35px;

                font-size: 11px;
            }

            .status-text {
                font-size: 10px;
            }

            .ship-image {
                width: 105%;

                right: -22%;

                bottom: 60px;
            }

            .blue-glow {
                width: 300px;
                height: 300px;

                right: 0;
            }

        }


        /* ==========================================
           430 PX
        ========================================== */

        @media (max-width: 430px) {

            .main-header {
                padding: 13px 0;
            }

            .gan-logo {
                width: 145px;
            }

            .header-quote {
                padding: 9px 10px;

                font-size: 14px;

                gap: 5px;
            }

            .construction-content {
                padding:
                    38px 18px 10px;
            }

            .section-label {
                font-size: 12px;
            }

            .section-label::before {
                width: 24px;
                height: 2px;
            }

            .construction-title {
                font-size: 39px;

                letter-spacing: -1.5px;
            }

            .construction-description {
                font-size: 14px;
                text-align: justify;
                line-height: 1.6;
            }

            .content-buttons {
                flex-wrap: wrap;
            }

            .orange-button,
            .outline-button {
                min-width: 128px;

                padding: 11px 12px;

                font-size: 14px;
            }

            .construction-status {
                margin-top: 23px;
            }

            .ship-image {
                width: 120%;

                right: -34%;

                bottom: 45px;
            }

            .wave-decoration {
                height: 190px;
            }

            .bottom-bar {
                bottom: 12px;
            }

            .copyright {
                display: none;
            }

            .bottom-inner {
                justify-content: center;
            }

        }


        /* ==========================================
           355 PX
        ========================================== */

        @media (max-width: 355px) {

            .gan-logo {
                width: 130px;
            }

            .header-quote {
                padding: 8px 8px;
                font-size: 13px;
            }

            .construction-content {
                padding: 32px 15px 10px;
            }

            .construction-title {
                font-size: 34px;

                letter-spacing: -1px;
            }

            .construction-description {
                font-size: 14px;
                text-align: justify;
            }

            .orange-button,
            .outline-button {
                min-width: 115px;

                padding: 10px 9px;

                font-size: 14px;
            }

            .ship-image {
                width: 130%;

                right: -43%;

                bottom: 38px;
            }

        }

        /* ==========================================
   COUNTER + KEY ROUTES
========================================== */

.stats-routes-section {
    position: relative;
    width: 100%;
    background: #031f39;
    overflow: hidden;
    margin-top: 135px;
    margin-bottom: 20px;
}


/* ==========================================
   COUNTER AREA
========================================== */

.shipping-stats {
    min-height: 125px;

    display: flex;
    align-items: center;

    padding: 10px 0;

    position: relative;
}


/* Individual Counter */

.shipping-stat {
    flex: 1;

    display: flex;
    align-items: center;

    min-height: 65px;

    padding: 0 30px;

    position: relative;
}


/* Vertical separator */

.shipping-stat:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 8px;

    width: 1px;
    height: 52px;

    background: rgba(28, 121, 174, .65);
}


/* Icon */

.stat-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ff6b1b;

    font-size: 29px;

    margin-right: 15px;
}


/* Content */

.stat-content {
    min-width: 0;
}

.stat-content h3 {
    margin: 0;

    color: #ffffff;

    font-size: 23px;

    line-height: 1.1;

    font-weight: 800;

    white-space: nowrap;
}

.stat-content h3 .counter {
    font-size: 25px;
}

.stat-number-text {
    font-size: 17px;
    font-weight: 700;
}

.stat-content p {
    margin: 6px 0 0;

    color: #ffffff;

    font-size: 11px;

    line-height: 1.2;

    white-space: nowrap;
}


/* ==========================================
   KEY ROUTES
========================================== */

.key-routes-wrapper {
    position: relative;

    width: 100%;

    border-top: 1px solid rgba(40, 124, 174, .35);
    border-bottom: 1px solid rgba(40, 124, 174, .35);

    background: #062a48;
}


.key-routes {
    min-height: 58px;

    display: flex;
    align-items: stretch;
}


/* ==========================================
   ROUTE TITLE
========================================== */

.routes-title {
    position: relative;

    min-width: 220px;

    display: flex;
    align-items: center;

    padding: 0 28px;

    background: #ff6b1b;

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: .3px;
}


/* Right angled shape */

.routes-title::after {
    content: "";

    position: absolute;

    top: 0;
    right: -27px;

    width: 40px;
    height: 100%;

    background: #ff6b1b;

    clip-path: polygon(
        0 0,
        68% 0,
        100% 50%,
        68% 100%,
        0 100%
    );

    z-index: 2;
}


/* Ship icon */

.routes-ship-icon {
    width: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 10px;

    font-size: 24px;

    color: #062a48;
}


/* ==========================================
   ROUTES LIST
========================================== */

.routes-list {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 45px;
    min-width: 0;
}


.route-item {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 0 16px;

    color: rgba(255, 255, 255, .88);

    font-size: 12px;

    font-weight: 500;

    white-space: nowrap;

    transition: .3s ease;
}

.route-item:hover {
    color: #ff6b1b;
}


/* Route arrows */

.route-item i {
    color: #8bb6ce;

    font-size: 10px;
}


/* Divider */

.route-divider {
    width: 1px;
    height: 24px;

    flex-shrink: 0;

    background: rgba(116, 171, 201, .35);
}


/* View all */

.view-routes {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 7px;

    padding-left: 15px;

    color: #ff6b1b;

    font-size: 15px;

    font-weight: 700;

    white-space: nowrap;

    transition: .3s ease;
}

.view-routes:hover {
    color: #ff8b51;
}

.view-routes i {
    font-size: 10px;
}


/* ==========================================
   1500PX+
========================================== */

@media (min-width: 1500px) {

    .shipping-stats {
        min-height: 100%;
    }

    .shipping-stat {
        padding: 0 38px;
    }

    .stat-icon {
        width: 50px;
        font-size: 31px;
    }

    .stat-content h3 {
        font-size: 25px;
    }

    .stat-content h3 .counter {
        font-size: 27px;
    }

    .stat-content p {
        font-size: 15px;
    }

    .routes-title {
        min-width: 245px;
        padding-left: 35px;
    }

    .routes-list {
        padding-left: 50px;
    }

    .route-item {
        padding: 0 23px;
        font-size: 15px;
    }

}


/* ==========================================
   1300PX - 1499PX
========================================== */

@media (min-width: 1300px) and (max-width: 1499px) {

    .shipping-stat {
        padding: 0 25px;
    }

    .stat-icon {
        margin-right: 11px;
    }

    .stat-content h3 {
        font-size: 21px;
    }

    .stat-content h3 .counter {
        font-size: 23px;
    }

    .routes-title {
        min-width: 205px;
    }

    .routes-list {
        padding-left: 35px;
    }

    .route-item {
        padding: 0 10px;
        font-size: 11px;
    }

}


/* ==========================================
   992PX - 1299PX
========================================== */

@media (min-width: 992px) and (max-width: 1299px) {

    .shipping-stat {
        padding: 0 15px;
    }

    .stat-icon {
        width: 38px;
        margin-right: 8px;
        font-size: 23px;
    }

    .stat-content h3,
    .stat-content h3 .counter {
        font-size: 19px;
    }

    .stat-number-text {
        font-size: 14px;
    }

    .stat-content p {
        font-size: 14px;
    }

    .routes-title {
        min-width: 170px;
        padding: 0 18px;
    }

    .routes-title span {
        font-size: 14px;
    }

    .routes-ship-icon {
        width: 35px;
        margin-right: 4px;
        font-size: 19px;
    }

    .routes-list {
        padding-left: 25px;
    }

    .route-item {
        gap: 4px;
        padding: 0 7px;
        font-size: 13px;
    }

    .route-divider {
        height: 19px;
    }

    .view-routes {
        padding-left: 8px;
        font-size: 13px;
    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .shipping-stats {
        min-height: auto;

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        padding: 18px 0;
    }

    .shipping-stat {
        min-height: 70px;

        padding: 12px 25px;
    }

    .shipping-stat:nth-child(2)::after {
        display: none;
    }

    .shipping-stat:nth-child(3) {
        border-top: 1px solid rgba(28, 121, 174, .3);
    }

    .shipping-stat:nth-child(4) {
        border-top: 1px solid rgba(28, 121, 174, .3);
    }

    .key-routes {
        min-height: auto;

        display: block;
    }

    .routes-title {
        min-width: 100%;

        min-height: 50px;

        justify-content: center;

        padding: 0;
    }

    .routes-title::after {
        display: none;
    }

    .routes-ship-icon {
        width: auto;
        margin-right: 10px;
    }

    .routes-list {
        min-height: 55px;

        padding: 0 15px;

        overflow-x: auto;

        scrollbar-width: none;
    }

    .routes-list::-webkit-scrollbar {
        display: none;
    }

    .route-item {
        padding: 8px 15px;
    }

    .view-routes {
        margin-left: 0;
        padding: 0 15px;
    }

}


/* ==========================================
   768PX
========================================== */

@media (max-width: 767px) {

    .shipping-stats {
        grid-template-columns: repeat(2, 1fr);

        padding: 15px 0;
    }

    .shipping-stat {
        padding: 12px 12px;
    }

    .stat-icon {
        width: 38px;

        margin-right: 9px;

        font-size: 22px;
    }

    .stat-content h3,
    .stat-content h3 .counter {
        font-size: 18px;
    }

    .stat-number-text {
        font-size: 13px;
    }

    .stat-content p {
        margin-top: 4px;
        font-size: 14px;
    }

    .routes-list {
        justify-content: flex-start;
    }

    .route-item {
        font-size: 14px;
    }

}


/* ==========================================
   430PX
========================================== */

@media (max-width: 430px) {

    .shipping-stats {
        padding: 10px 0;
    }

    .shipping-stat {
        min-height: 65px;

        padding: 10px 5px;
    }

    .shipping-stat:not(:last-child)::after {
        height: 42px;
        top: 11px;
    }

    .stat-icon {
        width: 31px;

        margin-right: 6px;

        font-size: 19px;
    }

    .stat-content h3,
    .stat-content h3 .counter {
        font-size: 15px;
    }

    .stat-number-text {
        font-size: 13px;
    }

    .stat-content p {
        font-size: 11px;
    }

    .routes-title {
        min-height: 45px;
    }

    .routes-title span {
        font-size: 14px;
    }

    .routes-ship-icon {
        font-size: 19px;
    }

    .routes-list {
        min-height: 50px;

        padding: 0 5px;
    }

    .route-item {
        padding: 8px 11px;

        font-size: 14px;
    }

    .route-divider {
        height: 17px;
    }

    .view-routes {
        padding: 0 12px;

        font-size: 9px;
    }

}


/* ==========================================
   355PX
========================================== */

@media (max-width: 355px) {

    .stat-icon {
        width: 27px;

        margin-right: 4px;

        font-size: 17px;
    }

    .stat-content h3,
    .stat-content h3 .counter {
        font-size: 13px;
    }

    .stat-number-text {
        font-size: 13px;
    }

    .stat-content p {
        font-size: 12px;
    }

    .route-item {
    padding: 8px 9px;
    font-size: 13px;
}

}

@media (max-width: 991px) {
    .content-buttons {
        justify-content: center;
    }
    .stats-routes-section {
        position: relative;
        width: 100%;
        background: #031f39;
        overflow: hidden;
        margin-top: 30px;   
    }
    .routes-list {
        flex: 1;
        display: block;
        align-items: center;
        justify-content: center;
        padding-left: 0px;
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .bottom-inner {
        justify-content: center;
    }
}