/* =============================================
   NETRA CERTIFICATION PAGE - STYLES
   Follows the existing iTNT / TNTTFC design system
   ============================================= */

/* --- Hero / Banner Overlay --- */
.netra-banner {
    background: linear-gradient(135deg, rgba(0, 54, 112, 0.75) 0%, rgba(0, 74, 173, 0.65) 50%, rgba(0, 54, 112, 0.6) 100%), url('../images/netra-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.netra-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 101, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.netra-banner::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 183, 7, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.netra-banner .ban-content {
    position: relative;
    z-index: 2;
    text-align: center !important;
    align-items: center !important;
}

.netra-banner .ban-content h1 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.netra-banner .ban-content p {
    max-width: 850px;
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    text-align: left;
    opacity: 0.92;
}

/* --- Section Spacing --- */
.netra-section {
    padding-block: 60px;
}

.netra-banner+.netra-section {
    padding-top: 35px;
}

.netra-section-sm {
    padding-block: 50px;
}

/* --- Intro Section --- */
.netra-intro-text {
    font-size: 16px;
    line-height: 1.8;
    /* max-width: 900px;
    margin: 0 auto; */
}

/* --- "What NETRA helps Identify" Cards --- */
.netra-identify-card {
    background: #ffffff;
    border: 1px solid rgba(255, 101, 0, 0.18);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.netra-identify-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #ffb707, #ff5f00);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.netra-identify-card:hover {
    box-shadow: 0 8px 30px rgba(255, 101, 0, 0.15);
    transform: translateY(-6px);
    border-color: rgba(255, 101, 0, 0.35);
}

.netra-identify-card:hover::before {
    opacity: 1;
}

.netra-identify-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    transition: transform 0.3s ease;
}

.netra-identify-card:hover .netra-identify-icon {
    transform: scale(1.1);
}

.netra-icon-orange {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    color: #ff6500;
}

.netra-icon-blue {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #004aad;
}

.netra-icon-teal {
    background: linear-gradient(135deg, #e0f2f1, #b2dfdb);
    color: #00796b;
}

.netra-identify-card h5 {
    font-weight: 700;
    font-size: 18px;
    color: #004aad;
    margin-bottom: 12px;
}

.netra-identify-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
    text-align: center;

}

/* --- "What NETRA Offers" Cards --- */
.netra-offer-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 35px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid transparent;
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
}

.netra-offer-card:hover {
    box-shadow: 0 10px 35px rgba(0, 74, 173, 0.12);
    transform: translateY(-5px);
}

.netra-offer-card-1 {
    border-left-color: #ff6500;
}

.netra-offer-card-2 {
    border-left-color: #004aad;
}

.netra-offer-card-3 {
    border-left-color: #00796b;
}

.netra-offer-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 20px;
}

.netra-offer-icon-1 {
    background: linear-gradient(135deg, #ff6500, #ff8a3d);
}

.netra-offer-icon-2 {
    background: linear-gradient(135deg, #004aad, #2979ff);
}

.netra-offer-icon-3 {
    background: linear-gradient(135deg, #00796b, #26a69a);
}

.netra-offer-card h5 {
    font-weight: 700;
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 12px;
    min-height: 44px;

}

.netra-offer-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

/* --- Who Can Benefit Tags --- */
/* .netra-benefit-section {
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.12) 0%, rgba(255, 101, 0, 0.08) 100%);
} */

.netra-benefit-tag {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border-radius: 12px;
    padding: 18px 24px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 74, 173, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.netra-benefit-tag:hover {
    box-shadow: 0 6px 25px rgba(0, 74, 173, 0.12);
    transform: translateY(-3px);
    border-color: rgba(0, 74, 173, 0.25);
}

.netra-benefit-tag .benefit-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, #004aad, #1565c0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.netra-benefit-tag h6 {
    font-weight: 600;
    font-size: 15px;
    color: #1a1a2e;
    margin-bottom: 0;
}

/* --- TRL Scale Section --- */
/* .netra-trl-section {
    background: linear-gradient(135deg, #f3f6fb 0%, #e2eaf3 100%);
} */

.netra-trl-image-wrap {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    overflow: hidden;
}

.netra-trl-image-wrap img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    height: auto;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.netra-trl-image-wrap:hover img {
    transform: scale(1.02);
}

/* --- Process Timeline --- */
.netra-timeline {
    position: relative;
    padding: 20px 0;
}

.netra-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #ffb707, #ff5f00, #004aad);
    border-radius: 3px;
}

.netra-timeline-item {
    position: relative;
    margin-bottom: -30px;
    display: flex;
    align-items: center;
}

.netra-timeline-item:last-child {
    margin-bottom: 0;
}

.netra-timeline-item:nth-child(odd) {
    flex-direction: row;
}

.netra-timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.netra-timeline-content {
    width: 45%;
    padding: 28px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.35s ease;
}

/* Rotate arrow for even items so it points right */
.netra-timeline-item:nth-child(even) .netra-timeline-dot i {
    transform: rotate(180deg);
}

.netra-timeline-content:hover {
    box-shadow: 0 8px 35px rgba(0, 74, 173, 0.1);
    transform: translateY(-4px);
}

.netra-timeline-content h5 {
    font-weight: 700;
    font-size: 17px;
    color: #004aad;
    margin-bottom: 10px;
}

.netra-timeline-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
    text-align: left !important;
}

.netra-timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: white;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 101, 0, 0.3);
    border: 3px solid #fff;
}

.netra-dot-orange {
    background: linear-gradient(135deg, #ffb707, #ff5f00);
}

.netra-dot-blue {
    background: linear-gradient(135deg, #004aad, #2979ff);
}

.netra-timeline-spacer {
    width: 45%;
}

/* --- CTA Section --- */
.netra-cta {
    background: linear-gradient(135deg, #003670 0%, #004aad 50%, #003670 100%);
    position: relative;
    overflow: hidden;
}

.netra-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 101, 0, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.netra-cta h3 {
    font-weight: 700;
    font-size: 30px;
    color: #fff;
    margin-bottom: 15px;
}

.netra-cta p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: center;
}

.netra-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 17px !important;
    padding: 14px 36px !important;
    border-radius: 12px !important;
    background: linear-gradient(to right, #ffb707, #ff5f00e3) !important;
    border: none !important;
    box-shadow: 0 8px 25px rgba(255, 101, 0, 0.35) !important;
    text-decoration: none !important;
    transition: all 0.35s ease !important;
    position: relative;
    overflow: hidden;
}

.netra-cta-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(255, 101, 0, 0.45) !important;
}

.netra-cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 17px !important;
    padding: 14px 36px !important;
    border-radius: 12px !important;
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.7) !important;
    box-shadow: none !important;
    text-decoration: none !important;
    transition: all 0.35s ease !important;
    position: relative;
    overflow: hidden;
}

.netra-cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: #fff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15) !important;
}

.netra-cta .col-lg-10 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
}

.netra-btn-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 15px;
}

.netra-btn-group .netra-cta-btn,
.netra-btn-group .netra-cta-btn-outline {
    flex: 0 1 434px;
    width: 380px;
    min-height: 65px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    padding: 12px 24px !important;
}

@media (max-width: 991px) {

    .netra-btn-group .netra-cta-btn,
    .netra-btn-group .netra-cta-btn-outline {
        flex: 0 1 350px;
        width: 350px;
        font-size: 15px !important;
    }
}

@media (max-width: 768px) {
    .netra-btn-group {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .netra-btn-group .netra-cta-btn,
    .netra-btn-group .netra-cta-btn-outline {
        width: 100%;
        max-width: 100%;
        flex: unset;
        min-height: auto;
    }
}

/* --- Section Background Alternates --- */
.netra-bg-light {
    background: linear-gradient(135deg, #fffbf0 0%, #fff0cc 100%);
}

.netra-bg-warm,
.netra-benefit-section {
    background: linear-gradient(171deg, rgb(235, 248, 238) 0%, rgb(255, 228, 204) 100%);
}

.netra-bg-intro,
.netra-bg-offers,
.netra-trl-section {
    background-color: white;
}

/* Section Title NETRA  */
.netra-section-title {
    text-align: left;
    margin-bottom: 40px;
}

.netra-section-title h4 {
    font-weight: 700 !important;
    margin-bottom: 8px !important;
    color: #1a1a2e;
    display: inline-block;
    position: relative;
}

.netra-section-title .underline {
    margin: 4px 0 0 0;
}

.netra-section-title p {
    font-size: 16px;
    color: #666;
    max-width: 750px;
    margin: 15px 0 0 0;
    line-height: 1.7;
    text-align: left;
}

/* --- Responsive: Timeline --- */
@media (max-width: 768px) {
    .netra-timeline::before {
        left: 24px;
    }

    .netra-timeline-item,
    .netra-timeline-item:nth-child(odd),
    .netra-timeline-item:nth-child(even) {
        flex-direction: column;
        padding-left: 65px;
        margin-bottom: 30px;
    }

    .netra-timeline-content {
        width: 100%;
    }

    .netra-timeline-dot {
        left: 24px;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .netra-timeline-spacer {
        display: none;
    }

    /* On mobile, content is always on the right, so arrow must point right */
    .netra-timeline-item .netra-timeline-dot i {
        transform: rotate(180deg);
    }

    .netra-banner .ban-content {
        padding-top: 50px;
        padding-bottom: 20px;
    }

    .netra-banner+.netra-section {
        padding-top: 25px;
    }

    .netra-banner .ban-content h1 {
        font-size: 32px;
    }

    .netra-cta h3 {
        font-size: 24px;
    }

    .netra-identify-card,
    .netra-offer-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .netra-section {
        padding-block: 45px;
    }

    .netra-cta-btn {
        padding: 12px 28px !important;
        font-size: 15px !important;
    }
}