:root {
    --primary-color: #4169E1;
    --secondary-color: #F0F8FF;
    --third-color: #0A2342;
    --accent-color: #1E90FF;
    --text-color: #333;
    --light-text-color: #fff;
    --dark-navy: #0A2342;
    --gradient-start: #4169E1;
    --gradient-end: #0A2342;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f4f7f9;
}

header {
    background-color: #ffffff; /* Changed to white */
    padding: 0.8rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Keep shadow for depth */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--third-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none; /* Remove underline */
}

.logo img {
    max-height: 25px; /* Set a maximum height for the logo */
    width: auto; /* Allow width to adjust automatically */
    display: block; /* Ensure it behaves like a block element */
    margin: auto; /* Center the logo */
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: var(--third-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: var(--primary-color); /* Change hover color to primary */
}

main {
    padding-top: 100px;
}

section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3 {
    margin-bottom: 1rem;
}

#hero {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--light-text-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.cta-button {
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:first-child {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.cta-button.secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--light-text-color);
    border: 2px solid var(--light-text-color);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-visual {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.floating-element {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--light-text-color);
    animation: float 6s ease-in-out infinite;
}

.fe-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
}

.fe-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.fe-3 {
    width: 70px;
    height: 70px;
    bottom: 10%;
    left: 20%;
    animation-delay: -4s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--light-text-color);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.step-image {
    flex: 1;
    max-width: 400px;
}

.step-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-content {
    flex: 1;
}

.step-number {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-bottom: 1rem;
}

.testimonial {
    background-color: var(--light-text-color);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

footer {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    text-align: center;
    padding: 1rem 0;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    .nav-links {
        margin-top: 1rem;
    }

    .nav-links li {
        margin: 0 1rem;
    }

    #hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    .step {
        flex-direction: column;
    }

    .step-image {
        max-width: 100%;
    }
}