:root {
    --theme-color: hsl(238, 52%, 36%);
    --theme-color2: #458f8e;
    --theme-color3: #971b2a;
    --theme-color4: hsl(181, 88.6%, 13.7%);
    --theme-color4-boys: #2a3890;
    --theme-color4-girls: hsl(341.3, 88.2%, 36.5%);
    --theme-color5: #2c64a1;
    --theme-color6: #181f49;
    --theme-grey: #e8e8f8;
    --theme-color-dark: #1b1d55;
    --theme-color-light: #9EA0E1;
    --theme-color-light4: hsl(179.2, 100%, 27.8%);
    --theme-color-light4-boys: #1a75bb;
    --theme-color-light4-girls: hsl(342.3, 86.8%, 70.2%);
    --theme-color-layer: #4246bbc7;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
    height: 100%;
}

.body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    background-color: var(--theme-grey);
}

::selection {
    background-color: var(--theme-color);
    color: white;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #eee;
}

::-webkit-scrollbar-thumb {
    background: var(--theme-color-light);
}

a {
    text-decoration: none;
}

.link {
    color: var(--theme-color);
}

.link:hover {
    text-decoration: underline;
}

.btn-white {
    background-color: white;
}

.hover-splash:hover,
.btn-white:hover {
    background-color: rgba(189, 197, 209, .2) !important;
}

.btn:focus,
.btn:active {
    box-shadow: none;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted),
.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--theme-color) !important;
    color: white;
}

.select2-container {
    width: 100% !important;
}

.logo {
    display: flex;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.row {
    margin: 0;
}

.form-group {
    margin: 0.5rem 0;
    position: relative;
}

.form-check-input:focus,
.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus,
.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection,
.form-select:focus,
.form-control:focus {
    box-shadow: none !important;
    border-color: var(--theme-color) !important;
}

.form-check-input:checked {
    background-color: var(--theme-color) !important;
    border-color: var(--theme-color) !important;
}

.select2-container--bootstrap-5 .select2-dropdown {
    border-color: var(--theme-color) !important;
    z-index: 99999 !important;
}

.w-95 {
    width: 95%;
}

.w-limit {
    max-width: 1500px;
}

.w-fit {
    width: fit-content !important;
}

.h-0 {
    height: 0;
}

.min-h-100 {
    min-height: 100%;
}

.btn-blue {
    background-color: #0060df !important;
    color: white !important;
}

.btn-blue:hover {
    background-color: #0250bb !important;
}

.bg-grey {
    background-color: var(--theme-grey) !important;
}

.bg-theme {
    background-color: var(--theme-color) !important;
}

.bg-theme-dark {
    background-color: var(--theme-color-dark) !important;
}

.bg-theme-light {
    background-color: var(--theme-color-light) !important;
}

.text-theme {
    color: var(--theme-color) !important;
}

.text-theme-dark {
    color: var(--theme-color-dark) !important;
}

.text-theme-light {
    color: var(--theme-color-light) !important;
}

.text-theme2 {
    color: var(--theme-color2) !important;
}

.text-theme4 {
    color: var(--theme-color4) !important;
}

.bg-theme2 {
    background-color: var(--theme-color2) !important;
}

.bg-theme3 {
    background-color: var(--theme-color3) !important;
}

.bg-theme4 {
    background-color: var(--theme-color4) !important;
}

.bg-theme4-boys {
    background-color: var(--theme-color4-boys) !important;
}

.bg-theme4-girls {
    background-color: var(--theme-color4-girls) !important;
}

.bg-theme5 {
    background-color: var(--theme-color5) !important;
}

.bg-theme6 {
    background-color: var(--theme-color6) !important;
}

.line-height {
    line-height: 2;
}

.scrollbar-0::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.scrollbar-5::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.selected {
    background-color: var(--theme-color-dark) !important;
}

.of-contain {
    object-fit: contain;
}

.of-cover {
    object-fit: cover;
}

.space-y {
    margin: 10px 0;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5)
}

.border-theme {
    border-color: var(--theme-color) !important;
}

.border-theme-dark {
    border-color: var(--theme-color-dark) !important;
}

.border-theme2 {
    border-color: var(--theme-color2) !important;
}

.border-theme-light {
    border-color: var(--theme-color-light) !important;
}

.rounded-theme {
    border-radius: 10px;
}

.rounded-size {
    width: var(--size, 15px);
    height: var(--size, 15px);
}

.no-wrap {
    white-space: nowrap;
}

.hide {
    display: none;
}

.transition {
    transition: all 0.3s;
}

.no-select {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

[data-invalid-input] {
    border-color: red !important;
}

[data-invalid-message] {
    font-weight: bold;
    font-size: 0.8rem;
    color: red !important;
}

.hide-spin::-webkit-outer-spin-button,
.hide-spin::-webkit-inner-spin-button {
    display: none;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.z-3 {
    z-index: 3;
}

.z-4 {
    z-index: 4;
}

.z-5 {
    z-index: 6;
}

.z-7 {
    z-index: 7;
}

.z-8 {
    z-index: 8;
}

.z-9 {
    z-index: 9;
}

.z-10 {
    z-index: 10;
}

.z-99 {
    z-index: 99;
}

.z-999 {
    z-index: 999;
}

.z-9999 {
    z-index: 9999;
}

.loader {
    height: 5px;
    background-color: black;
    width: 40%;
    border-radius: 20px;
    animation: 0.8s slideAnimation linear infinite;
}

.translate-y-100 {
    transform: translateY(100%);
}

.hover-text-theme-light:hover {
    color: var(--theme-color-light) !important;
}

.hover-shimmer:hover,
.shimmer {
    -webkit-mask: linear-gradient(-60deg, #000 30%, #0005, #000 70%) right/300% 100%;
    background-repeat: no-repeat;
    animation: shimmer 2.5s infinite;
}

.hover-shimmer:hover {
    animation: shimmer 0.7s forwards;
}

.hover-border {
    border-color: transparent !important;
}

.hover-border:hover {
    border-color: var(--border-color) !important;
}

.hover-bg-theme4:hover {
    background-color: var(--theme-color4) !important;
    color: var(--theme-color) !important;
}
@keyframes shimmer {
    100% {
        -webkit-mask-position: left
    }
}

.pointer {
    cursor: pointer;
}

.zoom {
    cursor: zoom-in;
}

.grab {
    cursor: grab;
}

.clamp1,
.clamp2,
.clamp3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp1 {
    -webkit-line-clamp: 1;
}

.clamp2 {
    -webkit-line-clamp: 2;
}

.clamp3 {
    -webkit-line-clamp: 3;
}

.shadow-0 {
    box-shadow: none !important;
}

.layer-dark {
    background-color: rgba(0, 0, 0, 0.481);
}

.center-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.center,
.center-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.min-width {
    min-width: 120px;
}

.animate-rotate-y {
    animation: 0.5s animate-rotate-y ease-in-out forwards;
}

@keyframes animate-rotate-y {
    0% {
        transform: rotateY(-100deg);
    }

    100% {
        transform: rotateY(0deg);
    }
}

.animate-fade-in {
    animation: 0.5s animate-fade-in ease-in-out forwards;
}

@keyframes animate-fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.animate-slide-up {
    animation: 0.5s animate-slide-up ease-in-out forwards;
}

@keyframes animate-slide-up {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

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

input[type="number"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.overflow-y-auto {
    overflow-y: auto;
}

.overflow-x-auto {
    overflow-x: auto;
}

.flex-1 {
    flex: 1;
}

.bg-grad {
    background-image: linear-gradient(#3b639a, #4ca8a5);
}

.bg-grad4 {
    background-image: linear-gradient(90deg, var(--theme-color4) 10%, var(--theme-color-light4) 100%);
}

.bg-grad4-boys {
    background-image: linear-gradient(90deg, var(--theme-color4-boys) 10%, var(--theme-color-light4-boys) 100%);
}

.bg-grad4-girls {
    background-image: linear-gradient(90deg, var(--theme-color4-girls) 10%, var(--theme-color-light4-girls) 100%);
}

.btn-theme {
    padding: 1.5rem 2rem;
    background-image: linear-gradient(#3b639a, #4ca8a5);
    border-radius: 0.25rem;
    color: #fff !important;
    font-size: 1rem;
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: all 0.4s;
    z-index: 1;
    background-color: transparent;
    border: none;
}

.btn-theme:hover {
    background-image: linear-gradient(90deg, #3b639a, #4ca8a5);
    transform: translateY(-5px);
    box-shadow: 1px 1px 15px var(--theme-color);
}

.btn-theme3 {
    padding: 1.5rem 2rem;
    background-color: var(--theme-color3) !important;
    border-radius: 0.25rem;
    color: #fff !important;
    font-size: 1rem;
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: all 0.4s;
    z-index: 1;
    border: none;
}

.btn-theme3:hover {
    background-color: var(--theme-color) !important;
    transform: translateY(-5px);
    box-shadow: 1px 1px 15px var(--theme-color);
}

.btn-theme4 {
    padding: 10px 20px 10px 20px;
    background-color: var(--theme-color4) !important;
    border-radius: 0px;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: all 0.4s;
    z-index: 1;
    border: 2px solid var(--theme-color4) !important;
    transform: skew(-10deg);
}

.btn-theme4-boys {
    padding: 10px 20px 10px 20px;
    background-color: var(--theme-color4-boys) !important;
    border-radius: 0px;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: all 0.4s;
    z-index: 1;
    border: 2px solid var(--theme-color4-boys) !important;
    transform: skew(-10deg);
}

.btn-theme4-girls {
    padding: 10px 20px 10px 20px;
    background-color: var(--theme-color4-girls) !important;
    border-radius: 0px;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: all 0.4s;
    z-index: 1;
    border: 2px solid var(--theme-color4-girls) !important;
    transform: skew(-10deg);
}

.btn-theme4:hover {
    background-color: var(--theme-color-light4) !important;
    transform: translateY(-5px);; /*skew(-15deg);*/
    box-shadow: 1px 1px 15px var(--theme-color-light4);
}

.btn-theme4-boys:hover {
    background-color: var(--theme-color-light4-boys) !important;
    transform: translateY(-5px);; /*skew(-15deg);*/
    box-shadow: 1px 1px 15px var(--theme-color-light5);
}

.btn-theme4-girls:hover {
    background-color: var(--theme-color-light4-girls) !important;
    transform: translateY(-5px);; /*skew(-15deg);*/
    box-shadow: 1px 1px 15px var(--theme-color-light5);
}

.btn-theme6 {
    padding: 14px 40px 14px 40px;
    background-color: var(--theme-color6) !important;
    border-radius: 0px;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: all 0.4s;
    z-index: 1;
    border: 2px solid var(--theme-color2) !important;
    transform: skew(-10deg);
}

.btn-theme6:hover {
    background-color: var(--theme-color) !important;
    transform: translateY(-5px);; /*skew(-15deg);*/
    box-shadow: 1px 1px 15px var(--theme-color);
}

.bg-layer {
    background-color: var(--theme-color-dark);
}

.about-layer {
    top: -30px;
    bottom: 0
}

.round-style {
    overflow: hidden;
}

.fs-7 {
    font-size: 0.8rem;
}

.dropdown-content {
    background-color: white;
    position: absolute;
    transform: rotateX(-90deg);
    opacity: 0;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    box-shadow: 1px 1px 5px grey;
    z-index: 5;
    padding: 5px;
    margin-top: 5px;
    border-top: 3px solid var(--theme-color2);
}

.dropdown-content a {
    color: black;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 5px 50px;
}

.dropdown-content a:hover {
    background-color: #eee;
}

.dropdown:hover > .dropdown-content {
    opacity: 1;
    transform: rotateX(0deg);
}

.fw-bold-theme {
    font-weight: 700;
}

fw-bold-theme2{
    font-weight: 500;
}

.bg-img {
    background-repeat: no-repeat;
    background-size: cover;
}

.splide__pagination {
    position: relative !important;
    margin-top: 10px !important;
}

.splide__pagination__page.is-active {
    background-color: var(--theme-color) !important;
}

.splide__arrow {
    background-color: white !important;
    width: 50px !important;
    height: 50px !important;
}

.news2_slider .splide__arrow {
    background-color: var(--theme-color) !important;

}

.news2_slider .splide__arrow svg {
    fill: white !important;
}

.title-style {
    position: relative;
}

.title-style::before {
    content: "";
    background-color: var(--theme-color);
    position: absolute;
    bottom: -20px;
    height: 5px;
    width: 100px;
}

.title-style::after {
    content: "";
    background-color: var(--theme-color);
    position: absolute;
    bottom: -18px;
    height: 1px;
    width: var(--width, 80%);
    right: 0;
}

.bottom-negative {
    bottom: var(--bottom-negative, -10px);
}

.text-justify {
    text-align: justify;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumb * {
    font-size: 1.15rem;
    margin: 0 3px;
}

.flip-card {
    background-color: transparent;
    height: 300px;
    perspective: 1000px;
    position: relative;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateX(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-back {
    transform: rotateX(180deg);
}

.header-scroll .header-info {
    display: none !important;
}

.header-scroll .navbar-brand img {
    height: 80px !important;
}

.notification {
    transform: scale(0);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.96, 0.52, 0.61, 1.17);
}

.notification-show {
    transform: scale(1);
    opacity: 1;
}

@media screen and (min-width:1000px) {
    .nav-item {
        margin: 0 15px !important;
    }
}

@media screen and (max-width:1000px) {
    .flip-card {
        height: 200px;
    }

    .features_slider {
        margin: 10px 0 !important;
        position: relative !important;
    }

    .navbar {
        border-bottom: 1px solid #eee;
    }

    .nav-logo {
        position: relative !important;
        top: 0 !important;
        height: 80px;
    }

    .navbar-nav {
        background-color: white;
        margin-top: 10px;
        padding: 10px;
        border-radius: 8px;
        align-items: flex-start !important;
        padding: 0 20px !important;
    }
}

@media screen and (max-width:700px) {
    .slider-title {
        font-size: 1rem;
    }

    .slider-actions a {
        padding: 5px 30px !important;
    }
}

.animation-float {
    animation: float 2s infinite ease-in-out alternate;
}

@keyframes float {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
        box-shadow: 1px 10px 5px grey;;
    }
}

.radio-selected{
    background-color: var(--theme-color) !important;
    color: #ffffff !important;
}
/* increase form control padding */
.form-control-lg {
    padding: 1rem 1.5rem; /* increased padding for larger fields */
}
/* card */
.card {
    border: none;
}
.card-header {
    background-color: var(--theme-color4);
    color: white;
    text-align: center;
    padding: 20px;
}
/* process bar */
.progress-bar {
    background-color: var(--theme-color4);
}
/* wizard steps */
.div-wizard {
    display: flex;
    justify-content: space-between;
}
.div-wizard-step {
    text-align: center;
    position: relative;
}
.div-wizard-step .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--theme-grey);
    font-size: 16px;
    color: var(--theme-color6);
}
.div-wizard-step.active .btn {
    color: white;
    transform: scale(1.2);
    transition: transform 0.3s ease;
}
.div-wizard-step.active p {
    font-weight: bold;
}
.div-wizard-step .line {
    position: absolute;
    top: 20px;
    right: 60%;
    height: 2px;
    width: 100%;
    background-color: var(--theme-grey);
    z-index: -1;
}
.div-wizard-step:last-child .line {
    display: none;
}
.div-step .step-group {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: var(--theme-grey);
}
.div-step .step-group h6 {
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 1.3rem;
    text-transform: uppercase;
    padding-bottom: 10px;
    color: var(--theme-color4);
    border-bottom: 2px solid var(--theme-color4);
}
.div-step .step-group-boys h6 {
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 1.3rem;
    text-transform: uppercase;
    padding-bottom: 10px;
    color: var(--theme-color4-boys);
    border-bottom: 2px solid var(--theme-color4-boys);
}
.div-step .step-group-girls h6 {
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 1.3rem;
    text-transform: uppercase;
    padding-bottom: 10px;
    color: var(--theme-color4-girls);
    border-bottom: 2px solid var(--theme-color4-girls);
}
/* profile */
.form-container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 2rem;
}
.form-header {
    background: linear-gradient(90deg, var(--theme-color2), var(--theme-color4));
    border-radius: 1rem 1rem 0 0;
    color: white;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.form-group label {
    font-weight: bold;
    color: var(--theme-color);
}
.shadow-input {
    box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.10);
}
.backdrop {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*.btn-gradient {
    background: linear-gradient(90deg, #007bff, #28a745);
    border: none;
    padding: 0.75rem 1.5rem;
    color: white;
    font-weight: bold;
    border-radius: 50px;
    transition: background 0.3s ease;
}
.btn-gradient:hover {
    background: linear-gradient(90deg, #28a745, #007bff);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}*/

/* style for the diamond shape with rounded corners */
.diamond {
    width: 250px;
    height: 250px;
    background-color: #db0c16;  /* background color */
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(45deg);  /* rotate to make it diamond-shaped */
    position: relative;
    margin: 40px auto;  /* center the diamond on the page */
    border-radius: 20px;  /* apply rounded corners to the diamond */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);  /* optional: Add a subtle shadow */
}

/* optional: adjust text size and padding */
.diamond-text {
    font-size: 16px;
    padding: 20px;
    transform: rotate(-45deg);  /* rotate the text back so it's readable */
}