.section_below_header{
    padding:100px 0;
    background:#fff;
}

.container_below_header{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Grid */

.grid_container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* Cards */

.grid_card{
    background:#fff;
    border:1px solid #edf1ec;
    border-radius:18px;
    padding:30px;

    transition:.35s ease;

    box-shadow:
    0 5px 20px rgba(0,0,0,.04);
}

.grid_card:hover{
    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);
}

/* Icon */

.grid_card_icon_div{
    width:60px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:14px;

    background:linear-gradient(
        135deg,
        #0f4d1f,
        #1f6a34
    );
}

.grid_card_icon_div svg{
    width:28px;
    height:28px;

    stroke:#d4b100;
    color:#d4b100;
}

/* Title */

.grid_card h3{
    margin-top:20px;

    font-family:"Playfair Display", serif;
    font-size:1.35rem;
    line-height:1.3;

    color:#0f4d1f;
}

/* Text */

.grid_card p{
    margin-top:12px;

    font-size:.95rem;
    line-height:1.8;

    color:#5f6d63;
}

@media(max-width:992px){

    .grid_container{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .grid_card{
        padding:25px;
    }

}

@media(max-width:768px){

    .section_below_header{
        padding:70px 0;
    }

    .grid_container{
        grid-template-columns:1fr;
        gap:15px;
    }

    .grid_card{
        padding:22px;
    }

    .grid_card_icon_div{
        width:52px;
        height:52px;
        border-radius:12px;
    }

    .grid_card_icon_div svg{
        width:24px;
        height:24px;
    }

    .grid_card h3{
        font-size:1.1rem;
        margin-top:14px;
    }

    .grid_card p{
        font-size:.92rem;
        line-height:1.6;
    }

}
@media(max-width:480px){

    .container_below_header{
        width:92%;
    }

    .grid_card{
        padding:18px;
    }

    .grid_card_icon_div{
        width:48px;
        height:48px;
    }

    .grid_card h3{
        font-size:1rem;
    }

    .grid_card p{
        font-size:.88rem;
    }

}
/* Global Route Styling */
.global_routes{
    position:relative;

    padding:120px 0 70px;

    background:url("image/cargo-ship-BuVeo32J (1).jpg") center center/cover no-repeat;

    overflow:hidden;
}

.routes_overlay{
    position:absolute;
    inset:0;

    background:rgba(4, 72, 22, .82);

    z-index:1;
}

.global_routes_container{
    position:relative;
    z-index:2;

    width:90%;
    max-width:1200px;

    margin:auto;
}

/* Heading */

.routes_heading{
    text-align:center;

    max-width:700px;

    margin:auto;
}

.routes_eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;

    color:#d4b100;

    font-size:.78rem;
    font-weight:700;

    letter-spacing:2px;

    margin-bottom:16px;
}

.routes_eyebrow span{
    width:60px;
    height:2px;

    background:#d4b100;
}

.routes_heading h2{
    font-family:"Playfair Display", serif;

    color:#fff;

    font-size:3rem;

    line-height:1.1;

    margin-bottom:14px;
}

.routes_heading p{
    color:rgba(255,255,255,.85);

    font-size:1rem;

    line-height:1.8;
}
.route_map{
    position:relative;

    height:220px;

    margin:40px auto 50px;

    max-width:700px;
}

/* Decorative dots */

.route_dot{
    position:absolute;

    width:10px;
    height:10px;

    border-radius:50%;

    background:#d4b100;

    box-shadow:0 0 15px #d4b100;
}

.dot1{
    top:40%;
    left:20%;
}

.dot2{
    top:20%;
    left:42%;
}

.dot3{
    top:48%;
    right:25%;
}

.dot4{
    top:30%;
    right:10%;
}

.routes_grid{
    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:16px;

    max-width:900px;

    margin:auto;
}

.route_card{
    background:rgba(255,255,255,.05);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:14px;

    padding:20px 24px;

    transition:.35s ease;
}

.route_card:hover{
    transform:translateY(-5px);

    border-color:#d4b100;

    background:rgba(255,255,255,.08);
}

.route_label{
    font-size:.7rem;

    font-weight:700;

    letter-spacing:1.5px;

    color:rgba(255,255,255,.55);

    margin-bottom:8px;
}

.route_card h3{
    color:#fff;

    font-size:1rem;

    font-weight:600;

    line-height:1.4;
}

@media(max-width:992px){

    .routes_heading h2{
        font-size:2.4rem;
    }

    .route_map{
        height:180px;
    }

}

@media(max-width:768px){

    .global_routes{
        padding:80px 0 60px;
    }

    .routes_heading h2{
        font-size:2rem;
    }

    .routes_heading p{
        font-size:.95rem;
    }

    .route_map{
        height:120px;
        margin:30px auto;
    }

    .routes_grid{
        grid-template-columns:1fr;
    }

    .route_card{
        padding:18px;
    }

}

@media(max-width:480px){

    .routes_heading h2{
        font-size:1.7rem;
    }

    .routes_eyebrow{
        font-size:.72rem;
    }

    .route_card h3{
        font-size:.9rem;
    }

}
/* Need A custom Shipping Section */
.need_a_custom_shipping_section{
    padding:100px 0;
    background:#fff;
}

.need_a_custom_container{
    width:90%;
    max-width:850px;
    margin:auto;
    text-align:center;
}

.need_a_custom_container h2{
    color:#1d4d2e;
    font-family:"Playfair Display", Georgia, serif;
    font-size:3rem;
    font-weight:700;
    line-height:1.1;
    margin-bottom:18px;
}

.need_a_custom_container p{
    color:#5f6d63;
    font-size:1rem;
    line-height:1.8;
    max-width:650px;
    margin:0 auto 35px;
}

/* CTA Button */

.Request_a_quote_link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    text-decoration:none;

    padding:16px 30px;

    border-radius:12px;

    font-size:.95rem;
    font-weight:600;

    color:#1d4d2e;

    background:linear-gradient(
        135deg,
        oklch(0.76 0.13 85) 0%,
        oklch(0.62 0.13 80) 100%
    );

    box-shadow:
    0 10px 30px rgba(212,177,0,.25);

    transition:.35s ease;
}

.Request_a_quote_link svg{
    width:18px;
    height:18px;

    transition:.35s ease;
}

.Request_a_quote_link:hover{
    transform:translateY(-4px);

    box-shadow:
    0 18px 40px rgba(212,177,0,.35);
}

.Request_a_quote_link:hover svg{
    transform:translateX(4px);
}
@media(max-width:768px){

    .need_a_custom_shipping_section{
        padding:80px 0;
    }

    .need_a_custom_container h2{
        font-size:2.2rem;
    }

    .need_a_custom_container p{
        font-size:.95rem;
    }

    .Request_a_quote_link{
        padding:14px 24px;
        font-size:.9rem;
    }

}
@media(max-width:480px){

    .need_a_custom_shipping_section{
        padding:70px 0;
    }

    .need_a_custom_container h2{
        font-size:1.8rem;
    }

    .need_a_custom_container p{
        font-size:.9rem;
        line-height:1.7;
    }

    .Request_a_quote_link{
        width:100%;
        max-width:320px;
        padding:14px 20px;
    }

}
