/* Dark Navy - #172554
   Accent Color - #1E3A8A */


* {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
}

:root {
    --bg-color: #ffffff;
    --text-color: #111827;
    --card-bg: #f9fafb;
    --border-color: #e5e7eb;
    --accent-color: #172554;
}


/* Navbar fix */
.navbar {
    transition: background-color 0.3s ease;
}


/*  NAVBAR */
.navbar {
    background-color: var(--accent-color);
}

.navbar-nav .nav-item .nav-link {
    color: var(--bg-color);
}



.login-btn {
    background-color: var(--bg-color);
    color: var(--accent-color);
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
}

.navbar-toggler {
    border: 1px solid var(--bg-color);
}

.navbar-toggler-icon {
    filter: invert(1);
}


/* HERO SECTION */

/* HERO IMAGE SECTION */
.hero-image-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image: url('/assets/image/card-images/If\ you\ are\ searching\ on\ Google\ for\ superior….jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay for contrast */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* Badge */
.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 16px;
}

/* Title */
.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-title span {
    color: #93c5fd;
}

/* Description */
.hero-desc {
    max-width: 680px;
    margin-top: 16px;
    font-size: 16px;
    opacity: 0.9;
}

/* Buttons */
.btn-primary-custom {
    background: var(--accent-color);
    color: #fff;
    border-radius: 10px;
    padding: 12px 28px;
    font-weight: 600;
    border: none;
}

.btn-primary-custom:hover {
    background: #fff;
    color: var(--accent-color);
}

.btn-outline-custom {
    border: 2px solid #fff !important;
    color: #fff !important;
    background: transparent;
    padding: 10px 26px;
    border-radius: 10px;
    font-weight: 600;
}

.btn-outline-custom:hover {
    background: #fff;
    color: var(--accent-color);
}

/* ABOUT SECTION */

.about-section {
    background: #f9fafb;
}

.about-img {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.about-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.about-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    background: rgba(23, 37, 84, 0.08);
    color: var(--accent-color);
    margin-bottom: 12px;
}

.about-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.2;
}

.about-title span {
    color: var(--accent-color);
}

.about-desc {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.about-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 16px;
    color: #374151;
}

.about-list i {
    color: var(--accent-color);
    margin-top: 3px;
}

.about-actions a {
    text-decoration: none;
    color: var(--bg-color);
    background-color: var(--accent-color);
}

.about-actions a:hover {
    color: var(--accent-color);
    background-color: var(--bg-color);
    border: 1px solid var(--accent-color);
}


/* COUNTER SECTION */
.counter-section {
    background: #f9fafb;
}

.counter-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 28px 18px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.counter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.09);
}

.counter-card h3 {
    font-size: 38px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 6px;
}

.counter-card p {
    margin: 0;
    font-size: 14.5px;
    color: #6b7280;
    font-weight: 600;
}



/* SERVICES SECTION */
.services-section {
    background: var(--bg-color);
}

.services-section .section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 10px;
}

.services-section .section-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

/* SERVICE CARD */
.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 18px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.service-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 16px;
}

/* TITLE */
.service-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

/* DESCRIPTION */
.service-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 18px;
}

/* READ MORE BUTTON */
.read-more-btn {
    margin-top: auto;
    /* pushes button to bottom */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    transition: all 0.25s ease;
    width: fit-content;
}

.read-more-btn:hover {
    background: var(--accent-color);
    color: #fff;
}

/* PROCESS SECTION */
.how-it-works {
    padding: 80px 0;
    background-color: #f9fafb;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.section-header p {
    max-width: 600px;
    margin: 12px auto 0;
    color: #4b5563;
    font-size: 1rem;
}

.step-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.step-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

.section-footer .closing-line {
    font-size: 1.05rem;
    font-weight: 500;
    color: #111827;
}

/* WHY CHOOSE US */
/* -------- WHY CHOOSE US SECTION -------- */

.why-choose-us {
    background-color: #f9fafb;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-color);
}

.section-subtitle {
    max-width: 600px;
    margin: 12px auto 0;
    font-size: 16px;
    opacity: 0.85;
}

.why-card {
    background: var(--bg-color);
    border-radius: 18px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.why-card i {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.why-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 16px;
    opacity: 0.85;
    line-height: 1.6;
}

/* BUSINESS & CARD */
.business-section {
    background-color: var(--bg-color)
}

/* Heading */
.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
}

.section-title span {
    color: var(--accent-color);
}

.section-subtitle {
    max-width: 720px;
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

/* Cards */
.business-card {
    height: 100%;
    padding: 30px 24px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.business-card i {
    font-size: 34px;
    color: var(--accent-color);
    margin-bottom: 18px;
}

.business-card h6 {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.business-card p {
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.6;
}

/* Hover Effect */
.business-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* CTA */
.business-section .btn-primary-custom {
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 700;
}



/* QUILTY SECTION  */
.quality-section {
    background-color: #f9fafb;
}

/* Heading */
.quality-section .section-title {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
}

.quality-section .section-title span {
    color: var(--accent-color);
}

.quality-section .section-subtitle {
    max-width: 720px;
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

/* List */
.quality-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quality-list li {
    display: flex;
    gap: 16px;
    padding: 18px;
    border-radius: 14px;
    background: #ffffff;
    margin-bottom: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quality-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

/* Icons */
.quality-list i {
    font-size: 22px;
    color: var(--accent-color);
    margin-top: 4px;
}

/* Text */
.quality-list h6 {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.quality-list p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* Visual Block */
.quality-visual {
    background: var(--accent-color);
    color: #ffffff;
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(23, 37, 84, 0.25);
}

.quality-visual i {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.quality-visual p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

/* TEAM SECTION */
.team-section {
    background-color: #f9fafb;
}

.team-card {
    background: #ffffff;
    border-radius: 18px;
    padding-bottom: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    margin-bottom: 15px;
}

.team-card h6 {
    font-weight: 700;
    margin-bottom: 4px;
}

.team-card span {
    font-size: 16px;
    color: #6b7280;
}


/* TESTIMONAILS SSECTION  */
.testimonial-section {
    background: var(--bg-color);
}

.testimonial-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 18px;
}

.testimonial-user h6 {
    margin: 0;
    font-weight: 700;
}

.testimonial-user span {
    font-size: 16px;
    color: #6b7280;
}

/* CALL TO ACTION */
.final-cta-section {
    background: linear-gradient(135deg,
            #172554 0%,
            #1e3a8a 100%);
    padding: 100px 20px;
    color: #ffffff;
}

/* Title */
.final-cta-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 14px;
}

.final-cta-title span {
    color: #93c5fd;
}

/* Description */
.final-cta-desc {
    max-width: 640px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;
}

/* Buttons */
.final-cta-actions .btn-primary-custom {
    padding: 14px 38px;
    font-size: 16px;
    font-weight: 700;
}





/* RESPONSIVE */
@media (max-width: 992px) {

    /* HERO SECTION */
    .hero-title {
        font-size: 40px;
    }

    /* QULITY SECTION */
    .quality-section .section-title {
        font-size: 30px;
    }

    .quality-visual {
        padding: 40px 24px;
    }
}

/* ---------------- TABLET ----------------*/
/* PROCESS SECTION */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    /* ABOUT SECTION */
    .about-title {
        font-size: 28px;
    }

    .about-img img {
        height: 280px;
    }

    .about-actions a {
        display: block;
        width: 100%;
        margin: 10px 0 0 !important;
    }

    /* COUNTER SECTION */
    .counter-card h3 {
        font-size: 30px;
    }

    /* SERVICES SECTION */
    .services-section .section-header h2 {
        font-size: 28px;
    }

    .services-section .section-header p {
        font-size: 16px;
    }

    .service-card img {
        height: 190px;
    }

    /* BUINESS AND CARD */
    .section-subtitle {
        font-size: 16px;
    }


    /* CALL TO ACTION */
    .final-cta-title {
        font-size: 30px;
    }

    .final-cta-desc {
        font-size: 16px;
    }

    .final-cta-actions .btn {
        display: block;
        width: 100%;
        margin: 12px 0 0;
    }

}


/*--------------- MOBILE ------------*/
@media (max-width: 576px) {

    /* HERO SECTION */
    .hero-image-section {
        min-height: 90vh;
        padding: 40px 16px;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-actions a {
        display: block;
        margin: 10px auto;
    }

    
}