    /* page-banner.css */

.page-banner {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.page-banner .container {
    position: relative;
    z-index: 3; 
    text-align: center;
}

.banner-content {
    width: 100%;
    text-align: center;
    color: white;
    margin-top: 50px;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin:1rem auto;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.2rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 991px) {
    .page-banner {
        height: 220px;
        margin-top: 70px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .page-banner {
        height: 200px;
    }
    
    .banner-title {
        font-size: 1.75rem;
    }
    
    .breadcrumb {
        font-size: 0.875rem;
    }
}

@media (max-width: 575px) {
    .page-banner {
        height: 180px;
    }
    
    .banner-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .breadcrumb {
        font-size: 0.8125rem;
    }
}

@media (max-width: 400px) {
    .page-banner {
        height: 160px;
    }
    
    .banner-title {
        font-size: 1.25rem;
    }
}




        .home_container {
            width: 80%;
            margin: 50px auto;
            background: white;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header {
            text-align: center;
            margin-bottom: 50px;
        }

        .header h1 {
            color: #333;
            font-size: 28px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .header p {
            color: #666;
            font-size: 15px;
            line-height: 1.6;
            max-width: 700px;
            margin: 0 auto;
        }

        .timeline {
            position: relative;
            padding: 20px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 100%;
            background: linear-gradient(to bottom, #0066cc, #004499);
            top: 0;
        }

        .step {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
            position: relative;
        }

        .step:last-child {
            margin-bottom: 0;
        }

        .step-left {
            width: 45%;
            text-align: right;
            padding-right: 30px;
        }

        .step-center {
            width: 10%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .step-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            border: 4px solid #0066cc;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0,102,204,0.3);
        }

        .step-circle-inner {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #0066cc;
        }

        .step-right {
            width: 45%;
            padding-left: 30px;
        }

        .image-box {
            background: #f0f7ff;
            border-radius: 8px;
            padding: 30px;
            display: inline-block;
            border: 2px solid #e0edff;
            margin-right: 50px;
        }

        .image-box img {
            width: 180px;
            height: 180px;
            object-fit: contain;
            display: block;
        }

        .content-box {
            background: #0066cc;
            color: white;
            padding: 25px;
            border-radius: 8px;
            display: inline-block;
            min-width: 280px;
        }

        .content-box h3 {
            font-size: 18px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .content-box p {
            font-size: 14px;
            line-height: 1.6;
            opacity: 0.95;
        }

        .icon {
            font-size: 20px;
        }

        .cta-container {
            text-align: center;
            margin-top: 50px;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: white;
            color: #0066cc;
            border: 2px solid #0066cc;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .cta-button:hover {
            background: #0066cc;
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .home_container {
                padding: 30px 20px;
            }

            .header h1 {
                font-size: 22px;
            }

            .header p {
                font-size: 14px;
            }

            .timeline::before {
                left: 60px;
            }

            .step {
                flex-direction: column;
                align-items: flex-start;
                margin-bottom: 50px;
            }

            .step-left,
            .step-right {
                width: 100%;
                text-align: left;
                padding: 0;
                padding-left: 100px;
            }

            .step-center {
                position: absolute;
                left: 40px;
                width: auto;
            }

            .image-box {
                margin-bottom: 15px;
            }

            .content-box {
                min-width: auto;
                width: 100%;
            }

            .image-box img {
                width: 100px;
                height: 100px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 10px;
            }

            .home_container {
                padding: 20px 15px;
            }

            .header h1 {
                font-size: 20px;
            }

            .header p {
                font-size: 13px;
            }

            .timeline::before {
                left: 30px;
            }

            .step-center {
                left: 10px;
            }

            .step-left,
            .step-right {
                padding-left: 70px;
            }

            .step-circle {
                width: 35px;
                height: 35px;
                border-width: 3px;
            }

            .step-circle-inner {
                width: 14px;
                height: 14px;
            }

            .content-box {
                padding: 20px;
            }

            .content-box h3 {
                font-size: 16px;
            }

            .content-box p {
                font-size: 13px;
            }

            .image-box img {
                width: 80px;
                height: 80px;
            }

            .cta-button {
                padding: 12px 30px;
                font-size: 14px;
            }
        }
