body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fff;
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background: #050816;
}

.hero-image {
    position: absolute;
    inset: 0;
    background: url('https://www.webconvoy.com/public/websitenew/image/entment.png') center center / cover no-repeat;
    opacity: 0.95;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 8, 22, 0.96) 0%, rgba(5, 8, 22, 0.82) 45%, rgba(5, 8, 22, 0.15) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(13, 202, 240, 0.5);
    color: #0dcaf0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    background: rgba(13, 202, 240, 0.06);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 1.05;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 22px;
}

.hero-title span {
    color: #1e90ff;
    display: block;
}

.hero-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.1rem;
    max-width: 620px;
    margin-bottom: 32px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.hero-feature {
    text-align: center;
    color: #fff;
}

.hero-feature-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 50%;
    background: rgba(13, 202, 240, 0.08);
    padding: 8px;
}

.hero-feature p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.3;
}

.mobile-hero-image {
    width: 100%;
    min-height: 380px;
    background: url('https://www.webconvoy.com/public/websitenew/image/entment.png') center center / cover no-repeat;
    position: relative;
}

.mobile-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 8, 22, 0.90), rgba(5, 8, 22, 0.15));
}

.feature-item {
    transition: transform .3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
}

.icon-box {
    width: 56px;
    height: 56px;
    object-fit: cover;
    flex-shrink: 0;
}

.hero-image-wrap {
    min-height: 100%;
}

.card-icon-wrap {
    width: 96px;
    height: 96px;
}

.underline-word {
    text-decoration: underline;
    text-decoration-color: #1e90ff;
    text-underline-offset: 4px;
}

.section-para {
    max-width: 480px;
}

.header-side-img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991.98px) {
    .hero-content {
        min-height: auto;
       padding: 20px;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-image-wrap {
        min-height: 360px;
    }
}

@media (max-width: 575.98px) {
  
    .hero-section {
        margin-top: 36px;
    }
    .hero-badge {
        font-size: 12px;
        padding: 8px 14px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 0.98rem;
    }

    .mobile-hero-image {
        min-height: 320px;
        background-position: right;
    }

    .icon-box {
        width: 48px;
        height: 48px;
    }

    .card-icon-wrap {
        width: 84px;
        height: 84px;
    }
}
