.scrollable-target {
    scroll-margin-top: 75px;
}

.content {
    position: relative;
    background-image: linear-gradient(to bottom, #26372D, #1E2126);
    width: 100%;
    height: 100%;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.first-section,
.normal-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(100vh - 75px);
    z-index: 10;
}

.first-section {
    height: 200vh;
    z-index: 5;
    background-image: linear-gradient(transparent, 54%, #ffffff88);
    background-size: 100% 300px;
    background-position: 0 100%;
    background-repeat: no-repeat;
}

.particles-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.logo-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 0;
    pointer-events: none;
    color: white;
    font-size: 45px;
    font-weight: bold;
    height: 300px;
    transition-duration: 1000ms;
}

.logo-title section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.logo-title .title-description {
    font-size: 30px;
    width: 700px;
    text-align: center;
    color: #B0B0B0;
}

.logo-container {
    display: flex;
    width: 200px;
    height: 200px;
    overflow: hidden;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.4);
}

@keyframes glow-window-rotate-light {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.glow-window {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -100%);
    padding: 25px 25px 0px 25px;
    border: 1px solid #00000000;
    cursor: pointer;
    color: white;
    transition: 0.2s all;
    z-index: 10;
    backdrop-filter: blur(3px);
}

.glow-window-shadow {
    margin-top: 3px;
    transform: scaleX(1.07) scaleY(1.15);
    filter: blur(60px);
    opacity: 1;

    transition: 0.2s all;
}

.glow-window-div-root {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    border: 1px solid #8C93FB;
    border-bottom: 0px;
    border-radius: 20px 20px 0px 0px;
    overflow: hidden;

    z-index: -1;
}

.glow-window-div-background {
    position: relative;
    top: -50%;
    left: -50%;
    width: 300%;
    height: 300%;
    /* top: 0px;
    left: 0px;
    width: 200%;
    height: 200%; */
    /* transform: translate(-100%, -100%); */
    background: linear-gradient(90deg, #555B65, #2c5f42);
    opacity: 1;

    /* animation: glow-window-rotate-light; */
    animation-timing-function: linear;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.glow-window-div-content {
    position: relative;
    display: flex;
    overflow: hidden;
    width: 142vh;
    height: 80vh;
    background-color: black;
    border-radius: 10px 10px 0px 0px;
}

.glow-window-div-content video {
    width: 100%;
    height: 100%;
}

.showcase {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-top: 120px;
    height: unset;
    color: white;
    background-image: url("../assets/star_background.png");
    background-repeat: no-repeat;
    background-size: cover;
    user-select: none;
}

.showcase-title {
    font-size: 40px;
}

.showcase-description {
    color: white;
    opacity: 85%;
    margin-top: 50px;
    text-align: center;
    font-size: 20px;
}

.showcase-glass-window {
    position: relative;
    margin-top: auto;
    background-color: #8C93FB11;
    backdrop-filter: blur(4px);
    border: 1px solid #ffffff55;
    border-bottom: 0px;
    border-radius: 20px 20px 0px 0px;
    overflow: hidden;
    padding: 50px 50px 10px 50px;
    margin-top: 120px;
}

.showcase-glass-window::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, transparent, 80%, #395D85);
    z-index: -1;
}

.showcase-glass-window img {
    z-index: 5;
    width: 40vw;
    box-shadow: 0px 0px 40px #2c5f42;
    border-radius: 10px;
}

.about-us {
    display: flex;
    height: unset;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background-color: #0D1117;
    border-top: 1px solid #ffffff11;
    padding-top: 30px;
}

.about-logo {
    width: 130px;
    height: 130px;
}

.about-title {
    color: white;
    font-size: 40px;
    margin-top: 10px;
}

.about-description {
    color: rgba(255, 255, 255, 0.70);
    font-size: 20px;
    text-align: center;
}

.about-container {
    width: 70vw;
}

.about-top-container {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 100px;
    border: 1px solid #ffffff55;
    border-bottom: 0px;
    border-radius: 20px 20px 0px 0px;
    padding: 25px 60px;
}

.about-top-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, transparent, 80%, #395D8588);
    z-index: -1;
}

.about-top-text {
    color: rgba(255, 255, 255, 0.70);
    font-size: 17px;
    line-height: 25px;
}

.about-top-image-container {
    background-color: rgb(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 10px;
    border: 2px solid rgb(255, 255, 255, 0.1);
    border-bottom: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* grid-template-rows: repeat(2, 100px); */
    border: 1px solid rgb(255, 255, 255, 0.1);
    border-bottom: 0;
    border-left: 0;
}

.about-grid-item {
    background-color: #4CAF5000;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding-top: 30px;
    border: 1px solid rgb(255, 255, 255, 0.1);
    border-top: 0;
    border-right: 0;
    border-bottom-width: 1px;
}

.about-grid-item.item-larger {
    display: flex;
    justify-content: center;
    grid-column: span 2;
}

.first-row-item {
    display: flex;
    flex-direction: column;
}

.about-title-item {
    font-size: 20px;
}

.about-content-item {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.70);
    margin-left: auto;
    width: 300px;
    line-height: 20px;
}

.about-image-item {
    margin-top: auto;
    margin-left: auto;
    width: 300px;
    border: 1px solid rgb(255, 255, 255, 0.1);
    border-right: 0;
    border-bottom: 0;
    border-radius: 20px 0 0 0;
}

.second-row-item {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.70);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    line-height: 23px;
}

.second-row-item span {
    color: white;
}

.our-services {
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding-top: 50px;
    height: unset;
    background-color: #0D1117;
    border-top: 1px solid rgb(255, 255, 255, 0.1);
    z-index: 10;
}

.our-services-image-container {
    position: relative;
    width: 60vw;
    background-image: linear-gradient(180deg, #202333, 80%, #395D85);
    padding: 30px 60px 0px 60px;
    border-radius: 13px 13px 0 0;
    margin-top: 130px;
}

.our-services-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #ffffff44;
    border-radius: 13px 13px 0 0;
    border-bottom: 0;
}

.our-services .about-title {
    margin-bottom: 10px;
}

.our-services-image {
    width: 100%;
    transform: translateY(5px);
    border: 5px solid #ffffff22;
    border-radius: 17px 17px 0 0;
    border-bottom-width: 0;
}

.our-services-table {
    padding: 0;
}

.about-us-grid-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 60vw;
    border-right: 1px solid rgb(255, 255, 255, 0.1);
}

.about-us-grid-info-item {
    display: flex;
    flex-direction: column;
    background-color: #4CAF5000;
    color: white;
    font-size: 20px;
    gap: 30px;
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    border: 1px solid rgb(255, 255, 255, 0.1);
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    min-height: 300px;
}

.about-us-grid-content {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.70);
    line-height: 20px;
}

.contact-us {
    justify-content: start;
    align-items: center;
    flex-direction: column;
    border-top: 1px solid rgb(255, 255, 255, 0.1);
    background-color: #0D1117;
    padding-top: 30px;
    gap: 10px;
    height: unset;
    padding-bottom: 100px;
}

.contact-text {
    color: white;
    font-size: 50px;
    margin-top: 25px;
    text-align: center;
    line-height: 50px;
    margin-bottom: 80px;
}

.text-input {
    padding: 15px;
    padding-left: 25px;
    border-radius: 10px;
    width: 400px;
    outline: none;
    background-image: linear-gradient(270deg, #a7aaae, white);
    border: 0;
    font-weight: bold;
}

.contact-us-button {
    padding: 18px;
    background-color: transparent;
    outline: none;
    border: 3px solid white;
    color: white;
    border-radius: 7px;
    transition: 100ms all;
    cursor: pointer;
}

.contact-us-button:disabled {
    background-color: white;
    color: black;
    opacity: 20%;
}

.contact-us-button:hover {
    background-color: white;
    color: black;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #000;
  border-top: 2px solid transparent;
  border-radius: 50%;
  display: inline-block;
  margin-left: 8px;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}