/* <!-- Internal CSS Styling --> */
.cta-button.disabled {
    background-color: #ccc;
    /* light gray background */
    color: #666;
    /* dark gray text */
    cursor: not-allowed;
    /* disable pointer */
    pointer-events: none;
    /* prevent clicking */
    text-decoration: none;
    /* optional: remove underline */
    opacity: 0.7;
    /* optional: slight fade effect */
}

body {
    margin: 0;
    background-color: #f8fafd;
    color: #1a1a1a;
    line-height: 1.6;
}

h1,
h2,
h5 {
    color: #062e6f;
    font-weight: bold;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
}

.center-banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
}

.custome-banner-video {
    position: absolute;
    top: 40%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
}


.banner-overlay {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 60px;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.banner-text {
    color: #fff;
    text-align: right;
    max-width: 600px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.banner-text h1 {
    font-size: 3rem;
    margin: 0;
    color: white;
}

.banner-text p {
    font-size: 1.2rem;
    margin-top: 10px;
    font-style: italic;
}

.service-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.service-section {
    margin-bottom: 30px;
    padding: 40px 20px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-text h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #062e6f;
    font-weight: bold;
}

.service-text h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.styled-list {
    list-style: none;
    padding-left: 0;
}

.styled-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    font-size: 1rem;
    margin-left: 20px;
}

.styled-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #062e6f;
    font-weight: bold;
}

.styled-list-circle li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    font-size: 1rem;
    margin-left: 20px;
}

.styled-list-circle li:not(.child-list li)::before {
    /* content: '⦿'; */
    content: '●';
    position: absolute;
    left: 0;
    color: #062e6f;
    font-weight: bold;
}

.cta {
    display: flex;
    flex-direction: column;
    /* Stack h5 and a vertically */
    align-items: center;
    /* Center horizontally */
    justify-content: center;
    /* Optional: center vertically if you want */
    text-align: center;
    width: 100%;
    padding: 10px 30px;
    box-sizing: border-box;
}

.cta h5 {
    font-size: 1.30rem;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 800px;
    /* Keeps text readable on large screens */
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    color: white;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Optional: Hover for service sections */
.service-section:hover {
    background: #dfe5e7;
    /* light sky blue for subtle effect */
    transition: background-color 0.3s ease;
}

.highlight {
    background-color: #ffffff;
    padding: 15px;
    border-left: 5px solid #003366;
    /* border-radius: 10px; */
}

.highlight:hover {
    background: #dfe5e7;
    /* light sky blue for subtle effect */
    transition: background-color 0.3s ease;
}

/* Reset child list to have no style */
.child-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

/* Optional: spacing between list items in child list */
.child-list li {
    margin-bottom: 0.5em;
}

/* Animations */
.fade-out {
    animation: fadeInDown 1s ease-in-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(20px);
    }
}


/* Responsive */
@media (max-width: 768px) {
    .banner-text {
        text-align: center;
        padding: 0 20px;
    }

    .banner-text h1 {
        font-size: 2rem;
    }

    .banner-text p {
        font-size: 1rem;
    }

    .banner-overlay {
        justify-content: center;
        padding: 0 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .service-section {
        border-radius: 0;
    }

    .service-text h2 {
        font-size: 1.5rem;
    }

    .cta h5 {
        font-size: 1.25rem;
    }
}

/* Animations */
.fade-in {
    animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}