/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "EB Garamond", serif;
    font-weight: bold;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}
#home h1{
    font-size: 65px;
    font-family: "lato", serif;
    font-weight: 700;
    font-style: normal;
}
#home h2{
    font-size: 20px;
    font-family: "Merriweather", serif;
    font-weight: 700;
    font-style: normal;
}

@media(max-width:700px){
    #home h1{
        font-size: 24px;
        padding-bottom: 15px;
    }
    #home h2{
        font-size: 15px;
        padding-bottom: 0px;
    }
    #home p{
        font-size: 16px;
        padding-bottom: 15px;
        width: 70%;
        margin: auto;
    }
    nav ul li{
        display: block;
        padding-bottom: 8px;
    }
    .nav{
        position: absolute;
        background: white;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 2s;
    }
    nav .fa{
        display: block;
        color: rgb(21, 21, 100);
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    nav ul{
        padding: 30px;
    }
}

/* Header */
.header {
    background: white;
    color: white;
    padding: 1vw 4vw;
    width: 100%;
    position: fixed;
    z-index: 1;
}

.header .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: auto;
    padding: 0 1rem;
}
.header .container img{
    width: 100px;
}
.nav{
    text-align: right;
}
.nav ul li {
    margin-left: 1.5rem;
    list-style: none;
    display: inline-block;
    position: relative;
}
.nav ul li a {
    color: rgb(21, 21, 100);
    text-decoration: none;
    font-size: 1rem;
}
.nav ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: red;
    display: block;
    margin: auto;
    transition: 1s;
}
.nav ul li:hover::after{
    width: 100%;
}
nav .fa{
    display: none;
}

@media(max-width:700px){
    #home h1{
        font-size: 24px;
        padding-bottom: 15px;
    }
    #home h2{
        font-size: 19px;
        padding-bottom: 0px;
    }
    #home p{
        font-size: 16px;
        padding-bottom: 15px;
        width: 70%;
        margin: auto;
    }
    nav ul li{
        display: block;
        padding-bottom: 8px;
    }
    .nav{
        position: absolute;
        background: #f4f4f4;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 2s;
    }
    nav .fa{
        display: block;
        color: rgb(21, 21, 100);
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    nav ul{
        padding: 30px;
    }
}


/* Hero Section */
.hero {
    background: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url('images/logistics-transportation-container-cargo-ship-cargo-plane-with-working-crane-bridge-shipyard-sunrise-logistic-import-export-transport-industry-background-ai-generative.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 18rem 1rem 10rem;
    animation: slideshow 15s infinite ease-in-out;
}

@keyframes slideshow {
    0% {
        background: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url('images/IMG-20250115-WA0001.jpg') no-repeat center center/cover;
    }
    33% {
        background: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url('images/IMG-20250115-WA0002.jpg') no-repeat center center/cover;
    }
    66% {
        background: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url('images/IMG-20250115-WA0000.jpg') no-repeat center center/cover;
    }
    100% {
        background: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url('images/IMG-20250115-WA0004.jpg') no-repeat center center/cover;
    }
}


.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}
.hero-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}
.cta {
    padding: 0.7rem 2rem;
    background: #ff6600;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
}
.cta:hover{
    background-color: white;
    color: black ;
    transition: 1s;
}

/* Highlights Section Styles */

.highlights {
    background: #f4f4f4;
    padding: 3rem 1rem;
    text-align: center;
}

.highlights h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.highlight-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.highlight-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    width: 250px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.highlight-card img {
    width: 60px;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #003366;
}

.highlight-card p {
    font-size: 0.9rem;
    color: #666;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}




/* Services Preview Section */

.services-preview {
    background: #fff;
    padding: 3rem 1rem;
    text-align: center;
}

.services-preview h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.services-preview .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;

}

.service-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
    width: 100%;
    border-radius: 8px 8px 0 0;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #003366;
}

.service-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.service-card .learn-more {
    text-decoration: none;
    color: #ff6600;
    font-weight: bold;
    transition: color 0.3s ease;
}

.service-card .learn-more:hover {
    color: #e55d00;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}


/* Testimonial Section Styles */
.testimonials {
    background: #f9f9f9;
    padding: 3rem 1rem;
    text-align: center;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.testimonials .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.testimonial-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card .quote {
    font-size: 1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #003366;
}

.client-info h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #003366;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Footer Section */
.site-footer {
    background: #003366;
    color: #fff;
    padding: 3rem 5rem;
    font-size: 0.9rem;
}

.site-footer h2,
.site-footer h3 {
    color: #ffcc00;
    padding-bottom: 0.5rem;
}

.site-footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.site-footer .footer-logo {
    flex: 1 1 300px;
}

.site-footer .footer-links ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.site-footer .footer-links ul li {
    margin-bottom: 0.5rem;
}

.site-footer .footer-links ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.site-footer .footer-links ul li a:hover {
    color: #ffcc00;
}

.site-footer .footer-contact {
    flex: 1 1 300px;
}

.site-footer .footer-subscribe {
    flex: 1 1 300px;
}

.site-footer .footer-subscribe form {
    display: flex;
    gap: 0.5rem;
}

.site-footer .footer-subscribe input {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
}

.site-footer .footer-subscribe button {
    padding: 0.5rem 1rem;
    border: none;
    background: #ffcc00;
    color: #003366;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.site-footer .footer-subscribe button:hover {
    background: #e6b800;
}

.site-footer .footer-bottom {
    margin-top: 2rem;
    text-align: center;
    border-top: 1px solid #ccc;
    padding-top: 1rem;
}

.site-footer .social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-top: 1rem;
}

.site-footer .social-links li {
    margin: 0 0.5rem;
}

.site-footer .social-links li a img {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s;
}

.site-footer .social-links li a:hover img {
    opacity: 0.7;
}



/* Media Query for Footer Section */
@media (max-width: 700px) {

    #home h1{
        font-size: 35px;
        padding-bottom: 15px;
    }
    #home h2{
        font-size: 20px;
        padding-bottom: 0px;
    }
    #home p{
        font-size: 18px;
        padding-bottom: 15px;
        width: 100%;
        margin: auto;
    }
    .testimonials .section-subtitle {
        font-size: 1.2rem;
        width: 90%;
        margin: 15px auto;

    }
    .site-footer {
        padding: 2rem 1rem; /* Adjust padding for smaller screens */
        text-align: center; /* Center-align text for better readability */
    }

    .site-footer .footer-content {
        flex-direction: column; /* Stack footer content vertically */
        gap: 1.5rem; /* Add spacing between sections */
    }

    .site-footer .footer-links ul {
        text-align: center; /* Left-align links for better usability */
        margin: 0 auto; /* Center-align the list container */
    }

    .site-footer .footer-contact,
    .site-footer .footer-logo,
    .site-footer .footer-subscribe {
        flex: 1 1 auto; /* Allow sections to take equal space */
    }

    .site-footer .footer-subscribe form {
        flex-direction: row; /* Stack input and button */
        gap: 0.5rem; /* Add spacing between input and button */
    }

    .site-footer .footer-subscribe input,
    .site-footer .footer-subscribe button {
        width: 30%; /* Make input and button full-width */
    }

    .site-footer .social-links {
        justify-content: center; /* Center-align social links */
        margin-top: 1rem;
    }
}
