* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


/* Top Header */

.top-header {
    background: #002b6b;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 10px 50px;
    font-size: 14px;
}

.header-left {
    display: flex;
    gap: 25px;
}


/* Navbar */

.navbar {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 60px;
}

.logo h2 {
    color: #003b8b;
    margin: 0;
}

.logo p {
    margin: 0;
    font-size: 14px;
}

.menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.menu a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
    transition: .3s;
}

.menu a:hover {
    color: #003b8b;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 6px;
    font-weight: bold;
}

.whatsapp-btn:hover {
    background: #1da851;
}


/* Mobile Responsive */

@media(max-width:768px) {
    .top-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 10px;
    }
    .navbar {
        flex-direction: column;
        gap: 20px;
    }
    .menu {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}


/* Guidance Section */


/* Google Font (Optional) */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
body {
    font-family: 'Poppins', sans-serif;
}

.guidance-section {
    padding: 80px 20px;
    background: #f5f7fb;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 38px;
    color: #0d47a1;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}

.guidance-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.guide-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .08);
    transition: .3s;
}

.guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .15);
}

.guide-card>i {
    font-size: 48px;
    color: #0d47a1;
    margin-bottom: 20px;
}

.guide-card h3 {
    margin-bottom: 12px;
    color: #222;
}

.guide-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}


/* Button */

.guide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: #0d47a1;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

.guide-btn:hover {
    background: #1565c0;
    transform: scale(1.05);
}

.guide-btn .fa-arrow-right {
    transition: .3s;
}

.guide-btn:hover .fa-arrow-right {
    transform: translateX(5px);
}


/* ============================= */


/* Tablet (991px) */


/* ============================= */

@media (max-width:991px) {
    .guidance-section {
        padding: 60px 20px;
    }
    .section-title h2 {
        font-size: 32px;
    }
    .section-title p {
        font-size: 15px;
    }
    .guidance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}


/* Guidance section Mobile Responsive */


/* ============================= */


/* Mobile (768px) */


/* ============================= */

@media (max-width:768px) {
    .guidance-section {
        padding: 50px 15px;
    }
    .section-title {
        margin-bottom: 35px;
    }
    .section-title h2 {
        font-size: 28px;
    }
    .section-title p {
        font-size: 14px;
        line-height: 1.6;
    }
    .guidance-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .guide-card {
        padding: 30px 20px;
    }
    .guide-card>i {
        font-size: 42px;
    }
    .guide-card h3 {
        font-size: 22px;
    }
    .guide-card p {
        font-size: 14px;
    }
    .guide-btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 15px;
    }
}


/* ============================= */


/* Small Mobile (480px) */


/* ============================= */

@media (max-width:480px) {
    .guidance-section {
        padding: 40px 12px;
    }
    .section-title h2 {
        font-size: 24px;
    }
    .section-title p {
        font-size: 13px;
    }
    .guide-card {
        padding: 25px 18px;
    }
    .guide-card>i {
        font-size: 38px;
    }
    .guide-card h3 {
        font-size: 20px;
    }
    .guide-card p {
        font-size: 13px;
    }
    .guide-btn {
        font-size: 14px;
        padding: 12px;
    }
}


/* Hero Section */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 60px;
    background: linear-gradient(135deg, #002b6b, #003d99);
    color: white;
    min-height: 650px;
    height: auto;
}


/* .hero {
    min-height: 650px;

    background-image:
        linear-gradient(rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.5)),
        url("../Assets/hero.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 60px;
    color: white;

} */


/* .hero-content {
    width: 45%;
} */

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.hero-content h1 {
    font-size: 70px;
    line-height: 1.1;
    margin-bottom: 15px;
}

.hero-content h1 span {
    color: #ffc107;
}

.hero-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #0d6efd;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
}

.hero-image {
    width: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}


/* Responsive */

@media(max-width:768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
    }
    .hero-content,
    .hero-image {
        width: 100%;
    }
    .hero-content h1 {
        font-size: 45px;
    }
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-image {
        margin-top: 40px;
    }
}


/* Service Section */

.services {
    padding: 100px 8%;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    color: #002b6b;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 18px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 15px;
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 45px;
    color: #003d99;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #222;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}


/* Why choose you */

.why-us {
    padding: 100px 8%;
    background: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    color: #002b6b;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 18px;
}

.why-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-box {
    text-align: center;
    padding: 40px 25px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.why-box:hover {
    transform: translateY(-10px);
    background: #002b6b;
    color: #fff;
}

.why-box i {
    font-size: 50px;
    color: #003d99;
    margin-bottom: 20px;
}

.why-box:hover i {
    color: #ffc107;
}

.why-box h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.why-box p {
    line-height: 1.7;
}


/* about-us */

.about-us {
    padding: 100px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background: #f8f9fa;
}

.about-image {
    width: 45%;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-content {
    width: 55%;
}

.about-tag {
    color: #003d99;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content h2 {
    font-size: 42px;
    margin: 15px 0 20px;
    color: #002b6b;
}

.about-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: #28a745;
    font-size: 18px;
}

.about-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #002b6b;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.about-btn:hover {
    background: #003d99;
}


/* Mobile Resolvation */

@media(max-width:768px) {
    .about-us {
        flex-direction: column;
        text-align: center;
    }
    .about-image,
    .about-content {
        width: 100%;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
}


/* whatsapp */


/* .whatsapp-section {
    padding: 100px 8%;
    background: linear-gradient(rgba(37, 211, 102, 0.9),
            rgba(37, 211, 102, 0.9)),
        url("Assets/whatsapp-bg.jpg");

    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.whatsapp-content h2 {
    font-size: 45px;
    margin-bottom: 20px;
}

.whatsapp-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 1.8;
}

.whatsapp-btn {
    display: inline-block;
    background: #fff;
    color: #25D366;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.whatsapp-btn i {
    margin-right: 10px;
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
} */


/* Whatsapp and mail */

.contact-boxes {
    padding: 80px 8%;
    display: flex;
    justify-content: center;
    gap: 30px;
    background: #f8f9fa;
}

.contact-card {
    width: 350px;
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-card i {
    font-size: 55px;
    margin-bottom: 20px;
}

.whatsapp-card i {
    color: #25D366;
}

.email-card i {
    color: #003d99;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: #222;
}

.contact-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-card a {
    display: inline-block;
    padding: 12px 28px;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
}

.whatsapp-card a {
    background: #25D366;
}

.email-card a {
    background: #003d99;
}


/* Footer */

.footer {
    background: #0d1b2a;
    color: #fff;
    padding-top: 60px;
}

.footer-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-box h3 {
    margin-bottom: 20px;
    color: #25D366;
}

.footer-box p {
    line-height: 1.8;
    color: #ccc;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #25D366;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: #1b263b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #25D366;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    color: #aaa;
}