﻿.page-header {
    background: #79ad702e;
    padding: 25px 0;
}

.page-title {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin: 0;
    background-color: transparent !important;
   
}

/* Breadcrumb */
.breadcrumb {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

    .breadcrumb li {
        color: #777;
        position: relative;
    }

        /* separator */
        .breadcrumb li:not(:last-child)::after {
            content: "/";
            margin-left: 10px;
            color: #aaa;
        }

    .breadcrumb a {
        text-decoration: none;
        color: #555;
        transition: 0.3s;
    }

        .breadcrumb a:hover {
            color: #0b2c3d;
        }

/* Responsive */
@media (max-width: 768px) {
    .breadcrumb {
        justify-content: flex-start;
        margin-bottom: 10px;
    }

    .page-title {
        font-size: 28px;
        text-align: left;
    }
}




:root {
    --m-navy: #1f1e5a;
    --m-green: #79ad70;
    --m-bg: #fcfcfc;
}

.about-elite-section {
    background-color: var(--m-bg);
    padding: 0px 0;
}

/* EQUAL HEIGHT LOGIC */
.about-image-frame {
    position: relative;
    height: 100%; /* Important for same height */
    min-height: 500px;
    overflow: hidden;
    border-radius: 2px; /* Matches the rounded look in your image */
}

.perfect-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills the area without distorting */
    display: block;
}

/* THE FLOATING BADGE */
.elite-badge {
    position: absolute;
    bottom: 40px;
    left: -20px; /* Slight offset for style */
    background: white;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-left: 5px solid var(--m-green);
    z-index: 10;
}

.b-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--m-navy);
    line-height: 1;
    display: block;
}

.b-lab {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #777;
}

/* CONTENT STYLING */
.about-text-content {
    padding: 40px 0 40px 60px; /* Space between img and text */
}

.top-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--m-green);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

    .top-tag .dot {
        width: 8px;
        height: 8px;
        background: var(--m-green);
        border-radius: 50%;
    }

.story-title {
    font-size: 4rem;
    line-height: 1;
    font-weight: 300;
    color: #333;
    margin-bottom: 30px;
}

.navy-ext {
    font-weight: 900;
    color: var(--m-navy);
}

.green-ext {
    color: var(--m-green);
    font-style: italic;
}

.lead-bold {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--m-navy);
    margin-bottom: 20px;
}

.story-description p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* MARKERS */
.tech-markers {
    display: flex;
    gap: 25px;
    margin: 35px 0;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.t-item {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--m-navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

    .t-item i {
        color: var(--m-green);
        font-size: 1.1rem;
    }

/* BUTTON */
.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--m-navy);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.circle-arrow {
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.btn-explore:hover {
    color: var(--m-green);
}

    .btn-explore:hover .circle-arrow {
        background: var(--m-navy);
        border-color: var(--m-navy);
        color: white;
    }

/* RESPONSIVE PC TAB MOBILE */
@media (max-width: 991px) {
    .about-text-content {
        padding: 40px 20px;
        text-align: center;
    }

    .top-tag, .tech-markers, .btn-explore {
        justify-content: center;
    }

    .about-image-frame {
        min-height: 400px;
        margin-bottom: 30px;
    }

    .story-title {
        font-size: 3rem;
    }

    .elite-badge {
        left: 20px;
        bottom: 20px;
        padding: 15px;
    }

    .b-num {
        font-size: 2rem;
    }
}





:root {
    --m-navy: #1f1e5a;
    --m-green: #79ad70;
    --m-bg: #f8f9fa; /* The Background Color */
}

/* Section Background */
.bg-tech {
    background-color: var(--m-bg) !important;
    width: 100%;
    display: block;
}

.precision-story-section {
    padding: 80px 0;
    overflow: hidden;
}

.mb-120 {
    margin-bottom: 80px;
}

.text-navy {
    color: var(--m-navy);
}

.text-green {
    color: var(--m-green);
}

/* Layout Grid */
.precision-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

    .precision-row.reverse {
        grid-template-columns: 0.9fr 1.1fr;
    }

/* Typography */
.ultra-heading {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--m-navy);
    margin-bottom: 25px;
}

/* Mobile-Ready Paragraphs */
.para-wrapper {
    width: 100%;
    max-width: 550px;
}

.lead-description {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.7;
    color: #444;
    margin-bottom: 0;
}

/* Image Frame with Background Contrast */
.image-frame {
    position: relative;
    padding: 10px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

    .image-frame img {
        width: 100%;
        height: auto;
        display: block;
    }

/* =========================================
       MOBILE & TABLET RESPONSIVE FIXES
    ========================================= */
@media (max-width: 991px) {
    .precision-row, .precision-row.reverse {
        grid-template-columns: 1fr !important; /* Forces single column */
        gap: 40px;
        text-align: center;
    }

    .precision-content {
        order: 2; /* Text goes below image on mobile */
        display: flex;
        flex-direction: column;
        align-items: center; /* Centers content */
    }

    .precision-visual {
        order: 1;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .para-wrapper {
        max-width: 100%; /* Paragraph takes full width on mobile */
        padding: 0 15px;
    }

    .ultra-heading {
        margin-bottom: 15px;
    }

    .feature-line {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .precision-story-section {
        padding: 50px 0;
    }

    .mb-120 {
        margin-bottom: 50px;
    }

    .ultra-heading {
        font-size: 1.8rem;
    }
}




.cta-box {
    background: #1f1e5a;
    padding: 60px 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(31, 30, 90, 0.2);
}

.cta-bg-shape {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(121, 173, 112, 0.15) 0%, rgba(31, 30, 90, 0) 70%);
    border-radius: 50%;
}

.cta-btn {
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    /* Green Button */
    .cta-btn.primary {
        background-color: #79ad70;
        color: white;
    }

        .cta-btn.primary:hover {
            background-color: #689661;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(121, 173, 112, 0.4);
        }

    /* Outline/Secondary Button */
    .cta-btn.secondary {
        background-color: transparent;
        border-color: rgba(255, 255, 255, 0.3);
        color: white;
    }

        .cta-btn.secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: #79ad70;
            color: #79ad70;
            transform: translateY(-3px);
        }