/* ================= 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;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:260px;
    height:auto;
}

/* Tablet */
@media (max-width:768px){
    .logo img{
        width:130px;
    }
}

/* Mobile */
@media (max-width:480px){
    .logo img{
        width:100px;
    }
}
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 22px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-links a.active,
.nav-links a:hover {
    color: #2aa845;
}



/* ================= 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;
}

}
