/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #00204a;
    background-color: #ffffff;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Header Styles */
header {
    background: url('LogoLetters.png') no-repeat left center, #c4c211;
    background-size: 500px auto; /* Enlarged logo */
    height: 80px; /* Accommodate larger logo */
    color: #c4c211;
    padding: 1rem 0;
    display: flex;
    justify-content: right;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

header nav {
    width: 100%;
    text-align: center;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

header nav ul li {
    margin: 0 15px;
}





/* Hero Section */
.hero {
    background: url('images/hero-bg.png') no-repeat center center/cover;
    color: #ffffff;
    text-align: left;
    padding: 2rem;
    position: relative;
    height: 700px;
}

.hero .container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.hero h2, .hero p, .hero .cta, .hero .cta-secondary {
    margin-left: 2rem;
}

.hero .cta, .hero .cta-secondary {
    background: #12c7ff;
    color: #00204a;
    padding: 1rem 2rem;
    text-decoration: none;
    margin-right: 1rem;
    border-radius: 5px;
}

.hero .cta-secondary {
    background: #00204a;
    color: #ffffff;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: url('images/features-bg.png') no-repeat left center / cover, #f4f4f4;
    text-align: center;
}

.features h2 {
    margin-bottom: 2rem;
    color: #00204a;
}

.feature-item {
    display: inline-block;
    width: 22%;
    margin: 1%;
    padding: 1rem;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 32, 74, 0.1);
    transition: background-color 0.3s, color 0.3s;
    color: #00204a;
}

.feature-item:hover {
    background-color: #00204a;
    color: #ffffff;
}

.feature-item h3, .feature-item p {
    transition: color 0.3s;
}

.feature-item:hover h3, .feature-item:hover p {
    color: #ffffff;
}

/* Our Differentials Section */
.differentials {
    padding: 4rem 0;
    background: url('images/differentials-bg.png') no-repeat, #c4c211;
    text-align: center;
}

.differentials .container {
    display: flex;
    flex-direction: column;
}

.differential-row {
    display: flex;
    justify-content: space-around;
}

.differential-item {
    width: 45%;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 32, 74, 0.1);
    transition: background-color 0.3s, color 0.3s;
    color: #00204a;
}

.differential-item:hover {
    background-color: #00204a;
    color: #ffffff;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: #f4f4f4;
    text-align: center;
    color: #00204a;
}

.testimonials h2 {
    margin-bottom: 2rem;
    color: #00204a;
}

.testimonial-container {
    display: flex;
    overflow-x: auto;
    padding: 2rem 0;
}

.testimonial-item {
    width: 30%;
    min-width: 250px;
    margin-right: 20px;
    padding: 1rem;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 32, 74, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.testimonial-item a {
    color: inherit;
    text-decoration: none;
}

/* Footer */
footer {
    background: url('images/footer-bg.png') no-repeat, #00204a;
    background-size: cover;
    background-position: center;
    color: #c4c211;
    padding: 2rem 0;
    text-align: left;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: left;
    margin-bottom: 1rem;
}

footer .footer-links ul li {
    margin-right: 20px;
}

footer .footer-links ul li a {
    color: #c4c211;
    text-decoration: none;
}

footer .footer-links ul li a:hover {
    text-decoration: underline;
}

footer .contact-info {
    text-align: left;
    margin-top: 1rem;
}

footer .contact-info p {
    margin: 0.5rem 0;
}

footer .contact-icon {
    width: 20px;
    height: auto;
    margin-left: 10px;
}


.right-align-text {
    text-align: left;
}


header nav ul li a {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

header nav ul li a:hover {
    background-color: #001738;
    text-decoration: none;
}
