* {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: transparent !important;
}

#background-inject {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

#header-container,
#body,
#footer-container {
    position: relative;
    z-index: 1;
}

.d-flex.flex-column.min-vh-100[style*="flex:1"] {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.navbar .nav-link {
    font-size: 1.2rem;
}

.navbar-brand span {
    font-size: 2rem !important;
}

.footer,
#footer-container {
    margin-top: auto !important;
    width: 100%;
    background: #021c46;
    color: #f8f9fa;
    padding: 1rem 0;
    border-top: 3px solid #fcae13;
}

#background-layout {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    display: inline-grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    place-items: center;
}

h1 {
    color: #2a4d69;
    text-align: center;
    margin-top: 40px;
}

a {
    text-decoration: none !important;
}

.button {
    display: block;
    width: 100%;
    margin: 10px auto;
    padding: 12px 32px;
    background: #00317f;
    color: #fff;
    border: none;
    border-radius: 15px;
    font-size: 1.5em;
    cursor: pointer;
    transition: background 0.2s;
}

.button:hover {
    background: #021c46;
}

.icon {
    color: #084c61;
    font-size: 1.7rem;
    margin-right: 8px;
    vertical-align: middle;
}

.program-card,
.pricing-card {
    border: 3px solid #fcae13;
    background: #f8f6f0;
    box-shadow: 0 4px 24px #dad7cd;
    border-radius: 1.2rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
}

.session-card {
    border: 3px solid #fcae13;
    background: #f8f6f0;
    box-shadow: 0 4px 24px #dad7cd;
    border-radius: 1.2rem;
    padding: 1.5rem;
}

.enroll-card {
    border: 3px solid #fcae13;
    background: #f8f6f0;
    box-shadow: 0 4px 24px #dad7cd;
    border-radius: 1.2rem;
    margin: .5rem 0;
    padding: .5rem;
}

/* Optional: shake animation for fun */
@keyframes shake {
    0% {transform: translate(1px, 1px) rotate(0deg);}
    10% {transform: translate(-1px, -2px) rotate(-1deg);}
    20% {transform: translate(-3px, 0px) rotate(1deg);}
    30% {transform: translate(3px, 2px) rotate(0deg);}
    100% {transform: translate(1px, -1px) rotate(1deg);}
}

.shakingImg {
    animation: shake 4s;
    animation-iteration-count: infinite;
}

@media (max-width: 575.98px) {
    .responsive-link-text {
        font-size: 1rem !important;
    }
    .payment-links-card {
        padding: 0.05rem !important;
    }
}

.payment-links-card {
    padding: 4rem;
}

#homeCarousel .carousel-item {
    height: 600px;
}

#homeCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #021c46;
}

#homeCarousel .carousel-control-prev-icon,
#homeCarousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-size: 100% 100%;
}

#homeCarousel .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath d='M10.8 1.5 4 8l6.8 6.5' fill='none' stroke='%23fcae13' stroke-linecap='round' stroke-linejoin='round' stroke-width='3.2'/%3e%3c/svg%3e");
}

#homeCarousel .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath d='M5.2 1.5 12 8l-6.8 6.5' fill='none' stroke='%23fcae13' stroke-linecap='round' stroke-linejoin='round' stroke-width='3.2'/%3e%3c/svg%3e");
}

#homeCarousel .carousel-indicators [data-bs-target] {
    width: 3rem;
    height: 0.6rem;
    border-radius: 999px;
    opacity: 0.6;
    background-color: #fcae13;
}

#homeCarousel .carousel-indicators .active {
    opacity: 1;
}

@media (max-width: 575.98px) {
    #homeCarousel .carousel-item {
        height: 280px;
    }
    #homeCarousel .carousel-control-prev-icon,
    #homeCarousel .carousel-control-next-icon {
        width: 2rem;
        height: 2rem;
    }
    #homeCarousel .carousel-indicators [data-bs-target] {
    width: 1rem;
    height: 0.3rem;
    }
}
