body{
    font-family:Arial;
    margin:0;
    color:#333;
}

/* CONTAINER */
.container{
    max-width:1100px;
    margin:auto;
    padding:0 20px;
}

/* HEADER */
header{
    background:#1f4a7a;
    color:white;
    padding:20px 0;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.nav a{
    margin-left:20px;
    color:white;
    text-decoration:none;
}

/* HERO */
.hero{
    position:relative;
    background:url("images/ship.jpg") center/cover no-repeat;
    padding:clamp(80px,10vw,140px) 0;
    color:white;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:600px;
}

.hero h1{
    font-size:clamp(28px,5vw,48px);
    line-height:1.2;
    margin-bottom:20px;
}

.hero p{
    font-size:clamp(16px,2vw,18px);
    margin-bottom:25px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

@media (max-width: 768px) {
    .hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-content{
        max-width:100%;
    }
}


/* BUTTON */
.btn{
    padding:12px 24px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
}

.btn-primary{ background:#2c7be5; color:white; }
.btn-whatsapp{ background:#25D366; color:white; }
.btn-fiverr{ background:#1DBF73; color:white; }

/* TRUST */
.trust{
    background:#e9eef5;
    padding:20px 0;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
    text-align:center;
}

@media (max-width: 768px) {
    .trust .trust-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}


/* ABOUT */
.about{
    padding:60px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
    align-items:center;
}

.about-grid img{
    width:100%;
    border-radius:8px;
}

/* SERVICES */
.services{
    background:#f7f7f7;
    padding:80px 0;
    text-align:center;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    margin-top:40px;
}

/* CARD */
.card{
    background:white;
    padding:30px;
    border-radius:8px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.card i{
    font-size:40px;
    color:#2c7be5;
}

/* PROCESS */
.process-image {
    padding: 0; 
}

.process-image img {
    width: 100%;
    max-width: 850px;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .process-image img {
        max-width: 100%; 
    }
}


/* PRODUCTS */

.products{
    padding:60px 0;
    text-align:center;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-top:30px;
}

.product img{
    width:100%;
    border-radius:6px;
}

.products ul {
    list-style: none;
    padding-left: 0;
    text-align: left;      
    display: inline-block; 
}

.products ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.products ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* ===== WHY SECTION ===== */

.why{
    padding:60px 0;
}

/* LAYOUT */
.why-grid{
    display:flex;
    gap:40px;
    align-items:center;
    flex-wrap:wrap;
}

/* TEXT */
.why-grid > div{
    flex:1;
    min-width:280px;
}

/* IMAGE */
.why-grid img{
    width:100%;
    max-width:400px;
    border-radius:10px;
}

/* CHECKLIST */
.why .checklist{
    list-style:none;
    padding:0;
    margin-top:20px;
}

.why .checklist li{
    display:flex;
    gap:10px;
    margin-bottom:10px;
}

.why .checklist li::before{
    content:"✔";
    color:#28a745;
    font-weight:bold;
}

/* CTA */
.cta{
    background:#1f4a7a;
    color:white;
    padding:60px 0;
    text-align:center;
}

/* FORM */
.form{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:20px;
}

.form input{
    padding:12px;
    flex:1 1 200px;
}

.form button{
    padding:12px 20px;
    background:#25D366;
    border:none;
    color:white;
}

/* TESTIMONIAL */

.testimonial-section{
    padding:80px 0;
    background:#f9f9f9;
}

.testimonial-layout{
    display:flex;
    flex-wrap:wrap;
    gap:40px;
    justify-content:center;
}

.video-box,
.testimonial-list{
    flex:1 1 300px;
}

.video-box video{
    width:100%;
    max-width:350px;
    border-radius:12px;
}

.testimonial {
    background:#e6e6e6;
    padding:25px;
    border-radius:10px;
    margin-bottom:20px; 
}

.testimonial strong{
    display:block;
    margin-top:15px;
    color:#1f4a7a;
}

/* FOOTER */
footer{
    background:#111;
    color:#aaa;
    text-align:center;
    padding:20px;
}

/* EXTRA */
.logo{
    display:flex;
    align-items:center;
    gap:10px;
    color:white;
}

.logo img{
    width:35px;
}

html{
    scroll-behavior:smooth;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* DEFAULT NAV */
nav {
    display: flex;
}

/* MOBILE */
@media (max-width:768px){

    .menu-toggle {
        display: block;
        color: white;
    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #1f4a7a;
    }

    nav.active {
        display: flex;
    }

    .nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

footer a:hover {
    color: #2c7be5;
}