/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
    background: #eef2f7;
    color: #1f2d3d;
    line-height: 1.7;
}

/* HEADER */
header {
    background: linear-gradient(120deg, #0a4d8c, #0073e6);
    color: white;
    text-align: center;
    padding: 15px 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

header h1 {
    margin: 0;
    font-size: 40px;
    letter-spacing: 1px;
    font-weight: 600;
}

/* MAIN WRAPPER */
.section {
    max-width: 1100px;
    margin: auto;
    padding: 20px 10px;
}

/* CARDS */
.card {
    background: white;
    padding: 28px 28px 24px 28px;
    margin-bottom: 25px;
    border-radius: 14px;

    /* softer premium shadow */
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);

    /* smooth hover */
    transition: all 0.25s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* HEADINGS */
.card h2 {
    color: #0a4d8c;
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 600;

    /* accent bar */
    border-left: 5px solid #0073e6;
    padding-left: 12px;
}

/* PARAGRAPHS */
.card p {
    margin-bottom: 12px;
    font-size: 15.8px;
    color: #2c3e50;
}

/* LISTS */
.card ul {
    margin-top: 10px;
    padding-left: 22px;
}

.card ul li {
    margin-bottom: 10px;
    position: relative;
}

/* subtle bullet enhancement */
.card ul li::marker {
    color: #0073e6;
}

/* HIGHLIGHT TEXT */
.highlight {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 14px;

    background: linear-gradient(135deg, #ffeaa7, #fff3cd);
    border-radius: 8px;

    font-weight: 600;
    font-size: 16px;
    color: #2d3436;

    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}


button {
    margin: 12px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 10px;


    background: linear-gradient(145deg, #0073e6, #004aad);
    color: white;

    box-shadow: 
        0 5px 0 #003b8a,
        0 10px 18px rgba(0,0,0,0.2);

    cursor: pointer;
    transition: all 0.2s ease;

    white-space: nowrap;   /* ✅ THIS LINE FIXES YOUR ISSUE */


}

.button-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 40px 20px;
}

.button-section a {
    text-decoration: none;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 0 #003b8a,
        0 16px 28px rgba(0,0,0,0.25);
}

button:active {
    transform: translateY(4px);
    box-shadow: 
        0 2px 0 #003b8a,
        0 6px 10px rgba(0,0,0,0.2);
}






/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {

    header h1 {
        font-size: 28px;
    }

    .card {
        padding: 20px;
    }

    .button-section button {
        width: 90%;
        max-width: 300px;
    }
}


/* ===== VIDEO SECTION ===== */
.video-section {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.video-card {
    background: white;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s;
    margin: 10px;
    width: 450px;
}

.video-card:hover {
    transform: translateY(-5px);
}

video {

    width: 100%;
    border-radius: 10px;
}

/* BACK BUTTON */
.back-btn {
    margin-top: 30px;
}


/* ===== FIX VIDEO SIZE ON MOBILE ===== */
@media (max-width: 768px) {

    .card {
        padding: 15px;   /* reduce card padding */
    }

    .video-section {
        margin-left: -15px;
        margin-right: -15px;
    }

    .video-card {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    video {
        width: 100%;
        border-radius: 0;   /* optional: edge-to-edge look */
    }
}

#sliderImage {

    width:100%;

    max-height:80vh;

    object-fit:contain;

    border-radius:10px;

    display:block;

    margin:auto;

    transition: opacity 0.35s ease;

}

