.blog-banner {
    background: linear-gradient(135deg, #000000d1 0%, #000000a3 100%), url(https://www.marketresearchintellect.com/images/blogs/charting-new-waters-maritime-logistics-market-sets-sail-for-digital-transformation.webp);
    padding: 9rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


        /* Banner content */
        .banner-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .banner-title {
            color: white;
            font-size: 3.5rem;
            font-family: 'Arial', sans-serif;
            margin-bottom: 1rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .banner-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.25rem;
            font-family: 'Arial', sans-serif;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .banner-button {
            display: inline-block;
            padding: 1rem 2rem;
            background-color: white;
            color: #124375;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-family: 'Arial', sans-serif;
            transition: transform 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .banner-button:hover {
            transform: translateY(-2px);
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .blog-banner {
                 padding: 6rem 1.5rem 3rem 1.5rem; /* Increased top padding */
            }

           .banner-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-top: 2rem; /* Add some space at the top */
    }

           .banner-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
        margin: 1.5rem auto; /* Center the subtitle with margin */
        max-width: 90%; /* Prevent text from touching edges */
    }
    /* Adjust decorative elements for mobile */
    .blog-banner::before {
        width: 150px;
        height: 150px;
        top: -50px;
        right: -50px;
    }
    .blog-banner::after {
        width: 100px;
        height: 250px;
        bottom: -25px;
        left: -25px;
    }
        }

        @media (max-width: 480px) {
            .banner-title {
                font-size: 2rem;
            }

            .banner-subtitle {
                font-size: 1rem;
            }

            .banner-button {
                padding: 0.875rem 1.75rem;
            }
        }
        
        
        
        /*Contact Us*/
         /* Contact Form Styles */
.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 1.8rem;
    color: #124375;
    margin-bottom: 1.5rem;
}

.contact-form form {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1.5rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background-color: #fff;
    transition: border-color 0.3s ease;
    width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.contact-form button[type="submit"] {
    background-color: #124375;
    color: #fff;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Responsive Styles for Mobile */
@media (max-width: 767px) {
    .contact-form {
        padding: 1.5rem;
    }

    .contact-form h2 {
        font-size: 1.5rem;
    }

    .contact-form form {
        grid-gap: 1rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }

    .contact-form button[type="submit"] {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}