/* --- Root Variables for Theme Consistency --- */
:root {
    
    --text-color: #333;
    --sub-text-color: #666;
    --primary: #0C2B4E;
    --secondary: #1A3D64;
    --accent: #1D546C;
    --light-bg: #d4d1d1;
}

/* --- Global Styles --- */
body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
}

.page-header {
    height: 65vh;
    background: linear-gradient(rgba(8, 25, 48, 0.8), rgba(8, 25, 48, 0.8)),
        url('../assest/images/image4.jpg') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-header h2 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* --- New Section: Registration Intro (Clean & Professional) --- */
.regi-intro-section {
    background-color: white;
    padding-top: 5rem;
    padding-bottom: 3rem;
}

.regi-intro-section h3 {
    color: var(--primary-color);
    font-weight: 700;
}

.regi-intro-section p {
    color: var(--sub-text-color);
    font-size: 1.15rem;
    line-height: 1.8;
}

.image-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

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

/* --- New Section: Registration Details (List-based with Images) --- */
.regi-details-section {
    background-color: var(--light-bg);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.regi-details-section h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.regi-details-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--sub-text-color);
}

.regi-details-section ul {
    list-style: none;
    /* Remove default bullet */
    padding-left: 0;
}

.regi-details-section ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: var(--text-color);
}

.regi-details-section ul li::before {
    content: "\f058";
    /* Font Awesome check-circle icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

/* Image for specific services */
.service-image-right {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    width: 100%;
    height: 300px;
    margin-bottom: 30px;
}


/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(rgba(12, 43, 78, 0.9), rgba(12, 43, 78, 0.9)),
        url('../assest/images/cta-bg.jpg') center/cover no-repeat;
    /* Replace with your CTA background image */
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.8;
}

.cta-section .btn-outline-light:hover {
    background-color: var(--light-bg);
    color: var(--primary);
}