
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');





/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
}

/* Header and Navigation */
header {
    background-color: #1E2A38;
    padding: 20px;
}


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

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

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

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}


nav a {

    text-decoration: none;

}

nav a:hover, nav a:hover div {
    color: aqua;
}

/* Hero Section */
.hero {
    
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.cta-button {
    background-color: #ff6600;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #e65500;
}

/* Pricing Section */
#pricing {
    padding: 50px;
    background-color: white;
    text-align: center;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    
}

.pricing-card {
    background-color: #1E2A38;
    color: white;
    padding: 20px;
    border-radius: 8px;
    width: 250px;
    text-align: center;
    padding-bottom: 40px;
}

.pricing-card h3 {
    font-size: 22px;
}

.pricing-card p {
    font-size: 20px;
    font-weight: bold;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
}

.pricing-card ul li {
    margin: 10px 0;
    font-size: 16px;
}

/* Footer */
footer {
    background-color: #1E2A38;
    color: white;
    text-align: center;
    padding: 20px;
}


.hero {
    position: relative;
    
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 100px 0;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1E2A38, #2E3E4E);
}



.hero-content {
    position: relative;
    z-index: 2; /* Ensures text is above the overlay */
}



/* About Us Section */
#about {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.about-text {
    flex: 1;
    max-width: 600px;
}

.about-text h2 {
    font-size: 32px;
    color: #1E2A38;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.about-image {
    flex: 1;
    max-width: 500px;
}

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

#faq {
    padding: 50px;
    text-align: center;
}

.faq-item {
    max-width: 800px;
    margin: auto;
    text-align: left;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 20px;
    color: #1E2A38;
}

.faq-item p {
    font-size: 16px;
    color: #555;
}
#cta {
    text-align: center;
    padding: 50px;
    background-color: #1E2A38;
    color: white;
}

.cta-button {
    background-color: #ff6600;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #e65500;
}
/* Make the entire page a flex container */
html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
}

/* Ensure content expands to push footer down */
main {
    flex: 1;
}

/* Footer Styling */
footer {
    background-color: #1E2A38;
    color: white;
    text-align: center;
    
    margin-top: auto;
    
}

#menu-toggle {
    display: none;
    cursor: pointer;
    color: white;
    font-size: 28px;
}

footer a {

    text-decoration: none;
    color: rgb(23, 227, 227);
}

/* Responsive Navbar */
@media (max-width: 768px) {
    header nav {
        flex-direction: row;
        align-items: center;
        padding: 10px 20px;
        
    }

    header .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #1E2A38;
        text-align: center;
        padding: 10px 0;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex; /* Show menu when active */
    }

    .nav-links li {
        padding: 20px 0;
    }

    #menu-toggle {
        display: block; /* Show hamburger icon */
        cursor: pointer;
        color: white;
        font-size: 28px;
    }

    .nav-links li {
        margin: 10px 0;
    }
}

/* Hero Section (Mobile Responsive) */
@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 60px 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

/* About Section (Stack Elements on Mobile) */
@media (max-width: 768px) {
    #about {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .about-text {
        max-width: 100%;
        padding: 0 20px;
    }

    .about-image img {
        width: 80%;
    }
}

/* Pricing Section (Stack Cards on Mobile) */
@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 90%;
        max-width: 350px;
    }
}

/* FAQ Section (Fix Width on Small Screens) */
@media (max-width: 768px) {
    #faq {
        padding: 40px 20px;
    }

    .faq-item {
        max-width: 100%;
    }
}

/* CTA Section (Fix Spacing) */
@media (max-width: 768px) {
    #cta {
        padding: 40px 20px;
    }
}

/* Footer Responsive Fix */
@media (max-width: 768px) {
    footer {
        padding: 30px 15px;
        font-size: 14px;
    }
}

