@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

:root {
    /* Surfaces */
    --bg: #ffffff;
    --surface: #f4f6fb;
    --surface-2: #eef2fb;
    /* Text */
    --text: #0f172a;
    --text-soft: #334155;
    --muted: #64748b;
    --heading: #0f172a;
    /* Brand + accent */
    --brand: #1d4ed8;
    --brand-strong: #1e40af;
    --brand-soft: #dbeafe;
    --accent: #0891b2;
    --accent-strong: #0e7490;
    /* Structure */
    --border: #e2e8f0;
    --dark: #0f172a;
    --dark-2: #0b1120;
    --on-dark: #f8fafc;
    --success: #24b47e;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(15, 23, 42, .08);
    /* Type */
    --font-head: "Sora", sans-serif;
    --font-body: "Inter", sans-serif;
}

*,
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
}

html {
    scroll-behavior: smooth;
}

img.lazy {
    filter: blur(10px);
    /* Blur awal */
    transition: filter 0.5s ease-out;
    /* Transisi penghapusan blur */
    width: 100%;
    /* Ukuran gambar disesuaikan */
    height: auto;
}

#jumbotron img.lazy {
    filter: blur(10000px);
}

img.lazy.loaded {
    filter: blur(0);
    /* Hilangkan blur setelah gambar dimuat */
}

input:focus,
textarea:focus {
    box-shadow: none;
}

input:focus,
select:focus,
input:checked {
    box-shadow: none !important;
}

.form-control.is-invalid,
.was-validated .form-control:invalid,
.form-select.is-invalid,
.was-validated .form-select:invalid {
    border: var(--bs-border-width) solid var(--bs-border-color);
}

header .btn {
    padding: 4px 12px;
}

.btn {
    font-size: 1rem !important;
    padding: 8px 20px;
    border-radius: 8px;
}

.btn {
    transition: all .2s linear;
}

.btn-danger {
    background-color: var(--brand) !important;
    box-shadow: rgba(29, 78, 216, .27) 0px 7px 29px 0px;
}

.btn-danger:hover {
    background-color: var(--brand-strong) !important;
}

h1 {
    color: var(--heading) !important;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 2.6rem;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: -.5px;
}

p {
    margin: 0;
    padding: 0;
    font-weight: 300;
}

p.sub-title {
    font-weight: 300;
    margin-bottom: 35px;
}

#jumbotron h1 {
    color: var(--on-dark) !important;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: start;
}

#jumbotron p.sub-title {
    color: rgba(248, 250, 252, .72);
}

#scroll-on-top {
    position: fixed;
    width: 40px;
    height: 40px;
    background: rgba(229, 229, 241, 0.98);
    box-shadow: rgba(0, 0, 0, 0.02) 0px 3px 5px;
    backdrop-filter: blur(4px);
    z-index: 999;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0px;
    right: 15px;
    font-size: 16px;
    border-radius: 8px;
    opacity: 0;
    transition: .3s all ease-in-out;
}

#scroll-on-top.active {
    opacity: 1;
    bottom: 15px;
}

/* Header */
header {
    z-index: 2;
    width: 100%;
    padding-block: 15px;
    padding-inline: 40px;
}

nav {
    /*border-bottom: .1px solid #ffffff1f;*/
    display: flex;
    /*height: 60px;*/
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

nav.container {
    /* max-width: 90vw!important; */
    padding-inline: 12px;
}

nav .logo a {
    margin: 0;
    text-decoration: none;
    transition: 0.3s;
    text-align: center;
}

nav .logo a img {
    width: 210px;
    height: auto;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: flex-end;
    margin: 0;
    align-items: center;
}

nav ul li {
    list-style: none;
    margin-left: 10px;
}

nav ul li a {
    text-decoration: none;
    color: var(--brand);
    font-weight: 500;
    font-size: .9rem;
    transition: .2s ease-in-out;
}

nav.dark {
    background: rgba(255, 255, 255, 0.83);
}

nav.dark ul li a {
    color: var(--brand);
}

nav.dark .menu-toggle span,
nav.dark .menu-toggle input:checked~span:nth-child(2),
nav.dark .menu-toggle input:checked~span:nth-child(4) {
    background-color: var(--brand);
}

nav ul li a.btdanger {
    border-radius: 6px;
    padding: 6px 16px;
    color: #fff;
    background-color: var(--brand);
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    height: 17px;
    justify-content: space-between;
    position: relative;
}

.menu-toggle input {
    position: absolute;
    width: 41px;
    height: 31px;
    opacity: 0;
    left: -7px;
    top: -4px;
    cursor: pointer;
    z-index: 1;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.5s;
}

.menu-toggle span:nth-child(2) {
    transform-origin: 0 0;
}

.menu-toggle span:nth-child(4) {
    transform-origin: 0 100%;
}

.menu-toggle input:checked~span:nth-child(2) {
    background-color: #fff;
    transform: rotate(45deg) translate(-3px, -1px);
}

.menu-toggle input:checked~span:nth-child(4) {
    background-color: #fff;
    transform: rotate(-45deg) translate(-3px, -0.5px);
}

.menu-toggle input:checked~span:nth-child(3) {
    opacity: 0;
    transform: scale(0);
}

section .container {
    padding-block: 90px;
}

section .text-box {
    margin-bottom: 35px;
}

.container h1 {
    font-weight: 800;
}

#jumbotron {
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
    /* padding-top: 70px; */
    padding-inline: 25px;
    padding-bottom: 60px;
}

#jumbotron .jumbotron-box {
    overflow: hidden;
    border-radius: 12px;
    background: rgb(29, 78, 216);
    background: radial-gradient(circle, rgb(29, 78, 216) 0%, rgb(15, 23, 42) 55%, rgb(15, 23, 42) 100%);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.45), 0 15px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    /*border: 1px solid rgba(255, 255, 255, 0.05);*/
}

#jumbotron .container {
    padding-block: 0;
}

#jumbotron .container .row {
    height: 90dvh;
}

#jumbotron .bungkus {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

#jumbotron .wave {
    position: absolute;
    border-radius: 43%;
    filter: blur(50px);
    background: white;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#jumbotron .wave.-one {
    width: 1000px;
    height: 1000px;
    top: -300px;
    left: -300px;
    animation: rotate 5s infinite linear;
    opacity: 0.14;
}

#jumbotron .wave.-two {
    width: 800px;
    height: 800px;
    bottom: -200px;
    right: -200px;
    animation: rotate 5s infinite linear reverse;
    opacity: 0.15;
}

#jumbotron .container {
    z-index: 1;
    position: relative;
}

#jumbotron img.jumbotron-img {
    width: 100%;
    -webkit-filter: drop-shadow(0 31px 55px #00000033);
    filter: drop-shadow(0 31px 55px #00000033);
}

.blur1 {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background-color: #ffffffab;
    display: inline-block;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 30px;
    left: 30px;
    filter: blur(220px);
}

.highlighted {
    color: #fff;
    background-color: var(--accent);
    padding: 0 5px;
    border-radius: 4px;
    position: relative;
    font-style: italic;
    font-size: .8em;
    /*animation: bg-slide 1s infinite ease-in-out;*/
}

.highlighted-secondary {
    color: #fff;
    background-color: var(--brand);
    padding: 0 5px;
    border-radius: 4px;
    position: relative;
    font-style: italic;
    font-size: .8em;
    /*animation: bg-slide 1s infinite ease-in-out;*/
}

@keyframes bg-slide {
    0% {
        background-color: transparent;
    }

    50% {
        color: #fff;
        background-color: var(--accent);
    }

    100% {
        background-color: transparent;
    }
}

/* Removed empty ruleset #jumbotron p .highlighted::before */
#jumbotron .image {
    position: relative;
}

#jumbotron .image::before {
    content: "";
    display: block;
    width: 50px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent), var(--brand));
    opacity: .85;
    border-radius: 18px;
    position: absolute;
    top: -20px;
    left: 40px;
    animation: move-updown 3s infinite ease-in-out;
}

#jumbotron .image::after {
    content: "";
    display: block;
    width: 70px;
    height: 120px;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    opacity: .8;
    border-radius: 24px;
    position: absolute;
    bottom: 20px;
    right: -30px;
    animation: move-updown 3s infinite ease-in-out;
    animation-delay: .5s;
}

@keyframes move-updown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes move-downup {
    0% {
        transform: translateY(20px);
    }

    50% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(20px);
    }
}


/* Youtube */
#youtube p {
    text-align: center;
}

#youtube .frame {
    width: 720px;
    height: 450px;
    margin: 0 auto;
    position: relative;
    padding: 10px;
    box-shadow: #21232609 0px 10px 10px 10px;
    background-color: var(--bg);
    border-radius: 12px;
}

#youtube {
    position: relative;
}

#youtube .frame::before {
    content: "";
    display: block;
    width: 240px;
    height: 240px;
    top: -10%;
    right: -140px;
    padding: 0;
    background: url('../img/Pose4.png') no-repeat center center;
    background-size: contain;
    border-radius: 6px;
    position: absolute;
    animation: move-updown 3s infinite ease-in-out;
    animation-delay: 1s;

    /*filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.19));*/
    filter:
        drop-shadow(3px 0 0 #fff)
        drop-shadow(-3px 0 0 #fff)
        drop-shadow(0 3px 0 #fff)
        drop-shadow(0 -3px 0 #fff);
    /*z-index: -1;*/
}

#youtube .frame .framehead {
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(244, 246, 245, 1) 100%);
    height: 50px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    border-top: 1.5px solid var(--border);
    border-left: 1.5px solid var(--border);
    border-right: 1.5px solid var(--border);
}

#youtube .frame .framehead::after {
    content: "";
    margin-right: 10rem;
    display: inline-block;
    aspect-ratio: 1 / 1;
    height: 1.1rem;
    border-radius: 9999px;
    box-shadow:
        1.4em 0 #f86159,
        2.8em 0 #febc3f,
        4.2em 0 #30ca41;
}

#youtube .frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

#course {
    background-color: var(--surface);
}

#course .tab-pane {
    background-color: var(--bg);
    box-shadow: #00000007 2.4px 2.4px 40px;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: .2s ease-in-out;
}

#course .tab-pane:hover {
    background-color: var(--bg);
}

#course p {
    margin: 0;
    text-align: justify;
    color: var(--text-soft);
}

#course p span {
    font-weight: 500;
    display: inline-block;
    margin-top: 8px;
}

#course .tab-pane .img {
    position: relative;
}

#course .tab-pane img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

#course .tab-pane .text {
    padding-block: 20px;
    padding-right: 30px;
}

#course .tab-pane ul {
    /* list-style: none; */
    font-weight: 300;
    padding-left: 30px;
}

#course .tab-pane ul li::marker {
    color: var(--text-soft);
}

#course .tab-pane ul li {
    margin-bottom: 5px;
    font-weight: 300;
    color: var(--text-soft);
}

#course .nav-pills .nav-link {
    font-size: 1em;
    font-weight: 600;
    border-radius: 0;
    color: var(--muted);
    border-bottom: 2.5px solid var(--border);
    transition: all .2s ease-in-out;
    cursor: pointer;

}

#course .nav-pills .nav-link.active,
.nav-pills .show>.nav-link,
#course .nav-pills .nav-link:hover {
    background-color: transparent;
    color: var(--heading);
    border-bottom: 2.5px solid var(--brand) !important;
}

/* Removed empty ruleset .modal-title */
.modal-title span {
    font-size: .8em;
    font-weight: 800;
    color: var(--brand);
}

.modal-body,
.modal-body ul li {
    font-weight: 300;
    position: relative;
    text-align: justify;
}

.modal-body ul {
    padding-left: 20px;
}

.modal-body::before {
    content: '';
    background: url('../img/Pose1.png') no-repeat center center;
    background-size: contain;
    width: 200px;
    height: 200px;
    position: absolute;
    top: -20px;
    right: 0;
    opacity: 10%;
}


.testimony-carousel .item {
    width: 100%;
}

.testimony-carousel .item img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    filter: brightness(65%);
    transition: .2s ease-in-out;
}

.testimony-carousel .item i {
    font-size: 42px;
    color: #fff;
    width: fit-content;
    height: fit-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 11;
    pointer-events: none;
    transition: .2s ease-in-out;
}

.testimony-carousel .item:hover i,
.testimony-carousel .item:focus i {
    color: var(--accent);
}

.testimony-carousel .item:hover img {
    filter: brightness(100%);
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    background-color: var(--border) !important;
    padding: 5px 8px !important;
    width: 30px;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot span {
    line-height: 0;
    color: var(--text) !important;
}

/* Gallery */
#gallery .box {
    padding: 5px;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.07), 0 10px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--border);
}

#gallery .box:hover .box-image img {
    transform: scale(1.1);
}

#gallery .box .box-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

#gallery .box .box-image img {
    border-radius: 8px 8px 0 0;
    width: 100%;
    height: auto;
    aspect-ratio: 2/1.5;
    object-fit: cover;
    transition: .3s ease-in-out;
}

#gallery .box .box-text {
    padding: 5px;
}

#gallery .box .box-text i {
    margin-top: -1px;
    color: rgba(29, 78, 216, 0.7);
}

#gallery .box .box-text h5 {
    font-size: .95em;
    margin: 0;
    font-weight: 500;
    color: var(--text);

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
}

#gallery .box .box-text p {
    font-size: .75em;
    margin: 0;
}

/* Gallery */

#register {
    height: auto;
    position: relative;
}

#register::after {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 0;
    height: 80%;
    width: 100%;
    background-color: var(--dark);
    /* border-radius: 90px 90px 0 0; */
}

#register .container {
    padding-block: 0;
}

#register .box {
    background-color: var(--bg);
    padding: 60px 40px;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    box-shadow: rgba(15, 23, 42, .05) 0 0 30px 10px;
    /*border: 2px solid var(--border);*/
}

#register label {
    font-size: 16px;
    font-weight: 400;
}

#register input::placeholder,
#register select {
    font-weight: 300;
    font-size: 16px;
}

.invalid-feedback {
    font-size: .7em !important;
    font-weight: 300 !important;
}

.form-control,
.input-group-text {
    font-size: .8em;
    font-weight: 300;
}

#register .btn {
    transition: .3s all ease-in-out !important;
    font-size: .8em;
    width: 200px;
}

#register .btn #load {
    width: 0;
    height: auto;
    object-fit: cover;
    margin-left: 5px;
    transform: scale(2.3);
    transition: .3s all ease-in-out !important;
}

#register .btn #load.show {
    width: 10px;
}

/* faq */
#faq .accordion-body {
    font-weight: 300;
    font-size: 1em;
}

.accordion-button::after {
    display: none;
}

.accordion-button::before {
    content: "+ ";
    transition: .2s ease-in-out;
    font-size: 1.3em;
    margin-right: 10px;
}

.accordion-button:not(.collapsed)::before {
    content: "-";
    transition: .2s ease-in-out;
}

.accordion-button:focus {
    box-shadow: none;
}

footer {
    padding-top: 60px;
    background-color: var(--dark);
    color: var(--on-dark);
}

footer img.logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

footer .footer-top-bar {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

footer .footer-row {
    align-items: flex-start;
    row-gap: 24px;
}

footer .social-media {
    display: flex;
    gap: 10px;
}

footer .social-media a {
    color: var(--dark);
    width: 35px;
    height: 35px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 50px;
    transition: .15s ease-in-out;
}

footer .social-media a:hover {
    transform: translateY(-4px);
}

footer .social-media a.wa-contact i {
    font-weight: 700;
}

footer .social-media a.wa-contact {
    width: auto;
    padding-inline: 15px;
    gap: 8px;
    border-radius: 50px;
}

footer .social-media a.wa-contact span {
    font-size: 14px;
    font-weight: 600;
}

footer .social-media a i {
    font-size: 18px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer li {
    margin-bottom: 5px;
}

footer li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    transition: .2s ease-in-out;
}

footer li a:hover {
    text-decoration: none;
    color: var(--accent);
    padding-left: 2px;
}

footer .address-list li {
    margin-bottom: 2px;
}

footer .address-list li a i {
    color: var(--accent);
}
footer .address-list .badge-footer{
    background-color: var(--accent);
    color: #fff;
    letter-spacing: .2px;
    transition: all .3s ease-in-out;
    transform: scale(1) rotate(0);
    border-radius: 50px;
}
footer .address-list li a:hover .badge-footer{
    color: #fff;
    transform: scale(1.3) rotate(5deg);
}

footer .footer-nav-top {
    font-weight: 600;
    font-size: 15px;
    margin: 0 0 14px 0;
    padding: 0;
    color: var(--on-dark);
    display: block;
    height: auto;
}

footer .copyright {
    background-color: var(--dark-2);
    text-align: center;
    padding-block: 12px;
    margin-top: 50px;
}

footer .copyright span {
    font-size: 14px;
    font-weight: 300;
}

@media screen and (min-width: 1440px) {
    .container {
        max-width: 1450px !important;
    }

    nav ul li {
        margin-left: 35px;
    }


    #jumbotron .container {
        /* padding-block: 130px; */
    }

}


@media screen and (max-width: 1024px) {
    #course .tab-pane img {
        width: 100%;
        height: 300px;
    }
}

@media screen and (min-width: 720px) {
    .modal-dialog {
        max-width: 700px;
    }
}

@media screen and (max-width: 820px) {
    .hide-on-tablet {
        display: none;
    }

    header nav {
        border-radius: 8px;
        padding-block: 4px;
        box-shadow: rgba(0, 0, 0, 0.02) 0px 3px 5px;
    }

    .menu-toggle {
        display: flex;
    }

    header {
        position: fixed;
        padding-block: 20px;
        padding-inline: 15px;
    }

    header nav {
        flex-wrap: wrap;
        height: fit-content;
        transition: all 0.3s;
    }

    nav ul {
        padding-left: 0;
        width: 100%;
        flex-direction: column;
        justify-content: start;
        z-index: -4;
        opacity: 0;
        height: 0;
        align-items: center;
        gap: 10px;
        transition: all 0.3s;
        /* overflow: hidden; */
    }

    nav ul li a {
        display: none;
        border-radius: 4px;
        color: #fff;
        padding: 5px 10px;
        /* background: #fff; */
    }

    nav ul li a:hover {
        color: var(--accent);
        /* background: var(--dark); */
    }

    nav ul.slide {
        opacity: 1;
        height: auto;
        transition: all 0.1s;
        padding-block: 20px;
        border-radius: 6px;
    }

    nav ul.slide li a {
        display: inline-block;
    }

    nav .logo a img {
        width: 160px;
    }

    main {
        z-index: 2 !important;
    }

    nav ul li {
        margin-left: 0;
    }

    #jumbotron {
        padding-top: 70px;
    }

    #jumbotron .container {
        padding-block: 90px;
    }

    #jumbotron .container .row {
        height: auto;
    }

    #jumbotron h1,
    h1 {
        font-size: 2rem;
    }

    #jumbotron .wave {
        width: 1500px;
        height: 1300px;
        margin-left: -150px;
        margin-top: -250px;
    }

    #youtube .frame {
        width: 100%;
    }

    #youtube .frame::before {
        display: block;
        height: 120px;
        width: 120px;
        top: -35px;
        right: -30px;
        filter:
            drop-shadow(1px 0 0 #fff)
            drop-shadow(-1px 0 0 #fff)
            drop-shadow(0 1px 0 #fff)
            drop-shadow(0 -1px 0 #fff);
    }

    #course .tab-pane {
        padding: 10px;
    }

    #course .tab-pane .text {
        padding: 5px;
        padding-top: 30px;
    }

    #course .tab-pane img {
        border: none;
        height: 420px;
    }

    #course .tab-pane .text h5 {
        font-size: 1.1em;
    }

    #course .nav-pills .nav-link {
        font-size: .8em;
    }

    .testimony-carousel .owl-nav {
        display: none;
    }
}


/*@media screen and (min-width: 1000px) and (max-width: 1440px) {*/
/*    #jumbotron h1, h1{*/
/*        font-size: 1.5em;*/
/*    }*/
/*}*/
@media screen and (max-width: 480px) {
    .modal-title {
        font-size: .8em;
    }

    .modal-title span {
        font-size: .8em;
        font-weight: 800;
        color: var(--brand);
    }

    .modal-body,
    .modal-body ul li {
        font-size: .8em;
        font-weight: 300;
        position: relative;
        text-align: justify;
    }

    .modal-body ul {
        padding-left: 20px;
    }

    header .container {
        max-width: 95vw !important;
    }

    header nav {}

    nav.container {
        padding-inline: 15px;
    }

    nav .logo a img {
        width: 130px;
    }

    section .container {
        padding-block: 50px;
        padding-inline: 20px;
    }

    section .text-box {
        margin-bottom: 20px;
    }

    .btn {
        font-size: .8rem !important;
    }

    #jumbotron h1,
    h1 {
        font-size: 1.5em;
    }

    p,
    #course .tab-pane ul li {
        font-size: .8em;
    }

    #jumbotron {
        padding-inline: 0px;
        background: rgb(29, 78, 216);
        background: radial-gradient(circle, rgb(37, 99, 235) 0%, rgb(15, 23, 42) 40%, rgb(15, 23, 42) 100%);
    }

    #jumbotron .text {
        margin-bottom: 40px;
    }

    #jumbotron .wave {
        width: 1500px;
        height: 1300px;
        margin-left: -150px;
        margin-top: -250px;
    }


    #youtube .frame {
        height: 230px;
    }

    #youtube .frame::before {
        display: block;
        height: 60px;
        width: 60px;
        top: -25px;
        right: -15px;
        filter:
            drop-shadow(1px 0 0 #fff)
            drop-shadow(-1px 0 0 #fff)
            drop-shadow(0 1px 0 #fff)
            drop-shadow(0 -1px 0 #fff);
    }

    #youtube .frame .framehead {
        height: 35px;
    }

    #youtube .frame .framehead::after {
        height: 1rem;
    }

    #gallery .box .box-text h5 {
        font-size: .8em;
    }

    #gallery .box .box-text p {
        font-size: .65em;
    }


    #register .box {
        padding-inline: 20px;
    }

    footer .container {
        padding-inline: 20px;
    }

    footer .footer-top-bar {
        margin-bottom: 28px;
    }

    footer img.logo {
        width: 130px;
    }

    footer .footer-nav-top {
        margin-bottom: 10px;
        font-size: 14px;
    }

    footer ul li a {
        font-size: 13px;
    }

    footer .address-list li a {
        font-size: 12.5px;
    }

    footer .social-media a {
        width: 30px;
        height: 30px;
    }


    #course .tab-pane .text {
        padding-top: 20px;
    }

    #course .tab-pane .text h5 {
        font-size: 1em;
    }

    #course .tab-pane .text p {
        text-align: justify;
    }


    #course .tab-pane img {
        height: 220px;
    }

    .owl-carousel .owl-stage {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #faq .accordion-body {
        font-weight: 300;
        font-size: .9em;
    }


    label.form-check-label {
        font-size: 14px !important;
        font-weight: 500;
    }

    #register .btn {
        transition: .2s all ease-in-out;
    }

    #register .btn span {
        font-size: .8rem;
    }
}

/* ============ Recreation additions ============ */
.brand-logo { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--on-dark); text-decoration: none; letter-spacing: -.3px; line-height: 1; }
.brand-logo span { color: var(--accent); }
nav.dark .brand-logo { color: var(--heading); }
nav.dark .brand-logo span { color: var(--accent); }

header.solid { position: sticky; top: 0; background: transparent; }

/* Hero illustration + laptop card */
.hero-illust { width: 100%; height: auto; display: block; }

/* Subpage navy hero band */
.page-hero { background: rgb(29,78,216); background: radial-gradient(circle, rgba(29,78,216,1) 0%, rgba(15,23,42,1) 60%, rgba(15,23,42,1) 100%); padding: 140px 0 70px; text-align: center; margin-bottom: 10px; }
.page-hero h1 { color: var(--on-dark) !important; }
.page-hero p { color: rgba(248,250,252,.8); }
.page-hero .breadcrumb-lite a { color: var(--accent); text-decoration: none; }

/* Event cards */
.event-card { background: var(--bg); border-radius: 14px; overflow: hidden; height: 100%; border: 1px solid var(--border); box-shadow: 0 20px 40px rgba(15,23,42,.08), 0 10px 15px rgba(0,0,0,.03); transition: all .4s cubic-bezier(0.165,0.84,0.44,1); display: flex; flex-direction: column; }
.event-card:hover { transform: translateY(-6px); }
.event-card .thumb { aspect-ratio: 16/10; overflow: hidden; background: linear-gradient(135deg,var(--brand),var(--dark)); position: relative; }
.event-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.event-card .thumb .status-badge { position: absolute; top: 10px; left: 10px; font-size: .7rem; font-weight: 600; padding: 3px 12px; border-radius: 50px; color: #fff; }
.event-card .status-upcoming { background: var(--brand); }
.event-card .status-done { background: var(--muted); }
.event-card .body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.event-card .body h4 { font-size: 1rem; font-weight: 700; color: var(--heading); margin-bottom: 10px; font-family: var(--font-head); }
.event-card .meta { font-size: .8rem; color: var(--muted); margin: 0; }
.event-card .meta span { color: var(--heading); font-weight: 500; }
.event-card .price { font-weight: 700; color: var(--heading); }
.event-card .price .free { color: var(--success); }
.event-card .foot { margin-top: auto; padding-top: 12px; }

/* Blog cards */
.blog-card { background: var(--bg); border-radius: 14px; overflow: hidden; height: 100%; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(15,23,42,.06); transition: .3s ease; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); }
.blog-card .thumb { aspect-ratio: 16/9; background: linear-gradient(135deg,var(--brand),var(--dark)); overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.blog-card .cat { display: inline-block; font-size: .7rem; font-weight: 600; color: #fff; background: var(--brand); padding: 2px 12px; border-radius: 50px; margin-bottom: 10px; align-self: flex-start; }
.blog-card h5 { font-size: 1.05rem; font-weight: 700; color: var(--heading); font-family: var(--font-head); }
.blog-card .byline { font-size: .78rem; color: var(--muted); }
.blog-filter .btn { border-radius: 50px; font-size: .85rem !important; padding: 6px 18px; }
.blog-filter .btn.active { background: var(--brand); color: #fff; border-color: var(--brand); }

/* Prose (blog / event body) */
.prose { font-weight: 300; color: var(--text-soft); }
.prose p { margin-bottom: 1rem; }
.prose h2, .prose h3 { font-family: var(--font-head); font-weight: 700; color: var(--heading); margin: 1.2rem 0 .6rem; }

/* Logo contrast fix: nav sits on light strip on all pages */
.brand-logo { color: var(--heading); }
.brand-logo span { color: var(--accent); }
footer .brand-logo { color: var(--on-dark); }
footer .brand-logo span { color: var(--accent); }

/* Logo image + lightbox/video additions */
.nav-logo { width: 120px; height: auto; display: block; }
@media (max-width: 820px) { .nav-logo { width: 100px; } }
#gallery .box .box-image a { display: block; }
#videoModal .modal-content { background: transparent; }
.event-benefits { list-style: none; padding: 0; margin: 0; }
.event-benefits li { position: relative; padding-left: 30px; margin-bottom: 10px; font-weight: 300; color: var(--text-soft); }
.event-benefits li i { position: absolute; left: 0; top: 4px; color: var(--success); font-size: 18px; }
.contact-line { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-weight: 300; }
.contact-line i { color: var(--accent); font-size: 18px; }

/* Square logo sizing */
.nav-logo { width: auto; height: 110px; border-radius: 8px; }
@media (max-width: 820px) { .nav-logo { height: 80px; } }
footer img.logo { width: auto; height: 76px; border-radius: 10px; }
