.inner-hero {
    position: relative;
    min-height: 360px;
    background-size: cover;
    background-position: center right;
    display: flex;
    align-items: center;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 35%, rgba(0,0,0,0.3) 100%);
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.inner-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb li {
    color: #fff;
}

.breadcrumb li a {
    color: #ffc72c;
    text-decoration: none;
}

.breadcrumb li::after {
    content: "/";
    margin-left: 10px;
}

.breadcrumb li:last-child::after {
    display: none;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 992px) {
    .inner-hero {
        min-height: 300px;
        background-position: center;
    }

    .inner-hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .inner-hero {
        min-height: 260px;
    }

    .inner-hero-content h1 {
        font-size: 28px;
    }

    .breadcrumb {
        font-size: 13px;
    }
}









.hightech-section {
    padding: 90px 0;
    background: #fff;
}

.hightech-headings {
    text-align: center;
    margin-bottom: 80px;
}

.hightech-headings .line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.hightech-headings span {
    font-size: 32px;
    font-weight: 800;
    color: #1f1f1f;
    letter-spacing: 0.5px;
}

.hightech-headings img {
    width: 130px;
    height: 46px;
    object-fit: cover;
    border-radius: 50px;
}

.arrow-btn {
    width: 54px;
    height: 54px;
    background: #1f1f1f;
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.sun-icon {
    width: 32px;
    height: 32px;
    background: #ffc72c;
    border-radius: 50%;
    position: relative;
}

.sun-icon::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: #ffc72c;
    box-shadow: 0 -18px #ffc72c, 0 18px #ffc72c, 18px 0 #ffc72c, -18px 0 #ffc72c,
                13px 13px #ffc72c, -13px -13px #ffc72c, 13px -13px #ffc72c, -13px 13px #ffc72c;
}

/* =====================
   STATS
===================== */

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat p {
    font-size: 15px;
    color: #666;
}

.divider {
    width: 1px;
    height: 70px;
    background: #ddd;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 1200px) {
    .hightech-headings span {
        font-size: 26px;
    }
}

@media (max-width: 992px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .divider {
        display: none;
    }
}

@media (max-width: 576px) {
    .hightech-headings span {
        font-size: 20px;
    }

    .hightech-headings img {
        width: 100px;
        height: 38px;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .stat h3 {
        font-size: 44px;
    }
}








.process-section {
    padding: 100px 0;
    background: #fff;
}

.process-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px;
}

.process-tag {
    font-size: 12px;
    letter-spacing: 2px;
    color: #777;
    display: block;
    margin-bottom: 10px;
}

.process-heading h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1f1f1f;
}

.process-heading p {
    font-size: 15px;
    color: #666;
}

.process-video {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 80px;
}

.process-video img {
    width: 100%;
    height: auto;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: #ffc72c;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-decoration: none;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
}

.step-no {
    display: inline-block;
    background: #ffc72c;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: #f5f5f5;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 28px;
}

.step h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: #666;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 992px) {
    .process-heading h2 {
        font-size: 34px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 576px) {
    .process-heading h2 {
        font-size: 26px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 14px;
    }
}
