body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    padding-top: 60px;
    background-color: #0d1b2a;
}
nav {
    background-color: #333;
    padding: 10px 20px;
    display: flex;
    align-items: center; /* Ensures vertical alignment */
    justify-content: space-between;
    position: fixed; /* Fixes the navbar at the top */
    top: 0; /* Sticks it to the very top */
    left: 0;
    width: 100%; /* Ensures it spans the full width */
    z-index: 1000;
    box-sizing: border-box;
}

.logo, .profile {
    display: flex;
    align-items: center;
}

.logo img, .profile img {
    height: 40px; /* Adjust size as needed */
    border-radius: 50%;
    margin-right: 10px;
}

.logo span, .profile span {
    color: white;
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
}

nav ul {
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center; /* Ensures alignment */
    flex: 1;
    max-width: 500px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

nav ul li a:hover {
    color: #ffcc00;
}
.profile {
    margin-left: auto;
    padding-right: 10px;
}

.profile img {
    height: 40px; /* Adjust size if needed */
    border-radius: 50%; /* Makes the profile picture round */
    margin-right: 10px; /* Creates space between the image and name */
}

.profile span {
    color: white;
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
}
.intro {
    text-align: center;
    padding: 100px 10%;
    background: linear-gradient(135deg, #1b263b, #415a77); /* Stylish gradient */
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.2);
    margin: 50px auto;
    width: 80%;
}

.intro h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
}

.intro p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 20px auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #ffcc00;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
    margin: 10px;
}

.btn:hover {
    background: #e6b800;
}

.btn.secondary {
    background: transparent;
    border: 2px solid #ffcc00;
    color: #ffcc00;
}

.btn.secondary:hover {
    background: #ffcc00;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .intro {
        width: 90%;
        padding: 70px 5%;
    }

    .intro h1 {
        font-size: 32px;
    }

    .intro p {
        font-size: 16px;
    }
}
/* About Us Section */
.about-us {
    padding: 80px 10%;
    background: linear-gradient(135deg, #1b263b, #283e56);
    color: white;
    text-align: center;
    border-radius: 10px;
    margin: 50px auto;
    width: 80%;
    box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.2);
}

.about-us h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffcc00; /* Matches the button color for consistency */
}

.about-us p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.about-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: #415a77;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.5);
}

.card img {
    width: 80px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 20px;
    color: #ffcc00;
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-us {
        width: 90%;
        padding: 60px 5%;
    }

    .about-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 350px;
    }
}
/* Services Section */
.services {
    padding: 80px 10%;
    background-color: #1e2a38; /* Matches the website's dark blue-gray color */
    text-align: center;
}

.services-container h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff; /* White text for contrast */
}

.services-container p {
    font-size: 18px;
    line-height: 1.8;
    color: #d1d5db; /* Light gray text for a professional look */
    margin-bottom: 40px;
}

.services-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-card {
    background: #273444; /* Slightly lighter shade for contrast */
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

.service-card img {
    width: 80px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1); /* Makes icons white for consistency */
}

.service-card h3 {
    font-size: 20px;
    color: #fbbf24; /* Vibrant yellow to match the "Learn More" button */
    margin-bottom: 10px;
}

.service-card p {
    font-size: 16px;
    color: #d1d5db; /* Light gray for readability */
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-cards {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 350px;
    }
}
/* Contact Section */
.contact {
    padding: 80px 10%;
    background-color: #1e2a38; /* Dark background to match the theme */
    color: #ffffff;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fbbf24; /* Vibrant yellow for the heading */
}

.contact p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #d1d5db; /* Light gray for readability */
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-form {
    flex: 1;
    max-width: 500px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background: #273444; /* Slightly lighter background */
    color: #ffffff;
    font-size: 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #d1d5db;
}

.contact-form button {
    background-color: #fbbf24; /* Vibrant yellow button */
    color: #1e2a38;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #eab308; /* Slightly darker yellow on hover */
}

.contact-details {
    flex: 1;
    max-width: 300px;
    text-align: left;
    color: #d1d5db;
}

.contact-details h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-details p {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-form,
    .contact-details {
        max-width: 100%;
        text-align: center;
    }
}
/* Footer Section */
.footer {
    background-color: #1e2a38;
    color: #ffffff;
    padding: 50px 10%;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-about,
.footer-links,
.footer-social {
    flex: 1;
    min-width: 250px;
}

.footer-about h2 {
    font-size: 28px;
    color: #fbbf24;
    margin-bottom: 10px;
}

.footer-about p {
    font-size: 16px;
    color: #d1d5db;
    line-height: 1.6;
}

.footer-links h3,
.footer-social h3 {
    font-size: 20px;
    color: #fbbf24;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #fbbf24;
}

.footer-social a {
    margin: 0 10px;
    display: inline-block;
}

.footer-social img {
    width: 30px;
    transition: transform 0.3s ease;
}

.footer-social img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid #d1d5db;
    padding-top: 20px;
    font-size: 14px;
    color: #d1d5db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links ul {
        display: flex;
        gap: 15px;
        justify-content: center;
    }
}







