@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');* {
    font-family: "Plus Jakarta Sans", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(10,46,111,1) 86%);
    cursor: none;
    color: #fff !important;
}

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

body::-webkit-scrollbar-track {
    background: rgba(10,46,111,1);
}

body::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 5px;
    transition: background 2s ease-in-out;
}

body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 1000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(10,46,111,1) 86%);
    z-index: 1001;
}

#preloader svg {
    width: 100px;
    height: 100px;
    animation: rotate 2s linear infinite;
}

.outer-circle {
    fill: none;
    stroke: #fff;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 251.2;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite;
}

.inner-circle {
    fill: transparent;
    stroke: rgba(2,0,36,1);
    stroke-width: 8;
}

.dot {
    fill: #fff;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dashoffset: 251.2;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

a {
    color: #007bff;
    text-decoration: none;
    position: relative;
    font-size: 18px;
}

a:hover {
    color: #0056b3;
    cursor: none;
}

.link-wrapper {
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

nav.bg-light {
    background: rgb(2,0,36);
    background: linear-gradient(to right, rgba(2,0,36,1) 0%, rgba(10,46,111,1) 86%);
}

.hero {
    padding: 60px 15px;
    color: white;
    text-align: left;
}

.svg-frame {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.svg-frame svg {
    width: 100%;
    height: 100%;
}

.image-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.btn.btn-light {
    font-family: "Lexend";
    text-transform: uppercase !important;
    font-weight: 700 !important;
    color: rgba(10,46,111,1) !important;
    background-color: white !important;
    letter-spacing: 3px !important;
    padding: 10px !important;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.5s ease-out;
}

.btn.btn-light:hover {
    background-color: rgba(10,46,111,1) !important;
    color: white !important;
}

.btn.btn-outline-light {
    font-family: "Lexend";
    letter-spacing: 3px !important;
    padding: 15px !important;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
    background-color: transparent;
    transition: background-color 0.5s ease-out;
    text-transform: uppercase;
    font-weight: 700;
}

.btn.btn-outline-light:hover {
    color: rgba(10,46,111,1) !important;
    background-color: white !important;
    box-shadow: 4px 4px 8px rgba(204, 194, 194, 0.4) !important;
}

.hero.container {
    padding-top: -20px;
}

.rotating-box {
    width: 150px;
    height: 150px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(-30deg) rotateY(-45deg);
}
.rotating-box .face {
    position: absolute;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: rgba(0, 0, 0, 0.8);
    border: 2px solid #ffffff;
}
.face-front {
    transform: translateZ(75px);
}
.face-back {
    transform: rotateY(180deg) translateZ(75px);
}
.face-right {
    transform: rotateY(90deg) translateZ(75px);
}
.face-left {
    transform: rotateY(-90deg) translateZ(75px);
}
.face-top {
    transform: rotateX(90deg) translateZ(75px);
}
.face-bottom {
    transform: rotateX(-90deg) translateZ(75px);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: rgba(255, 255, 255, 0.5);
    margin-right: 0.5rem;
}

.profile-img {
    max-width: 250px;
    max-height: 200px;
    border-radius: 5px;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.1);
}

.tooltip-inner {
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(10,46,111,1) 86%);
}

.tooltip .arrow::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(10,46,111,1) 86%);
    z-index: -1;
    border: 0;
}

::selection {
    background-color: #1c4b7e;
    color: inherit;
}


li.nav-item button.nav-link {
    color: white;
}

li.nav-item button.nav-link.active {
    color: black;
}

.timeline-item a {
    color: white;
}

form .form-control {
    border: none;
    border-bottom: 1px solid #fff;
    background-color: transparent;
    color: white;
}

form .form-control:focus {
    border-color: #fff;
    box-shadow: none;
}

::placeholder {
    color: white !important;
}

.alert.alert-danger {
    border: 3px solid red;
    background-color: rgb(190, 94, 94);
    color: white;
}

.alert.alert-success {
    border: 3px solid green;
    background-color: rgb(71, 160, 71);
    color: white;
}

@media (max-width: 768px) {
    .cursor {
        display: none !important;
    }

    body {
        cursor: auto;
    }
}

.form-floating .form-control {
    height: auto;
    padding: 1rem 0.75rem;
    background-color: transparent;
    border: none; /* Remove border */
    border-bottom: 1px solid #fff; /* Underline only */
    border-radius: 0; /* Remove border-radius */
    color: white;
}

.form-floating textarea.form-control {
    min-height: 200px;
}

.form-floating .form-control::placeholder {
    color: transparent;
}

.form-floating .form-control:focus::placeholder {
    color: #6c757d;
}

.form-floating label {
    position: absolute;
    top: 1rem;
    left: 0.75rem;
    height: 100%;
    padding: 0; /* Remove padding */
    pointer-events: none;
    border: 1px solid transparent; /* Transparent border */
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}

.form-floating .form-control:focus + label,
.form-floating .form-control:not(:placeholder-shown) + label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    background: transparent;
    color: white !important;
}

.form-floating > input + label:after,
.form-floating > textarea + label:after {
    background: transparent !important;
    color: #fff !important;
}
