body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
li,
button {
   font-family: 'Jost', sans-serif !important;
}
/* Section */
.rn-cataract-sec {
    padding: 60px 20px;
    background: #fff;
    font-family: math;
}

/* Container */
.rn-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Row */
.rn-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Columns */
.rn-col {
    flex: 1;
}

/* Heading */
.rn-heading {
    font-size: 32px;
    font-weight: 700;
    color: #134059;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Text */
.rn-text {
    color: #272626;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 17px;
}

/* Links */
.rn-link {
    color: #0d3a4b;
    font-weight: 600;
    text-decoration: underline;
}

.rn-link:hover {
    text-decoration: underline;
}

/* Buttons */
.rn-btn-group {
    margin-top: 20px;
}

.rn-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 5px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
    margin-right: 10px;
}

.rn-btn-primary {
    background: #f6b800;
    color: #fff;
}

.rn-btn-primary:hover {
    background: #0d3a4b;
    color: white;
}

.rn-btn-outline {
    border: 2px solid #0d3a4b;
    color: #0d3a4b;
}

.rn-btn-outline:hover {
    background: #0d3a4b;
    color: #fff;
}

/* Image */
.rn-image img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .rn-row {
        flex-direction: column;
        text-align: center;
    }

    .rn-heading {
        font-size: 26px;
    }

    .rn-btn-group {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .rn-cataract-sec {
        padding: 40px 15px;
    }

    .rn-heading {
        font-size: 22px;
    }

    .rn-text {
        font-size: 14px;
    }

    .rn-btn {
        margin: 10px auto;
    }
}/* Section */
.raahi-step-sec {
    background: linear-gradient(135deg, #f5f9ff, #eef6ff);
    font-family: 'Poppins', sans-serif;
}

/* Heading */
.raahi-step-heading {
    font-size: 34px;
    font-weight: 700;
    color: #134059;
}

.raahi-step-sub {
    color: #666;
    font-size: 16px;
}

/* Box */
.raahi-step-box {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

.raahi-step-box:hover {
    transform: translateY(-8px);
}

/* Number Badge */
.raahi-step-number {
    position: absolute;
    top: -10px;
    left: 20px;
    background: linear-gradient(135deg, #0798aa, #03246B);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Title */
.raahi-step-box h5 {
    margin-top: 20px;
    font-weight: 600;

}

/* Text */
.raahi-step-box p {
    color: #555;
    font-size: 17px;
    margin-top: 10px;
    line-height: 1.6;
}

/* Highlight Box */
.raahi-highlight-box {
    background: linear-gradient(135deg, #0798aa, #03246B);
    color: #fff;
}

.raahi-highlight-box h5,
.raahi-highlight-box p {
    color: #fff;
}

.raahi-highlight-box .raahi-step-number {
    background: #fff;
    color: #03246B;
}

/* Responsive */
@media (max-width: 992px) {
    .raahi-step-heading {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .raahi-step-heading {
        font-size: 22px;
    }

    .raahi-step-box {
        padding: 25px 20px;
    }
}

/* Section */
.raahi-why-sec {
    background: linear-gradient(135deg, #f7fbff, #eef5ff);
    font-family: 'Poppins', sans-serif;
}

/* Heading */
.raahi-why-heading {
    font-size: 32px;
    font-weight: 700;

}

/* Box */
.raahi-why-box {
    background: #fff;
    padding: 25px 25px 25px 30px;
    border-radius: 14px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    height: 100%;
}

.raahi-why-box:hover {
    transform: translateY(-6px);
}

/* Number Badge */
.raahi-why-number {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, #0798aa, #03246B);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Title */
.raahi-why-box h6 {
    margin-top: 15px;
    font-size: 19px;
    font-weight: 600;

}

/* Text */
.raahi-why-box p {
    font-size: 17px;
    color: #1b1a1a;
    margin-top: 8px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .raahi-why-heading {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .raahi-why-heading {
        font-size: 22px;
    }

    .raahi-why-box {
        padding: 20px;
    }
}

/* Wrapper Scope */
.raahi-vsnx-sec {
    font-family: 'Poppins', sans-serif;
}

/* Heading */
.raahi-vsnx-sec .raahi-vsnx-heading {
    font-size: 32px;
    font-weight: 700;
    color: #03246B;
}

.raahi-vsnx-sec .raahi-vsnx-sub {
    color: #666;
    font-size: 16px;
}

/* Box */
.raahi-vsnx-sec .raahi-vsnx-box {
    padding: 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f5f9ff, #eef6ff);
}

/* Card */
.raahi-vsnx-sec .raahi-vsnx-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 18px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
}

.raahi-vsnx-sec .raahi-vsnx-card:hover {
    transform: translateY(-8px);
}

/* Active */
.raahi-vsnx-sec .raahi-vsnx-active {
    background: linear-gradient(135deg, #0798aa, #03246B);
    color: #fff;
}

.raahi-vsnx-sec .raahi-vsnx-active .raahi-vsnx-title,
.raahi-vsnx-sec .raahi-vsnx-active .raahi-vsnx-text,
.raahi-vsnx-sec .raahi-vsnx-active .raahi-vsnx-step {
    color: #fff;
}

/* Badge */
.raahi-vsnx-sec .raahi-vsnx-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0798aa, #03246B);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 50px;
}

/* Step */
.raahi-vsnx-sec .raahi-vsnx-step {
    margin-top: 18px;
    color: #0798aa;
    font-weight: 600;
}

.raahi-vsnx-sec .raahi-vsnx-title {
    margin: 10px 0;
    font-size: 20px;
    font-weight: 700;
    color: #03246B;
}

.raahi-vsnx-sec .raahi-vsnx-text {
    font-size: 17px;
    color: #444;
}

/* Buttons */
.raahi-vsnx-sec .raahi-vsnx-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    border: 2px solid #03246B;
    color: #03246B;
    font-weight: 600;
    text-decoration: none;
    margin: 6px;
    transition: 0.3s;
}

.raahi-vsnx-sec .raahi-vsnx-btn:hover {
    background: #03246B;
    color: #fff;
}

.raahi-vsnx-sec .raahi-vsnx-btn-main {
    background: #0798aa;
    border-color: #0798aa;
    color: #fff;
}

.raahi-vsnx-sec .raahi-vsnx-btn-main:hover {
    background: #056f7d;
}

/* Responsive */
@media (max-width: 992px) {
    .raahi-vsnx-sec .raahi-vsnx-heading {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .raahi-vsnx-sec .raahi-vsnx-heading {
        font-size: 22px;
    }

    .raahi-vsnx-sec .raahi-vsnx-card {
        padding: 25px 20px;
    }
}