/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #111;
}

/* ================= NAVBAR ================= */
.navbar {
    height: 72px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo */
.logo img {
    width: 260px;
}

/* Hamburger */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Desktop nav */
nav {
    margin-left: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 22px;
}

/* 🔥 Remove underline completely */
.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a:active {
    text-decoration: none;
    color: #2aa845;
}
/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .logo img {
        width: 120px;
    }

    nav {
        display: none;
        perspective: 1000px; /* 🔥 enables 3D */
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
        z-index: 1100;
    }

    /* 🔥 HALF SCREEN 3D MENU */
    nav.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 60vh;
        background: #fff;
        z-index: 1000;

        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;

        transform-origin: top;
        animation: drop3D 0.5s ease forwards;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        gap: 22px;
    }

    .nav-links a {
        display: block;
        font-size: 18px;
        padding: 10px 0;

        /* 🔥 subtle hover/tap 3D */
        transition: transform 0.3s ease, letter-spacing 0.3s ease;
    }

    .nav-links a:active {
        transform: scale(0.95) translateZ(-10px);
    }

    /* 🔥 3D DROP ANIMATION */
    @keyframes drop3D {
        0% {
            transform: rotateX(-90deg) translateY(-50px);
            opacity: 0;
        }
        60% {
            transform: rotateX(20deg);
            opacity: 1;
        }
        100% {
            transform: rotateX(0);
        }
    }
}



/* ================= ABOUT HERO ================= */

.about-hero{
    position:relative;
    background-image:url("./images/Front_page_background.jpeg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    padding:120px 20px;
    color:#fff;
    text-align:center;
}

/* overlay */

.about-hero .overlay{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(0,0,0,0.6);
}

/* container above overlay */

.about-hero .container{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
}

/* heading */

.about-hero h1{
    font-size:42px;
    margin-bottom:20px;
}

.about-hero span{
    color:#22c55e;
}

/* paragraph */

.about-hero p{
    font-size:18px;
    line-height:1.7;
}



/* ================= MOBILE VIEW ================= */

@media (max-width:768px){

.about-hero{
padding:90px 20px;
}

.about-hero h1{
font-size:28px;
}

.about-hero p{
font-size:15px;
}

}

/* ================= ABOUT SECTION ================= */

.about-content{
    padding:100px 20px;
    background:#f8fafc;
}

.container{
    max-width:1200px;
    margin:auto;
}

.grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}


/* LEFT SIDE */

.left-section{
    display:flex;
    flex-direction:column;
}

.about-text h2{
    font-size:34px;
    margin-bottom:15px;
}

.about-text h3{
    margin-top:20px;
    font-size:22px;
}

.about-text p{
    line-height:1.7;
    color:#555;
}


/* SHIPMENT IMAGES */

.shipment-gallery{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-top:30px;
}

.shipment-gallery img{
    width:100%;
    height:240px;
    object-fit:cover;
    border-radius:10px;
    box-shadow:0 10px 20px rgba(0,0,0,0.1);
}


/* RIGHT SIDE CARDS */

.about-cards{
    display:grid;
    gap:20px;
}

.info-card{
    background:#fff;
    padding:22px;
    border-radius:10px;
    box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

.card-icon{
    font-size:22px;
    color:#22c55e;
    margin-bottom:10px;
}

.country-list{
    list-style:none;
    padding:0;
}

.country-list li{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:6px;
}

.fi{
    width:20px;
}


/* ================= FOOTER ================= */

.footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:20px;
}


/* ================= MOBILE ================= */

@media (max-width:768px){

.grid{
grid-template-columns:1fr;
}

.shipment-gallery{
grid-template-columns:1fr;
}

.shipment-gallery img{
height:220px;
}

.about-text h2{
font-size:26px;
}

.about-text h3{
font-size:20px;
}

}
