/* ===================================
   RESET SETTINGS
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ===================================
   BODY
=================================== */

body{
    font-family:Arial, sans-serif;
    font-size:16px;
    line-height:1.6;
    color:#333;
    background-color:#f5f7fa;
}

/* ===================================
   CONTAINER
=================================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===================================
   HEADER
=================================== */

header{
    background:linear-gradient(135deg,#003366,#00bcd4);
    color:white;
}

/* ===================================
   NAVIGATION BAR
=================================== */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    padding:15px 0;
}

/* Logo */

.logo{
    height:200px;       /* Change logo height here */
    width:750px;
}

/* Menu Links */

.nav-links a{
    text-decoration:none;
    color:white;
    font-weight:bold;
    margin-left:20px;
    transition:0.3s;
}

.nav-links a:hover{
    color:#ffd700;
}

/* ===================================
   HERO SECTION
=================================== */

.hero{
    text-align:center;
    padding:100px 20px;
}

.hero h1{
    font-size:3rem;
    margin-bottom:15px;
    color: #003366;
}

.hero p{
    font-size:1.2rem;
    margin-bottom:10px;
    color: #003366;
}

.hero{
    background-image:url('images/ship.png');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    min-height:700px;
}

/* ===================================
   BUTTON
=================================== */

.btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 30px;
    background:white;
    color:#003366;
    text-decoration:none;
    border-radius:30px;
    font-weight:bold;
    transition:0.3s;
}

.btn:hover{
    background:#003366;
    color:white;
}

/* ===================================
   COMMON SECTION
=================================== */

.section{
    padding:70px 20px;
    color: #00bcd4;
}

.section-title{
    text-align:center;
    font-size:2rem;
    color:#003366;
    margin-bottom:40px;
}

/* ===================================
   SERVICES GRID
=================================== */

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

/* ===================================
   SERVICE CARD
=================================== */

.card{
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 3px 12px rgba(0,0,0,0.1);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
}

/* Service Images */

.card img{
    width:100%;
    height:220px;      /* Change service image height here */
    object-fit:cover;
}

/* Service Heading */

.card h3{
    color:#003366;
    padding:15px;
}

/* Service Description */

.card p{
    padding:0 15px 20px;
}

/* ===================================
   ABOUT SECTION
=================================== */

.about{
    background:#f8f9fb;
}

.about p{
    max-width:900px;
    margin:auto;
    text-align:center;
}

/* ===================================
   CONTACT FORM
=================================== */

.contact-form{
    max-width:700px;
    margin:auto;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:5px;
}

.contact-form textarea{
    resize:vertical;
    min-height:120px;
}

.contact-form button{
    background:#003366;
    color:white;
    border:none;
    padding:12px 25px;
    cursor:pointer;
    border-radius:5px;
}

.contact-form button:hover{
    background:#00509e;
}

/* ===================================
   FOOTER
=================================== */

footer{
    background:#003366;
    color:white;
    text-align:center;
    padding:20px;
}

/* ===================================
   MOBILE RESPONSIVE
=================================== */

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        text-align:center;
    }

    .nav-links{
        margin-top:15px;
    }

    .nav-links a{
        display:block;
        margin:10px 0;
    }

    .hero{
        padding:60px 20px;
    }

    .hero h1{
        font-size:2rem;
    }

    .hero p{
        font-size:1rem;
    }

    .logo{
        height: 1500px;
        width: 1850px;
    }

    .contact-info{
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
    margin-bottom:30px;
}

.contact-info h3{
    color:#003366;
    margin-bottom:10px;
}

.contact-info p{
    margin-bottom:15px;
}

.contact-info hr{
    margin:20px 0;
    border:0;
    border-top:1px solid #ddd;
}
}