/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f5f5f5;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #121212;
    padding: 15px 5%;
    color: white;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
}

.logo a {
    color: white;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #007bff;
}


/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        background: #121212;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 70vh;
    background: linear-gradient(135deg, #00a6ff, #0062ff);
    color: white;
    padding: 20px;
}

.hero-content {
    max-width: 1200px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    margin: 15px 0 25px;
}

.cta {
    background: rgb(0, 0, 0);
    color: #ffffff;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-block;
}

.cta:hover {
    background: #212121;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .cta {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Features Section */
.features {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 50px 5%;
    background: #f5f5f5;
}

.features h2 {
    font-size: 2.4rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s ease-in-out;
    color: #333;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.ctaa {
    margin: 30px auto 0px;
    padding: 12px 30px;
    font-size: 1.2rem;
    background-color: #007bff;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    width: 400px;
}

.ctaa:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .features h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-item {
        font-size: 1rem;
        padding: 15px;
    }
    .ctaa {
        width: 250px;
        font-size: 1rem;
        padding: 10px 25px;
    }
}

/* How It Works Section */
.how-it-works {
    text-align: center;
    padding: 0px 5% 20px;
    background: #f5f5f5;
}

.how-it-works h2 {
    font-size: 2.2rem;
    color: #000000;
    margin-bottom: 30px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.step {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.15);
}

.step-icon {
    background-color: #007bff;
    color: white;
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-bottom: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

.step h3 {
    font-size: 1.5rem;
    margin: 15px 0;
    color: #333;
}

.step p {
    font-size: 1rem;
    color: #666;
}



/* Responsive Design */
@media (max-width: 768px) {
    .how-it-works h2 {
        font-size: 2rem;
    }
    .step h3 {
        font-size: 1.2rem;
    }
    .step p {
        font-size: 1rem;
    }
}

/* Why Choose Section */
.why-choose {
    text-align: center;
    padding: 50px 5%;
    background: #f0f0f0;
}

.why-choose h2 {
    font-size: 2.4rem;
    color: #000000;
    margin-bottom: 30px;
    font-weight: bold;
}

.featuress {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    text-align: left;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    background-color: #007bff;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

.feature h3 {
    font-size: 1.6rem;
    margin: 15px 0;
    color: #333;
}

.feature p {
    font-size: 1.1rem;
    color: #666;
}


/* Responsive Design */
@media (max-width: 768px) {
    .why-choose h2 {
        font-size: 2rem;
    }
    .feature h3 {
        font-size: 1.4rem;
    }
    .feature p {
        font-size: 1rem;
    }
}

/* Testimonials Section */
.testimonials {
    text-align: center;
    padding: 50px 5%;
    background: #f9f9f9;
}

.testimonials h2 {
    font-size: 2.6rem;
    color: #000000;
    margin-bottom: 40px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonial {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: 0.3s;
    position: relative;
}

.testimonial p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.testimonial span {
    display: block;
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: #ff3b3b;
    position: absolute;
    top: -15px;
    left: 20px;
    opacity: 0.1;
}



/* Responsive Design */
@media (max-width: 768px) {
    .testimonials h2 {
        font-size: 2.2rem;
    }

    .testimonial p {
        font-size: 1rem;
    }

    .testimonial span {
        font-size: 1rem;
    }
}

/* Final Call to Action Section */
.final-cta {
    text-align: center;
    padding: 60px 5%;
    background: #000000;
    color: white;
}

.final-cta h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 400;
}


/* Responsive Design */
@media (max-width: 768px) {
    .final-cta h2 {
        font-size: 2.2rem;
    }
    .final-cta p {
        font-size: 1.1rem;
    }
}

/* Footer Section */
.footer {
    background: #121212;
    color: white;
    padding: 60px 5%;
    text-align: center;
    font-family: Arial, sans-serif;
}

.footer h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.quick-links, .social-media {
    width: 45%;
}

.quick-links ul, .social-media ul {
    list-style-type: none;
    padding: 0;
}

.quick-links li, .social-media li {
    margin: 12px 0;
}

.quick-links a, .social-media a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
}

.quick-links a:hover, .social-media a:hover {
    color: #ff3b3b;
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 40px;
    font-size: 1rem;
    line-height: 1.8;
    color: #aaa;
}

.contact-info a {
    color: #ff3b3b;
    text-decoration: none;
}

.footer-terms a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}

.footer-terms a:hover {
    color: #ff3b3b;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 40px 5%;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .quick-links, .social-media {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-bottom {
        font-size: 0.9rem;
        text-align: center;
    }
}
.contact-form {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.contact-form h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
    color: #555;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #007bff;
    outline: none;
}

.form-group button {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-group button:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form {
        padding: 20px;
    }

    .contact-form h2 {
        font-size: 1.6rem;
    }
}
