/* Reset and basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Section */
header {
    background-color: #003366;
    color: white;
    padding: 20px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Added shadow for better visibility */
}

header .logo h1 {
    font-size: 2.5rem;
    color: #ffffff; /* Ensure logo text is visible */
}

header nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #ff6347;
}

/* Hero Section */
.hero-section {
    background-image: url('images/home-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #003366;
    text-align: center;
    padding: 100px 20px;
    animation: fadeIn 1.5s ease-in-out;
}

.hero-section h2 {
    font-size: 3rem;
}

.hero-section p {
    font-size: 1.2rem;
    margin: 20px 0;
}

.hero-section .cta-btn {
    background-color: #ff6347;
    padding: 15px 30px;
    color: white;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero-section .cta-btn:hover {
    background-color: #003366;
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.why-choose-us-section h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 40px;
}

.why-choose-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.choose-item {
    width: 30%;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.choose-item:hover {
    transform: scale(1.05);
}

.choose-item h3 {
    font-size: 1.8rem;
    color: #003366;
    margin-bottom: 10px;
}

.choose-item p {
    color: #666;
}

/* How It Works Section */
.how-it-works-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.how-it-works-section h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 40px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.step {
    width: 23%;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: scale(1.05);
}

.step h3 {
    font-size: 1.8rem;
    color: #003366;
    margin-bottom: 10px;
}

.step p {
    color: #666;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 40px;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.testimonial-item {
    background-color: #f9f9f9;
    padding: 30px;
    width: 45%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: scale(1.05);
}

.testimonial-item p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.testimonial-item span {
    font-weight: bold;
    color: #003366;
}

/* Footer Section */
footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 15px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadeInUp {
    animation: fadeInUp 1s ease-in-out;
}

.fadeInUp.delay-1 {
    animation-delay: 0.3s;
}

.fadeInUp.delay-2 {
    animation-delay: 0.6s;
}

.fadeInUp.delay-3 {
    animation-delay: 0.9s;
}

.fadeInUp.delay-4 {
    animation-delay: 1.2s;
}

.fadeInUp.delay-5 {
    animation-delay: 1.5s;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
    }

    .steps-container,
    .why-choose-container {
        flex-direction: column;
        align-items: center;
    }

    .choose-item,
    .step {
        width: 80%;
        margin-bottom: 30px;
    }

    .testimonial-item {
        width: 80%;
    }
}


/* ABOUT US SECTION */
/* Reset and basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Hero Section for About Us */
.hero-section-about {
    background-image: url('images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #003366;
    text-align: center;
    padding: 100px 20px;
    animation: fadeIn 1.5s ease-in-out;
}

.hero-section-about h2 {
    font-size: 3rem;
}

.hero-section-about p {
    font-size: 1.2rem;
    margin: 20px 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadeInUp {
    animation: fadeInUp 1s ease-in-out;
}

.fadeInUp.delay-1 {
    animation-delay: 0.3s;
}

.fadeInUp.delay-2 {
    animation-delay: 0.6s;
}

.fadeInUp.delay-3 {
    animation-delay: 0.9s;
}

.fadeInUp.delay-4 {
    animation-delay: 1.2s;
}

.fadeInUp.delay-5 {
    animation-delay: 1.5s;
}

/* Mission and Values Section */
.mission-values-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.mission-values-section h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 20px;
}

.mission-values-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.mission-values-section ul {
    list-style-type: none;
    padding: 0;
}

.mission-values-section ul li {
    font-size: 1.1rem;
    color: #003366;
    margin-bottom: 10px;
}

/* Meet the Team Section */
.team-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.team-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.team-member {
    width: 30%;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: scale(1.05);
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 1.8rem;
    color: #003366;
    margin-bottom: 10px;
}

.team-member p {
    color: #666;
}

/* Footer Section */
footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 15px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .team-container {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        width: 80%;
        margin-bottom: 30px;
    }
}

/* CONTACT SECTION */
.contact-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 40px;
}

/* Contact Form */
.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-form {
    width: 45%;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background-color: #003366;
    color: white;
    padding: 15px 30px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #ff6347;
}

/* Contact Information */
.contact-info {
    width: 45%;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 10px;
}

/* Map Section */
.map-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.map-container {
    width: 100%;
    height: 400px;
    margin: auto;
}

/* Animations */
.fadeInUp {
    animation: fadeInUp 1s ease-in-out;
}

.fadeInUp.delay-1 {
    animation-delay: 0.3s;
}

.fadeInUp.delay-2 {
    animation-delay: 0.6s;
}

.fadeInUp.delay-3 {
    animation-delay: 0.9s;
}

.fadeInUp.delay-4 {
    animation-delay: 1.2s;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-form,
    .contact-info {
        width: 80%;
        margin-bottom: 30px;
    }
}

/* Logo Styling */
.logo-img {
    width: 120px;  /* Adjust the size of your logo */
    height: auto;
    margin-left: 20px;  /* Space between the logo and the navigation */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #003366;
}
