* {
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    font-family: 'Poppins', sans-serif;
    width: 100%;
}



.nav-container {
    height: 10vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    z-index: 100;
    left: 0;
    right: 0;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.514);
}

.nav-container .logo {
    display: flex;
    align-items: center;
}

.nav-container .logo img {
    width: 50px;
    height: 50px;
}

.logo img:hover {
    cursor: pointer;
    transform: scale(1.1);
    transition: all 0.8s ease-in-out;


}

.nav-container .logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-container .logo-text h3 {
    color: #12298d;
}

.nav-container .logo-text p {
    color: #767777;
    font-size: 12px;
}

.nav-links ul {
    display: flex;
    gap: 25px;
    align-items: center;
    list-style: none;
}

.nav-links ul li a {
    font-size: 16px;
    text-decoration: none;
    color: #12298d;
    padding: 15px;
}

#apply-now {
    background: linear-gradient(to right, #12298d, #7155d8);
    color: #ffffff;
    padding: 12px;
    border-radius: 10px;
    text-transform: capitalize;
    font-weight: bold;
    font-size: 14px;
}

.nav-links ul li a:hover {
    cursor: pointer;
    transition: none;
    background-color: #7086d62f;
    color: #12298d;
    border-radius: 10px;
    border: none;
    border-bottom: 2px solid #12298d;
    transform: border-bottom 1s ease-in-out scaleX(1.2);
}

.hero-section {
    width: 100%;
    height: 80vh;


}

.hero {
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;


}

.hero-text {
    width: 40%;

}

#hero-title {
    font-size: 50px;
    font-weight: bold;
    color: black;
    line-height: 1;

}

.hero-text h1 {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: bold;
    color: #12298d;
}

.hero-text p {
    width: 70%;
    line-height: 1.7;
    letter-spacing: 1px;
    font-size: 25px;
    color: #767777;

}

.hero #hero-button {
    margin-top: 30px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    padding: 15px;
    border-radius: 10px;
    background-color: #12298d;
    text-transform: capitalize;
    border: none;
    cursor: pointer;
}

.hero #hero-button:hover {
    cursor: pointer;
    background-color: #2900bd;
    color: #ffffff;
}

.hero .hero-image {
    width: 30%;
}

.hero .hero-image img {
    width: 90%;
    object-fit: cover;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.589);
    border-radius: 50%;
    border: 4px solid white;
}

/*responsive*/
@media (max-width: 768px) {

    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
    }

    .nav-links ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .nav-links ul li a {
        font-size: 14px;
        padding: 8px;
    }

    #apply-now {
        padding: 8px 10px;
        font-size: 13px;
    }

    .hero {
        flex-direction: column;
        height: auto;
        margin-top: 20px;
        text-align: center;
    }

    .hero-text {
        width: 90%;
    }

    .hero-text h1,
    #hero-title {
        font-size: 35px;
    }

    .hero-text p {
        font-size: 18px;
        width: 100%;
    }

    .hero .hero-image img {
        width: 220px;
    }
}


.card-section {
    width: 100%;
    height: 100vh;
    background-color: rgba(237, 245, 255, 0.932);
    font-family: 'Poppins', sans-serif;

}


.card-headings {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.card-headings p {
    color: #4222cf;
    font-size: 20px;
    padding: 10px;
    margin-top: 60px;
}

.card-headings h1 {
    font-size: 50px;
    font-weight: bold;
    color: #12298d;
    text-transform: capitalize;
    margin-bottom: 60px;
}

.card-container {
    width: 100%;

}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.cards .card {
    width: 20%;
    height: 40vh;
    background-color: #ffffff;
    border: 1px solid #12298d;
    border-radius: 10px;

    transition:
        border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    will-change: transform;

}


.cards .card i {
    font-size: 50px;
    color: #12298d;
    padding: 40px;
    background-color: transparent;
}


.cards .card h2 {
    font-size: 25px;
    font-weight: bold;
    color: #000000;
    text-transform: capitalize;
    margin-left: 10px;
}

.cards .card p {
    font-size: 16px;
    color: #767777;
    padding: 20px;
}

.cards .card a {
    font-size: 16px;
    color: #12298d;
    padding: 20px;
    text-decoration: none;
    font-weight: bold;
    text-transform: capitalize;
}

.cards .card:hover {
    cursor: pointer;
    color: #ffffff;
    border-color: #ff6600;
    /* hover border color */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transform: translateY(-6px);
}

.cards .card-two {
    width: 20%;
    height: 40vh;
    background-color: #ffffff;
    border: 1px solid #12298d;
    border-radius: 10px;

    transition:
        border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    will-change: transform;

}

.cards .card-two i {
    font-size: 50px;
    color: #004600;
    padding: 40px;
    background-color: transparent;
}

.cards .card-two h2 {
    font-size: 25px;
    font-weight: bold;
    color: #000000;
    text-transform: capitalize;
    margin-left: 10px;
}

.cards .card-two p {
    font-size: 16px;
    color: #767777;
    padding: 20px;
}

.cards .card-two a {
    font-size: 16px;
    color: #004600;
    padding: 20px;
    text-decoration: none;
    font-weight: bold;
    text-transform: capitalize;
}

.cards .card-two:hover {
    cursor: pointer;

    border-color: #00ff55;
    /* hover border color */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transform: translateY(-6px);
}

.cards .card-three {
    width: 20%;
    height: 40vh;
    background-color: #ffffff;
    border: 1px solid #12298d;
    border-radius: 10px;

    transition:
        border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    will-change: transform;

}

.cards .card-three i {
    font-size: 50px;
    color: #ff0000;
    padding: 40px;
    background-color: transparent;
}

.cards .card-three h2 {
    font-size: 25px;
    font-weight: bold;
    color: #000000;
    text-transform: capitalize;
    margin-left: 10px;
}

.cards .card-three p {
    font-size: 16px;
    color: #767777;
    padding: 20px;
}

.cards .card-three a {
    font-size: 16px;
    color: #ff0000;
    padding: 20px;
    text-decoration: none;
    font-weight: bold;
    text-transform: capitalize;
}

.cards .card-three:hover {
    cursor: pointer;
    border-color: #ff0800;
    /* hover border color */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transform: translateY(-6px);
}

.card-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

#card-button {
    width: 200px;
    font-size: 16px;
    color: #ffffff;
    padding: 14px;
    border-radius: 10px;
    background-color: #12298d;
    text-transform: capitalize;
    border: none;
    cursor: pointer;
}

#card-button:hover {
    cursor: pointer;
    transition: none;
    background-color: #2900bd;
    color: #ffffff;
}

/*responsive*/

@media (max-width: 768px) {

    .card-section {
        height: auto;
        padding-bottom: 60px;
    }

    .cards {
        flex-direction: column;
        gap: 30px;
    }

    .cards .card,
    .cards .card-two,
    .cards .card-three {
        width: 85%;
        height: auto;
    }

    .card-headings h1 {
        font-size: 32px;
    }

    .card-headings p {
        font-size: 18px;
    }
}




.about-section {
    width: 100%;
    padding: 80px 0;
    background: #ffffff;
    color: #000000;
}

.whole-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 20px;
}

/* LEFT CONTENT */
.about-container {
    flex: 1;
}

.about-container span {
    color: #7e7d7c;
    font-weight: 600;
    letter-spacing: 1px;
}

#about-title {
    font-size: 42px;
    margin: 10px 0 30px;
}

#about-title span {
    color: #12298d;
}

/* CARD STYLE TEXT */
.about-container h2 {
    font-size: 22px;
    margin-bottom: 8px;
}

.about-container p {
    color: #333333;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 500px;
}

/* BUTTON */
.about-button {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 30px;
    background: #12298d;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.about-button:hover {
    transform: translateY(-3px);
}

/* RIGHT IMAGE */
.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-container img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .whole-container {
        flex-direction: column;
        text-align: center;
    }

    .about-container p {
        margin: auto auto 25px;
    }
}

.helpfull-section {
    width: 100%;
    padding: 80px 0;
    background: #cfcfcfc2;
    color: #000000;
}

.helpfull-headings {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 70px;
}

.helpfull-headings P {
    font-size: 22px;
    color: #9b9c9c;
}

.helpfull-headings h1 {
    font-size: 42px;
    color: #000000;
}

.helpfull-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.helpfull-container div {
    width: 40%;
    font-size: 18px;
    margin-bottom: 8px;
    background-color: #ffffff;
    border-radius: 10px;
    color: black;
    font-weight: bold;
    text-transform: capitalize;
    padding: 18px;
    transition: 0.3s;
}

.helpfull-container div:hover {
    cursor: pointer;
    background-color: #adb6df9f;
    color: #12298d;
    transform: translateY(-3px);
}

/*responsive*/
@media (max-width: 900px) {
    .helpfull-headings {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        font-size: 18px;
    }

    .helpfull-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .helpfull-container div {
        margin: auto auto 25px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.testimonials {
    padding: 80px 8%;
    background: #fff7f1;
    text-align: center;
}

.tag {
    color: #4f46e5;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.testimonials h1 {
    font-size: 48px;
    font-weight: 700;
}

.testimonials h1 span {
    color: #4f46e5;
}

.subtitle {
    max-width: 600px;
    margin: 20px auto 60px;
    color: #555;
    line-height: 1.6;
}

.testimonial-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

/* Card */
.testimonial-card {
    background: #fff;
    width: 380px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
}

.quote {
    position: absolute;
    top: -20px;
    left: 30px;
    background: #2563eb;
    color: #fff;
    font-size: 26px;
    padding: 10px 14px;
    border-radius: 50%;
}

.stars {
    color: #f97316;
    font-size: 20px;
    margin-bottom: 20px;
}

.review {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

.user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.user h4 {
    font-size: 16px;
}

.user p {
    font-size: 14px;
    color: #2563eb;
}

/* Right Info */
.testimonial-info {
    max-width: 500px;
    text-align: left;
}

.testimonial-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.testimonial-info h2 span {
    color: #4f46e5;
}

.testimonial-info p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stats h3 {
    font-size: 42px;
}

.blue {
    color: #2563eb;
}

.green {
    color: #16a34a;
}

.bottom-stats {
    display: flex;
    gap: 40px;
}

.bottom-stats h4 {
    font-size: 28px;
    color: #9333ea;
}

.bottom-stats p {
    font-size: 14px;
}

/* ✅ Responsive */
@media(max-width:900px) {
    .testimonial-wrapper {
        flex-direction: column;
    }

    .testimonial-info {
        text-align: center;
    }

    .stats,
    .bottom-stats {
        justify-content: center;
    }
}

@media(max-width:480px) {
    .testimonials h1 {
        font-size: 32px;
    }

    .testimonial-card {
        width: 100%;
    }
}

/* Footer Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
}

footer {
    background-color: #000;
    padding: 50px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-section h2 {
    color: #00aaff;
    margin-bottom: 10px;
}

.footer-section h3 {
    margin-bottom: 10px;
}

.footer-section p,
.footer-section li {
    font-size: 14px;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #00aaff;
}

.socials a {
    color: #fff;
    border: 1px solid #fff;
    padding: 8px 12px;
    margin-right: 5px;
    text-decoration: none;
    border-radius: 5px;
}

.socials a:hover {
    background-color: #00aaff;
    color: #000;
    transition: 0.3s;
}

hr {
    border-color: #444;
    margin: 30px 0;
}

footer p.copyright {
    text-align: center;
    font-size: 14px;
}

footer p.copyright a {
    color: #00aaff;
    text-decoration: none;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-container {
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
    }

    .socials a {
        margin: 5px 5px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 30px 15px;
    }

    .footer-section h2 {
        font-size: 18px;
    }

    .footer-section p,
    .footer-section li {
        font-size: 12px;
    }

    .socials a {
        padding: 6px 10px;
        font-size: 12px;
    }
}