/* Hero Banner for Inner Pages */
.page_hero_section {
    width: 100%;
    height: 450px;
    background: linear-gradient(rgba(21, 11, 67, 0.7), rgba(21, 11, 67, 0.7)), url('../../image/noth_backgroun_image.jpeg') center/cover no-repeat fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 100px;
    position: relative;
}

.page_hero_title {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 0.8s ease-in-out;
}

.page_breadcrumb {
    font-size: 16px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    animation: fadeInUp 0.8s ease-in-out;
}
.page_breadcrumb a {
    color: #ff9100;
    text-decoration: none;
    transition: 0.3s;
}
.page_breadcrumb a:hover {
    color: #fff;
}

/* Common Section Layout */
.pro_section {
    padding: 80px 0;
    width: 100%;
}
.bg_light { background: linear-gradient(135deg, #fdfdfd 0%, #f0f0f0 100%); }
.bg_dark { background: linear-gradient(135deg, #150B43 0%, #0d062e 100%); color: #fff; }
.bg_white { background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%); }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section_heading {
    text-align: center;
    margin-bottom: 50px;
}
.section_heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: inherit;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.bg_white .section_heading h2, .bg_light .section_heading h2 { color: #150B43; }
.section_heading h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: #AD0D29;
    bottom: -10px;
    left: 25%;
}
.section_heading p {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 15px auto 0;
}
.bg_dark .section_heading p { color: #ccc; }

/* 1. Flex Content Section (Image & Text) */
.content_split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}
.content_split.reverse {
    flex-direction: row-reverse;
}
.split_text {
    flex: 1 1 500px;
}
.split_text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #AD0D29;
}
.split_text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}
.bg_dark .split_text p { color: #ddd; }
.split_image {
    flex: 1 1 500px;
    position: relative;
}
.split_image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.split_image:hover img {
    transform: translateY(-5px);
}

/* Feature List (Checkmarks) */
.pro_section .feature_list {
    list-style: none;
    margin-top: 20px;
}
.pro_section .feature_list li {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: inherit;
}
.bg_white .feature_list li, .bg_light .feature_list li { color: #555; }
.pro_section .feature_list li i {
    color: #AD0D29;
    font-size: 20px;
    margin-right: 15px;
}

/* 2. Grid Cards Section (Features/Services) */
.grid_cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.pro_card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.4s;
    border-bottom: 4px solid transparent;
}
.bg_light .pro_card { background: #fff; }
.bg_dark .pro_card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #fff;}
.pro_card:hover {
    transform: translateY(-10px);
    border-bottom-color: #AD0D29;
    box-shadow: 0 15px 30px rgba(21, 11, 67, 0.1);
}
.pro_card_icon {
    font-size: 60px;
    color: #AD0D29;
    margin-bottom: 25px;
    transition: 0.3s;
}
.pro_card:hover .pro_card_icon {
    color: #ff9100;
}
.pro_card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #150B43;
}
.bg_dark .pro_card h4 { color: #fff; }
.pro_card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}
.bg_dark .pro_card p { color: #ccc; }

/* 3. Statistics Section */
.stats_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
}
.stat_box {
    flex: 1 1 200px;
    margin: 20px;
}
.stat_box h3 {
    font-size: 48px;
    color: #ff9100;
    margin-bottom: 10px;
    font-weight: 800;
}
.stat_box p {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

/* 4. Call to Action (CTA) Section */
.cta_section {
    background: linear-gradient(135deg, #ffffff 0%, #f4f4f4 100%);
    padding: 80px 0;
    text-align: center;
    color: #150B43;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.cta_section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}
.cta_btn {
    display: inline-block;
    padding: 15px 40px;
    background: #AD0D29;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
    border: 2px solid #AD0D29;
    box-shadow: 0 10px 20px rgba(173, 13, 41, 0.2);
}
.cta_btn:hover {
    background: transparent;
    color: #AD0D29;
    transform: translateY(-3px);
}

/* 5. Process Steps */
.process_steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}
.process_step {
    flex: 1 1 220px;
    text-align: center;
    position: relative;
}
.step_number {
    width: 80px;
    height: 80px;
    background: #150B43;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.process_step:hover .step_number {
    background: #AD0D29;
    transform: scale(1.1);
}
.process_step h4 {
    font-size: 20px;
    color: #150B43;
    margin-bottom: 10px;
}
.process_step p {
    font-size: 15px;
    color: #666;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .page_hero_section { height: 350px; }
    .page_hero_title { font-size: 32px; }
    .content_split { flex-direction: column !important; }
}
