/* === OMR CSS === */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn_omr {
    display: inline-block;
    padding: 14px 30px;
    background: #fff;
    color: #2563eb;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn_omr:hover {
    background: #2563eb;
    color: #fff;
    border: 1px solid #fff;
}
.btn-primary {
    background: #2563eb;
    color: #fff;
}

section {
    padding: 50px 0px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 38px;
    color: #0f172a;
    font-weight: 500;
}

.section-title p {
    color: #666;
    margin-top: 10px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card h3 {
    margin-bottom: 15px;
    color: #2563eb !important;
    font-weight: 600;
    font-size: 22px;
}

.card p {
    color: #555;
}

.highlight {
    background: #2563eb;
    color: #000 !important;
    border: 0px !important;
    margin: 0px !important;
    padding-bottom: 80px !important;
}

.highlight h2 {
    color: #fff;
}


.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: center;
}

.stat-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stat-box h3 {
    font-size: 42px;
    color: #2563eb;
}

.cta {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    text-align: center;
    border-radius: 20px;
    padding: 60px 20px;
}

.cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.cta p, .cta h3 {
    color: #fff;
}

ul {
    padding-left: 20px;
}

@media(max-width:768px) {

    .hero-text h1 {
        font-size: 34px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .cta h2 {
        font-size: 28px;
    }

}