:root {
    --deep-blue: #0B306E;
    --nav-blue: #0B306E;
    --teal: #0C9B92;
    --soft-white: #F5F6F9;
    --muted: #606C88;
    --text: #101828;
    --card: #FFFFFF;
    --card-shadow: rgba(15, 23, 42, 0.08);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    background: #FFFFFF;
    color: #606C88;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font: inherit;
    cursor: pointer;
}

header {
    background: #FFFFFF;
}

nav {
    max-width: 2000px;
    /* margin: 0 auto; */
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    /* margin-left: -10px; */
    /* margin-right: -100px; */
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-circle {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #0C9B92;
    display: grid;
    place-items: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.85rem;
}

.logo-text h3 {
    font-size: 0.95rem;
    color: #0B306E;
}

.logo-text p {
    font-size: 0.8rem;
    color: #606C88;
    line-height: 1.4;
}

.nav-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: flex-end;
    align-items: center;
}

.nav-links a {
    color: #606C88;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    display:inline-block;          /*<a> tags are inline elements, which ignores transforms, changing them to inline-block fixes this instantly.*/
     /* transform: translateY(-2px);
    opacity: 0.95; */
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-links a:hover {
    color: #0C9B92;
     transform: translateY(-2px);
    opacity: 0.95;
}

.login-btn {
    background: #0C9B92;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    min-width: 150px;
    box-shadow: 0 12px 30px rgba(12, 155, 146, 0.18);
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.login-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}
.hero {
    background: linear-gradient(180deg, #0B306E 0%, #0B306E 100%);
    padding: 70px 30px 80px;
    overflow: hidden;
}

.hero-main {
    max-width: 1260px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    min-height: 550px;
}

.hero-content {
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    background: #0C9B9233;
    color: #D9F4F3;
    font-size: 0.9rem;
    width: fit-content;
    font-weight: 500;
}

.hero-content h1 {
    font-size: 3.8rem;
    color: #FFFFFF;
    line-height: 1.15;
    margin: 0;
    font-weight: 700;
}

.hero-content h1 span {
    display: block;
    color: #0C9B92;
    margin-top: 8px;
}

.hc-para {
    font-size: 1rem;
    line-height: 1.8;
    color: #BACCE0;
    margin: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
}

.hero-actions button {
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.2s ease, opacity 0.2s ease;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
}

.primary-btn {
    background: #0C9B92;
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(12, 155, 146, 0.25);
}

.primary-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.secondary-btn {
    background: #FFFFFF14;
    color: #FFFFFF;
    border: 1.5px solid #FFFFFF4D;
}

.secondary-btn:hover {
    background: #FFFFFF14;
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: grid;
    place-items: center;
}

.hero-image,
.hero-image1,
.hero-image2,
.hero-image3 {
    position: absolute;
}

/* Main large vehicle image at bottom-right */
.hero-image {
    right: -40px;
    bottom: 0;
    width: 70%;
    max-width: 520px;
    z-index: 1;
    top: 18%;
    left:11%;
}

/* Top-right smaller vehicle */
.hero-image1 {
    top: -19%;
    right: -22%;
    width: 170%;
    max-width: 300px;
    z-index: 4;
}

/* Middle-left vehicle */
.hero-image2 {
    top: 71%;
    left: 92%;
    width: 30%;
    max-width: 240px;
    z-index: 2;
    /* right:-%; */

}

/* Top-left vehicle */
.hero-image3 {
    top: 30%;
    left: -19%;
    width: 135%;
    max-width: 800px;
    z-index: 3;
}

.hero-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.stats {
    max-width: auto;
    /* margin: 0px auto 0; */
    /* padding: 0 30px; */
    position:relative;
    z-index: 10;
    /* margin-left: -30px;
    margin-right: -30px; */
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #FFFFFF;
    border-radius: 0px;
    border: 1px solid #DDE3EF;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.stat-card {
    background: #FFFFFF;
    text-align: center;
    padding: 32px 24px;
    /* border-right: 1px solid #DDE3EF; */
    position: relative;
}

/* .stat-card:last-child {
    border-right: none;
} */

/* Vertical divider line between cards */
.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: #DDE3EF;
    /* color: #DDE3EF; */
    
}

.stat-card h2 {
    font-size: 2.2rem;
    color: #0C9B92;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-card p {
    color: #606C88;
    font-size: 0.95rem;
    line-height: 1.5;
}

.working {
    padding: 80px 30px;
    background: #F5F6F9
}

.section-heading {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.section-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 14px;
    color: #101828;
}

.section-heading p {
    color: #606C88;
    font-size: 1rem;
    line-height: 1.75;
}

.steps {
    margin-top: 54px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.step-card {
    background: #FFFFFF;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid #EDF0F6;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 210px;
}

.step-card span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 1rem;
}

.step-card h3 {
    font-size: 1rem;
    color: #101828;
}

.step-card p {
    color: #606C88;
    font-size: 0.95rem;
    line-height: 1.7;
}

.arrow-image {
    display: none;
    /* justify-content: center;
    align-items: center; */
}

#sc1 { background: #D9F4F3; color: #0C9B92; }
#sc2 { background: #E0EBFB; color: #1B66C8; }
#sc3 { background: #EDE1FD; color: #9334F9; }
#sc4 { background: #E0F8ED; color: #0F9E59; }
#sc5 { background: #FEEFE1; color: #EA750D; }

.importance-banner {
    padding: 80px 30px;
    background: #0B306E;
}

.importance-banner h2 {
    color: #FFFFFF;
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 40px;
}

.imp-grid1 {
    max-width: 1260px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.imp-card1 {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-radius: 22px;
    background: #FFFFFF12;
    border: 1px solid #FFFFFF1A;
    min-height: 140px;
}

.imp-image {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    /* background: rgba(255, 255, 255, 0.14); */
    border-radius: 18px;
}

.imp-image img {
    width: 45px;
    height: 45px;
}
.img-imageGreen{
     width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
}
.imp-imageGreen img {
    width: 60x;
    height: 60px;
}

.imp-content h3 {
    color: #FFFFFF;
    font-size: 1rem;
    margin-bottom: 8px;
}

.imp-content p {
    color: #BACCE0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq {
    padding: 80px 30px 60px;
    background: #FFFFFF;
}

.faq h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 32px;
    color: #101828;
}

.faq-grid {
    max-width: 1260px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.faq-card {
    background: #F5F6F9;
    border-radius: 22px;
    border: 1px solid #EDF0F6;
    padding: 26px;
}

.faq-card-left-border {
    border-left: 4px solid #0C9B92;
    padding-left: 20px;
}

.faq-card h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #101828;
}

.faq-card p {
    color:#606C88;
    font-size: 0.96rem;
    line-height: 1.8;
}

footer {
    background: #0B306E;
}

.footer-content {
    max-width: 1260px;
    margin: 0 auto;
    padding: 60px 30px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.footer-text h3 {
    color: #FFFFFF;
    margin-bottom: 14px;
    font-size: 1rem;
}

.footer-text p {
    color: #BACCE0;
    font-size: 0.95rem;
    line-height: 1.75;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column li#foot,
.footer-column li p#foot {
    color: #FFFFFF;
    font-weight: 700;
}

.footer-column a {
    color: #BACCE0;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    display:inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-column a:hover {
    color: #0C9B92;
    transform: translateY(-2px);
    opacity: 0.95;
}

.footer-bottom {
    max-width: 1260px;
    margin: 0 auto;
    padding: 18px 30px 30px;
    border-top: 1px solid #FFFFFF1A;
}

.footer-bottom p {
    color: #939DB7;
    text-align: center;
    font-size: 0.92rem;
}

@media (max-width: 1160px) {
    .hero-main {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }

    .hero-visual {
        min-height: 380px;
    }

    .hero-image {
        max-width: 400px;
    }

    .hero-image1,
    .hero-image2,
    .hero-image3 {
        max-width: 200px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card:nth-child(2)::after,
    .stat-card:nth-child(4)::after {
        display: none;
    }

    .stat-card:nth-child(odd):not(:last-child)::after {
        display: block;
    }

    .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .imp-grid1 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    nav {
        padding: 18px 22px;
        flex-direction: column;
        gap: 16px;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .login-btn {
        width: 100%;
    }

    .hero {
        padding: 50px 20px 60px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hc-para {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions button {
        width: 100%;
        max-width: 100%;
    }

    .stats {
        padding: 0 20px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        padding: 24px 16px;
    }

    .stat-card h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 620px) {
    /* Navigation */
    nav {
        padding: 16px 18px;
        gap: 12px;
    }

    .logo {
        gap: 10px;
    }

    .logo-circle {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    .logo-text h3 {
        font-size: 0.9rem;
    }

    .logo-text p {
        font-size: 0.75rem;
    }

    .nav-links ul {
        gap: 10px;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .login-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    /* Hero Section */
    .hero {
        padding: 40px 16px 50px;
    }

    .hero-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .breadcrumb {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hc-para {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .hero-actions button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .hero-visual {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 280px;
        position: relative;
    }

    .hero-image,
    .hero-image1,
    .hero-image2,
    .hero-image3 {
        position: relative;
        transform: none;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 90%;
        max-width: 100%;
        z-index: 1;
        margin: 0 auto;
    }

    /* Stats Section */
    .stats {
        padding: 0 16px;
        margin: -20px auto 0;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stat-card {
        padding: 20px 16px;
        border-right: none;
        border-bottom: 1px solid #E9EDF6;
    }

    .stat-card:last-child {
        border-bottom: none;
    }

    .stat-card::after {
        display: none !important;
    }

    .stat-card h2 {
        font-size: 1.6rem;
    }

    .stat-card p {
        font-size: 0.9rem;
    }

    /* Working Section */
    .working {
        padding: 50px 16px;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .section-heading p {
        font-size: 0.9rem;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    .step-card {
        padding: 20px;
        min-height: auto;
        border-radius: 18px;
    }

    .step-card span {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .step-card h3 {
        font-size: 0.95rem;
    }

    .step-card p {
        font-size: 0.85rem;
    }

    /* Importance Banner */
    .importance-banner {
        padding: 50px 16px;
    }

    .importance-banner h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .imp-grid1 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .imp-card1 {
        padding: 20px;
        min-height: auto;
        gap: 12px;
    }

    .imp-image {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }
    .imp-imageGreen{
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    .imp-content h3 {
        font-size: 0.95rem;
    }

    .imp-content p {
        font-size: 0.85rem;
    }

    /* FAQ Section */
    .faq {
        padding: 50px 16px 40px;
    }

    .faq h2 {
        font-size: 2rem;
        margin-bottom: 24px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .faq-card {
        padding: 16px;
        border-radius: 16px;
    }

    .faq-card-left-border {
        padding-left: 16px;
    }

    .faq-card h3 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .faq-card p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Footer */
    footer {
        padding: 40px 16px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 24px;
    }

    .footer-text h3 {
        font-size: 0.95rem;
    }

    .footer-text p {
        font-size: 0.85rem;
    }

    .footer-column ul {
        gap: 8px;
    }

    .footer-column a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding: 16px 16px 24px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}
 