* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #fff;
    color: white;
}

h1, h2, button{
	font-family: 'Poppins', sans-serif;
}
label, p, li, strong, span{
	font-family: 'Inter', sans-serif;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background-color: #004899;
    border-bottom: 3px solid #ff9800;
}

/* Navbar Container */
.nav-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Logo */
.logo img {
    height: 40px; /* Adjust as needed */
    width: auto;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 50px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

/* Sign In Button */
.sign-in {
    background-color: #ff9800;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}

/* Hamburger Menu */
.hamburger {
    display: none; /* Hide by default */
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 8%;
    min-height: 80vh;
    background-color: #004899; /* Fallback color */
    z-index: 1;
}

/* Background image with opacity */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/banner.webp') repeat center center/contain;
    opacity: 0.5; /* Adjust for desired transparency */
    z-index: -1;
}

.hero-text {
    max-width: 50%;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: bold;
}

.hero-text p {
    font-size: 18px;
    margin-top: 10px;
    line-height: 1.7;
}

/* Buttons */
.buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.btn-primary {
    background-color: #ff9800;
    color: white;
    padding: 12px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Added shadow for more pop */
}

.btn-secondary {
    background-color: white;
    color: #004899;
    padding: 12px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Added shadow for more pop */
}

.btn-primary:hover,
.btn-secondary:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
	transform: translateY(-1px); /* ✅ Lift effect on hover */
}

/* Hero Image */
.hero-image img {
    width: 500px;
    opacity: 0.9;
}


/* Delivery Section */
.delivery-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 8% 30px 8%;
    gap: 40px;
    background-color: #fff;
}

/* Left Side - Delivery Image */
.delivery-image {
    position: relative;
    width: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.delivery-image img {
    width: 100%;
    border-radius: 20px;
}

/* Overlay Text */
.delivery-image .overlay-text {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #000;
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 5px;
}

/* Right Side - Delivery Text */
.delivery-text {
    max-width: 50%;
    text-align: left;
}

.delivery-text h2 {
    font-size: 36px;
    font-weight: bold;
    color: #000;
}

.delivery-text p {
    padding-top: 10px;
    color: #000;
    line-height: 1.7;
}

.delivery-text .btn-primary {
    margin-top: 20px;
}

/* Section Styling */
.why-choose-us {
    padding: 50px 20px;
    background-color: #fff;
    color: #000;
}

.why-choose-us h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
}

/* Features Container */
.features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Feature Box */
.feature {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    margin: 10px;
    text-align: center;
}

.feature img {
    width: 50px; /* Adjust based on actual icon size */
    height: auto;
    margin-bottom: 10px;
}

.feature h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.feature p {
    font-size: 14px;
    color: #555;
}

/* Section Styling */
.shipping-services {
    padding: 50px 20px;
    background-color: #004899; /* Adjust color if necessary */
    color: white;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 per row */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Service Box */
.service {
    text-align: center;
    padding: 20px;
}

.service img {
    width: 50px; /* Adjust based on actual icon size */
    height: auto;
    margin-bottom: 10px;
}

.service h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.service p {
    font-size: 14px;
    color: #ddd;
}

/* flags section */
.flags-section {
    background-color: #f8f8f8;
    color: #004899;
    text-align: center;
    padding: 20px 0;
    padding-bottom: 40px;
}

.flags-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.flags-image {
    width: 100%;
    height: 400px; /* Set a fixed height */
    background: url('../img/flags.webp') no-repeat center;
    background-size: contain;
}


/* Contact Section */
#contact {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background: #004899;
    position: relative; /* Needed for absolute positioning */
    /* overflow: hidden; /* Prevents image overflow */
    z-index: 1;
}

/* Add background image at the bottom */
#contact::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/lines.webp') no-repeat center center/cover;
    opacity: 0.5;
    z-index: -1;
}

/* Centered Container */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 40px;
    border-radius: 10px;
    max-width: 1080px;
    width: 100%;
}

/* Contact Form */
.contact-form {
    flex: 1;
    min-width: 300px;
    margin-right: 20px;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-form .input-group {
    position: relative;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    background-color: transparent;
    color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background-color: transparent;
}

/* Completely remove the yellow background from autofill */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active {
    background-color: transparent !important;
    -webkit-text-fill-color: white !important; /* ✅ Make text white */
    transition: background-color 5000s ease-in-out 0s;
}

.contact-form label {
	position: absolute;
	left: 10px;
	top: 48%;
	transform: translateY(-50%);
	background: #004899;
	padding: 0 5px;
	color: #fff;
	font-size: 13px;
	transition: all 0.3s ease;
	pointer-events: none;
}

.contact-form input:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:focus + label,
.contact-form textarea:not(:placeholder-shown) + label {
    top: 0;
	font-size: 12px;
    color: #ff9800;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    background: #ff9800;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Added shadow for more pop */
}

.contact-form button:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
	transform: translateY(-1px); /* ✅ Lift effect on hover */
}

/* Contact Information */
.contact-info {
    flex: 1;
    min-width: 300px;
    text-align: center;
    margin-left: 20px;
    padding-top: 20px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
}

.contact-info i {
    margin-bottom: 10px;
    color: #007BFF;
}

.required {
	color: red;
	top: 10%;
}

/* Mark select boxes that gets an error on validation: */
.invalid {
	border: 1px solid red !important;
}

.form-notification {
    margin-top: 10px;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    border-radius: 5px;
    display: none;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.social-media {
    margin-top: 20px;
}

.social-media a {
    font-size: 30px;
    margin: 0 10px;
    transition: color 0.3s;
    text-decoration: none;
}

.social-media a:hover {
    color: #007BFF;
}


/* Map Section (Stays Below) */
.map-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Section */
.footer {
    background: #2b2b2b; /* Medium Dark Grey */
    color: white;
    text-align: center;
    padding: 20px 0 15px 0;
    font-size: 14px;
    position: relative;
    width: 100%;
}

.footer-links {
    margin-top: 8px;
}

.footer-links a {
    color: #f0f0f0;
    text-decoration: none;
    margin: 0 10px;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #007BFF;
}









/* Responsive Design */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block; /* Show only on mobile */
    }
    
    .logo img {
        height: 30px; /* Adjust as needed */
    }

    .nav-container {
        display: none; /* Hide menu initially */
        flex-direction: column;
        position: absolute;
        top: 107px;
        right: 0;
        width: 100%;
        background: #004899;
        text-align: center;
        padding: 30px 0;
        z-index: 10;
    }

    .nav-links {
        flex-direction: column;
        gap: 30px;
        padding-bottom: 20px;
    }

    .nav-container.show {
        display: flex; /* Show menu when toggled */
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .buttons {
        display: flex;
        justify-content: center;
    }

    .hero-image img {
        width: 100%;
        max-width: 250px;
    }

    /* Adjust Navbar for Mobile */
    .nav-container {
        flex-direction: column;
        gap: 10px;
    }

    .delivery-section {
        flex-direction: column;
        text-align: center;
    }

    .delivery-text {
        max-width: 100%;
        text-align: center;
        justify-content: center;
    }

    .delivery-image {
        width: 100%;
        max-width: 350px;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .flags-section {
        padding: 10px 0;
        padding-bottom: 40px;
    }

    .flags-image {
        height: 200px; /* Set a fixed height */
    }

    .container {
        flex-direction: column;
        text-align: center;
    }

    .contact-form,
    .contact-info {
        margin: 0;
        width: 100%;
    }

    .contact-form {
        margin-bottom: 20px;
    }

    .map-container {
        position: relative;
        height: 300px;
    }
}
