@import url('https://fonts.googleapis.com/css2?family=Fira+Mono:wght@400;500;700&display=swap');

:root {
    --color-body: #b6cbce;
    --color-heading: #eef3db;
    --color-base: #000000;
    --color-base2: #8576FF;
    --color-brand: #A3FFD6;
    --color-brand2: #ffffff;
    --sidbar-width: 240px;
    --font-base: "Fira Mono", monospace;
}

body {
    background: linear-gradient(var(--color-base), var(--color-base2));
    color: var(--color-body);
    font-family: var(--font-base);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-heading);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: var(--color-body);
    transition: all 0.4s ease;
}

a:hover {
    color: var(--color-brand);
}

img {
    width: 100%;
}

.text-brand {
    color: var(--color-brand);
}

.bg-base {
    background-color: var(--color-base);
}

.full-height {
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0;
}

.full-height iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.shadow-effect {
    transition: all 0.5s;
}

.shadow-effect:hover {
    box-shadow: 0 0 0 3px var(--color-brand);
}

.video-container {
    width: 100%;
    padding: 5%; /* This creates equal padding on all sides */
    box-sizing: border-box;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}
#ytplayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.iconbox {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background-color: var(--color-brand);
    color: var(--color-base);
}

.header-social-links a,
.social-icons a {
    color: var(--color-heading);
    transition: 0.3s;
}

.header-social-links a {
    padding-left: 6px;
    font-size: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-base);
    border-radius: 100px;
    font-size: 30px;
}

.header-social-links a:hover,
.social-icons a:hover {
    color: var(--color-brand);
}

.navbar {
    background: var(--color-base);
}

.navbar-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.navbar-visible {
    transform: translateY(0);
    opacity: 1;
}

.navbar-hidden,
.navbar-visible {
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    transition: background-color 0.3s;
}

.navbar-toggler:hover .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(163, 255, 214, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar .navbar-brand {
    margin: 0 auto;
}

.navbar .navbar-nav {
    flex-direction: row;
    justify-content: center;
}

.navbar .nav-link {
    font-style: "Medium";
    text-transform: uppercase;
    color: #fff;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--color-brand);
}

.navbar-nav .nav-item {
    margin: 0 10px;
}

.btn {
    padding: 12px 28px;
    font-weight: 700;
}

.btn-brand {
    background-color: var(--color-brand);
    border-color: var(--color-brand);
    color: var(--color-base);
}

.btn-brand:hover,
.btn-brand:focus {
    background-color: var(--color-brand2);
    color: var(--color-base);
    border-color: var(--color-brand2);
}

.link-custom,
.ext-link {
    font-weight: 700;
    position: relative;
}

.link-custom::after,
.ext-link::after {
    content: "";
    width: 0%;
    height: 2px;
    background-color: var(--color-brand);
    position: absolute;
    left: 0;
    top: 110%;
    transition: all 0.4s;
}

.link-custom:hover::after,
.ext-link:hover::after {
    width: 100%;
}

.card-custom .card-custom-image {
    overflow: hidden;
}

.card-custom .card-custom-image img {
    transition: all 0.4s ease;
}

.card-custom:hover .card-custom-image img {
    transform: scale(1.1);
}

#contact .form-control {
    background-color: var(--color-base);
    border-color: var(--color-base);
    color: var(--color-body);
}

#contact .form-control:focus {
    border-color: var(--color-brand);
    box-shadow: none;
}

#contact .form-control::placeholder {
    color: var(--color-body);
}

#contact input.form-control {
    height: 44px;
}

.progress-container {
    width: 100%;
    position: relative;
}

.progress {
    height: 30px;
    background: var(--color-base);
    border-radius: 20px;
    border: 1px solid var(--color-brand2);
    margin-bottom: 10px;
    overflow: visible;
    position: relative;
    width: 100%;
}

.progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: bold;
    height: 100%;
    padding: 0 10px;
    white-space: nowrap;
    text-align: center;
    border-radius: 20px;
    border: 1px solid #000;
    transition: width 2s ease-in-out;
}

.progress-text {
    width: 100%;
    text-align: left;
    color: var(--color-base);
    font-weight: bold;
    line-height: 30px;
}

.progress-value {
    width: 65px;
    height: 25px;
    line-height: 25px;
    background: #171b3c;
    font-size: 15px;
    color: #fff;
    border-radius: 0 0 15px 15px;
    border: 1px solid #000;
    border-top: none;
    box-shadow: 0 2px 2px #4f4c4c;
    position: absolute;
    bottom: -25px;
    right: 60px;
}

#reviewsCarousel {
    padding-bottom: 60px;
}

#reviewsCarousel .carousel-indicators {
    bottom: -50px;
}

#reviewsCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-brand2);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

#reviewsCarousel .carousel-indicators button.active {
    background-color: var(--color-brand);
    opacity: 1;
}

#reviewsCarousel .review {
    height: 100%;
}

#reviewsCarousel .col-md-6 {
    padding: 20px;
}

#reviewsCarousel .carousel-inner {
    overflow: hidden;
}

#reviewsCarousel .carousel-item {
    display: none;
    transition: transform 0.6s ease-in-out;
}

#reviewsCarousel .carousel-item.active,
#reviewsCarousel .carousel-item-next,
#reviewsCarousel .carousel-item-prev {
    display: flex;
}

#reviewsCarousel .carousel-item-next:not(.carousel-item-start),
#reviewsCarousel .active.carousel-item-end {
    transform: translateX(100%);
}

#reviewsCarousel .carousel-item-prev:not(.carousel-item-end),
#reviewsCarousel .active.carousel-item-start {
    transform: translateX(-100%);
}

#reviewsCarousel .carousel-item-next.carousel-item-start,
#reviewsCarousel .carousel-item-prev.carousel-item-end {
    transform: translateX(0);
}

.reviewcard {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    text-align: center;
}

.person {
    text-align: center;
    margin-top: 10px;
}

.reviewcard img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    padding-bottom: 2%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.shadow-effect:hover .reviewcard img {
    transform: scale(1.1);
}

@media (min-width: 992px) {
    .navbar {
        background-color: var(--color-base);
        padding: 0;
    }

    .navbar-brand img {
        border: none;
    }
}

/* Hide number input arrows */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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